package com.zy.asrs.domain.vo;
|
|
import lombok.Data;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
@Data
|
public class StationCycleCapacityVo {
|
|
// 循环圈明细
|
private List<StationCycleLoopVo> loopList = new ArrayList<>();
|
|
// 循环圈数量
|
private Integer loopCount = 0;
|
|
// 循环圈站点总数
|
private Integer totalStationCount = 0;
|
|
// 循环圈中有任务站点总数
|
private Integer taskStationCount = 0;
|
|
// 循环圈中手动站点总数(不与任务站点重复计数)
|
private Integer manualStationCount = 0;
|
|
// 循环圈中占用站点总数 = 任务站点 + 手动站点
|
private Integer occupiedStationCount = 0;
|
|
// 当前承载量(0-1):当前占用站点数 / 循环圈总站点数
|
private Double currentLoad = 0.0;
|
|
// 最新刷新时间
|
private Date refreshTime;
|
}
|