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/entity/ProductEntryEntity.java | 94 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 94 insertions(+), 0 deletions(-)
diff --git a/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/entity/ProductEntryEntity.java b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/entity/ProductEntryEntity.java
new file mode 100644
index 0000000..d72cb1a
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/entity/ProductEntryEntity.java
@@ -0,0 +1,94 @@
+package jnpf.entity;
+
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import jnpf.base.entity.SuperExtendEntity;
+import lombok.Data;
+
+import java.math.BigDecimal;
+
+/**
+ * 浜у搧鏄庣粏
+ *
+ * @鐗堟湰锛� V3.1.0
+ * @鐗堟潈锛� 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙革紙https://www.jnpfsoft.com锛�
+ * @浣滆�咃細 JNPF寮�鍙戝钩鍙扮粍
+ * @鏃ユ湡锛� 2021-07-10 10:40:59
+ */
+@Data
+@TableName("ext_product_entry")
+public class ProductEntryEntity extends SuperExtendEntity.SuperExtendDescriptionEntity<String> {
+
+ /**
+ * 璁㈠崟涓婚敭
+ */
+ @TableField("F_PRODUCT_ID")
+ private String productId;
+
+ /**
+ * 浜у搧缂栫爜
+ */
+ @TableField("F_PRODUCT_CODE")
+ private String productCode;
+
+ /**
+ * 浜у搧鍚嶇О
+ */
+ @TableField("F_PRODUCT_NAME")
+ private String productName;
+
+ /**
+ * 浜у搧瑙勬牸
+ */
+ @TableField("F_PRODUCT_SPECIFICATION")
+ private String productSpecification;
+
+ /**
+ * 鏁伴噺
+ */
+ @TableField("F_QTY")
+ private Integer qty;
+
+ /**
+ * 璁㈣揣绫诲瀷
+ */
+ @TableField("F_TYPE")
+ private String type;
+
+ /**
+ * 鍗曚环
+ */
+ @TableField("F_MONEY")
+ private BigDecimal money;
+
+ /**
+ * 鎶樺悗鍗曚环
+ */
+ @TableField("F_PRICE")
+ private BigDecimal price;
+
+ /**
+ * 鍗曚綅
+ */
+ @TableField("F_UTIL")
+ private String util;
+
+ /**
+ * 鎺у埗鏂瑰紡
+ */
+ @TableField("F_COMMAND_TYPE")
+ private String commandType;
+
+ /**
+ * 閲戦
+ */
+ @TableField("F_AMOUNT")
+ private BigDecimal amount;
+
+ /**
+ * 娲诲姩
+ */
+ @TableField("F_ACTIVITY")
+ private String activity;
+
+}
--
Gitblit v1.8.0