houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.controller.admin.notify.vo.template;
H 2
3 import com.iailab.framework.common.pojo.PageParam;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6 import lombok.EqualsAndHashCode;
7 import lombok.ToString;
8 import org.springframework.format.annotation.DateTimeFormat;
9
10 import java.time.LocalDateTime;
11
12 import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
13
14 @Schema(description = "管理后台 - 站内信模版分页 Request VO")
15 @Data
16 @EqualsAndHashCode(callSuper = true)
17 @ToString(callSuper = true)
18 public class NotifyTemplatePageReqVO extends PageParam {
19
20     @Schema(description = "模版编码", example = "test_01")
21     private String code;
22
23     @Schema(description = "模版名称", example = "我是名称")
24     private String name;
25
26     @Schema(description = "状态,参见 CommonStatusEnum 枚举类", example = "1")
27     private Integer status;
28
29     @Schema(description = "创建时间")
30     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
31     private LocalDateTime[] createTime;
32
33 }