fuliqi
2024-04-07 b1a41509684c3823d41ec1c184f6a5f7ba49dfb7
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.ycl.platform.domain.query;
 
import annotation.Excel;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.platform.base.AbsQuery;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.util.Date;
import java.util.List;
 
@Data
@Accessors(chain = true)
@ApiModel(value = "规则模板查询", description = "规则模板查询")
public class CheckTemplateQuery extends AbsQuery {
    /**  */
    private Long id;
 
    /** 模板名称 */
    @Excel(name = "模板名称")
    private String templateName;
 
    /** 调整系数 */
    @Excel(name = "调整系数")
    private Long adjustCoefficient;
 
    /** 调整方式:乘除 */
    @Excel(name = "调整方式:乘除")
    private String adjustWay;
 
    /** 考核类型 */
    @Excel(name = "考核类型")
    private Long examineCategory;
 
    /** 启用/停用 */
    @Excel(name = "启用/停用")
    private String status;
 
    /** 区县 */
    @Excel(name = "区县")
    private List deptId;
 
    /** 创建人id */
    private Long createUser;
 
    /** 创建人姓名 */
    @Excel(name = "创建人姓名")
    private String createUserName;
 
    /**  */
    private Long updateUser;
 
    /**  */
    @Excel(name = "")
    private String updateUserName;
 
    /** 逻辑删除 */
    private String deleted;
 
 
    /** 创建者 */
    private String createBy;
 
    /** 创建时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /** 更新者 */
    @TableField(fill = FieldFill.UPDATE)
    private String updateBy;
 
    /** 更新时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @TableField(fill = FieldFill.UPDATE)
    private Date updateTime;
}