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
e3b6a677
Commit
e3b6a677
authored
Mar 04, 2022
by
liuxun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge
parent
48ece297
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
ChAprOrgan.java
...om/hungraim/ltc/pojo/entity/serviceManage/ChAprOrgan.java
+15
-2
AprOrganServiceImpl.java
...raim/ltc/governance/service/impl/AprOrganServiceImpl.java
+0
-4
No files found.
common/common-core/src/main/java/com/hungraim/ltc/pojo/entity/serviceManage/ChAprOrgan.java
View file @
e3b6a677
...
...
@@ -4,7 +4,9 @@ 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
com.fasterxml.jackson.annotation.JsonFormat
;
import
lombok.Data
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
java.io.Serializable
;
import
java.util.Date
;
...
...
@@ -42,6 +44,8 @@ public class ChAprOrgan implements Serializable {
/**
* 创建时间
*/
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
effTime
;
/**
...
...
@@ -52,11 +56,15 @@ public class ChAprOrgan implements Serializable {
/**
* 终止时间
*/
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
endTime
;
/**
* 首次操作时间
*/
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
fcd
;
/**
...
...
@@ -67,6 +75,8 @@ public class ChAprOrgan implements Serializable {
/**
* 末次操作时间
*/
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
lcd
;
/**
...
...
@@ -259,6 +269,8 @@ public class ChAprOrgan implements Serializable {
/**
* 审核时间(长护)
*/
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
checkTimeCh
;
/**
...
...
@@ -279,6 +291,8 @@ public class ChAprOrgan implements Serializable {
/**
* 审核时间(理赔)
*/
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
checkTimeLp
;
/**
...
...
@@ -287,4 +301,4 @@ public class ChAprOrgan implements Serializable {
private
Short
checkStatusLp
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
}
governance/src/main/java/com/hungraim/ltc/governance/service/impl/AprOrganServiceImpl.java
View file @
e3b6a677
...
...
@@ -73,10 +73,6 @@ public class AprOrganServiceImpl extends ServiceImpl<AprOrganMapper, ChAprOrgan>
if
(
chAprOrgan
.
getAprOrganId
()
==
null
)
{
//新增
chAprOrgan
.
setEffTime
(
new
Date
());
chAprOrgan
.
setEndTime
(
new
Date
());
chAprOrgan
.
setLcd
(
new
Date
());
chAprOrgan
.
setCheckTimeCh
(
new
Date
());
chAprOrgan
.
setCheckTimeLp
(
new
Date
());
chAprOrgan
.
setStatus
((
short
)
0
);
aprOrganMapper
.
insert
(
chAprOrgan
);
}
else
{
...
...
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