修改 device id

This commit is contained in:
2025-06-28 21:16:48 +08:00
parent 38e93c9681
commit 1a56bd6526

View File

@ -128,7 +128,7 @@ public class EmsPcsData extends BaseEntity
/** 设备唯一标识符 */ /** 设备唯一标识符 */
@Excel(name = "设备唯一标识符") @Excel(name = "设备唯一标识符")
private Long deviceId; private String deviceId;
/** 月 */ /** 月 */
@Excel(name = "") @Excel(name = "")
@ -408,12 +408,12 @@ public class EmsPcsData extends BaseEntity
return siteId; return siteId;
} }
public void setDeviceId(Long deviceId) public void setDeviceId(String deviceId)
{ {
this.deviceId = deviceId; this.deviceId = deviceId;
} }
public Long getDeviceId() public String getDeviceId()
{ {
return deviceId; return deviceId;
} }