This commit is contained in:
张良(004796)
2024-03-04 18:54:18 +08:00
commit 273ee16e8c
585 changed files with 41565 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
package com.ruoyi.sensitive.domain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* 敏感词对象 cai_word
*
* @author 77
* @date 2024-02-19
*/
@Data
@TableName("xq_word")
public class Word implements Serializable {
private static final long serialVersionUID=1L;
/**
* 应用自增主键
*/
@TableId(value = "id")
private Integer id;
/**
* 单词
*/
private String word;
/**
* 1-白名单 2-黑名单
*/
private Integer type;
/**
* 启用状态
*/
private Integer enableStatus;
/**
* 配置描述
*/
private String remark;
/**
* 操作员名称
*/
private String operatorId;
private LocalDateTime updateTime;
private LocalDateTime createTime;
}