|
|
|
@ -99,6 +99,9 @@ public class MesPlcModel implements Serializable {
|
|
|
|
|
@ApiParam("PLC类型")
|
|
|
|
|
private Integer plcType;
|
|
|
|
|
|
|
|
|
|
@ApiParam("默认赋值属性")
|
|
|
|
|
private String defaultRule;
|
|
|
|
|
|
|
|
|
|
public MesPlcModel() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -106,7 +109,7 @@ 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 workCenterCode, String workCellCode, String plcCfg, String analysisRule, String isAnalysis, String device, String objectCode, String opcUrl, Integer plcType, String defaultRule) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.equipmentCode = equipmentCode;
|
|
|
|
|
this.equipmentName = equipmentName;
|
|
|
|
@ -135,5 +138,6 @@ public class MesPlcModel implements Serializable {
|
|
|
|
|
this.objectCode = objectCode;
|
|
|
|
|
this.opcUrl = opcUrl;
|
|
|
|
|
this.plcType = plcType;
|
|
|
|
|
this.defaultRule = defaultRule;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|