|
@ -17,7 +17,7 @@ import java.util.Date;
|
|
|
@Table(name = "wlyy_prenatal_inspector_plan")
|
|
|
public class PrenatalInspectorPlan extends IdEntity implements Serializable {
|
|
|
|
|
|
private String inspectionCode;//产检code
|
|
|
private String inspectionCode;//产检code,有建卡记录才有值
|
|
|
private String patient;//居民code
|
|
|
private String name;//名称
|
|
|
private Date inspectionTime;//产检时间
|
|
@ -29,6 +29,7 @@ public class PrenatalInspectorPlan extends IdEntity implements Serializable {
|
|
|
private String status;//产检状态(0未产检,1已产检)
|
|
|
private String inspectionPhase;//检查阶段(1社区检查,2医院检查)
|
|
|
private String signHospital;//签约医院code(已签约且社区检查阶段才有值)
|
|
|
private String del;//1: 正常 0: 删除
|
|
|
private Date czrq;//创建日期
|
|
|
|
|
|
public String getInspectionCode() {
|
|
@ -142,4 +143,12 @@ public class PrenatalInspectorPlan extends IdEntity implements Serializable {
|
|
|
public void setCzrq(Date czrq) {
|
|
|
this.czrq = czrq;
|
|
|
}
|
|
|
|
|
|
public String getDel() {
|
|
|
return del;
|
|
|
}
|
|
|
|
|
|
public void setDel(String del) {
|
|
|
this.del = del;
|
|
|
}
|
|
|
}
|