liu
23 小时以前 1eb432710b7a3a2e820be10b17c0138b377ee1b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.iocoder.yudao.module.system.controller.admin.mail.vo.account;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - 邮箱账号的精简 Response VO")
@Data
public class MailAccountSimpleRespVO {
 
    @Schema(description = "邮箱编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "邮箱", requiredMode = Schema.RequiredMode.REQUIRED, example = "768541388@qq.com")
    private String mail;
 
}