EmailCofigInfoVO.java 784 B

1234567891011121314151617181920212223242526272829303132
  1. package jnpf.model.email;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. @Data
  5. public class EmailCofigInfoVO {
  6. @Schema(description ="账户")
  7. private String account;
  8. @Schema(description ="密码")
  9. private String password;
  10. @Schema(description ="POP3服务")
  11. private String pop3Host;
  12. @Schema(description ="POP3端口")
  13. private Integer pop3Port;
  14. @Schema(description ="发件人名称")
  15. private String senderName;
  16. @Schema(description ="SMTP服务")
  17. private String smtpHost;
  18. @Schema(description ="SMTP端口")
  19. private Integer smtpPort;
  20. @Schema(description ="创建时间")
  21. private long creatorTime;
  22. @Schema(description ="是否开户SSL登录(1-是,0否)")
  23. private Integer emailSsl;
  24. }