修改 device id
This commit is contained in:
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user