| | |
| | | package com.ycl.platform.domain.query; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import annotation.Excel; |
| | | import com.ycl.platform.base.AbsQuery; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import org.springframework.lang.NonNull; |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * 考核规则查询 |
| | | * 下发工单查询 |
| | | * |
| | | * @author xp |
| | | * @since 2024-03-06 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "CheckRule查询", description = "考核规则查询") |
| | | @ApiModel(value = "考核规则管理", description = "考核规则管理") |
| | | public class CheckRuleQuery extends AbsQuery { |
| | | |
| | | /** |
| | | * 模板id |
| | | */ |
| | | private Integer templateId; |
| | | /** |
| | | * 审核状态 |
| | | */ |
| | | private Integer auditState; |
| | | /** |
| | | * 规则名称 |
| | | */ |
| | | private String ruleName; |
| | | |
| | | /** |
| | | * 开始时间 |
| | | * 规则类型 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date start; |
| | | |
| | | private Integer ruleCategory; |
| | | /** |
| | | * 结束时间 |
| | | * 考核类型 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date end; |
| | | private Integer examineCategory; |
| | | |
| | | /** 审核状态 */ |
| | | private Integer auditState; |
| | | |
| | | } |
| | | |