EmailTemplateMappingDO.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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_data_rule")
  9. public class EmailTemplateMappingDO {
  10. /**
  11. * 主键Id
  12. */
  13. @TableId(value = "id")
  14. private Integer id;
  15. /**
  16. * 模版id(email_template_info.id)
  17. */
  18. @TableId(value = "template_id")
  19. private Integer templateId;
  20. /**
  21. * 标题名称
  22. */
  23. @TableId(value = "title")
  24. private String title;
  25. /**
  26. * 邮箱地址
  27. */
  28. @TableId(value = "email")
  29. private String email;
  30. /**
  31. * 公司名称
  32. */
  33. @TableId(value = "company_name")
  34. private String companyName;
  35. /**
  36. * 备注
  37. */
  38. @TableId(value = "description")
  39. private String description;
  40. /**
  41. * 状态:0-关闭,1-开启
  42. */
  43. @TableId(value = "status")
  44. private Integer status;
  45. /**
  46. * 是否有效:0-无效,1-有效
  47. */
  48. @TableField(value = "isvalid")
  49. private Integer isvalid;
  50. /**
  51. * 创建者Id
  52. */
  53. @TableField(value = "creatorid")
  54. private Integer creatorId;
  55. /**
  56. * 创建时间
  57. */
  58. @TableField(value = "createtime")
  59. private Date createTime;
  60. /**
  61. * 修改者Id
  62. */
  63. @TableField(value = "updaterid")
  64. private Integer updaterId;
  65. /**
  66. * 更新时间
  67. */
  68. @TableField(value = "updatetime")
  69. private Date updateTime;
  70. }