From 4f3a98f19143865cdc1de4791e8a95d96bd40c65 Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期五, 01 八月 2025 13:27:59 +0800
Subject: [PATCH] yys 密码已重置

---
 performance-server/src/main/java/com/ruoyi/performance/pojo/AuxiliaryOutputWorkingHoursTemporary.java |  116 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 116 insertions(+), 0 deletions(-)

diff --git a/performance-server/src/main/java/com/ruoyi/performance/pojo/AuxiliaryOutputWorkingHoursTemporary.java b/performance-server/src/main/java/com/ruoyi/performance/pojo/AuxiliaryOutputWorkingHoursTemporary.java
new file mode 100644
index 0000000..2a399b0
--- /dev/null
+++ b/performance-server/src/main/java/com/ruoyi/performance/pojo/AuxiliaryOutputWorkingHoursTemporary.java
@@ -0,0 +1,116 @@
+package com.ruoyi.performance.pojo;
+
+import java.math.BigDecimal;
+import java.time.LocalDateTime;
+import java.util.Date;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.baomidou.mybatisplus.annotation.*;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+/**
+ * 宸ユ椂鏆傚瓨琛�
+ *
+ * @author zhuo
+ * @since 2025-02-27
+ */
+@Data
+@TableName("auxiliary_output_working_hours_temporary")
+public class AuxiliaryOutputWorkingHoursTemporary  {
+
+    @TableId(value = "id", type = IdType.AUTO)
+    private Integer id;
+
+    @ApiModelProperty("妫�娴嬮」鍒嗙被")
+    @ExcelProperty(index = 2, value = "妫�娴嬮」鍒嗙被")
+    private String inspectionItemClass;
+
+    @ApiModelProperty("妫�娴嬮」")
+    @ExcelProperty(index = 3, value = "妫�娴嬮」")
+    private String inspectionItem;
+
+    @ApiModelProperty("妫�娴嬪瓙椤�")
+    @ExcelProperty(index = 4, value = "妫�娴嬪瓙椤�")
+    private String inspectionItemSubclass;
+
+    @ApiModelProperty("鏍峰搧id")
+    private Integer sampleId;
+
+    @ApiModelProperty("鏍峰搧缂栧彿")
+    @ExcelProperty(index = 6, value = "鏍峰搧缂栧彿")
+    private String sample;
+
+    @ApiModelProperty("鍔犵彮濮旀墭鍗曞彿")
+    private String overtimeOrderNo;
+
+    @ApiModelProperty("鍔犵彮宸ユ椂")
+    private BigDecimal overtimeWorkTime;
+
+    @ApiModelProperty("鍔犵彮鏁伴噺")
+    private Integer overtimeAmount;
+
+    @ApiModelProperty("闈炲姞鐝鎵樺崟鍙�")
+    private Integer orderId;
+
+    @ApiModelProperty("濮旀墭鍗曞彿")
+    @ExcelProperty(index = 5, value = "濮旀墭鍗曞彿")
+    private String orderNo;
+
+    @ApiModelProperty("宸ユ椂")
+    private BigDecimal workTime;
+
+    @ApiModelProperty("鏁伴噺")
+    private Integer amount;
+
+    @ApiModelProperty("浜ч噺宸ユ椂")
+    @ExcelProperty(index = 7, value = "浜ч噺宸ユ椂")
+    private BigDecimal outputWorkTime;
+
+    @ApiModelProperty("鏃ユ湡")
+    @ExcelProperty(index = 10, value = "鏃ユ湡")
+    private String dateTime;
+
+    @ApiModelProperty("鍛ㄦ")
+    @ExcelProperty(index = 11, value = "鍛ㄦ")
+    private String week;
+
+    @ApiModelProperty("鏄熸湡")
+    @ExcelProperty(index = 12, value = "鏄熸湡")
+    private String weekDay;
+
+    @ApiModelProperty("妫�娴嬩汉id")
+    @TableField("`check`")
+    private Integer check;
+
+    @ApiModelProperty("鍒涘缓鏃堕棿")
+    @TableField(fill = FieldFill.INSERT)
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    private LocalDateTime createTime;
+
+    @ApiModelProperty("淇敼鏃堕棿")
+    @TableField(fill = FieldFill.INSERT_UPDATE)
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    private LocalDateTime updateTime;
+
+    @ApiModelProperty("鍒涘缓浜篿d")
+    @TableField(fill = FieldFill.INSERT)
+    private Integer createUser;
+
+    @ApiModelProperty("淇敼浜篿d")
+    @TableField(fill = FieldFill.INSERT_UPDATE)
+    private Integer updateUser;
+
+    @ApiModelProperty("宸ユ椂鍒嗙粍")
+    @ExcelProperty(index = 8, value = "宸ユ椂鍒嗙粍")
+    private String manHourGroup;
+
+    @ApiModelProperty("鍗曚环")
+    @ExcelProperty(index = 9, value = "鍗曚环")
+    private BigDecimal price;
+
+    @ApiModelProperty("妫�楠岄」id")
+    private Integer insProductId;
+}
+

--
Gitblit v1.9.3