张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
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
package com.thhy.secure.modules.biz.encourage.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
public class PlatUserDto implements Serializable {
    //工号
    private String jobNum;
    //头像地址
    private String photo;
    //姓名
    private String realName;
    //性别
    private String sex;
    //电话
    private String phone;
    //身份证
    private String idNo;
    //岗位
    private String posName;
    //班组
    private String groupName;
    //部门
    private String departName;
    //政治面貌
    private String zzmm;
    //是否有作业证书 1Y0N
    private String hasCert;
    //进厂时间
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date comeFactoryTime;
    //离岗时间
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date leaveFactoryTime;
    //入职时间
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date employedTime;
    //籍贯
    private String jg;
    //人员状态 1在职2离职
    private String status;
 
 
 
}