工位扫描添加工步触发条件

yun-zuoyi
wynne1005 5 years ago
parent 3030a109b2
commit 763b88b420

@ -51,6 +51,10 @@ public class MesStep extends BaseBean implements Serializable {
@ApiParam("工步对象") @ApiParam("工步对象")
private String stepObject; private String stepObject;
@Column(name = "TRIGGER_TYPE")
@ApiParam("触发类型")
private Integer triggerType;
/** /**
* 使 * 使
*/ */

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

Loading…
Cancel
Save