| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.ylx.massage.domain;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- import java.time.LocalDateTime;
- import java.util.Date;
- /**
- * 敏感词库实体类
- */
- @Data
- @TableName("t_sensitive_word")
- public class SensitiveWord {
- @TableId(type = IdType.AUTO)
- private Long id;
- /**
- * 敏感词
- */
- private String word;
- /**
- * 敏感词分类:政治敏感类、色情低俗类、暴力恐怖类、辱骂攻击类
- */
- private String category;
- /**
- * 敏感等级:1-低 2-中 3-高
- */
- private Integer level;
- /**
- * 状态:0-禁用 1-启用
- */
- private Integer status;
- /**
- * 备注
- */
- private String remark;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新时间
- */
- private Date updateTime;
- /**
- * 是否删除(0-否 1-是)
- */
- @TableLogic
- private Integer isDelete;
- }
|