智慧保安后台管理-外网项目备份
zhongrj
2023-09-17 8853292babb2ad94de4a3207966f1e83b767cd2d
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
156
157
158
159
160
161
162
163
164
165
166
167
package org.springblade.modules.recruitment.entity;
 
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 com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 实体类
 * @author zhongrj
 * @time 2021-07-06
 */
@Data
@TableName("sys_recruitment")
public class Recruitment implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 招聘主键id
     */
    @TableId(value = "id",type = IdType.AUTO)
    private Long id;
 
    /**
     * 部门id
     */
    @TableField("dept_id")
    private Long deptId;
 
    /**
     * 招聘岗位名称
     */
    private String name;
 
    /**
     * 招聘人数
     */
    private Integer number;
 
    /**
     * 学历要求
     */
    private String education;
 
    /**
     * 工作经验
     */
    private String experience;
 
    /**
     * 工作岗位描述
     */
    @TableField("work_desc")
    private String workDesc;
 
    /**
     * 福利待遇 社保,五险...
     */
    private String welfare;
 
    /**
     * 最小薪资
     */
    @TableField("min_salary")
    private Integer minSalary;
 
    /**
     * 最高薪资
     */
    @TableField("max_salary")
    private Integer maxSalary;
 
    /**
     * 单位介绍
     */
    @TableField("units_desc")
    private String unitsDesc;
 
    /**
     * 单位规模 100-500人 ....
     */
    @TableField("units_scale")
    private String unitsScale;
 
    /**
     * 单位性质 民营。。。
     */
    @TableField("units_nature")
    private String unitsNature;
 
    /**
     * 行业 安保...
     */
    private String industry;
 
    /**
     * 联系人
     */
    private String linkman;
 
    /**
     * 联系电话
     */
    private String phone;
 
    /**
     * 省
     */
    private Integer province;
 
    /**
     * 市
     */
    private Integer city;
 
    /**
     * 区
     */
    private Integer district;
 
    /**
     * 详细地址
     */
    private String address;
 
    /**
     * 招聘开始时间
     */
    @TableField("start_time")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date startTime;
 
    /**
     * 招聘结束时间
     */
    @TableField("end_time")
    @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date endTime;
 
    /**
     * 招聘发布时间
     */
    @TableField("create_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 招聘状态  1:招聘中   2:停止招聘
     */
    private Integer status;
 
 
    /**
     * 是否持证  1:是  2:否
     */
    private Integer permit;
 
 
}