潘志宝
2024-11-21 d338b50afd6504a9676f0a26b3ecbcc844483e7c
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.controller.admin.mail.vo.log;
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 MailLogPageReqVO extends PageParam {
19
20     @Schema(description = "用户编号", example = "30883")
21     private Long userId;
22
23     @Schema(description = "用户类型,参见 UserTypeEnum 枚举", example = "2")
24     private Integer userType;
25
26     @Schema(description = "接收邮箱地址,模糊匹配", example = "76854@qq.com")
27     private String toMail;
28
29     @Schema(description = "邮箱账号编号", example = "18107")
30     private Long accountId;
31
32     @Schema(description = "模板编号", example = "5678")
33     private Long templateId;
34
35     @Schema(description = "发送状态,参见 MailSendStatusEnum 枚举", example = "1")
36     private Integer sendStatus;
37
38     @Schema(description = "发送时间")
39     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
40     private LocalDateTime[] sendTime;
41
42 }