Commit e98c5194 authored by 吴俊凯's avatar 吴俊凯

修改systemId字段

parent d5a47667
......@@ -29,7 +29,7 @@ public class EquipmentSpecific extends BasicEntity {
private Boolean single;
@Column(name="system_id")
private Long systemId;
private String systemId;
@Column(name="iot_code")
private String iotCode;
......@@ -52,7 +52,7 @@ public class EquipmentSpecific extends BasicEntity {
this.single = single;
}
public void setSystemId(Long systemId) {
public void setSystemId(String systemId) {
this.systemId = systemId;
}
......@@ -80,7 +80,7 @@ public class EquipmentSpecific extends BasicEntity {
return single;
}
public Long getSystemId() {
public String getSystemId() {
return systemId;
}
......@@ -96,7 +96,7 @@ public class EquipmentSpecific extends BasicEntity {
return code;
}
public EquipmentSpecific(Long equipmentDetailId, String qrCode, Boolean single, Long systemId, String iotCode, String orgCode, String code) {
public EquipmentSpecific(Long equipmentDetailId, String qrCode, Boolean single, String systemId, String iotCode, String orgCode, String code) {
this.equipmentDetailId = equipmentDetailId;
this.qrCode = qrCode;
this.single = single;
......
......@@ -36,7 +36,7 @@ public class EquipmentSpecificForRiskVo {
private int single;
@ApiModelProperty(value = "所属系统")
private int systemId;
private String systemId;
@ApiModelProperty(value = "物联code")
private String iotCode;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment