From 2c296fe96659899097f650a89a56a415424c34a5 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 18 七月 2024 15:55:31 +0800
Subject: [PATCH] Merge branch 'master' of http://bore.pub:10439/r/ERP_override

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

diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/sd/OrderDetailProductDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/sd/OrderDetailProductDTO.java
new file mode 100644
index 0000000..f234507
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/sd/OrderDetailProductDTO.java
@@ -0,0 +1,39 @@
+package com.example.erp.dto.sd;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.example.erp.entity.sd.Order;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+@EqualsAndHashCode(callSuper = true)
+@Data
+public class OrderDetailProductDTO extends Order {
+    @ExcelProperty("璁㈠崟缂栧彿")
+    private String orderId;
+    @ExcelProperty("瀹㈡埛鍚嶇О")
+    private String customerName;
+    @ExcelProperty("浜у搧Id")
+    private Integer productId;
+    @ExcelProperty("浜у搧鍚嶇О")
+    private String productName;
+    @ExcelProperty("鏁伴噺")
+    private Long quantity;
+    @ExcelProperty("瀹為檯鎬婚潰绉�")
+    private Double grossArea;
+    @ExcelProperty("缁撶畻鎬婚潰绉�")
+    private Double computeGrossArea;
+    @ExcelProperty("褰㈢姸")
+    private String shape;
+    @ExcelProperty("寮挗寮у害")
+    private Integer bendRadius;
+    @ExcelProperty("纾ㄨ竟绫诲瀷")
+    private String edgingType;
+    @ExcelProperty("澶囨敞")
+    private String remarks;
+    @ExcelProperty("鍛ㄩ暱")
+    private Double perimeter;
+    @ExcelProperty("鍗曚环")
+    private Double price;
+    @ExcelProperty("鎬婚噾棰�")
+    private Long grossAmount;
+}

--
Gitblit v1.8.0