|
|
@@ -17,6 +17,7 @@ import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
|
+import java.time.LocalDate;
|
|
|
import java.util.List;
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
@@ -83,9 +84,9 @@ public class CouponUse extends PageInfo<CouponUse> implements Serializable {
|
|
|
*/
|
|
|
@Excel(name = "获取日期")
|
|
|
@ApiModelProperty(value = "获取日期")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
@TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
- private LocalDateTime receiveDate;
|
|
|
+ private LocalDate receiveDate;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -93,9 +94,9 @@ public class CouponUse extends PageInfo<CouponUse> implements Serializable {
|
|
|
*/
|
|
|
@Excel(name = "核销日期")
|
|
|
@ApiModelProperty(value = "核销日期")
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
@TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
- private LocalDateTime useDate;
|
|
|
+ private LocalDate useDate;
|
|
|
|
|
|
|
|
|
/**
|