New file |
| | |
| | | package com.ycl.platform.domain.query; |
| | | |
| | | import annotation.Excel; |
| | | import com.ycl.platform.base.AbsQuery; |
| | | import io.swagger.annotations.ApiModel; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * 下发工单查询 |
| | | * |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "考核规则管理", description = "考核规则管理") |
| | | public class CheckRuleQuery extends AbsQuery { |
| | | /** |
| | | * 模板id |
| | | */ |
| | | private Integer templateId; |
| | | /** |
| | | * 审核状态 |
| | | */ |
| | | private Integer auditState; |
| | | /** |
| | | * 规则名称 |
| | | */ |
| | | private String ruleName; |
| | | /** |
| | | * 规则类型 |
| | | */ |
| | | private Integer ruleCategory; |
| | | /** |
| | | * 考核类型 |
| | | */ |
| | | private Integer examineCategory; |
| | | |
| | | |
| | | } |