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
284a83e7
Commit
284a83e7
authored
Feb 15, 2023
by
“xuhd”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
问题96、疾病诊断新增维护
parent
a8fb741e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
6 deletions
+15
-6
ChDisableEvaluateMapper.xml
...ice/src/main/resources/mapper/ChDisableEvaluateMapper.xml
+2
-0
ChFndDiseaseType.java
...om/hungraim/ltc/pojo/entity/disable/ChFndDiseaseType.java
+5
-0
TaskDistributionVO.java
...m/hungraim/ltc/pojo/vo/assessment/TaskDistributionVO.java
+4
-0
NursingServiceItemsController.java
.../governance/controller/NursingServiceItemsController.java
+4
-6
No files found.
assessment/assessment-service/src/main/resources/mapper/ChDisableEvaluateMapper.xml
View file @
284a83e7
...
...
@@ -14,6 +14,8 @@
disable.real_name realName,
task.fcd fcd,
disable.certi_code certiCode,
disable.disease_desc diseaseDesc,
disable.adress_detail operAddress,
report.pol_no polNo,
report.remark remark,
disable.BIRTHDAY birthday,
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/disable/ChFndDiseaseType.java
View file @
284a83e7
package
com
.
hungraim
.
ltc
.
pojo
.
entity
.
disable
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.KeySequence
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
lombok.Data
;
...
...
@@ -8,7 +11,9 @@ import lombok.Data;
*/
@Data
@TableName
(
"CH_FND_DISEASE_TYPE"
)
@KeySequence
(
"SEQ_CH_FND_DISEASE_TYPE"
)
public
class
ChFndDiseaseType
{
@TableId
(
type
=
IdType
.
INPUT
)
private
Integer
diseTypeId
;
private
String
diseTypeCode
;
private
Integer
parDiseTypeId
;
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/vo/assessment/TaskDistributionVO.java
View file @
284a83e7
...
...
@@ -91,4 +91,8 @@ public class TaskDistributionVO {
private
String
refuseReason
;
//备注
private
String
refuseRemark
;
//诊断详情
private
String
diseaseDesc
;
//现住地址详细地址
private
String
operAddress
;
}
governance/src/main/java/com/hungraim/ltc/governance/controller/NursingServiceItemsController.java
View file @
284a83e7
...
...
@@ -15,10 +15,7 @@ import com.hungraim.ltc.util.ResultCode;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.lang.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.ArrayList
;
import
java.util.List
;
...
...
@@ -192,8 +189,9 @@ public class NursingServiceItemsController {
* @param chFndDiseaseTypes 疾病修改的信息
* @return 返回执行结果
*/
@DeleteMapping
(
"/saveDisease"
)
public
Result
saveDisease
(
List
<
ChFndDiseaseType
>
chFndDiseaseTypes
)
{
@RequestMapping
(
"/saveDisease"
)
public
Result
saveDisease
(
@RequestBody
List
<
ChFndDiseaseType
>
chFndDiseaseTypes
)
{
log
.
info
(
"saveDisease"
);
if
(
chFndDiseaseTypes
==
null
||
chFndDiseaseTypes
.
size
()
<=
0
)
{
return
Result
.
failed
(
ResultCode
.
REQUEST_PARAM_ERROR
);
}
...
...
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