Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
long-tern-care-service
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hubin
long-tern-care-service
Commits
1502178f
Commit
1502178f
authored
Feb 02, 2023
by
maqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3.失能申请列表模块:医保统筹区改为下拉框
parent
8bcde9dc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
4 deletions
+20
-4
DisableServiceImpl.java
...ava/com/hungraim/ltc/service/impl/DisableServiceImpl.java
+1
-2
ChDisableApplyMapper.xml
...ervice/src/main/resources/mapper/ChDisableApplyMapper.xml
+4
-1
ChAprOrgan.java
...om/hungraim/ltc/pojo/entity/serviceManage/ChAprOrgan.java
+1
-1
DisableExamineInfoVO.java
...om/hungraim/ltc/pojo/vo/disable/DisableExamineInfoVO.java
+14
-0
No files found.
apply/apply-service/src/main/java/com/hungraim/ltc/service/impl/DisableServiceImpl.java
View file @
1502178f
...
@@ -115,8 +115,7 @@ public class DisableServiceImpl implements DisableService {
...
@@ -115,8 +115,7 @@ public class DisableServiceImpl implements DisableService {
public
DisableExamineInfoVO
disableExamineInfo
(
String
applyId
)
{
public
DisableExamineInfoVO
disableExamineInfo
(
String
applyId
)
{
DisableExamineInfoVO
disableExamineInfoVO
=
disableApplyMapper
.
selectDisableExamineInfoByApplyId
(
applyId
);
DisableExamineInfoVO
disableExamineInfoVO
=
disableApplyMapper
.
selectDisableExamineInfoByApplyId
(
applyId
);
List
<
ExamineRecord
>
examineRecords
=
disableApplyMapper
.
listExamineRecordByApplyId
(
applyId
);
List
<
ExamineRecord
>
examineRecords
=
disableApplyMapper
.
listExamineRecordByApplyId
(
applyId
);
disableExamineInfoVO
.
setExamineRecords
(
examineRecords
);
try
{
disableExamineInfoVO
.
setExamineRecords
(
examineRecords
);
try
{
// zhangch 20210525 新增返回对应的附件列表
// zhangch 20210525 新增返回对应的附件列表
Result
<
List
<
ChFndAttach
>>
listResult
=
attachFeignService
.
selectAttachs
(
Long
.
valueOf
(
applyId
),
AttachType
.
DISABLE
.
getUploadType
());
Result
<
List
<
ChFndAttach
>>
listResult
=
attachFeignService
.
selectAttachs
(
Long
.
valueOf
(
applyId
),
AttachType
.
DISABLE
.
getUploadType
());
if
(
listResult
.
getCode
().
equals
(
ResultCode
.
SUCCESS
.
getCode
()))
{
if
(
listResult
.
getCode
().
equals
(
ResultCode
.
SUCCESS
.
getCode
()))
{
...
...
apply/apply-service/src/main/resources/mapper/ChDisableApplyMapper.xml
View file @
1502178f
...
@@ -119,7 +119,10 @@
...
@@ -119,7 +119,10 @@
a.APPLY_STATUS applyStatus,
a.APPLY_STATUS applyStatus,
a.CHECK_REMARK checkRemark,
a.CHECK_REMARK checkRemark,
a.REASONS_REVIEW reasonsReview,
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
from CH_DISABLE_APPLY a
LEFT JOIN CH_SRV_ORGAN o ON a.SRV_ORGAN_ID = o.SRV_ORGAN_ID
LEFT JOIN CH_SRV_ORGAN o ON a.SRV_ORGAN_ID = o.SRV_ORGAN_ID
where a.APPLY_ID = #{applyId}
where a.APPLY_ID = #{applyId}
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/serviceManage/ChAprOrgan.java
View file @
1502178f
...
@@ -191,7 +191,7 @@ public class ChAprOrgan implements Serializable {
...
@@ -191,7 +191,7 @@ public class ChAprOrgan implements Serializable {
*/
*/
private
String
linkMail
;
private
String
linkMail
;
// /**
// /**
GROUPDETAILID
// * 评定起点地址id
// * 评定起点地址id
// */
// */
// private Long groupDetailId;
// private Long groupDetailId;
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/vo/disable/DisableExamineInfoVO.java
View file @
1502178f
...
@@ -31,6 +31,20 @@ public class DisableExamineInfoVO {
...
@@ -31,6 +31,20 @@ public class DisableExamineInfoVO {
private
String
gender
;
private
String
gender
;
//手机
//手机
private
String
tel
;
private
String
tel
;
/**
*医保统筹区省
*/
private
String
medicalProvincial
;
/**
*医保统筹区市
*/
private
String
medicalCity
;
/**
*医保统筹区区
*/
private
String
medicalArea
;
//所在户籍
//所在户籍
private
String
regist
;
private
String
regist
;
//固话
//固话
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment