|
@@ -1,6 +1,8 @@
|
|
|
package com.wdkl.infoboardclassic.data;
|
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson.annotation.JSONField;
|
|
|
+
|
|
|
/**
|
|
|
* 病人信息
|
|
|
*
|
|
@@ -8,81 +10,117 @@ package com.wdkl.infoboardclassic.data;
|
|
|
*/
|
|
|
public class PatientInfoBean {
|
|
|
|
|
|
+ @JSONField(name = "his_phoc_id")
|
|
|
private String hisPhocId;
|
|
|
|
|
|
+ @JSONField(name = "his_id")
|
|
|
private String hisId;
|
|
|
|
|
|
+ @JSONField(name = "frame_id")
|
|
|
private Integer frameId;
|
|
|
|
|
|
+ @JSONField(name = "device_id")
|
|
|
private Integer deviceId;
|
|
|
|
|
|
+ @JSONField(name = "card_id")
|
|
|
private String cardId;
|
|
|
|
|
|
+ @JSONField(name = "name")
|
|
|
private String name;
|
|
|
|
|
|
+ @JSONField(name = "name_py")
|
|
|
private String namePy;
|
|
|
|
|
|
+ @JSONField(name = "sex")
|
|
|
private Integer sex;
|
|
|
|
|
|
+ @JSONField(name = "age")
|
|
|
private Integer age;
|
|
|
|
|
|
+ @JSONField(name = "age_unit")
|
|
|
private Integer ageUnit;
|
|
|
|
|
|
+ @JSONField(name = "birthday")
|
|
|
private Long birthday;
|
|
|
|
|
|
+ @JSONField(name = "idcard")
|
|
|
private String idcard;
|
|
|
|
|
|
+ @JSONField(name = "address")
|
|
|
private String address;
|
|
|
|
|
|
+ @JSONField(name = "mobile")
|
|
|
private String mobile;
|
|
|
|
|
|
- private Long indate;
|
|
|
+ @JSONField(name = "in_date")
|
|
|
+ private Long inDate;
|
|
|
+
|
|
|
+ @JSONField(name = "out_date")
|
|
|
+ private Long outDate;
|
|
|
|
|
|
+ @JSONField(name = "doctor_id")
|
|
|
private Integer doctorId;
|
|
|
|
|
|
+ @JSONField(name = "nurse_id")
|
|
|
private Integer nurseId;
|
|
|
|
|
|
+ @JSONField(name = "aide_id")
|
|
|
private Integer aideId;
|
|
|
|
|
|
+ @JSONField(name = "grade_level")
|
|
|
private Integer gradeLevel;
|
|
|
|
|
|
+ @JSONField(name = "dosage_level")
|
|
|
private Integer dosageLevel;
|
|
|
|
|
|
+ @JSONField(name = "diet_level")
|
|
|
private Integer dietLevel;
|
|
|
|
|
|
+ @JSONField(name = "insulate_level")
|
|
|
private Integer insulateLevel;
|
|
|
|
|
|
+ @JSONField(name = "alleray_level")
|
|
|
private Integer allerayLevel;
|
|
|
|
|
|
+ @JSONField(name = "intimes")
|
|
|
private Integer intimes;
|
|
|
|
|
|
+ @JSONField(name = "status")
|
|
|
private Integer status;
|
|
|
|
|
|
+ @JSONField(name = "illness_description")
|
|
|
private String illnessDescription;
|
|
|
|
|
|
private Long id;
|
|
|
|
|
|
+ @JSONField(name = "create_time")
|
|
|
private Long createTime;
|
|
|
|
|
|
+ @JSONField(name = "archived")
|
|
|
private Boolean archived;
|
|
|
|
|
|
+ @JSONField(name = "update_time")
|
|
|
private Long updateTime;
|
|
|
|
|
|
+ @JSONField(name = "sync_time")
|
|
|
private Long syncTime;
|
|
|
|
|
|
+ @JSONField(name = "server_id")
|
|
|
private Integer serverId;
|
|
|
|
|
|
+ @JSONField(name = "client_id")
|
|
|
private Long clientId;
|
|
|
|
|
|
+ @JSONField(name = "part_id")
|
|
|
private Integer partId;
|
|
|
|
|
|
public PatientInfoBean(String hisPhocId, String hisId, Integer frameId, Integer deviceId,
|
|
|
String cardId, String name, String namePy, Integer sex, Integer age, Integer ageUnit,
|
|
|
- Long birthday, String idcard, String address, String mobile, Long indate, Integer doctorId,
|
|
|
- Integer nurseId, Integer aideId, Integer gradeLevel, Integer dosageLevel, Integer dietLevel,
|
|
|
- Integer insulateLevel, Integer allerayLevel, Integer intimes, Integer status,
|
|
|
- String illnessDescription, Long id, Long createTime, Boolean archived, Long updateTime,
|
|
|
- Long syncTime, Integer serverId, Long clientId, Integer partId) {
|
|
|
+ Long birthday, String idcard, String address, String mobile, Long inDate, Long outDate,
|
|
|
+ Integer doctorId, Integer nurseId, Integer aideId, Integer gradeLevel, Integer dosageLevel,
|
|
|
+ Integer dietLevel, Integer insulateLevel, Integer allerayLevel, Integer intimes,
|
|
|
+ Integer status, String illnessDescription, Long id, Long createTime, Boolean archived,
|
|
|
+ Long updateTime, Long syncTime, Integer serverId, Long clientId, Integer partId) {
|
|
|
this.hisPhocId = hisPhocId;
|
|
|
this.hisId = hisId;
|
|
|
this.frameId = frameId;
|
|
@@ -97,7 +135,8 @@ public class PatientInfoBean {
|
|
|
this.idcard = idcard;
|
|
|
this.address = address;
|
|
|
this.mobile = mobile;
|
|
|
- this.indate = indate;
|
|
|
+ this.inDate = inDate;
|
|
|
+ this.outDate = outDate;
|
|
|
this.doctorId = doctorId;
|
|
|
this.nurseId = nurseId;
|
|
|
this.aideId = aideId;
|
|
@@ -299,14 +338,6 @@ public class PatientInfoBean {
|
|
|
this.mobile = mobile;
|
|
|
}
|
|
|
|
|
|
- public Long getIndate() {
|
|
|
- return this.indate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIndate(Long indate) {
|
|
|
- this.indate = indate;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getDoctorId() {
|
|
|
return this.doctorId;
|
|
|
}
|
|
@@ -395,4 +426,19 @@ public class PatientInfoBean {
|
|
|
this.illnessDescription = illnessDescription;
|
|
|
}
|
|
|
|
|
|
+ public Long getInDate() {
|
|
|
+ return this.inDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInDate(Long inDate) {
|
|
|
+ this.inDate = inDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getOutDate() {
|
|
|
+ return this.outDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOutDate(Long outDate) {
|
|
|
+ this.outDate = outDate;
|
|
|
+ }
|
|
|
}
|