maven
2025-11-19 72a372cb26c4ba489efae6b65dbf9fdfea1b5815
src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java
@@ -2,6 +2,7 @@
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;
@@ -18,20 +19,40 @@
@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;
    /**
     * 部门名称
     * 部门岗位id
     */
    @ApiModelProperty("部门名称")
    @Excel(name = "部门名称")
    @ApiModelProperty("部门岗位id")
    private Integer deptPositionName;
    /**
     * 部门岗位名称
     */
    @ApiModelProperty("部门岗位名称")
    @Excel(name = "部门岗位名称")
    @TableField(exist = false)
    private String deptName;
    /**
     * 劳保单号
     */
    @ApiModelProperty("劳保单号")
    @Excel(name = "劳保单号")
    private String orderNo;
    /**
     * 员工id
@@ -56,6 +77,20 @@
    private String staffNo;
    /**
     * 劳保类型-字典
     */
    @ApiModelProperty("劳保类型-字典")
    private String dictType;
    /**
     * 劳保类型
     */
    @ApiModelProperty("劳保类型")
    @Excel(name = "劳保类型")
    @TableField(exist = false)
    private String dictTypeName;
    /**
     * 防具名称-字典
     */
    @ApiModelProperty("防具名称-字典")
@@ -77,6 +112,24 @@
    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("领用日期")