|
|
@@ -10,6 +10,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
+import java.time.LocalDate;
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
/**
|
|
|
@@ -68,12 +69,30 @@ public class IntegralItemQuery extends PageInfo<IntegralItemQuery> {
|
|
|
*/
|
|
|
@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 accDate;
|
|
|
|
|
|
|
|
|
/**
|
|
|
+ * 开始日期
|
|
|
+ */
|
|
|
+ @ApiModelProperty(value = "开始日期")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ @TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
+ private LocalDate accDateStart;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 截止日期
|
|
|
+ */
|
|
|
+ @Excel(name = "截止日期")
|
|
|
+ @ApiModelProperty(value = "账务截止日期")
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
+ @TableField(typeHandler = TimestampTypeHandler.class)
|
|
|
+ private LocalDate accDateEnd;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
* 有效标识 (1:正常 0:停用)
|
|
|
*/
|
|
|
@Excel(name = "有效标识 (1:正常 0:停用)")
|