提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.controller.admin.mail.vo.account; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.time.LocalDateTime; |
|
7 |
|
|
8 |
@Schema(description = "管理后台 - 邮箱账号 Response VO") |
|
9 |
@Data |
|
10 |
public class MailAccountRespVO { |
|
11 |
|
|
12 |
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
13 |
private Long id; |
|
14 |
|
|
15 |
@Schema(description = "邮箱", requiredMode = Schema.RequiredMode.REQUIRED, example = "iailabyuanma@123.com") |
|
16 |
private String mail; |
|
17 |
|
|
18 |
@Schema(description = "用户名", requiredMode = Schema.RequiredMode.REQUIRED, example = "iailab") |
|
19 |
private String username; |
|
20 |
|
|
21 |
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "123456") |
|
22 |
private String password; |
|
23 |
|
|
24 |
@Schema(description = "SMTP 服务器域名", requiredMode = Schema.RequiredMode.REQUIRED, example = "www.baidu.com") |
|
25 |
private String host; |
|
26 |
|
|
27 |
@Schema(description = "SMTP 服务器端口", requiredMode = Schema.RequiredMode.REQUIRED, example = "80") |
|
28 |
private Integer port; |
|
29 |
|
|
30 |
@Schema(description = "是否开启 ssl", requiredMode = Schema.RequiredMode.REQUIRED, example = "true") |
|
31 |
private Boolean sslEnable; |
|
32 |
|
|
33 |
@Schema(description = "是否开启 starttls", requiredMode = Schema.RequiredMode.REQUIRED, example = "true") |
|
34 |
private Boolean starttlsEnable; |
|
35 |
|
|
36 |
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
|
37 |
private LocalDateTime createTime; |
|
38 |
|
|
39 |
} |