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/ProductGoodsEntity.java |   64 ++++++++++++++++++++++++++++++++
 1 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/entity/ProductGoodsEntity.java b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/entity/ProductGoodsEntity.java
new file mode 100644
index 0000000..cfa2b28
--- /dev/null
+++ b/jnpf-lims/jnpf-lims-entity/src/main/java/jnpf/entity/ProductGoodsEntity.java
@@ -0,0 +1,64 @@
+package jnpf.entity;
+
+import com.alibaba.fastjson.annotation.JSONField;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableName;
+import jnpf.base.entity.SuperExtendEntity;
+import lombok.Data;
+
+/**
+ * 浜у搧鍟嗗搧
+ *
+ * @鐗堟湰锛� V3.1.0
+ * @鐗堟潈锛� 寮曡繄淇℃伅鎶�鏈湁闄愬叕鍙革紙https://www.jnpfsoft.com锛�
+ * @浣滆�咃細 JNPF寮�鍙戝钩鍙扮粍
+ * @鏃ユ湡锛� 2021-07-10 15:57:50
+ */
+@Data
+@TableName("ext_product_goods")
+public class ProductGoodsEntity extends SuperExtendEntity<String> {
+
+    /**
+     * 鍒嗙被涓婚敭
+     */
+    @TableField("F_CLASSIFY_ID")
+    private String classifyId;
+
+    /**
+     * 浜у搧缂栧彿
+     */
+    @TableField("F_EN_CODE")
+    @JSONField(name = "code")
+    private String enCode;
+
+    /**
+     * 浜у搧鍚嶇О
+     */
+    @TableField("F_FULL_NAME")
+    private String fullName;
+
+    /**
+     * 璁㈣揣绫诲瀷
+     */
+    @TableField("F_TYPE")
+    private String type;
+
+    /** 浜у搧瑙勬牸 */
+    @TableField("F_PRODUCT_SPECIFICATION")
+    private String productSpecification;
+
+    /** 鍗曚环 */
+    @TableField("F_MONEY")
+    private String money;
+
+    /**
+     * 搴撳瓨鏁�
+     */
+    @TableField("F_QTY")
+    private Integer qty;
+
+    /** 閲戦 */
+    @TableField("F_AMOUNT")
+    private String amount;
+
+}

--
Gitblit v1.8.0