From c816f2b9c72ed329fa9e6dbe8db1a0fcdcb3ac91 Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期四, 14 八月 2025 15:40:26 +0800
Subject: [PATCH] yys  新增劳保统计

---
 src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java |   48 +++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 47 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java b/src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java
index 2772d6e..fcd7a17 100644
--- a/src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java
+++ b/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,12 +19,19 @@
 @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;
 
     /**
      * 閮ㄩ棬鍚嶇О
@@ -32,6 +40,12 @@
     @Excel(name = "閮ㄩ棬鍚嶇О")
     @TableField(exist = false)
     private String deptName;
+
+    /**
+     * 鍔充繚鍗曞彿
+     */
+    @ApiModelProperty("鍔充繚鍗曞彿")
+    private String orderNo;
 
     /**
      * 鍛樺伐id
@@ -54,6 +68,20 @@
     @Excel(name = "鍛樺伐缂栧彿")
     @TableField(exist = false)
     private String staffNo;
+
+    /**
+     * 鍔充繚绫诲瀷-瀛楀吀
+     */
+    @ApiModelProperty("鍔充繚绫诲瀷-瀛楀吀")
+    private String dictType;
+
+    /**
+     * 鍔充繚绫诲瀷
+     */
+    @ApiModelProperty("鍔充繚绫诲瀷")
+    @Excel(name = "鍔充繚绫诲瀷")
+    @TableField(exist = false)
+    private String dictTypeName;
 
     /**
      * 闃插叿鍚嶇О-瀛楀吀
@@ -86,6 +114,24 @@
     private Date adoptedDate;
 
     /**
+     * 杩涘巶鏃ユ湡
+     */
+    @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;
+
+    /**
      * 绛惧悕
      */
     @Excel(name = "绛惧悕")

--
Gitblit v1.9.3