You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
937 B
40 lines
937 B
2 years ago
|
package com.ynxbd.common.bean.his;
|
||
|
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
@Getter
|
||
|
@Setter
|
||
|
@ToString
|
||
|
@NoArgsConstructor
|
||
|
public class HisTreat {
|
||
|
private String mzNum;
|
||
|
private String registerDate;
|
||
|
private String patientId;
|
||
|
private String patientName;
|
||
|
private String deptCode;
|
||
|
private String deptName;
|
||
|
// 挂号医生
|
||
|
private String doctCode;
|
||
|
private String doctName;
|
||
|
// 处理意见 | 措施
|
||
|
private String advice;
|
||
|
// 西医诊断
|
||
|
private String diagnose;
|
||
|
private String diagnoseCode;
|
||
|
// 中医诊断
|
||
|
private String diagnoseZY;
|
||
|
private String diagnoseCodeZY;
|
||
|
private String symptom;
|
||
|
private String complaint;
|
||
|
// 接诊医师
|
||
|
private String processDoctorCode;
|
||
|
private String processDoctorName;
|
||
|
// 接诊日期
|
||
|
private String processDate;
|
||
|
|
||
|
}
|