From 113cd73922b9b67c261c19c744e46eb2822d7b41 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 14 十一月 2025 14:54:11 +0800
Subject: [PATCH] Merge branch 'prod' into dev_tide

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

diff --git a/src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java b/src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java
new file mode 100644
index 0000000..3994833
--- /dev/null
+++ b/src/main/java/com/ruoyi/lavorissue/pojo/LaborIssue.java
@@ -0,0 +1,172 @@
+package com.ruoyi.lavorissue.pojo;
+
+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;
+import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.time.LocalDateTime;
+import java.util.Date;
+
+/**
+ * @author :yys
+ * @date : 2025/8/13 11:12
+ */
+@Data
+@TableName("labor_issue")
+@ApiModel
+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;
+
+    /**
+     * 閮ㄩ棬鍚嶇О
+     */
+    @ApiModelProperty("閮ㄩ棬鍚嶇О")
+    @Excel(name = "閮ㄩ棬鍚嶇О")
+    @TableField(exist = false)
+    private String deptName;
+
+    /**
+     * 鍔充繚鍗曞彿
+     */
+    @ApiModelProperty("鍔充繚鍗曞彿")
+    @Excel(name = "鍔充繚鍗曞彿")
+    private String orderNo;
+
+    /**
+     * 鍛樺伐id
+     */
+    @ApiModelProperty("鍛樺伐id")
+    private Long staffId;
+
+    /**
+     * 鍛樺伐鍚嶇О
+     */
+    @ApiModelProperty("鍛樺伐鍚嶇О")
+    @Excel(name = "鍛樺伐鍚嶇О")
+    @TableField(exist = false)
+    private String staffName;
+
+    /**
+     * 鍛樺伐缂栧彿
+     */
+    @ApiModelProperty("鍛樺伐缂栧彿")
+    @Excel(name = "鍛樺伐缂栧彿")
+    @TableField(exist = false)
+    private String staffNo;
+
+    /**
+     * 鍔充繚绫诲瀷-瀛楀吀
+     */
+    @ApiModelProperty("鍔充繚绫诲瀷-瀛楀吀")
+    private String dictType;
+
+    /**
+     * 鍔充繚绫诲瀷
+     */
+    @ApiModelProperty("鍔充繚绫诲瀷")
+    @Excel(name = "鍔充繚绫诲瀷")
+    @TableField(exist = false)
+    private String dictTypeName;
+
+    /**
+     * 闃插叿鍚嶇О-瀛楀吀
+     */
+    @ApiModelProperty("闃插叿鍚嶇О-瀛楀吀")
+    private String dictId;
+
+    /**
+     * 闃插叿鍚嶇О
+     */
+    @ApiModelProperty("闃插叿鍚嶇О")
+    @Excel(name = "闃插叿鍚嶇О")
+    @TableField(exist = false)
+    private String dictName;
+
+    /**
+     * 棰嗙敤鏁伴噺
+     */
+    @ApiModelProperty("棰嗙敤鏁伴噺")
+    @Excel(name = "棰嗙敤鏁伴噺")
+    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("棰嗙敤鏃ユ湡")
+    @Excel(name = "棰嗙敤鏃ユ湡", width = 30, dateFormat = "yyyy-MM-dd")
+    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
+    private Date adoptedDate;
+
+    /**
+     * 绛惧悕
+     */
+    @Excel(name = "绛惧悕")
+    @TableField(exist = false)
+    private String sign;
+
+    /**
+     * 鍒涘缓鑰�
+     */
+    @TableField(fill = FieldFill.INSERT)
+    private Integer createUser;
+
+    /**
+     * 鍒涘缓鏃堕棿
+     */
+    @TableField(fill = FieldFill.INSERT)
+    private LocalDateTime createTime;
+
+    /**
+     * 淇敼鑰�
+     */
+    @TableField(fill = FieldFill.INSERT_UPDATE)
+    private Integer updateUser;
+
+    /**
+     * 淇敼鏃堕棿
+     */
+    @TableField(fill = FieldFill.INSERT_UPDATE)
+    private LocalDateTime updateTime;
+
+    /**
+     * 绉熸埛ID
+     */
+    @TableField(fill = FieldFill.INSERT)
+    private Long tenantId;
+
+}

--
Gitblit v1.9.3