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
5c383711
Commit
5c383711
authored
Feb 23, 2023
by
“xuhd”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
问题62、新增:评定结论公示送达日期(评定送达后才能机构才能录入人员信息)
评定报告录入: 增加公示开始日期 ,公示完成日期 (待公示,公示中,公示完成)
parent
128e24e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
TaskController.java
...main/java/com/hungraim/ltc/controller/TaskController.java
+2
-2
ChAprReport.java
.../com/hungraim/ltc/pojo/entity/assessment/ChAprReport.java
+4
-0
No files found.
assessment/assessment-service/src/main/java/com/hungraim/ltc/controller/TaskController.java
View file @
5c383711
...
@@ -272,8 +272,8 @@ public class TaskController {
...
@@ -272,8 +272,8 @@ public class TaskController {
}
}
newChAprReport
.
setPublicityStartTime
(
updateChAprReport
.
getPublicityStartTime
());
newChAprReport
.
setPublicityStartTime
(
updateChAprReport
.
getPublicityStartTime
());
newChAprReport
.
setPublicityEndTime
(
updateChAprReport
.
getPublicityEndTime
());
newChAprReport
.
setPublicityEndTime
(
updateChAprReport
.
getPublicityEndTime
());
newChAprReport
.
setLcd
(
new
Date
());
//更新时间
newChAprReport
.
set
Publicity
Lcd
(
new
Date
());
//更新时间
newChAprReport
.
setLcu
(
userId
);
//更新人
newChAprReport
.
set
Publicity
Lcu
(
userId
);
//更新人
newChAprReport
.
setReportId
(
updateChAprReport
.
getReportId
());
newChAprReport
.
setReportId
(
updateChAprReport
.
getReportId
());
aprReportMapper
.
updateById
(
newChAprReport
);
aprReportMapper
.
updateById
(
newChAprReport
);
return
Result
.
success
();
return
Result
.
success
();
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/assessment/ChAprReport.java
View file @
5c383711
...
@@ -7,6 +7,8 @@ import com.baomidou.mybatisplus.annotation.TableName;
...
@@ -7,6 +7,8 @@ import com.baomidou.mybatisplus.annotation.TableName;
import
lombok.Data
;
import
lombok.Data
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
java.util.Date
;
@Data
@Data
@TableName
(
"CH_APR_REPORT"
)
@TableName
(
"CH_APR_REPORT"
)
@KeySequence
(
value
=
"SEQ_CH_APR_REPORT"
)
@KeySequence
(
value
=
"SEQ_CH_APR_REPORT"
)
...
@@ -49,4 +51,6 @@ public class ChAprReport {
...
@@ -49,4 +51,6 @@ public class ChAprReport {
private
Integer
lcu
;
private
Integer
lcu
;
private
java
.
util
.
Date
publicityTime
;
private
java
.
util
.
Date
publicityTime
;
private
Integer
publicityUser
;
private
Integer
publicityUser
;
private
Date
publicityLcd
;
private
Integer
publicityLcu
;
}
}
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