houzhongyi
2024-07-11 e7c1260db32209a078a962aaa0ad5492c35774fb
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.system.controller.admin.mail.vo.template;
H 2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import javax.validation.constraints.NotEmpty;
7 import javax.validation.constraints.NotNull;
8
9 @Schema(description = "管理后台 - 邮件模版创建/修改 Request VO")
10 @Data
11 public class MailTemplateSaveReqVO {
12
13     @Schema(description = "编号", example = "1024")
14     private Long id;
15
16     @Schema(description = "模版名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "测试名字")
17     @NotNull(message = "名称不能为空")
18     private String name;
19
20     @Schema(description = "模版编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "test")
21     @NotNull(message = "模版编号不能为空")
22     private String code;
23
24     @Schema(description = "发送的邮箱账号编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
25     @NotNull(message = "发送的邮箱账号编号不能为空")
26     private Long accountId;
27
28     @Schema(description = "发送人名称", example = "芋头")
29     private String nickname;
30
31     @Schema(description = "标题", requiredMode = Schema.RequiredMode.REQUIRED, example = "注册成功")
32     @NotEmpty(message = "标题不能为空")
33     private String title;
34
35     @Schema(description = "内容", requiredMode = Schema.RequiredMode.REQUIRED, example = "你好,注册成功啦")
36     @NotEmpty(message = "内容不能为空")
37     private String content;
38
39     @Schema(description = "状态,参见 CommonStatusEnum 枚举", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
40     @NotNull(message = "状态不能为空")
41     private Integer status;
42
43     @Schema(description = "备注", example = "奥特曼")
44     private String remark;
45
46 }