Commit 49519db8 authored by 蔡镇泽's avatar 蔡镇泽

增加字段

parent 3f9e17a6
...@@ -14,6 +14,8 @@ ...@@ -14,6 +14,8 @@
disable.real_name realName, disable.real_name realName,
task.fcd fcd, task.fcd fcd,
disable.certi_code certiCode, disable.certi_code certiCode,
task.pol_no polNo,
task.remark remark,
disable.BIRTHDAY birthday, disable.BIRTHDAY birthday,
(select DISE_TYPE_CODE from CH_FND_DISEASE_TYPE where disable.DISE_TYPE_F = DISE_TYPE_ID) diseTypeF, (select DISE_TYPE_CODE from CH_FND_DISEASE_TYPE where disable.DISE_TYPE_F = DISE_TYPE_ID) diseTypeF,
(select DISE_TYPE_CODE from CH_FND_DISEASE_TYPE where disable.DISE_TYPE_S = DISE_TYPE_ID) diseTypeS, (select DISE_TYPE_CODE from CH_FND_DISEASE_TYPE where disable.DISE_TYPE_S = DISE_TYPE_ID) diseTypeS,
...@@ -108,6 +110,8 @@ ...@@ -108,6 +110,8 @@
report.disable_level_id disableLevelId, report.disable_level_id disableLevelId,
info.REAL_NAME realName, info.REAL_NAME realName,
info.CERTI_CODE certiCode, info.CERTI_CODE certiCode,
task.pol_no polNo,
task.remark remark,
info.birthday birthday, info.birthday birthday,
(SELECT DISE_TYPE_CODE FROM CH_FND_DISEASE_TYPE WHERE info.DISE_TYPE_F = DISE_TYPE_ID) diseTypeF, (SELECT DISE_TYPE_CODE FROM CH_FND_DISEASE_TYPE WHERE info.DISE_TYPE_F = DISE_TYPE_ID) diseTypeF,
(SELECT DISE_TYPE_CODE FROM CH_FND_DISEASE_TYPE WHERE info.DISE_TYPE_S = DISE_TYPE_ID) diseTypeS, (SELECT DISE_TYPE_CODE FROM CH_FND_DISEASE_TYPE WHERE info.DISE_TYPE_S = DISE_TYPE_ID) diseTypeS,
......
...@@ -26,6 +26,10 @@ public class TaskDistributionVO { ...@@ -26,6 +26,10 @@ public class TaskDistributionVO {
private Date fcd; private Date fcd;
//失能人员身份证号码 //失能人员身份证号码
private String certiCode; private String certiCode;
//保单号
private String polNo;
//备注
private String remark;
//年龄 //年龄
@JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
private Date birthday;//出生年月 private Date birthday;//出生年月
......
...@@ -26,6 +26,10 @@ public class TaskReportVO { ...@@ -26,6 +26,10 @@ public class TaskReportVO {
private String realName; private String realName;
//失能人员身份证号码 //失能人员身份证号码
private String certiCode; private String certiCode;
//保单号
private String polNo;
//备注
private String remark;
//评估时间 //评估时间
@JsonFormat(pattern = "yyyy-MM-dd") @JsonFormat(pattern = "yyyy-MM-dd")
private Date evaluateTime; private Date evaluateTime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment