卡斯马报废率趋势报表
parent
e97a3666b8
commit
6bd2d191a3
@ -0,0 +1,39 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 卡斯马报废率趋势查询条件封装类
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2020-12-24 16:35
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Api("报废率趋势查询条件封装类")
|
||||||
|
public class ScrapRateTrendQueryModel {
|
||||||
|
|
||||||
|
@ApiParam("组织机构代码")
|
||||||
|
private String organizeCode;
|
||||||
|
|
||||||
|
@ApiParam("工序代码")
|
||||||
|
private String processCode;
|
||||||
|
|
||||||
|
@ApiParam("开始时间")
|
||||||
|
private String startTime;
|
||||||
|
|
||||||
|
@ApiParam("结束时间")
|
||||||
|
private String endTime;
|
||||||
|
|
||||||
|
@ApiParam("时间类型")
|
||||||
|
private String timeType;
|
||||||
|
|
||||||
|
@ApiParam("项目号")
|
||||||
|
private String prodCfgTypeCode;
|
||||||
|
|
||||||
|
@ApiParam("物料号")
|
||||||
|
private String partNo;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 时间计数
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2020/12/28 10:10
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class TimeCountModel {
|
||||||
|
@ApiParam("时间段")
|
||||||
|
private String time;
|
||||||
|
|
||||||
|
@ApiParam("计数")
|
||||||
|
private Integer count;
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description : 时间比率
|
||||||
|
* @Reference :
|
||||||
|
* @Author : dominic
|
||||||
|
* @CreateDate : 2020/12/28 13:10
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class TimeRateModel {
|
||||||
|
@ApiParam("时间段")
|
||||||
|
private String time;
|
||||||
|
|
||||||
|
@ApiParam("比率")
|
||||||
|
private double rate;
|
||||||
|
}
|
Loading…
Reference in New Issue