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;
|
|
|
|
}
|