| | |
| | | |
| | | 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_on_job") |
| | | @Data |
| | | public class StaffOnJob implements Serializable { |
| | | public class StaffOnJob extends DateQueryDto implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 员工编号 |
| | | */ |
| | | @Excel(name = "员工编号") |
| | | @Excel(name = "员工编号", type = Excel.Type.EXPORT, cellType = Excel.ColumnType.STRING) |
| | | private String staffNo; |
| | | |
| | | /** |
| | |
| | | private String nativePlace; |
| | | |
| | | /** |
| | | * 岗位 |
| | | * 部门岗位id |
| | | */ |
| | | // @Excel(name = "岗位") |
| | | private Integer deptPositionId; |
| | | |
| | | @TableField(exist = false) |
| | | @Excel(name = "岗位") |
| | | private String postJob; |
| | | private String deptPositionName; |
| | | |
| | | /** |
| | | * 家庭住址 |