fuliqi
2024-04-19 0c1f76c4a9c34a2adb05a94da4b20f3560374a29
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckRule.java
@@ -1,48 +1,54 @@
package com.ycl.platform.domain.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.platform.base.AbsEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
import lombok.Data;
import lombok.experimental.Accessors;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
import java.util.Date;
/**
 * 考核规则
 *
 * @author xp
 * @since 2024-03-06
 * 考核规则对象 t_check_rule
 *
 * @author ruoyi
 * @date 2024-04-15
 */
@Data
@Accessors(chain = true)
@TableName("t_check_rule")
@ApiModel(value = "CheckRule对象", description = "考核规则")
public class CheckRule extends AbsEntity {
public class CheckRule extends BaseEntity
{
    private static final long serialVersionUID = 1L;
    @ApiModelProperty("规则名称")
    @TableField("rule_name")
    /**  */
    private Long id;
    /** 规则名称 */
    @Excel(name = "规则名称")
    private String ruleName;
    @ApiModelProperty("规则描述")
    @TableField("rule_detail")
    private String ruleDetail;
    /** 对应index表字段名 */
    @Excel(name = "对应index表字段名")
    private String ruleIndex;
    @ApiModelProperty("天网视频点位数")
    @TableField("video_point_num")
    private Integer videoPointNum;
    /** 0.视频监控;1.车辆识别;2.人员识 */
    @Excel(name = "0.视频监控;1.车辆识别;2.人员识")
    private Short ruleCategory;
    @ApiModelProperty("车辆卡口点位数")
    @TableField("vehicle_checkpoint_num")
    private Integer vehicleCheckpointNum;
    /** 可配置的规则参数json */
    @Excel(name = "可配置的规则参数json")
    private String ruleCondition;
    @ApiModelProperty("人脸卡口点位数")
    @TableField("face_chceckpoint_num")
    private Integer faceChceckpointNum;
    /** 规则描述 */
    @Excel(name = "规则描述")
    private String ruleDescription;
    @ApiModelProperty("运维类别")
    @TableField("category")
    private Integer category;
    /** 0/1 启用/停用 */
    @Excel(name = "0/1 启用/停用")
    private Short state;
    /** 逻辑删除 */
    @Excel(name = "逻辑删除")
    private String deleted;
}