|
@ -16,6 +16,12 @@ public class WlyyInspectionDO extends UuidIdentityEntity {
|
|
|
|
|
|
private String outpatientId;//门诊id',
|
|
private String outpatientId;//门诊id',
|
|
private String prescriptionId;//处方id',
|
|
private String prescriptionId;//处方id',
|
|
|
|
|
|
|
|
private String dept;//执行科室
|
|
|
|
private String deptName;//执行科室名称
|
|
|
|
private Integer quantity;//数量
|
|
|
|
private String frequency;//组号
|
|
|
|
|
|
private String code;//项目编码',
|
|
private String code;//项目编码',
|
|
private String name;//(检查方法)',
|
|
private String name;//(检查方法)',
|
|
private String information;//病史与体征',
|
|
private String information;//病史与体征',
|
|
@ -36,6 +42,10 @@ public class WlyyInspectionDO extends UuidIdentityEntity {
|
|
// private String dCode;//自定义码',
|
|
// private String dCode;//自定义码',
|
|
// private String execUnit;//执行科室',
|
|
// private String execUnit;//执行科室',
|
|
// private String winNo;//院区',
|
|
// private String winNo;//院区',
|
|
|
|
private String checkbox;//是否拆分 1是,0否
|
|
|
|
private String mzpg;//麻醉评估 0否,1有
|
|
|
|
private String sfzg;//是否做过 0 否 和 1是
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
private Date createTime;//,
|
|
private Date createTime;//,
|
|
|
|
|
|
@ -174,4 +184,60 @@ public class WlyyInspectionDO extends UuidIdentityEntity {
|
|
public void setBlzd(String blzd) {
|
|
public void setBlzd(String blzd) {
|
|
this.blzd = blzd;
|
|
this.blzd = blzd;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getDept() {
|
|
|
|
return dept;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDept(String dept) {
|
|
|
|
this.dept = dept;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDeptName() {
|
|
|
|
return deptName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDeptName(String deptName) {
|
|
|
|
this.deptName = deptName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Integer getQuantity() {
|
|
|
|
return quantity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setQuantity(Integer quantity) {
|
|
|
|
this.quantity = quantity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFrequency() {
|
|
|
|
return frequency;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFrequency(String frequency) {
|
|
|
|
this.frequency = frequency;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getCheckbox() {
|
|
|
|
return checkbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCheckbox(String checkbox) {
|
|
|
|
this.checkbox = checkbox;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getMzpg() {
|
|
|
|
return mzpg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMzpg(String mzpg) {
|
|
|
|
this.mzpg = mzpg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSfzg() {
|
|
|
|
return sfzg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSfzg(String sfzg) {
|
|
|
|
this.sfzg = sfzg;
|
|
|
|
}
|
|
}
|
|
}
|