| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.dto.DateQueryDto; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | */ |
| | | @TableName(value = "staff_join_leave_record") |
| | | @Data |
| | | public class StaffJoinLeaveRecord implements Serializable { |
| | | public class StaffJoinLeaveRecord extends DateQueryDto implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | @NotBlank(message = "员工状态不能为空!!!!!!!!") |
| | | @Excel(name = "状态",readConverterExp = "0=离职,1=入职") |
| | | private Integer staffState; |
| | | |
| | | /** |
| | | * 试用期(月) |
| | | */ |
| | | @Excel(name = "试用期(月)") |
| | | private Integer probationPeriod; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 员工编号 |
| | |
| | | private String nativePlace; |
| | | |
| | | /** |
| | | * 岗位 |
| | | * 部门岗位id |
| | | */ |
| | | // @Excel(name = "岗位") |
| | | private Long deptPositionId; |
| | | |
| | | @TableField(exist = false) |
| | | @Excel(name = "岗位") |
| | | private String postJob; |
| | | private String deptPositionName; |
| | | |
| | | /** |
| | | * 家庭住址 |