Commit 33d110fcd7b64a1fa8b9869007787b47b26ed1fb

Authored by guzijian
1 parent efe0ad56

fix: 修改返回日期格式

ruoyi-common/src/main/java/com/ruoyi/common/core/domain/BaseEntity.java
@@ -25,14 +25,14 @@ public class BaseEntity implements Serializable @@ -25,14 +25,14 @@ public class BaseEntity implements Serializable
25 private String createBy; 25 private String createBy;
26 26
27 /** 创建时间 */ 27 /** 创建时间 */
28 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") 28 + @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss")
29 private Date createTime; 29 private Date createTime;
30 30
31 /** 更新者 */ 31 /** 更新者 */
32 private String updateBy; 32 private String updateBy;
33 33
34 /** 更新时间 */ 34 /** 更新时间 */
35 - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") 35 + @JsonFormat(pattern = "yyyy-MM-dd hh:mm:ss")
36 private Date updateTime; 36 private Date updateTime;
37 37
38 /** 备注 */ 38 /** 备注 */