xiangpei
2024-04-23 ab4e150d41e0200b64a75c59b668a9385b7782fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
import lombok.Data;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
import java.util.Date;
 
/**
 * 考核规则对象 t_check_rule
 * 
 * @author ruoyi
 * @date 2024-04-15
 */
@Data
public class CheckRule extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /**  */
    private Long id;
    /** 规则名称 */
    @Excel(name = "规则名称")
    private String ruleName;
 
    /** 对应index表字段名 */
    @Excel(name = "对应index表字段名")
    private String ruleIndex;
 
    /** 0.视频监控;1.车辆识别;2.人员识 */
    @Excel(name = "0.视频监控;1.车辆识别;2.人员识")
    private Short ruleCategory;
 
    /** 可配置的规则参数json */
    @Excel(name = "可配置的规则参数json")
    private String ruleCondition;
 
    /** 规则描述 */
    @Excel(name = "规则描述")
    private String ruleDescription;
 
    /** 0/1 启用/停用 */
    @Excel(name = "0/1 启用/停用")
    private Short state;
 
    /** 逻辑删除 */
    @Excel(name = "逻辑删除")
    private String deleted;
 
    /** 图标 */
    @Excel(name = "icon")
    private String icon;
}