Commit 1502178f authored by maqing's avatar maqing

3.失能申请列表模块:医保统筹区改为下拉框

parent 8bcde9dc
......@@ -115,8 +115,7 @@ public class DisableServiceImpl implements DisableService {
public DisableExamineInfoVO disableExamineInfo(String applyId) {
DisableExamineInfoVO disableExamineInfoVO = disableApplyMapper.selectDisableExamineInfoByApplyId(applyId);
List<ExamineRecord> examineRecords = disableApplyMapper.listExamineRecordByApplyId(applyId);
disableExamineInfoVO.setExamineRecords(examineRecords);
try {
try { disableExamineInfoVO.setExamineRecords(examineRecords);
// zhangch 20210525 新增返回对应的附件列表
Result<List<ChFndAttach>> listResult = attachFeignService.selectAttachs(Long.valueOf(applyId), AttachType.DISABLE.getUploadType());
if (listResult.getCode().equals(ResultCode.SUCCESS.getCode())) {
......
......@@ -119,7 +119,10 @@
a.APPLY_STATUS applyStatus,
a.CHECK_REMARK checkRemark,
a.REASONS_REVIEW reasonsReview,
a.REASONS_REMARK reasonsRemark
a.REASONS_REMARK reasonsRemark,
a.MEDICAL_PROVINCIAL medicalProvincial,
a.MEDICAL_CITY medicalCity,
a.MEDICAL_AREA medicalArea
from CH_DISABLE_APPLY a
LEFT JOIN CH_SRV_ORGAN o ON a.SRV_ORGAN_ID = o.SRV_ORGAN_ID
where a.APPLY_ID = #{applyId}
......
......@@ -191,7 +191,7 @@ public class ChAprOrgan implements Serializable {
*/
private String linkMail;
// /**
// /** GROUPDETAILID
// * 评定起点地址id
// */
// private Long groupDetailId;
......
......@@ -31,6 +31,20 @@ public class DisableExamineInfoVO {
private String gender;
//手机
private String tel;
/**
*医保统筹区省
*/
private String medicalProvincial;
/**
*医保统筹区市
*/
private String medicalCity;
/**
*医保统筹区区
*/
private String medicalArea;
//所在户籍
private String regist;
//固话
......
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