Browse Source

补充用户中没有的人员字段

xieyn 2 years ago
parent
commit
9732a20951

+ 34 - 0
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/entity/SysUser.java

@@ -342,4 +342,38 @@ public class SysUser implements Serializable {
 
     @TableField(exist = false)
     private java.lang.String deptName;//临时字段,存放部门名称
+
+
+    /**
+     * 补充的字段
+     */
+    /**证件类型*/
+    @Excel(name = "证件类型", width = 15)
+    @ApiModelProperty(value = "证件类型")
+    private java.lang.String idType;
+    /**员工类型*/
+    @Excel(name = "员工类型", width = 15)
+    @ApiModelProperty(value = "员工类型")
+    private java.lang.String type;
+    /**岗位职能要求*/
+    @Excel(name = "岗位职能要求", width = 15)
+    @ApiModelProperty(value = "岗位职能要求")
+    private java.lang.String requirement;
+    /**工资开户行*/
+    @Excel(name = "工资开户行", width = 15)
+    @ApiModelProperty(value = "工资开户行")
+    private java.lang.String bank;
+    /**公积金号*/
+    @Excel(name = "公积金号", width = 15)
+    @ApiModelProperty(value = "公积金号")
+    private java.lang.String cpf;
+    /**社保缴纳地*/
+    @Excel(name = "社保缴纳地", width = 15)
+    @ApiModelProperty(value = "社保缴纳地")
+    private java.lang.String ssPlace;
+    /**社保号*/
+    @Excel(name = "社保号", width = 15)
+    @ApiModelProperty(value = "社保号")
+    private java.lang.String ssAccount;
+
 }