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/product/ProductCrForm.java | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 60 insertions(+), 0 deletions(-)
diff --git a/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/product/ProductCrForm.java b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/product/ProductCrForm.java
new file mode 100644
index 0000000..7992f20
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/model/product/ProductCrForm.java
@@ -0,0 +1,60 @@
+package jnpf.model.product;
+import jnpf.model.productentry.ProductEntryInfoVO;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.util.List;
+
+/**
+ *
+ * Product妯″瀷
+ * @鐗堟湰锛� V3.1.0
+ * @鐗堟潈锛� 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙革紙https://www.jnpfsoft.com锛�
+ * @浣滆�咃細 JNPF寮�鍙戝钩鍙扮粍
+ * @鏃ユ湡锛� 2021-07-10 10:40:59
+ */
+@Data
+public class ProductCrForm {
+ @Schema(description ="璁㈠崟缂栧彿")
+ private String code;
+ @Schema(description ="瀹㈡埛Id")
+ private String customerId;
+ @Schema(description ="瀹㈡埛鍚嶇О")
+ private String customerName;
+ @Schema(description ="瀹℃牳浜�")
+ private String auditName;
+ @Schema(description ="瀹℃牳鏃ユ湡")
+ private Long auditDate;
+ @Schema(description ="鍙戣揣浠撳簱")
+ private String goodsWarehouse;
+ @Schema(description ="鍙戣揣閫氱煡鏃堕棿")
+ private Long goodsDate;
+ @Schema(description ="鍙戣揣閫氱煡浜�")
+ private String goodsName;
+ @Schema(description ="鏀舵鏂瑰紡")
+ private String gatheringType;
+ @Schema(description ="涓氬姟鍛�")
+ private String business;
+ @Schema(description ="閫佽揣鍦板潃")
+ private String address;
+ @Schema(description ="鑱旂郴鏂瑰紡")
+ private String contactTel;
+ @Schema(description ="鏀惰揣娑堟伅")
+ private Integer harvestMsg;
+ @Schema(description ="鏀惰揣浠撳簱")
+ private String harvestWarehouse;
+ @Schema(description ="浠e彂瀹㈡埛")
+ private String issuingName;
+ @Schema(description ="璁╁埄閲戦")
+ private BigDecimal partPrice;
+ @Schema(description ="浼樻儬閲戦")
+ private BigDecimal reducedPrice;
+ @Schema(description ="鎶樺悗閲戦")
+ private BigDecimal discountPrice;
+ @Schema(description ="澶囨敞")
+ private String description;
+ @Schema(description ="瀛愯〃鏁版嵁")
+ private List<ProductEntryInfoVO> productEntryList;
+
+}
--
Gitblit v1.8.0