| | |
| | | package cc.mrbird.febs.server.hr.entity; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | | import java.util.Date; |
| | | |
| | | import cc.mrbird.febs.common.core.annotation.FieldInfo; |
| | |
| | | * @since JDK1.8 |
| | | */ |
| | | @Data |
| | | @TableName("t_emp_baseInfo") |
| | | @TableName("t_emp_baseinfo") |
| | | @Excel("员工基本信息表") |
| | | public class EmpBaseInfo implements Serializable { |
| | | |
| | |
| | | @TableField("allDeptName") |
| | | private String allDeptName = ""; |
| | | |
| | | // @FieldInfo(name = "dimissRemark", type = "varchar", explain = "离职备注") |
| | | // @TableField("dimissRemark") |
| | | // private String dimissRemark = ""; |
| | | @FieldInfo(name = "annualLeave", type = "int", explain = "年假天数") |
| | | @TableField("annualLeave") |
| | | private Integer annualLeave = 0; |
| | | } |