From 8f7d6d46af8576c83ccd5063ad33a7ad3938003e Mon Sep 17 00:00:00 2001 From: "joke.wang" Date: Thu, 16 Jul 2020 20:59:44 +0800 Subject: [PATCH] Fix Bug #9457 --- .../src/main/java/cn/estsh/i3plus/pojo/mes/model/MesPlcModel.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/MesPlcModel.java b/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/MesPlcModel.java index 9a9ab5c..a5dd664 100644 --- a/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/MesPlcModel.java +++ b/modules/i3plus-pojo-mes/src/main/java/cn/estsh/i3plus/pojo/mes/model/MesPlcModel.java @@ -102,6 +102,9 @@ public class MesPlcModel implements Serializable { @ApiParam("默认赋值属性") private String defaultRule; + @ApiParam("工装代码") + private String toolingCode; + public MesPlcModel() { } @@ -109,7 +112,8 @@ public class MesPlcModel implements Serializable { public MesPlcModel(Long id, String equipmentCode, String equipmentName, Integer isValid, Integer isDeleted, String createUser, String createDatetime, String modifyUser, String modifyDatetime, String organizeCode, String plcCode, String plcName, String plcModel, String plcIp, String channel, String tagName, String tagAddress, String dataType, String groupName, - String workCenterCode, String workCellCode, String plcCfg, String analysisRule, String isAnalysis, String device, String objectCode, String opcUrl, Integer plcType, String defaultRule) { + String workCenterCode, String workCellCode, String plcCfg, String analysisRule, String isAnalysis, String device, + String objectCode, String opcUrl, Integer plcType, String defaultRule, String toolingCode) { this.id = id; this.equipmentCode = equipmentCode; this.equipmentName = equipmentName; @@ -139,5 +143,6 @@ public class MesPlcModel implements Serializable { this.opcUrl = opcUrl; this.plcType = plcType; this.defaultRule = defaultRule; + this.toolingCode = toolingCode; } }