潘志宝
2024-11-21 d338b50afd6504a9676f0a26b3ecbcc844483e7c
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.controller.admin.sms.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 SmsLogPageReqVO extends PageParam {
19
20     @Schema(description = "短信渠道编号", example = "10")
21     private Long channelId;
22
23     @Schema(description = "模板编号", example = "20")
24     private Long templateId;
25
26     @Schema(description = "手机号", example = "15601691300")
27     private String mobile;
28
29     @Schema(description = "发送状态,参见 SmsSendStatusEnum 枚举类", example = "1")
30     private Integer sendStatus;
31
32     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
33     @Schema(description = "发送时间")
34     private LocalDateTime[] sendTime;
35
36     @Schema(description = "接收状态,参见 SmsReceiveStatusEnum 枚举类", example = "0")
37     private Integer receiveStatus;
38
39     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
40     @Schema(description = "接收时间")
41     private LocalDateTime[] receiveTime;
42
43 }