| | |
| | | @FieldInfo(name = "empName", type = "varchar", explain = "员工姓名") |
| | | @TableField("empName") |
| | | private String empName = ""; |
| | | |
| | | @FieldInfo(name = "empStatus", type = "varchar", explain = "员工状态") |
| | | @TableField("empStatus") |
| | | private String empStatus = ""; |
| | | |
| | | @FieldInfo(name = "sex", type = "varchar", explain = "性别码") |
| | | @TableField("sex") |
| | |
| | | @FieldInfo(name = "jobName", type = "varchar", explain = "岗位名称") |
| | | @TableField("jobName") |
| | | private String jobName = ""; |
| | | |
| | | @FieldInfo(name = "attendYear", type = "varchar", explain = "离职考勤年份") |
| | | @TableField(exist = false) |
| | | private String attendYear = ""; |
| | | |
| | | @FieldInfo(name = "attendMonth", type = "tinyint", explain = "离职考勤月份") |
| | | @FieldInfo(name = "attendMonth", type = "varchar", explain = "离职考勤月份") |
| | | @TableField("attendMonth") |
| | | private Integer attendMonth = 0; |
| | | private String attendMonth = ""; |
| | | |
| | | @FieldInfo(name = "attendDays", type = "decimal", explain = "出勤天数") |
| | | @TableField("attendDays") |
| | | private BigDecimal attendDays = BigDecimal.ZERO; |
| | | |
| | | @FieldInfo(name = "overtimeHour", type = "decimal", explain = "加班小时") |
| | | @TableField("overtimeHour") |
| | |
| | | @TableField("leaveDay") |
| | | private BigDecimal leaveDay = BigDecimal.ZERO; |
| | | |
| | | @FieldInfo(name = "deduct", type = "decimal", explain = "有无代扣款项") |
| | | @FieldInfo(name = "deduct", type = "varchar", explain = "有无代扣款项") |
| | | @TableField("deduct") |
| | | private BigDecimal deduct = BigDecimal.ZERO; |
| | | private String deduct = ""; |
| | | |
| | | @FieldInfo(name = "absenteeism", type = "decimal", explain = "旷工(天)") |
| | | @TableField("absenteeism") |
| | |
| | | @FieldInfo(name = "remark", type = "varchar", explain = "备注") |
| | | @TableField("remark") |
| | | private String remark = ""; |
| | | |
| | | @TableField(exist = false) |
| | | private String deductStr; |
| | | |
| | | } |