Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
荆蔚杰
/
java.archive
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
8596309f
authored
2021-11-29 10:39:11 +0800
by
荆蔚杰
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
字段添加.时间格式统一
1 parent
e637195e
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
80 additions
and
46 deletions
src/main/java/com/pashanhoo/business/entity/vo/AddDgBusinessRequest.java
src/main/java/com/pashanhoo/business/entity/vo/DgBusinessDetailVO.java
src/main/java/com/pashanhoo/business/entity/vo/DgBusinessListVO.java
src/main/java/com/pashanhoo/business/entity/vo/DgBusinessSearchRequest.java
src/main/java/com/pashanhoo/business/entity/vo/UpdateDgBusinessRequest.java
src/main/java/com/pashanhoo/destroy/entity/vo/AddDgArchivesDestructionRequest.java
src/main/java/com/pashanhoo/destroy/entity/vo/DgArchivesDestructionDetailVO.java
src/main/java/com/pashanhoo/destroy/entity/vo/DgArchivesDestructionListVO.java
src/main/java/com/pashanhoo/destroy/entity/vo/DgArchivesDestructionSearchRequest.java
src/main/java/com/pashanhoo/destroy/entity/vo/UpdateDgArchivesDestructionRequest.java
src/main/java/com/pashanhoo/file/entity/vo/AddDgFileRequest.java
src/main/java/com/pashanhoo/file/entity/vo/DgFileDetailVO.java
src/main/java/com/pashanhoo/file/entity/vo/DgFileListVO.java
src/main/java/com/pashanhoo/file/entity/vo/DgFileSearchRequest.java
src/main/java/com/pashanhoo/file/entity/vo/UpdateDgFileRequest.java
src/main/java/com/pashanhoo/lend/entity/vo/AddDgLendRequest.java
src/main/java/com/pashanhoo/lend/entity/vo/DgLendListVO.java
src/main/java/com/pashanhoo/lend/entity/vo/UpdateDgLendRequest.java
src/main/java/com/pashanhoo/modify/entity/vo/AddDgArchivesModifyRequest.java
src/main/java/com/pashanhoo/modify/entity/vo/DgArchivesModifyDetailVO.java
src/main/java/com/pashanhoo/modify/entity/vo/DgArchivesModifySearchRequest.java
src/main/java/com/pashanhoo/modify/entity/vo/UpdateDgArchivesModifyRequest.java
src/main/java/com/pashanhoo/receive/entity/vo/AddDgReceiveRequest.java
src/main/java/com/pashanhoo/receive/entity/vo/DgReceiveDetailVO.java
src/main/java/com/pashanhoo/receive/entity/vo/DgReceiveListVO.java
src/main/java/com/pashanhoo/receive/entity/vo/UpdateDgReceiveRequest.java
src/main/java/com/pashanhoo/replenish/entity/vo/DgArchivesReplenishDetailVO.java
src/main/java/com/pashanhoo/replenish/entity/vo/DgArchivesReplenishListVO.java
src/main/java/com/pashanhoo/replenish/entity/vo/DgArchivesReplenishSearchRequest.java
src/main/java/com/pashanhoo/business/entity/vo/AddDgBusinessRequest.java
View file @
8596309
...
...
@@ -8,6 +8,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
javax.validation.constraints.NotEmpty
;
...
...
@@ -82,6 +83,7 @@ public class AddDgBusinessRequest implements Serializable {
*/
@NotEmpty
(
message
=
"收件时间【sjsj】不能为空"
)
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
src/main/java/com/pashanhoo/business/entity/vo/DgBusinessDetailVO.java
View file @
8596309
...
...
@@ -78,8 +78,7 @@ public class DgBusinessDetailVO implements Serializable {
* 收件时间
*/
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
src/main/java/com/pashanhoo/business/entity/vo/DgBusinessListVO.java
View file @
8596309
...
...
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -77,6 +78,7 @@ public class DgBusinessListVO implements Serializable {
* 收件时间
*/
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
src/main/java/com/pashanhoo/business/entity/vo/DgBusinessSearchRequest.java
View file @
8596309
...
...
@@ -8,6 +8,7 @@ import io.swagger.annotations.ApiModelProperty;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
com.pashanhoo.common.PageInfo
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -92,6 +93,7 @@ public class DgBusinessSearchRequest extends PageInfo implements Serializable {
* 收件时间
*/
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
src/main/java/com/pashanhoo/business/entity/vo/UpdateDgBusinessRequest.java
View file @
8596309
...
...
@@ -78,8 +78,7 @@ public class UpdateDgBusinessRequest implements Serializable {
* 收件时间
*/
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
src/main/java/com/pashanhoo/destroy/entity/vo/AddDgArchivesDestructionRequest.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -39,6 +40,7 @@ public class AddDgArchivesDestructionRequest implements Serializable {
* 发起日期
*/
@ApiModelProperty
(
name
=
"fqrq"
,
value
=
"发起日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
fqrq
;
/**
...
...
@@ -69,6 +71,7 @@ public class AddDgArchivesDestructionRequest implements Serializable {
* 销毁日期
*/
@ApiModelProperty
(
name
=
"xhrq"
,
value
=
"销毁日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
xhrq
;
...
...
src/main/java/com/pashanhoo/destroy/entity/vo/DgArchivesDestructionDetailVO.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -44,6 +45,7 @@ public class DgArchivesDestructionDetailVO implements Serializable {
* 发起日期
*/
@ApiModelProperty
(
name
=
"fqrq"
,
value
=
"发起日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
fqrq
;
/**
...
...
@@ -74,6 +76,7 @@ public class DgArchivesDestructionDetailVO implements Serializable {
* 销毁日期
*/
@ApiModelProperty
(
name
=
"xhrq"
,
value
=
"销毁日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
xhrq
;
...
...
src/main/java/com/pashanhoo/destroy/entity/vo/DgArchivesDestructionListVO.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -44,6 +45,7 @@ public class DgArchivesDestructionListVO implements Serializable {
* 发起日期
*/
@ApiModelProperty
(
name
=
"fqrq"
,
value
=
"发起日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
fqrq
;
/**
...
...
@@ -74,6 +76,7 @@ public class DgArchivesDestructionListVO implements Serializable {
* 销毁日期
*/
@ApiModelProperty
(
name
=
"xhrq"
,
value
=
"销毁日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
xhrq
;
/**
* 数量(卷)
...
...
src/main/java/com/pashanhoo/destroy/entity/vo/DgArchivesDestructionSearchRequest.java
View file @
8596309
...
...
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModelProperty;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
com.pashanhoo.common.PageInfo
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -39,6 +40,7 @@ public class DgArchivesDestructionSearchRequest extends PageInfo implements Seri
* 销毁日期
*/
@ApiModelProperty
(
name
=
"xhrq"
,
value
=
"销毁日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
xhrq
;
...
...
src/main/java/com/pashanhoo/destroy/entity/vo/UpdateDgArchivesDestructionRequest.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -44,6 +45,7 @@ public class UpdateDgArchivesDestructionRequest implements Serializable {
* 发起日期
*/
@ApiModelProperty
(
name
=
"fqrq"
,
value
=
"发起日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
fqrq
;
/**
...
...
@@ -74,6 +76,7 @@ public class UpdateDgArchivesDestructionRequest implements Serializable {
* 销毁日期
*/
@ApiModelProperty
(
name
=
"xhrq"
,
value
=
"销毁日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
xhrq
;
...
...
src/main/java/com/pashanhoo/file/entity/vo/AddDgFileRequest.java
View file @
8596309
...
...
@@ -49,8 +49,7 @@ public class AddDgFileRequest implements Serializable {
* 上传日期
*/
@ApiModelProperty
(
name
=
"scrq"
,
value
=
"上传日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
scrq
;
/**
...
...
src/main/java/com/pashanhoo/file/entity/vo/DgFileDetailVO.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -44,6 +45,7 @@ public class DgFileDetailVO implements Serializable {
* 上传日期
*/
@ApiModelProperty
(
name
=
"scrq"
,
value
=
"上传日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
scrq
;
/**
...
...
src/main/java/com/pashanhoo/file/entity/vo/DgFileListVO.java
View file @
8596309
...
...
@@ -47,8 +47,7 @@ public class DgFileListVO implements Serializable {
* 上传日期
*/
@ApiModelProperty
(
name
=
"scrq"
,
value
=
"上传日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
scrq
;
/**
...
...
src/main/java/com/pashanhoo/file/entity/vo/DgFileSearchRequest.java
View file @
8596309
...
...
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModelProperty;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
com.pashanhoo.common.PageInfo
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -45,6 +46,7 @@ public class DgFileSearchRequest extends PageInfo implements Serializable {
* 上传日期
*/
@ApiModelProperty
(
name
=
"scrq"
,
value
=
"上传日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
scrq
;
/**
...
...
src/main/java/com/pashanhoo/file/entity/vo/UpdateDgFileRequest.java
View file @
8596309
...
...
@@ -47,8 +47,7 @@ public class UpdateDgFileRequest implements Serializable {
* 上传日期
*/
@ApiModelProperty
(
name
=
"scrq"
,
value
=
"上传日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
scrq
;
/**
...
...
src/main/java/com/pashanhoo/lend/entity/vo/AddDgLendRequest.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -51,12 +52,14 @@ public class AddDgLendRequest implements Serializable {
* 借阅日期
*/
@ApiModelProperty
(
name
=
"jyrq"
,
value
=
"借阅日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
jyrq
;
/**
* 归还日期
*/
@ApiModelProperty
(
name
=
"ghrq"
,
value
=
"归还日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
ghrq
;
/**
...
...
@@ -93,6 +96,7 @@ public class AddDgLendRequest implements Serializable {
* 批准时间
*/
@ApiModelProperty
(
name
=
"pzsj"
,
value
=
"批准时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
pzsj
;
/**
* 归还人
...
...
src/main/java/com/pashanhoo/lend/entity/vo/DgLendListVO.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -57,12 +58,14 @@ public class DgLendListVO implements Serializable {
* 借阅日期
*/
@ApiModelProperty
(
name
=
"jyrq"
,
value
=
"借阅日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
jyrq
;
/**
* 归还日期
*/
@ApiModelProperty
(
name
=
"ghrq"
,
value
=
"归还日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
ghrq
;
/**
...
...
@@ -99,6 +102,7 @@ public class DgLendListVO implements Serializable {
* 批准时间
*/
@ApiModelProperty
(
name
=
"pzsj"
,
value
=
"批准时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
pzsj
;
...
...
src/main/java/com/pashanhoo/lend/entity/vo/UpdateDgLendRequest.java
View file @
8596309
...
...
@@ -6,6 +6,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -56,12 +57,14 @@ public class UpdateDgLendRequest implements Serializable {
* 借阅日期
*/
@ApiModelProperty
(
name
=
"jyrq"
,
value
=
"借阅日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
jyrq
;
/**
* 归还日期
*/
@ApiModelProperty
(
name
=
"ghrq"
,
value
=
"归还日期"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
ghrq
;
/**
...
...
@@ -98,6 +101,7 @@ public class UpdateDgLendRequest implements Serializable {
* 批准时间
*/
@ApiModelProperty
(
name
=
"pzsj"
,
value
=
"批准时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
pzsj
;
/**
* 归还人
...
...
src/main/java/com/pashanhoo/modify/entity/vo/AddDgArchivesModifyRequest.java
View file @
8596309
...
...
@@ -55,8 +55,7 @@ public class AddDgArchivesModifyRequest implements Serializable {
* 创建时间
*/
@ApiModelProperty
(
name
=
"createTime"
,
value
=
"创建时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
createTime
;
/**
...
...
@@ -81,7 +80,6 @@ public class AddDgArchivesModifyRequest implements Serializable {
* 归档时间
*/
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
}
...
...
src/main/java/com/pashanhoo/modify/entity/vo/DgArchivesModifyDetailVO.java
View file @
8596309
...
...
@@ -59,8 +59,7 @@ public class DgArchivesModifyDetailVO implements Serializable {
* 创建时间
*/
@ApiModelProperty
(
name
=
"createTime"
,
value
=
"创建时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
createTime
;
/**
...
...
@@ -85,7 +84,6 @@ public class DgArchivesModifyDetailVO implements Serializable {
* 归档时间
*/
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
}
...
...
src/main/java/com/pashanhoo/modify/entity/vo/DgArchivesModifySearchRequest.java
View file @
8596309
...
...
@@ -44,15 +44,13 @@ public class DgArchivesModifySearchRequest extends PageInfo implements Serializa
* 修改起始时间
*/
@ApiModelProperty
(
name
=
"xgqssj"
,
value
=
"修改起始时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
xgqssj
;
/**
* 修改截止时间
*/
@ApiModelProperty
(
name
=
"xgjzsj"
,
value
=
"修改截止时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
xgjzsj
;
/**
* 档案号
...
...
src/main/java/com/pashanhoo/modify/entity/vo/UpdateDgArchivesModifyRequest.java
View file @
8596309
...
...
@@ -53,8 +53,7 @@ public class UpdateDgArchivesModifyRequest implements Serializable {
* 创建时间
*/
@ApiModelProperty
(
name
=
"createTime"
,
value
=
"创建时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
createTime
;
/**
...
...
@@ -85,7 +84,6 @@ public class UpdateDgArchivesModifyRequest implements Serializable {
* 归档时间
*/
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
}
...
...
src/main/java/com/pashanhoo/receive/entity/vo/AddDgReceiveRequest.java
View file @
8596309
...
...
@@ -12,6 +12,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
import
javax.validation.constraints.NotEmpty
;
...
...
@@ -63,6 +64,7 @@ public class AddDgReceiveRequest implements Serializable {
*/
@NotEmpty
(
message
=
"收件时间【sjsj】不能为空"
)
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
* 业务号
...
...
@@ -81,7 +83,7 @@ public class AddDgReceiveRequest implements Serializable {
*/
@NotEmpty
(
message
=
"单元总数【dyzs】不能为空"
)
@ApiModelProperty
(
name
=
"dyzs"
,
value
=
"单元总数"
)
private
BigDecimal
dyzs
;
private
Integer
dyzs
;
/**
* 不动产权证号
*/
...
...
@@ -116,12 +118,14 @@ public class AddDgReceiveRequest implements Serializable {
*/
@NotEmpty
(
message
=
"登记时间【djsj】不能为空"
)
@ApiModelProperty
(
name
=
"djsj"
,
value
=
"登记时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
djsj
;
/**
* 接收时间
*/
@NotEmpty
(
message
=
"接收时间【jssj】不能为空"
)
@ApiModelProperty
(
name
=
"jssj"
,
value
=
"接收时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
jssj
;
/**
* 推送机构编码
...
...
src/main/java/com/pashanhoo/receive/entity/vo/DgReceiveDetailVO.java
View file @
8596309
...
...
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -57,6 +58,7 @@ public class DgReceiveDetailVO implements Serializable {
* 收件时间
*/
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
@@ -75,7 +77,7 @@ public class DgReceiveDetailVO implements Serializable {
* 单元总数
*/
@ApiModelProperty
(
name
=
"dyzs"
,
value
=
"单元总数"
)
private
BigDecimal
dyzs
;
private
Integer
dyzs
;
/**
* 不动产权证号
...
...
@@ -111,12 +113,14 @@ public class DgReceiveDetailVO implements Serializable {
* 登记时间
*/
@ApiModelProperty
(
name
=
"djsj"
,
value
=
"登记时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
djsj
;
/**
* 接收时间
*/
@ApiModelProperty
(
name
=
"jssj"
,
value
=
"接收时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
jssj
;
/**
...
...
@@ -135,6 +139,7 @@ public class DgReceiveDetailVO implements Serializable {
* 归档时间
*/
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
/**
...
...
src/main/java/com/pashanhoo/receive/entity/vo/DgReceiveListVO.java
View file @
8596309
...
...
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -58,6 +59,7 @@ public class DgReceiveListVO implements Serializable {
* 收件时间
*/
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
@@ -76,7 +78,7 @@ public class DgReceiveListVO implements Serializable {
* 单元总数
*/
@ApiModelProperty
(
name
=
"dyzs"
,
value
=
"单元总数"
)
private
BigDecimal
dyzs
;
private
Integer
dyzs
;
/**
* 不动产权证号
...
...
@@ -112,12 +114,14 @@ public class DgReceiveListVO implements Serializable {
* 登记时间
*/
@ApiModelProperty
(
name
=
"djsj"
,
value
=
"登记时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
djsj
;
/**
* 接收时间
*/
@ApiModelProperty
(
name
=
"jssj"
,
value
=
"接收时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
jssj
;
/**
...
...
@@ -136,6 +140,7 @@ public class DgReceiveListVO implements Serializable {
* 归档时间
*/
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
/**
...
...
src/main/java/com/pashanhoo/receive/entity/vo/UpdateDgReceiveRequest.java
View file @
8596309
...
...
@@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.springframework.format.annotation.DateTimeFormat
;
/**
* <p>
...
...
@@ -57,6 +58,7 @@ public class UpdateDgReceiveRequest implements Serializable {
* 收件时间
*/
@ApiModelProperty
(
name
=
"sjsj"
,
value
=
"收件时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
sjsj
;
/**
...
...
@@ -75,7 +77,7 @@ public class UpdateDgReceiveRequest implements Serializable {
* 单元总数
*/
@ApiModelProperty
(
name
=
"dyzs"
,
value
=
"单元总数"
)
private
BigDecimal
dyzs
;
private
Integer
dyzs
;
/**
* 不动产权证号
...
...
@@ -111,12 +113,14 @@ public class UpdateDgReceiveRequest implements Serializable {
* 登记时间
*/
@ApiModelProperty
(
name
=
"djsj"
,
value
=
"登记时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
djsj
;
/**
* 接收时间
*/
@ApiModelProperty
(
name
=
"jssj"
,
value
=
"接收时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
jssj
;
/**
...
...
@@ -135,6 +139,7 @@ public class UpdateDgReceiveRequest implements Serializable {
* 归档时间
*/
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
/**
...
...
src/main/java/com/pashanhoo/replenish/entity/vo/DgArchivesReplenishDetailVO.java
View file @
8596309
...
...
@@ -54,8 +54,7 @@ public class DgArchivesReplenishDetailVO implements Serializable {
* 创建时间
*/
@ApiModelProperty
(
name
=
"createTime"
,
value
=
"创建时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
createTime
;
/**
...
...
@@ -67,16 +66,13 @@ public class DgArchivesReplenishDetailVO implements Serializable {
/**
* 状态1:补录中,2:已归档
*/
@TableField
(
"STATE"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@ApiModelProperty
(
name
=
"state"
,
value
=
"状态1:补录中,2:已归档"
)
private
String
state
;
/**
* 归档时间
*/
@TableField
(
"GDSJ"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
}
...
...
src/main/java/com/pashanhoo/replenish/entity/vo/DgArchivesReplenishListVO.java
View file @
8596309
...
...
@@ -91,7 +91,6 @@ public class DgArchivesReplenishListVO implements Serializable {
*/
@ApiModelProperty
(
name
=
"createTime"
,
value
=
"创建时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
createTime
;
/**
...
...
@@ -117,6 +116,5 @@ public class DgArchivesReplenishListVO implements Serializable {
*/
@TableField
(
"GDSJ"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
,
timezone
=
"GMT+8"
)
private
Date
gdsj
;
}
...
...
src/main/java/com/pashanhoo/replenish/entity/vo/DgArchivesReplenishSearchRequest.java
View file @
8596309
...
...
@@ -55,21 +55,19 @@ public class DgArchivesReplenishSearchRequest extends PageInfo implements Serial
* 创建时间
*/
@ApiModelProperty
(
name
=
"createTime"
,
value
=
"创建时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
createTime
;
/**
* 状态1:补录中,2:已归档
*/
@
TableField
(
"STATE
"
)
@
ApiModelProperty
(
name
=
"state"
,
value
=
"状态1:补录中,2:已归档
"
)
private
String
state
;
/**
* 归档时间
*/
@TableField
(
"GDSJ"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
,
timezone
=
"GMT+8"
)
@ApiModelProperty
(
name
=
"gdsj"
,
value
=
"归档时间"
)
@DateTimeFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
gdsj
;
}
...
...
Please
register
or
sign in
to post a comment