fix:添加app-生产概况-任务统计
parent
7616b34052
commit
c2bde1b2b9
@ -0,0 +1,15 @@
|
||||
package cn.iocoder.yudao.module.mes.controller.admin.task.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Schema(description = "管理后台 - 任务单趋势明细 Response VO")
|
||||
@Data
|
||||
public class TaskTrendItemRespVO {
|
||||
|
||||
@Schema(description = "横轴标签")
|
||||
private String day;
|
||||
|
||||
@Schema(description = "数量")
|
||||
private Long count;
|
||||
}
|
||||
@ -0,0 +1,32 @@
|
||||
package cn.iocoder.yudao.module.mes.controller.admin.task.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Schema(description = "管理后台 - 任务单趋势汇总 Response VO")
|
||||
@Data
|
||||
public class TaskTrendRespVO {
|
||||
|
||||
@Schema(description = "任务单总数")
|
||||
private Long totalNum;
|
||||
|
||||
@Schema(description = "下达数")
|
||||
private Long issuedNum;
|
||||
|
||||
@Schema(description = "部分排产数")
|
||||
private Long partialScheduledNum;
|
||||
|
||||
@Schema(description = "待生产数")
|
||||
private Long waitingProductionNum;
|
||||
|
||||
@Schema(description = "生产中数")
|
||||
private Long producingNum;
|
||||
|
||||
@Schema(description = "已完成数")
|
||||
private Long completedNum;
|
||||
|
||||
@Schema(description = "趋势集合")
|
||||
private List<TaskTrendItemRespVO> dayTrend;
|
||||
}
|
||||
Loading…
Reference in New Issue