| | |
| | | /** |
| | | * 头像 |
| | | */ |
| | | @Excel(name = "头像", width = 15,type = 2) |
| | | // @Excel(name = "头像", width = 15,type = 2) |
| | | private String avatar; |
| | | |
| | | /** |
| | | * 生日 |
| | | */ |
| | | @Excel(name = "生日", width = 15, format = "yyyy-MM-dd") |
| | | // @Excel(name = "生日", width = 15, format = "yyyy-MM-dd") |
| | | @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date birthday; |
| | |
| | | /** |
| | | * 性别(1:男 2:女) |
| | | */ |
| | | @Excel(name = "性别", width = 15,dicCode="sex") |
| | | // @Excel(name = "性别", width = 15,dicCode="sex") |
| | | @Dict(dicCode = "sex") |
| | | private Integer sex; |
| | | |
| | | /** |
| | | * 电子邮件 |
| | | */ |
| | | @Excel(name = "电子邮件", width = 15) |
| | | // @Excel(name = "电子邮件", width = 15) |
| | | private String email; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 删除状态(0,正常,1已删除) |
| | | */ |
| | | @Excel(name = "删除状态", width = 15,dicCode="del_flag") |
| | | // @Excel(name = "删除状态", width = 15,dicCode="del_flag") |
| | | @TableLogic |
| | | private Integer delFlag; |
| | | |
| | |
| | | /** |
| | | * 职务,关联职务表 |
| | | */ |
| | | @Excel(name = "职务", width = 15) |
| | | @Excel(name = "岗位", width = 15) |
| | | @Dict(dictTable ="sys_position",dicText = "name",dicCode = "code") |
| | | private String post; |
| | | |
| | | /** |
| | | * 座机号 |
| | | */ |
| | | @Excel(name = "座机号", width = 15) |
| | | // @Excel(name = "座机号", width = 15) |
| | | private String telephone; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 身份(0 普通成员 1 上级) |
| | | */ |
| | | @Excel(name="(1普通成员 2上级)",width = 15) |
| | | // @Excel(name="(1普通成员 2上级)",width = 15) |
| | | private Integer userIdentity; |
| | | |
| | | /** |
| | | * 用户类型(1 普通成员 2 工段 3 车间 4 公司) |
| | | */ |
| | | @Excel(name="(1普通成员 2工段 3车间 4公司)",width = 15) |
| | | // @Excel(name="(1普通成员 2工段 3车间 4公司)",width = 15) |
| | | private Integer userType; |
| | | |
| | | /** |
| | | * 负责部门 |
| | | */ |
| | | @Excel(name="负责部门",width = 15,dictTable ="sys_depart",dicText = "depart_name",dicCode = "id") |
| | | // @Excel(name="负责部门",width = 15,dictTable ="sys_depart",dicText = "depart_name",dicCode = "id") |
| | | @Dict(dictTable ="sys_depart",dicText = "depart_name",dicCode = "id") |
| | | private String departIds; |
| | | |
| | | /** |
| | | * 负责产线 |
| | | */ |
| | | @Excel(name="负责产线",width = 15,dictTable ="mdc_production",dicText = "production_name",dicCode = "id") |
| | | @Excel(name="车间分配",width = 15,dictTable ="mdc_production",dicText = "production_name",dicCode = "id") |
| | | @Dict(dictTable ="mdc_production",dicText = "production_name",dicCode = "id") |
| | | private String productionIds; |
| | | |