From 1ca5584d7e3200a9af65a099bd26d3593e2ba702 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 07 五月 2026 14:36:08 +0800
Subject: [PATCH] 迁移pro
---
src/main/java/com/ruoyi/production/bean/dto/ProductionProductMainDto.java | 74 +++++++++++++++++++++++++++++++++++++
1 files changed, 74 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/production/bean/dto/ProductionProductMainDto.java b/src/main/java/com/ruoyi/production/bean/dto/ProductionProductMainDto.java
new file mode 100644
index 0000000..9fc8d86
--- /dev/null
+++ b/src/main/java/com/ruoyi/production/bean/dto/ProductionProductMainDto.java
@@ -0,0 +1,74 @@
+package com.ruoyi.production.bean.dto;
+
+import com.ruoyi.production.pojo.ProductionOrderRoutingOperationParam;
+import com.ruoyi.production.pojo.ProductionProductMain;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+import java.math.BigDecimal;
+import java.time.LocalDate;
+import java.util.List;
+
+@EqualsAndHashCode(callSuper = true)
+@Data
+@Schema(name = "ProductionProductMainDto", description = "production report query dto")
+public class ProductionProductMainDto extends ProductionProductMain {
+
+ @Schema(description = "product process route item id")
+ private Long productProcessRouteItemId;
+
+ @Schema(description = "production report id")
+ private Long productMainId;
+
+ @Schema(description = "tenant id")
+ private Long tenantId;
+
+ @Schema(description = "work order no")
+ private String workOrderNo;
+
+ @Schema(description = "work order status")
+ private String workOrderStatus;
+
+ @Schema(description = "nick name")
+ private String nickName;
+
+ @Schema(description = "quantity")
+ private BigDecimal quantity;
+
+ @Schema(description = "scrap quantity")
+ private BigDecimal scrapQty;
+
+ @Schema(description = "product name")
+ private String productName;
+
+ @Schema(description = "product model name")
+ private String productModelName;
+
+ @Schema(description = "unit")
+ private String unit;
+
+ @Schema(description = "sales contract no")
+ private String salesContractNo;
+
+ @Schema(description = "scheduling date")
+ private LocalDate schedulingDate;
+
+ @Schema(description = "scheduling user name")
+ private String schedulingUserName;
+
+ @Schema(description = "customer name")
+ private String customerName;
+
+ @Schema(description = "process")
+ private String process;
+
+ @Schema(description = "salary quota")
+ private BigDecimal workHours;
+
+ @Schema(description = "wages")
+ private BigDecimal wages;
+
+ @Schema(description = "operation param list")
+ private List<ProductionOrderRoutingOperationParam> productionOperationParamList;
+}
--
Gitblit v1.9.3