扩展dispatcher model

yun-zuoyi
wynne1005 5 years ago
parent 07bd46fe64
commit 4d608dd4c3

@ -21,7 +21,8 @@ public class MesPcnEnumUtil {
REVEAL_MODULE(20, "展示组件"),
BUTTON_MODULE(30, "按钮组件"),
TIMING_MODULE(40, "定时组件"),
PCS_BACK_MODULE(50, "工序后台组件");
PCS_BACK_MODULE(50, "工序后台组件"),
PLC_CALLBACK_MODULE(60, "PLC回调工位参数");
private int value;
private String description;

@ -138,6 +138,10 @@ public class MesPlc extends BaseBean implements Serializable {
@ApiParam("数据方向 10 plc->mes 20 mes->plc 30共用地址")
private Integer dataDirect;
@Column(name = "CALLBACK_METHOD")
@ApiParam("回调方法名称")
private String callbackMethod;
@Transient
@ApiParam("设备名称")
private String equipmentName;

@ -22,6 +22,10 @@ public class StepDispatchModel {
private String moduleDataMapKey;
private String pfKey;
private String dlKey;
private String scanInfo;
public StepDispatchModel(String stepListKey, String firstScanKey, String cellParamKey, String requestBeanKey, String moduleDataMapKey, String scanInfo) {

Loading…
Cancel
Save