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
f9a14550
Commit
f9a14550
authored
Apr 23, 2021
by
蔡镇泽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
设置时区解决返回日期少一天的问题
parent
5e4bdc6a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
TaskDistributionVO.java
...m/hungraim/ltc/pojo/vo/assessment/TaskDistributionVO.java
+5
-5
TaskGroupVO.java
...java/com/hungraim/ltc/pojo/vo/assessment/TaskGroupVO.java
+1
-1
TaskReportVO.java
...ava/com/hungraim/ltc/pojo/vo/assessment/TaskReportVO.java
+3
-3
DisableVO.java
...main/java/com/hungraim/ltc/pojo/vo/disable/DisableVO.java
+1
-1
No files found.
common/common-core/src/main/java/com/hungraim/ltc/pojo/vo/assessment/TaskDistributionVO.java
View file @
f9a14550
...
@@ -22,7 +22,7 @@ public class TaskDistributionVO {
...
@@ -22,7 +22,7 @@ public class TaskDistributionVO {
//失能人员姓名
//失能人员姓名
private
String
realName
;
private
String
realName
;
//申请日期
//申请日期
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
fcd
;
private
Date
fcd
;
//失能人员身份证号码
//失能人员身份证号码
private
String
certiCode
;
private
String
certiCode
;
...
@@ -31,7 +31,7 @@ public class TaskDistributionVO {
...
@@ -31,7 +31,7 @@ public class TaskDistributionVO {
//备注
//备注
private
String
remark
;
private
String
remark
;
//年龄
//年龄
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
birthday
;
//出生年月
private
Date
birthday
;
//出生年月
//诊断疾病
//诊断疾病
private
String
diseTypeF
;
//大类
private
String
diseTypeF
;
//大类
...
@@ -72,13 +72,13 @@ public class TaskDistributionVO {
...
@@ -72,13 +72,13 @@ public class TaskDistributionVO {
//评定人员所属机构名称
//评定人员所属机构名称
private
String
empOrganName
;
private
String
empOrganName
;
//任务分配时间
//任务分配时间
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
assignTime
;
private
Date
assignTime
;
//任务接受时间
//任务接受时间
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
acceptTime
;
private
Date
acceptTime
;
//任务完成时间
//任务完成时间
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
finishTime
;
private
Date
finishTime
;
//任务状态
//任务状态
private
Integer
taskStatus
;
private
Integer
taskStatus
;
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/vo/assessment/TaskGroupVO.java
View file @
f9a14550
...
@@ -13,7 +13,7 @@ public class TaskGroupVO {
...
@@ -13,7 +13,7 @@ public class TaskGroupVO {
//任务推送id
//任务推送id
private
Integer
taskPushId
;
private
Integer
taskPushId
;
//任务分配日期
//任务分配日期
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
assignTime
;
private
Date
assignTime
;
//机构代码
//机构代码
private
Integer
aprOrganId
;
private
Integer
aprOrganId
;
...
...
common/common-core/src/main/java/com/hungraim/ltc/pojo/vo/assessment/TaskReportVO.java
View file @
f9a14550
...
@@ -31,10 +31,10 @@ public class TaskReportVO {
...
@@ -31,10 +31,10 @@ public class TaskReportVO {
//备注
//备注
private
String
remark
;
private
String
remark
;
//评估时间
//评估时间
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
evaluateTime
;
private
Date
evaluateTime
;
//出生年月
//出生年月
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
birthday
;
private
Date
birthday
;
//诊断疾病
//诊断疾病
private
String
diseTypeF
;
private
String
diseTypeF
;
...
@@ -64,6 +64,6 @@ public class TaskReportVO {
...
@@ -64,6 +64,6 @@ public class TaskReportVO {
//评定结果
//评定结果
private
String
riskLevel
;
private
String
riskLevel
;
//录入时间
//录入时间
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
effTime
;
private
Date
effTime
;
}
}
common/common-core/src/main/java/com/hungraim/ltc/pojo/vo/disable/DisableVO.java
View file @
f9a14550
...
@@ -32,7 +32,7 @@ public class DisableVO implements Serializable {
...
@@ -32,7 +32,7 @@ public class DisableVO implements Serializable {
//联系人姓名
//联系人姓名
private
String
opername
;
private
String
opername
;
//年龄
//年龄
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
private
Date
birthday
;
private
Date
birthday
;
//性别
//性别
private
String
gender
;
private
String
gender
;
...
...
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