Merge remote-tracking branch 'origin/test' into test

yun-zuoyi
qianhs 5 years ago
commit e321ca3790

@ -718,7 +718,7 @@ public class MesPcnEnumUtil {
DEFECTED(20, "不合格"), DEFECTED(20, "不合格"),
SCRAPED(30, "报废"), SCRAPED(30, "报废"),
DISMANTLED(40, "已拆解"), DISMANTLED(40, "已拆解"),
PRE_CHECK(50, "待检测"); PRE_CHECK(5, "待检测");
private int value; private int value;
private String description; private String description;

@ -78,6 +78,10 @@ public class MesProdRouteOptParam extends BaseBean implements Serializable {
@ApiParam("是否执行 1=是 2=否") @ApiParam("是否执行 1=是 2=否")
private Integer isActive; private Integer isActive;
@Column(name = "STEP_DISPLAY_NAME")
@ApiParam("工步展示名称")
private String stepDisplayName;
@Transient @Transient
@Column(name = "PARAM_ATTRIBUTE") @Column(name = "PARAM_ATTRIBUTE")
@ApiParam("参数属性") @ApiParam("参数属性")

@ -58,6 +58,10 @@ public class MesRouteProcessStep extends BaseBean implements Serializable {
@ApiParam("工步参数值") @ApiParam("工步参数值")
private String paramValue; private String paramValue;
@Column(name = "STEP_DISPLAY_NAME")
@ApiParam("工步展示名称")
private String stepDisplayName;
@Transient @Transient
@Column(name = "PARAM_ATTRIBUTE") @Column(name = "PARAM_ATTRIBUTE")
@ApiParam("参数属性") @ApiParam("参数属性")

@ -73,6 +73,9 @@ public class StepModel implements Serializable {
@ApiParam("参数代码") @ApiParam("参数代码")
private String paramCode; private String paramCode;
@ApiParam("工步展示名称")
private String stepDisplayName;
/** /**
* *
*/ */
@ -83,7 +86,7 @@ public class StepModel implements Serializable {
} }
public StepModel(String stepCode, String stepName, String stepText, String stepType, String stepObject, public StepModel(String stepCode, String stepName, String stepText, String stepType, String stepObject,
String routeCode, String processCode, Integer stepSeq, String paramCode, String workCellCode) { String routeCode, String processCode, Integer stepSeq, String paramCode, String stepDisplayName, String workCellCode) {
this.stepCode = stepCode; this.stepCode = stepCode;
this.stepName = stepName; this.stepName = stepName;
this.stepText = stepText; this.stepText = stepText;
@ -93,6 +96,7 @@ public class StepModel implements Serializable {
this.processCode = processCode; this.processCode = processCode;
this.stepSeq = stepSeq; this.stepSeq = stepSeq;
this.paramCode = paramCode; this.paramCode = paramCode;
this.stepDisplayName = stepDisplayName;
this.workCellCode = workCellCode; this.workCellCode = workCellCode;
} }
} }

Loading…
Cancel
Save