From 34981c30a78e8bbd7791131059a9210f9928b62c Mon Sep 17 00:00:00 2001
From: 刘光辉 <347230014@qq.com>
Date: 星期四, 17 九月 2026 09:24:09 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into master
---
jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/salesorder/SalesOrderForm.java | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 59 insertions(+), 0 deletions(-)
diff --git a/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/salesorder/SalesOrderForm.java b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/salesorder/SalesOrderForm.java
new file mode 100644
index 0000000..6efa270
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/salesorder/SalesOrderForm.java
@@ -0,0 +1,59 @@
+package jnpf.model.salesorder;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * 閿�鍞鍗�
+ *
+ * @author JNPF寮�鍙戝钩鍙扮粍
+ * @version V3.1.0
+ * @copyright 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙�
+ * @date 2021/3/15 8:46
+ */
+@Data
+public class SalesOrderForm {
+ @Schema(description = "娴佺▼涓婚敭")
+ private String flowId;
+ @Schema(description = "娴佺▼鏍囬")
+ private String flowTitle;
+ @Schema(description = "娴佺▼绛夌骇")
+ private Integer flowUrgent;
+ @Schema(description = "娴佺▼鍗曟嵁")
+ private String billNo;
+ @Schema(description = "涓氬姟浜哄憳")
+ private String salesman;
+ @Schema(description = "瀹㈡埛鍚嶇О")
+ private String customerName;
+ @Schema(description = "鑱旂郴浜�")
+ private String contacts;
+ @Schema(description = "鑱旂郴鐢佃瘽")
+ private String contactPhone;
+ @Schema(description = "瀹㈡埛鍦板潃")
+ private String customerAddres;
+ @Schema(description = "鍙戠エ缂栫爜")
+ private String ticketNum;
+ @Schema(description = "寮�绁ㄦ棩鏈�")
+ private Long ticketDate;
+ @Schema(description = "鍙戠エ绫诲瀷")
+ private String invoiceType;
+ @Schema(description = "浠樻鏂瑰紡")
+ private String paymentMethod;
+ @Schema(description = "浠樻閲戦")
+ private BigDecimal paymentMoney;
+ @Schema(description = "閿�鍞棩鏈�")
+ private Long salesDate;
+ @Schema(description = "鐩稿叧闄勪欢")
+ private String fileJson;
+ @Schema(description = "鎻忚堪")
+ private String description;
+ @Schema(description = "鎻愪氦/淇濆瓨 0-1")
+ private String status;
+ @Schema(description = "鏄庣粏")
+ private List<SalesOrderEntryEntityInfoModel> entryList = new ArrayList<>();
+
+}
--
Gitblit v1.8.0