显示的时间和API上的格式不同
来源:6-11 买家订单-api_B
慕尼黑7895541
2019-08-14
要怎么设置,才能跟API才的时间字段一致
写回答
2回答
-
是@JsonSerialize注解
public class OrderDTO { /** 订单id. */ private String orderId; /** 买家名字. */ private String buyerName; /** 买家手机号. */ private String buyerPhone; /** 买家地址. */ private String buyerAddress; /** 买家微信Openid. */ private String buyerOpenid; /** 订单总金额. */ private BigDecimal orderAmount; /** 订单状态, 默认为0新下单. */ private Integer orderStatus; /** 支付状态, 默认为0未支付. */ private Integer payStatus; /** 创建时间. */ @JsonSerialize(using = Date2LongSerializer.class) private Date createTime;
10 -
廖师兄
2019-08-15
VO对象里漏了注解,对比我的源码。
032019-10-18
相似问题