|
@ -0,0 +1,60 @@
|
|
|
package com.yihu.jw.entity.iot.device;
|
|
|
|
|
|
import com.yihu.jw.entity.IdEntityWithCreateTime;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
/**
|
|
|
* Created by yeshijie on 2023/7/7.
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "iot_device_upload_record")
|
|
|
public class IotDeviceUploadRecordDO extends IdEntityWithCreateTime {
|
|
|
|
|
|
private String jsonData;//体征数据
|
|
|
private String deviceSn;//设备唯一码
|
|
|
private String categoryCode;//设备类型
|
|
|
private String hospital;//归属社区
|
|
|
private Integer status;//状态0 未处理 1已处理
|
|
|
|
|
|
public String getJsonData() {
|
|
|
return jsonData;
|
|
|
}
|
|
|
|
|
|
public void setJsonData(String jsonData) {
|
|
|
this.jsonData = jsonData;
|
|
|
}
|
|
|
|
|
|
public String getDeviceSn() {
|
|
|
return deviceSn;
|
|
|
}
|
|
|
|
|
|
public void setDeviceSn(String deviceSn) {
|
|
|
this.deviceSn = deviceSn;
|
|
|
}
|
|
|
|
|
|
public String getCategoryCode() {
|
|
|
return categoryCode;
|
|
|
}
|
|
|
|
|
|
public void setCategoryCode(String categoryCode) {
|
|
|
this.categoryCode = categoryCode;
|
|
|
}
|
|
|
|
|
|
public String getHospital() {
|
|
|
return hospital;
|
|
|
}
|
|
|
|
|
|
public void setHospital(String hospital) {
|
|
|
this.hospital = hospital;
|
|
|
}
|
|
|
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
}
|