EmailTemplateApplicationRuleDO.java 1.7 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_application_rule")
  9. public class EmailTemplateApplicationRuleDO {
  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. * 字段类型:1-邮件标题,2-附件名称,3-表格内容
  22. */
  23. @TableId(value = "type")
  24. private Integer type;
  25. /**
  26. * 表格行
  27. */
  28. @TableId(value = "row")
  29. private Integer row;
  30. /**
  31. * 表格列
  32. */
  33. @TableId(value = "column")
  34. private String column;
  35. /**
  36. * 包含关键字(多个以英文逗号隔开)
  37. */
  38. @TableId(value = "contain_keyword")
  39. private String containKeyword;
  40. /**
  41. * 不包含关键字(多个以英文逗号隔开)
  42. */
  43. @TableId(value = "not_contain_keyword")
  44. private String notContainKeyword;
  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. }