yun-zuoyi
wynne1005 5 years ago
commit 3769a630fe

@ -2593,7 +2593,8 @@ public class MesPcnEnumUtil {
TIME_MODULE_CONTENT("timeModuleContent", "定时组件内容"), TIME_MODULE_CONTENT("timeModuleContent", "定时组件内容"),
TIME_MODULE_INIT("timeModuleInit", "初始化时间展示组件"), TIME_MODULE_INIT("timeModuleInit", "初始化时间展示组件"),
TIME_MODULE_START("timeModuleStart", "定时组件开始"), TIME_MODULE_START("timeModuleStart", "定时组件开始"),
TIME_MODULE_STOP("timeModuleStop", "定时组件暂停"); TIME_MODULE_STOP("timeModuleStop", "定时组件暂停"),
TIME_MODULE_INIT("timeModuleInit", "初始化时间展示组件");
private String value; private String value;
private String description; private String description;

@ -82,6 +82,10 @@ public class MesStateMachineStatus extends BaseBean implements Serializable {
@ApiParam("状态点顺序") @ApiParam("状态点顺序")
private Integer seq; private Integer seq;
@Column(name = "IS_INIT")
@ApiParam("是否初始化")
private Integer isInit = 1;
@Transient @Transient
@ApiParam("状态点是否完成") @ApiParam("状态点是否完成")
private boolean isComplete; private boolean isComplete;

@ -49,4 +49,8 @@ public class MesTypeCfg extends BaseBean implements Serializable {
@Column(name = "COLOR_VALUE") @Column(name = "COLOR_VALUE")
@ApiParam("颜色值") @ApiParam("颜色值")
private String colorValue; private String colorValue;
@Column(name = "SEQ")
@ApiParam("顺序")
private Integer seq;
} }

@ -104,12 +104,14 @@ public class ProductInfoManageModel {
this.queDetailSeq = queDetailSeq; this.queDetailSeq = queDetailSeq;
} }
public ProductInfoManageModel(String vinCode, String produceCategoryCode, String orderNo, Double queDetailSeq, Double queueSeq, String workType) { public ProductInfoManageModel(String vinCode, String produceCategoryCode, String orderNo, Double queDetailSeq,
Double queueSeq, String workType, String produceColor) {
this.vinCode = vinCode; this.vinCode = vinCode;
this.produceCategoryCode = produceCategoryCode; this.produceCategoryCode = produceCategoryCode;
this.orderNo = orderNo; this.orderNo = orderNo;
this.queDetailSeq = queDetailSeq; this.queDetailSeq = queDetailSeq;
this.queueSeq = queueSeq; this.queueSeq = queueSeq;
this.workType = workType; this.workType = workType;
this.produceColor = produceColor;
} }
} }

@ -6,7 +6,7 @@ sonar.projectKey=i3plus.pojo:i3plus-pojo
# defaults to project key # defaults to project key
sonar.projectName=i3plus-pojo sonar.projectName=i3plus-pojo
# defaults to 'not provided' # defaults to 'not provided'
sonar.projectVersion=1.0-TEST-SNAPSHOT sonar.projectVersion=1.0-PROD-SNAPSHOT
# Path is relative to the sonar-project.properties file. Defaults to . # Path is relative to the sonar-project.properties file. Defaults to .
#sonar.sources=./ #sonar.sources=./

Loading…
Cancel
Save