From 2f640b1038fa331954f78ed1f4317212cf5bb34d Mon Sep 17 00:00:00 2001 From: chenlu <1320612696@qq.com> Date: 星期五, 07 六月 2024 16:56:06 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override --- north-glass-erp/src/main/java/com/example/erp/dto/sd/DeliveryDetailDTO.java | 62 +++++++++++++++++++++++++++++++ 1 files changed, 62 insertions(+), 0 deletions(-) diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/sd/DeliveryDetailDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/sd/DeliveryDetailDTO.java new file mode 100644 index 0000000..797b1cb --- /dev/null +++ b/north-glass-erp/src/main/java/com/example/erp/dto/sd/DeliveryDetailDTO.java @@ -0,0 +1,62 @@ +package com.example.erp.dto.sd; + +import com.alibaba.excel.annotation.ExcelProperty; +import com.example.erp.entity.sd.Delivery; +import com.example.erp.entity.sd.DeliveryDetail; +import com.example.erp.entity.sd.OrderDetail; +import lombok.Data; +import lombok.EqualsAndHashCode; + +import java.time.LocalDate; + + +@Data +public class DeliveryDetailDTO{ + @ExcelProperty("缂栧彿") + private Long id; + @ExcelProperty("鍙戣揣鍗曞彿") + private String deliveryId; + @ExcelProperty("鍙戣揣搴忓彿") + private Integer deliveryNumber; + @ExcelProperty("浠樻鏉′欢") + private String paymentTerms; + @ExcelProperty("椤圭洰鍚嶇О") + private String project; + @ExcelProperty("鏁伴噺") + private Integer quantity; + @ExcelProperty("闈㈢Н") + private Double area; + @ExcelProperty("閲戦") + private Double money; + @ExcelProperty("瀹㈡埛缂栧彿") + private String customerId; + @ExcelProperty("瀹㈡埛鍚嶇О") + private String customerName; + @ExcelProperty("閫佽揣鏃ユ湡") + private LocalDate deliveryDate; + @ExcelProperty("鏀粯鏂瑰紡") + private String payMethod; + @ExcelProperty("鏀粯鏃ユ湡") + private LocalDate payDate; + @ExcelProperty("閿�鍞憳") + private String salesman; + @ExcelProperty("鍙戣揣鍛�") + private String creator; + @ExcelProperty("鑱旂郴浜�") + private String contacts; + @ExcelProperty("鑱旂郴鐢佃瘽") + private String contactNumber; + @ExcelProperty("閫佽揣鍦板潃") + private String deliveryAddress; + @ExcelProperty("閿�鍞崟鍙�") + private String orderId; + @ExcelProperty("璁㈠崟搴忓彿") + private Integer orderNumber; + @ExcelProperty("澶囨敞") + private String deliveryDetailRemakes; + @ExcelProperty("鎶ヨ〃鏃ユ湡") + private LocalDate createTime; + + + +} -- Gitblit v1.8.0