From 4955996ab044bc275ac78da3543b9d9f5ad7f8d9 Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期五, 12 十二月 2025 16:21:26 +0800
Subject: [PATCH] 提交浏览发货信息

---
 north-glass-erp/src/main/java/com/example/erp/dto/sd/OrderDTO.java |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/sd/OrderDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/sd/OrderDTO.java
new file mode 100644
index 0000000..67b2206
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/sd/OrderDTO.java
@@ -0,0 +1,56 @@
+package com.example.erp.dto.sd;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.example.erp.entity.sd.Order;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+@EqualsAndHashCode(callSuper = true)
+@Data
+public class OrderDTO extends Order {
+    @ExcelProperty("浜у搧Id")
+    private Integer productId;
+    @ExcelProperty("浜у搧鍚嶇О")
+    private String productName;
+    @ExcelProperty("璁㈠崟搴忓彿")
+    private Integer orderNumber;
+    @ExcelProperty("妤煎眰缂栧彿")
+    private String buildingNumber;
+    @ExcelProperty("瀹�")
+    private Double width;
+    @ExcelProperty("楂�")
+    private Double height;
+    @ExcelProperty("鏁伴噺")
+    private Long quantity;
+    @ExcelProperty("寮挗寮у害")
+    private Integer bendRadius;
+    @ExcelProperty("瀹為檯鎬婚潰绉�")
+    private Double grossArea;
+    @ExcelProperty("缁撶畻鎬婚潰绉�")
+    private Double computeGrossArea;
+    @ExcelProperty("閲嶉噺")
+    private Double weights;
+    @ExcelProperty("褰㈢姸")
+    private String shape;
+    @ExcelProperty("纾ㄨ竟绫诲瀷")
+    private String edgingType;
+    @ExcelProperty("澶囨敞")
+    private String remarks;
+    @ExcelProperty("鍛ㄩ暱")
+    private Double perimeter;
+    @ExcelProperty("鍗曚环")
+    private Double price;
+    @ExcelProperty("鎬婚噾棰�")
+    private Double grossAmount;
+    @ExcelProperty("涓�绾х被鍒�")
+    private String levelOne;
+    @ExcelProperty("浜岀骇绫诲埆")
+    private String levelTwo;
+    @ExcelProperty("鎬诲帤搴�")
+    private String totalThickness;
+    @ExcelProperty("瀹㈡埛绠�绉�")
+    private String customerAbbreviation;
+    @ExcelProperty("璁㈠崟鍔犲伐瑕佹眰")
+    private String processingNotes;
+}

--
Gitblit v1.8.0