| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.approve.utils.StartAndEndDateDto; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @Data |
| | | @TableName("labor_issue") |
| | | @ApiModel |
| | | public class LaborIssue { |
| | | public class LaborIssue extends StartAndEndDateDto { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty("1-已领取劳保数量 2-未领取劳保数量 3-超时已领取劳保数量 4-超时未领取劳保数量") |
| | | private Integer status; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer season; |
| | | |
| | | /** |
| | | * 部门名称 |
| | |
| | | @Excel(name = "部门名称") |
| | | @TableField(exist = false) |
| | | private String deptName; |
| | | |
| | | /** |
| | | * 劳保单号 |
| | | */ |
| | | @ApiModelProperty("劳保单号") |
| | | @Excel(name = "劳保单号") |
| | | private String orderNo; |
| | | |
| | | /** |
| | | * 员工id |
| | |
| | | private String staffNo; |
| | | |
| | | /** |
| | | * 劳保类型-字典 |
| | | */ |
| | | @ApiModelProperty("劳保类型-字典") |
| | | private String dictType; |
| | | |
| | | /** |
| | | * 劳保类型 |
| | | */ |
| | | @ApiModelProperty("劳保类型") |
| | | @Excel(name = "劳保类型") |
| | | @TableField(exist = false) |
| | | private String dictTypeName; |
| | | |
| | | /** |
| | | * 防具名称-字典 |
| | | */ |
| | | @ApiModelProperty("防具名称-字典") |
| | |
| | | private Long num; |
| | | |
| | | /** |
| | | * 进厂日期 |
| | | */ |
| | | @ApiModelProperty("进厂日期") |
| | | @Excel(name = "进厂日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date factoryDate; |
| | | |
| | | /** |
| | | * 发放日期 |
| | | */ |
| | | @ApiModelProperty("发放日期") |
| | | @Excel(name = "发放日期", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date issueDate; |
| | | |
| | | /** |
| | | * 领用日期 |
| | | */ |
| | | @ApiModelProperty("领用日期") |