中航四月十号 内容提交
parent
dbba31670d
commit
b5ecb91399
@ -0,0 +1,43 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.mes.bean.MesQcCheckData;
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/4/9 18:00
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class QcCheckDataResultModel {
|
||||||
|
|
||||||
|
@ApiParam("是否完成首检")
|
||||||
|
private Integer isFirstCheck;
|
||||||
|
|
||||||
|
@ApiParam("首检结果")
|
||||||
|
private List<MesQcCheckData> firstCheckResult;
|
||||||
|
|
||||||
|
@ApiParam("是否完成巡检")
|
||||||
|
private Integer isOnSiteCheck;
|
||||||
|
|
||||||
|
@ApiParam("巡检结果")
|
||||||
|
private List<MesQcCheckData> onSiteCheckResult;
|
||||||
|
|
||||||
|
@ApiParam("是否完成尾检")
|
||||||
|
private Integer isEndCheck;
|
||||||
|
|
||||||
|
@ApiParam("尾检结果")
|
||||||
|
private List<MesQcCheckData> endCheckResult;
|
||||||
|
|
||||||
|
public QcCheckDataResultModel() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public QcCheckDataResultModel(Integer isFirstCheck, Integer isOnSiteCheck, Integer isEndCheck) {
|
||||||
|
this.isFirstCheck = isFirstCheck;
|
||||||
|
this.isOnSiteCheck = isOnSiteCheck;
|
||||||
|
this.isEndCheck = isEndCheck;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.mes.model;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Wynne.Lu
|
||||||
|
* @date 2020/4/9 19:40
|
||||||
|
* @desc
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class ReworkResultModel {
|
||||||
|
|
||||||
|
@ApiParam("已维修数量")
|
||||||
|
private Integer alreadyRepairCount;
|
||||||
|
|
||||||
|
@ApiParam("未维修数量")
|
||||||
|
private Integer notRepairCount;
|
||||||
|
|
||||||
|
@ApiParam("拆解数量")
|
||||||
|
private Integer dismantleCount;
|
||||||
|
}
|
Loading…
Reference in New Issue