wl
2022-11-23 f18d5a75c35774ba77802cd1f0c76706aeda8df7
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package com.ycl.entity.cockpitManage;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 队伍建设表
 * </p>
 *
 * @author zhanghua
 * @since 2022-10-31
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_team_construction")
public class TeamConstruction implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    @ExcelIgnore
    private Long id;
 
    @ExcelIgnore
    private String regionIds;
 
    /**
     * 部门名称
     */
    @TableField("name")
    @ExcelProperty(value = "部门名称", index = 0)
    private String name;
 
    /**
     * 部门人数
     */
    @TableField("people_number")
    @ExcelProperty(value = "部门人数", index = 1)
    private Integer peopleNumber;
 
    /**
     * 本科学历及以上人数
     */
    @TableField("up_undergraduate_people_number")
    @ExcelProperty(value = "本科学历及以上人数", index = 2)
    private Integer upUndergraduatePeopleNumber;
 
    /**
     * 本科学历及以上人数
     */
    @TableField("holder_number")
    @ExcelProperty(value = "持证人数", index = 3)
    private Integer holderNumber;
 
    /**
     * 45岁以下人数
     */
    @TableField("under_forty_five_people_number")
    @ExcelProperty(value = "45岁以下人数", index = 4)
    private Integer underFortyFivePeopleNumber;
 
    /**
     * 法律职业资格证人数
     */
    @TableField("legal_professional_qualification_certificate_people_number")
    @ExcelProperty(value = "法律职业资格证人数", index = 5)
    private Integer legalProfessionalQualificationCertificatePeopleNumber;
 
    /**
     * 通报数量
     */
    @TableField("report_number")
    @ExcelProperty(value = "通报数量", index = 6)
    private Integer reportNumber;
 
    /**
     * 违纪行为数量
     */
    @TableField("disciplinary_offence_number")
    @ExcelProperty(value = "违纪行为数量", index = 7)
    private Integer disciplinaryOffenceNumber;
 
    /**
     * 违法犯罪行为数量
     */
    @TableField("criminal_offense_number")
    @ExcelProperty(value = "违法犯罪行为数量", index = 8)
    private Integer criminalOffenseNumber;
 
    /**
     * 每月案件数量
     */
    @TableField("month_case_number")
    @ExcelProperty(value = "每月案件数量", index = 9)
    private Integer monthCaseNumber;
 
    /**
     * 每月案件数量
     */
    @TableField("month_index_number")
    @ExcelProperty(value = "每月指标数", index = 10)
    private Integer monthIndexNumber;
 
    /**
     * 未超时案件数量
     */
    @TableField("no_timeout_case_number")
    @ExcelProperty(value = "未超时案件数量", index = 11)
    private Integer noTimeoutCaseNumber;
 
    /**
     * 复诉或诉讼数量
     */
    @TableField("review_or_lawsuit_number")
    @ExcelProperty(value = "复诉或诉讼数量", index = 12)
    private Integer reviewOrLawsuitNumber;
 
    /**
     * 状态(0禁止,1启用)
     */
    @TableField("status")
    @ExcelIgnore
    private Integer status;
 
    /**
     * 是否删除(0否,1是)
     */
    @TableField("is_delete")
    @ExcelIgnore
    private Integer isDelete;
 
    /**
     * 创建时间
     */
    @TableField("create_time")
    @ExcelIgnore
    private LocalDateTime createTime;
 
    /**
     * 更新时间
     */
    @TableField("update_time")
    @ExcelIgnore
    private LocalDateTime updateTime;
}