Merge branch 'dev' of http://git.estsh.com/i3-IMPP/i3plus-pojo into dev
commit
d289a58439
@ -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;
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/3/13 17:55
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class StateDispatchModel {
|
||||
|
||||
private String statesKey;
|
||||
|
||||
private String firstScanKey;
|
||||
|
||||
private String cellParamKey;
|
||||
|
||||
private String requestBeanKey;
|
||||
|
||||
private String moduleDataMapKey;
|
||||
|
||||
private String scanInfo;
|
||||
|
||||
public StateDispatchModel(String statesKey, String firstScanKey, String cellParamKey, String requestBeanKey, String moduleDataMapKey, String scanInfo) {
|
||||
this.statesKey = statesKey;
|
||||
this.firstScanKey = firstScanKey;
|
||||
this.cellParamKey = cellParamKey;
|
||||
this.requestBeanKey = requestBeanKey;
|
||||
this.moduleDataMapKey = moduleDataMapKey;
|
||||
this.scanInfo = scanInfo;
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package cn.estsh.i3plus.pojo.mes.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.IfDismantleRecord;
|
||||
import cn.estsh.i3plus.pojo.mes.bean.MesContainer;
|
||||
|
||||
/**
|
||||
* @Description:
|
||||
* @Reference:
|
||||
* @Author: joke.wang
|
||||
* @CreateDate: 2019\11\18 10:33
|
||||
* @Modify:
|
||||
**/
|
||||
public interface MesContainerRepository extends BaseRepository<MesContainer, Long> {
|
||||
}
|
Loading…
Reference in New Issue