From 71a4444510d9067654705f0c5803d5f12a21a092 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期二, 11 十一月 2025 09:17:34 +0800
Subject: [PATCH] 添加流程卡进度接口信息
---
north-glass-erp/src/main/java/com/example/erp/dto/pp/FlowCardDTO.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 51 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/pp/FlowCardDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/pp/FlowCardDTO.java
new file mode 100644
index 0000000..ce7d5d4
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/pp/FlowCardDTO.java
@@ -0,0 +1,51 @@
+package com.example.erp.dto.pp;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.example.erp.entity.sd.Order;
+import com.example.erp.entity.sd.OrderDetail;
+import com.example.erp.entity.sd.OrderGlassDetail;
+import com.example.erp.entity.sd.Product;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+public class FlowCardDTO {
+ @TableId(type = IdType.AUTO)
+
+ //閿�鍞崟鍙�
+ @ExcelProperty("閿�鍞崟鍙�")
+ private String orderId;
+ //娴佺▼鍗″彿
+ @ExcelProperty("娴佺▼鍗″彿")
+ private String processId;
+ //瀹㈡埛鍚嶇О
+ @ExcelProperty("瀹㈡埛鍚嶇О")
+ private String customerName;
+ //鎵规
+ @ExcelProperty("鎵规")
+ private String batch;
+ @ExcelProperty("浜у搧ID")
+ private String productId;
+ @ExcelProperty("浜у搧鍚嶇О")
+ private String productName;
+ @ExcelProperty("椤圭洰鍚嶇О")
+ private String project;
+ @ExcelProperty("鏁伴噺")
+ private Integer quantity;
+ @ExcelProperty("闈㈢Н")
+ private Double computeGrossArea;
+ @ExcelProperty("鍒嗘灦鍛�")
+ private String founder;
+ @ExcelProperty("鍔犲伐瑕佹眰")
+ private String processingNote;
+ @ExcelProperty("鎺掔増鐘舵��")
+ private String layoutStatus;
+ @ExcelProperty("鍚堝苟鐘舵��")
+ private Integer merge;
+ @ExcelProperty("鏋跺彿")
+ private String rack;
+}
--
Gitblit v1.8.0