package com.zy.asrs.domain.vo;
|
|
import lombok.Data;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
@Data
|
public class StationCycleLoopVo {
|
|
// 循环圈序号(从1开始)
|
private Integer loopNo;
|
|
// 循环圈内站点编号
|
private List<Integer> stationIdList = new ArrayList<>();
|
|
// 循环圈内存在的工作号
|
private List<Integer> workNoList = new ArrayList<>();
|
|
// 循环圈站点总数
|
private Integer stationCount = 0;
|
|
// 循环圈内有任务站点数
|
private Integer taskCount = 0;
|
|
// 当前承载量(0-1):当前任务数 / 当前循环圈总站点数
|
private Double currentLoad = 0.0;
|
}
|