|
|
|
@ -73,6 +73,9 @@ public class StepModel implements Serializable {
|
|
|
|
|
@ApiParam("参数代码")
|
|
|
|
|
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,
|
|
|
|
|
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.stepName = stepName;
|
|
|
|
|
this.stepText = stepText;
|
|
|
|
@ -93,6 +96,7 @@ public class StepModel implements Serializable {
|
|
|
|
|
this.processCode = processCode;
|
|
|
|
|
this.stepSeq = stepSeq;
|
|
|
|
|
this.paramCode = paramCode;
|
|
|
|
|
this.stepDisplayName = stepDisplayName;
|
|
|
|
|
this.workCellCode = workCellCode;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|