提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.controller.admin.sms.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 SmsTemplatePageReqVO extends PageParam { |
|
19 |
|
|
20 |
@Schema(description = "短信签名", example = "1") |
|
21 |
private Integer type; |
|
22 |
|
|
23 |
@Schema(description = "开启状态", example = "1") |
|
24 |
private Integer status; |
|
25 |
|
|
26 |
@Schema(description = "模板编码,模糊匹配", example = "test_01") |
|
27 |
private String code; |
|
28 |
|
|
29 |
@Schema(description = "模板内容,模糊匹配", example = "你好,{name}。你长的太{like}啦!") |
|
30 |
private String content; |
|
31 |
|
|
32 |
@Schema(description = "短信 API 的模板编号,模糊匹配", example = "4383920") |
|
33 |
private String apiTemplateId; |
|
34 |
|
|
35 |
@Schema(description = "短信渠道编号", example = "10") |
|
36 |
private Long channelId; |
|
37 |
|
|
38 |
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|
39 |
@Schema(description = "创建时间") |
|
40 |
private LocalDateTime[] createTime; |
|
41 |
|
|
42 |
} |