|
|
@@ -84,9 +84,9 @@ public class CouponUse extends PageInfo<CouponUse> implements Serializable {
|
|
|
*/
|
|
|
@Excel(name = "获取日期")
|
|
|
@ApiModelProperty(value = "获取日期")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
@TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
- private LocalDate receiveDate;
|
|
|
+ private LocalDateTime receiveDate;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -94,9 +94,9 @@ public class CouponUse extends PageInfo<CouponUse> implements Serializable {
|
|
|
*/
|
|
|
@Excel(name = "核销日期")
|
|
|
@ApiModelProperty(value = "核销日期")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
@TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
- private LocalDate useDate;
|
|
|
+ private LocalDateTime useDate;
|
|
|
|
|
|
|
|
|
/**
|