Commit e833fe6e authored by wdy's avatar wdy

Merge branch 'wangdingyi' into 'dev'

新增数据日期格式

See merge request !171
parents 184fc171 ae36ba59
...@@ -46,7 +46,7 @@ public class ReviewEnterpriseArchive implements Serializable { ...@@ -46,7 +46,7 @@ public class ReviewEnterpriseArchive implements Serializable {
* 发布日期 * 发布日期
*/ */
@ApiModelProperty("发布日期") @ApiModelProperty("发布日期")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm") @JsonFormat(pattern = "yyyy-MM-dd")
private Date publishDate; private Date publishDate;
/** /**
......
...@@ -54,11 +54,11 @@ public class Standard { ...@@ -54,11 +54,11 @@ public class Standard {
private String standardStatus; private String standardStatus;
@ApiModelProperty("发布日期") @ApiModelProperty("发布日期")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm") @JsonFormat(pattern = "yyyy-MM-dd")
private Date releaseDate; private Date releaseDate;
@ApiModelProperty("实施日期") @ApiModelProperty("实施日期")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm") @JsonFormat(pattern = "yyyy-MM-dd")
private Date implementationDate; private Date implementationDate;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment