From 79b057e22e97e7db70faf25b33a5977b06771810 Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 08 十二月 2025 14:52:54 +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