分享 日期格式问题

This commit is contained in:
wangw 2024-11-20 16:25:44 +08:00
parent 23a5de7ab4
commit 870c1d604e
1 changed files with 3 additions and 6 deletions

View File

@ -44,12 +44,9 @@ public class TbShopShareRecord extends Model<TbShopShareRecord> {
//0 非新用户 1 未领取 2 已领取 3 已使用
private Integer status;
//生效时间/获得奖励的时间
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date rewardTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date updateTime;
private String rewardTime;
private String createTime;
private String updateTime;
}