12345678910111213141516171819202122232425262728 |
- package com.simuwang.base.pojo.vo;
- import lombok.Data;
- @Data
- public class MailboxInfoTableVO {
- /**
- * 主键Id
- */
- private Integer id;
- /**
- * 邮箱账号
- */
- private String email;
- /**
- * cron表达式
- */
- private Integer cron;
- /**
- * 是否开启,0-不开启,1-开启
- */
- private Integer openStatus;
- /**
- * 备注信息
- */
- private String description;
- }
|