SensitiveWord.java 963 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.ylx.massage.domain;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import java.time.LocalDateTime;
  5. import java.util.Date;
  6. /**
  7. * 敏感词库实体类
  8. */
  9. @Data
  10. @TableName("t_sensitive_word")
  11. public class SensitiveWord {
  12. @TableId(type = IdType.AUTO)
  13. private Long id;
  14. /**
  15. * 敏感词
  16. */
  17. private String word;
  18. /**
  19. * 敏感词分类:政治敏感类、色情低俗类、暴力恐怖类、辱骂攻击类
  20. */
  21. private String category;
  22. /**
  23. * 敏感等级:1-低 2-中 3-高
  24. */
  25. private Integer level;
  26. /**
  27. * 状态:0-禁用 1-启用
  28. */
  29. private Integer status;
  30. /**
  31. * 备注
  32. */
  33. private String remark;
  34. /**
  35. * 创建时间
  36. */
  37. private Date createTime;
  38. /**
  39. * 更新时间
  40. */
  41. private Date updateTime;
  42. /**
  43. * 是否删除(0-否 1-是)
  44. */
  45. @TableLogic
  46. private Integer isDelete;
  47. }