TStaffVo.java 1.51 KB
Newer Older
耿迪迪's avatar
耿迪迪 committed
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
package com.zehong.system.domain.vo;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.zehong.common.annotation.DataSource;
import com.zehong.common.annotation.Excel;
import com.zehong.common.core.domain.BaseEntity;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;

import java.util.Date;

/**
 * 员工信息管理对象 t_staff
 * 
 * @author zehong
 * @date 2022-06-17
 */
@Data
public class TStaffVo extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 员工id */
    private Integer staffId;

    /** 姓名 */
    private String staffName;

    /** 员工编号 */
    private String staffCode;

    /** 性别 */
    private String sex;

    /** 部门id */
    private Integer deptId;

    private String deptName;

    /** 手机号码 */
    private String phonenumber;

    /** 岗位id */
    private Integer postId;

    private String postName;

    /** 角色id */
    private Integer roleId;

    private String roleName;

    /** 职称 */
    private String positionalTitles;

    /** 工种 */
    private String profession;

    /** 是否特殊作业人员 */
    private String specialOperators;

    /** 证书路径 */
    private String certificateUrl;

    /** 证书名称 */
    private String certificateName;

    /** 证书有效日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date effectiveDate;

    /** 删除标志(0正常,1删除) */
    private String isDel;

}