init
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user