| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import annotation.Excel; |
| | | import com.ycl.system.entity.BaseEntity; |
| | | import org.apache.commons.lang.builder.ToStringBuilder; |
| | | import org.apache.commons.lang.builder.ToStringStyle; |
| | | 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 lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 考核规则对象 t_check_rule |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | * 考核规则 |
| | | * |
| | | * @author xp |
| | | * @since 2024-03-06 |
| | | */ |
| | | public class CheckRule extends BaseEntity |
| | | { |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("t_check_rule") |
| | | @ApiModel(value = "CheckRule对象", description = "考核规则") |
| | | public class CheckRule extends AbsEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** */ |
| | | private Long id; |
| | | |
| | | /** 规则名称 */ |
| | | @Excel(name = "规则名称") |
| | | @ApiModelProperty("规则名称") |
| | | @TableField("rule_name") |
| | | private String ruleName; |
| | | |
| | | /** 规则细则 */ |
| | | @Excel(name = "规则细则") |
| | | @ApiModelProperty("规则描述") |
| | | @TableField("rule_detail") |
| | | private String ruleDetail; |
| | | |
| | | /** 规则类型 */ |
| | | @Excel(name = "规则类型") |
| | | private Long ruleCategory; |
| | | @ApiModelProperty("天网视频点位数") |
| | | @TableField("video_point_num") |
| | | private Integer videoPointNum; |
| | | |
| | | /** 考核类型 */ |
| | | @Excel(name = "考核类型") |
| | | private Long examineCategory; |
| | | @ApiModelProperty("车辆卡口点位数") |
| | | @TableField("vehicle_checkpoint_num") |
| | | private Integer vehicleCheckpointNum; |
| | | |
| | | /** 规则描述 */ |
| | | @Excel(name = "规则描述") |
| | | private String ruleDescription; |
| | | @ApiModelProperty("人脸卡口点位数") |
| | | @TableField("face_chceckpoint_num") |
| | | private Integer faceChceckpointNum; |
| | | |
| | | /** 审核状态 */ |
| | | @Excel(name = "审核状态") |
| | | private Long auditState; |
| | | @ApiModelProperty("运维类别") |
| | | @TableField("category") |
| | | private Integer category; |
| | | @ApiModelProperty("考核类别") |
| | | @TableField("examine_category") |
| | | private Integer examineCategory; |
| | | |
| | | /** 启用状态 */ |
| | | @Excel(name = "启用状态") |
| | | private Long state; |
| | | |
| | | /** 逻辑删除 */ |
| | | private String deleted; |
| | | @ApiModelProperty("审核状态") |
| | | @TableField("audit_state") |
| | | private Integer auditState; |
| | | @ApiModelProperty("审核人") |
| | | @TableField("audit_user") |
| | | private String auditUser; |
| | | @ApiModelProperty("审核时间") |
| | | @TableField("audit_time") |
| | | private Date auditTime; |
| | | @ApiModelProperty("审核意见") |
| | | @TableField("audit_description") |
| | | private String auditDescription; |
| | | |
| | | public void setId(Long id) |
| | | { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Long getId() |
| | | { |
| | | return id; |
| | | } |
| | | public void setRuleName(String ruleName) |
| | | { |
| | | this.ruleName = ruleName; |
| | | } |
| | | |
| | | public String getRuleName() |
| | | { |
| | | return ruleName; |
| | | } |
| | | public void setRuleDetail(String ruleDetail) |
| | | { |
| | | this.ruleDetail = ruleDetail; |
| | | } |
| | | |
| | | public String getRuleDetail() |
| | | { |
| | | return ruleDetail; |
| | | } |
| | | public void setRuleCategory(Long ruleCategory) |
| | | { |
| | | this.ruleCategory = ruleCategory; |
| | | } |
| | | |
| | | public Long getRuleCategory() |
| | | { |
| | | return ruleCategory; |
| | | } |
| | | public void setExamineCategory(Long examineCategory) |
| | | { |
| | | this.examineCategory = examineCategory; |
| | | } |
| | | |
| | | public Long getExamineCategory() |
| | | { |
| | | return examineCategory; |
| | | } |
| | | public void setRuleDescription(String ruleDescription) |
| | | { |
| | | this.ruleDescription = ruleDescription; |
| | | } |
| | | |
| | | public String getRuleDescription() |
| | | { |
| | | return ruleDescription; |
| | | } |
| | | public void setAuditState(Long auditState) |
| | | { |
| | | this.auditState = auditState; |
| | | } |
| | | |
| | | public Long getAuditState() |
| | | { |
| | | return auditState; |
| | | } |
| | | public void setState(Long state) |
| | | { |
| | | this.state = state; |
| | | } |
| | | |
| | | public Long getState() |
| | | { |
| | | return state; |
| | | } |
| | | public void setDeleted(String deleted) |
| | | { |
| | | this.deleted = deleted; |
| | | } |
| | | |
| | | public String getDeleted() |
| | | { |
| | | return deleted; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) |
| | | .append("id", getId()) |
| | | .append("ruleName", getRuleName()) |
| | | .append("ruleDetail", getRuleDetail()) |
| | | .append("ruleCategory", getRuleCategory()) |
| | | .append("examineCategory", getExamineCategory()) |
| | | .append("ruleDescription", getRuleDescription()) |
| | | .append("auditState", getAuditState()) |
| | | .append("state", getState()) |
| | | .append("createTime", getCreateTime()) |
| | | .append("updateTime", getUpdateTime()) |
| | | .append("deleted", getDeleted()) |
| | | .toString(); |
| | | } |
| | | } |