|
|
|
@ -82,11 +82,15 @@ public class StepModel implements Serializable {
|
|
|
|
|
@ApiParam("工作单元代码")
|
|
|
|
|
private String workCellCode;
|
|
|
|
|
|
|
|
|
|
@ApiParam("触发类型")
|
|
|
|
|
private Integer triggerType;
|
|
|
|
|
|
|
|
|
|
public StepModel() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public StepModel(String stepCode, String stepName, String stepText, String stepType, String stepObject,
|
|
|
|
|
String routeCode, String processCode, Integer stepSeq, String paramCode, String stepDisplayName, String workCellCode) {
|
|
|
|
|
String routeCode, String processCode, Integer stepSeq, String paramCode, String stepDisplayName,
|
|
|
|
|
String workCellCode, Integer triggerType) {
|
|
|
|
|
this.stepCode = stepCode;
|
|
|
|
|
this.stepName = stepName;
|
|
|
|
|
this.stepText = stepText;
|
|
|
|
@ -98,5 +102,6 @@ public class StepModel implements Serializable {
|
|
|
|
|
this.paramCode = paramCode;
|
|
|
|
|
this.stepDisplayName = stepDisplayName;
|
|
|
|
|
this.workCellCode = workCellCode;
|
|
|
|
|
this.triggerType = triggerType;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|