From f81c345f7bf058fdfe5fee6f0dfd5de0f4cb767c Mon Sep 17 00:00:00 2001
From: chenrui <1187576398@qq.com>
Date: 星期一, 12 五月 2025 16:29:02 +0800
Subject: [PATCH] Merge branch 'master' of http://114.132.189.42:9002/r/product-inventory-management-after

---
 src/main/java/com/ruoyi/sales/excel/InvoiceRegisAndProductExcelDto.java |   73 ++++++++++++++++++++++++++++++++++++
 1 files changed, 73 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/sales/excel/InvoiceRegisAndProductExcelDto.java b/src/main/java/com/ruoyi/sales/excel/InvoiceRegisAndProductExcelDto.java
new file mode 100644
index 0000000..8f042c6
--- /dev/null
+++ b/src/main/java/com/ruoyi/sales/excel/InvoiceRegisAndProductExcelDto.java
@@ -0,0 +1,73 @@
+package com.ruoyi.sales.excel;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.math.BigDecimal;
+import java.time.LocalDateTime;
+
+@Data
+public class InvoiceRegisAndProductExcelDto {
+
+    @Excel(name = "閿�鍞悎鍚屽彿")
+    private String salesContractNo;
+
+    @Excel(name = "瀹㈡埛鍚堝悓鍙�")
+    private String customerContractNo;
+
+    @Excel(name = "瀹㈡埛鍚嶇О")
+    private String customerName;
+
+    @Excel(name =  "涓氬姟鍛�")
+    private String salesman;
+
+    @Excel(name = "椤圭洰鍚嶇О")
+    private String projectName;
+
+    @Excel(name =  "鍚堝悓閲戦")
+    private BigDecimal contractAmount;
+
+    @Excel(name =  "浜у搧澶х被")
+    private String productCategory;
+
+    @Excel(name =  "瑙勬牸鍨嬪彿")
+    private String specificationModel;
+
+    @Excel(name =  "鍗曚綅")
+    private String unit;
+
+    @Excel(name =  "鏁伴噺")
+    private BigDecimal quantity;
+
+    @Excel(name =  "绋庣巼%")
+    private BigDecimal taxRate;
+
+    @Excel(name = "鍚◣鍗曚环")
+    private BigDecimal taxInclusiveUnitPrice;
+
+    @Excel(name = "鍚◣鎬讳环")
+    private BigDecimal taxInclusiveTotalPrice;
+
+    @Excel(name ="涓嶅惈绋庢�讳环")
+    private BigDecimal taxExclusiveTotalPrice;
+
+    @Excel(name ="鍙戠エ绫诲瀷")
+    private String invoiceType;
+
+    @Excel(name ="寮�绁ㄦ暟")
+    private Integer invoiceNum;
+
+    @Excel(name ="鏈紑绁ㄦ暟")
+    private Integer noInvoiceNum;
+
+    @Excel(name ="寮�绁ㄩ噾棰�")
+    private BigDecimal invoiceAmount;
+
+    @Excel(name ="鏈紑绁ㄩ噾棰�")
+    private BigDecimal noInvoiceAmount;
+
+
+}

--
Gitblit v1.9.3