[bug 9238 9096]

yun-zuoyi
王杰 5 years ago
parent cdf8c79cce
commit 82158d8283

@ -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