EmailTemplateInfoDO.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.simuwang.base.pojo.dos;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import java.util.Date;
  7. @Data
  8. @TableName("email_template_info")
  9. public class EmailTemplateInfoDO {
  10. /**
  11. * 主键Id
  12. */
  13. @TableId(value = "id")
  14. private Integer id;
  15. /**
  16. * 模板名称
  17. */
  18. @TableId(value = "name")
  19. private String name;
  20. /**
  21. * 模版方向:1-行,2-列
  22. */
  23. @TableId(value = "direction")
  24. private Integer direction;
  25. /**
  26. * 模版备注
  27. */
  28. @TableId(value = "description")
  29. private String description;
  30. /**
  31. * 状态:0-关闭,1-开启
  32. */
  33. @TableId(value = "status")
  34. private Integer status;
  35. /**
  36. * 是否有效:0-无效,1-有效
  37. */
  38. @TableField(value = "isvalid")
  39. private Integer isvalid;
  40. /**
  41. * 创建者Id
  42. */
  43. @TableField(value = "creatorid")
  44. private Integer creatorId;
  45. /**
  46. * 创建时间
  47. */
  48. @TableField(value = "createtime")
  49. private Date createTime;
  50. /**
  51. * 修改者Id
  52. */
  53. @TableField(value = "updaterid")
  54. private Integer updaterId;
  55. /**
  56. * 更新时间
  57. */
  58. @TableField(value = "updatetime")
  59. private Date updateTime;
  60. }