潘志宝
2024-11-21 d338b50afd6504a9676f0a26b3ecbcc844483e7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.iailab.module.system.controller.admin.mail.vo.log;
 
import com.iailab.framework.common.pojo.PageParam;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDateTime;
 
import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
 
@Schema(description = "管理后台 - 邮箱日志分页 Request VO")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class MailLogPageReqVO extends PageParam {
 
    @Schema(description = "用户编号", example = "30883")
    private Long userId;
 
    @Schema(description = "用户类型,参见 UserTypeEnum 枚举", example = "2")
    private Integer userType;
 
    @Schema(description = "接收邮箱地址,模糊匹配", example = "76854@qq.com")
    private String toMail;
 
    @Schema(description = "邮箱账号编号", example = "18107")
    private Long accountId;
 
    @Schema(description = "模板编号", example = "5678")
    private Long templateId;
 
    @Schema(description = "发送状态,参见 MailSendStatusEnum 枚举", example = "1")
    private Integer sendStatus;
 
    @Schema(description = "发送时间")
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
    private LocalDateTime[] sendTime;
 
}