|
@ -16,6 +16,8 @@ public class PatientDevice extends IdEntity {
|
|
|
private Long deviceId;
|
|
|
// 设备标识
|
|
|
private String deviceSn;
|
|
|
//sim卡号
|
|
|
private String sim;
|
|
|
// 设备名称
|
|
|
private String deviceName;
|
|
|
// 用户code
|
|
@ -77,6 +79,15 @@ public class PatientDevice extends IdEntity {
|
|
|
this.deviceSn = deviceSn;
|
|
|
}
|
|
|
|
|
|
@Column(name="sim")
|
|
|
public String getSim() {
|
|
|
return sim;
|
|
|
}
|
|
|
|
|
|
public void setSim(String sim) {
|
|
|
this.sim = sim;
|
|
|
}
|
|
|
|
|
|
@Column(name="device_name")
|
|
|
public String getDeviceName() {
|
|
|
return deviceName;
|