From a8192f5939c2ba3404f4882e7f83370b85707c1b Mon Sep 17 00:00:00 2001
From: yuejiayang <146344614+YangLei105@users.noreply.github.com>
Date: Thu, 16 Nov 2023 10:11:29 +0800
Subject: [PATCH] 2023.11.16
---
.../part/entity/ProductGroupInformationEntity.java | 8 ++++++--
.../mapper/part/ProductGroupInformationMapper.xml | 4 ++++
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/spring/modules/part/entity/ProductGroupInformationEntity.java b/src/main/java/com/spring/modules/part/entity/ProductGroupInformationEntity.java
index e65d677a..926770f0 100644
--- a/src/main/java/com/spring/modules/part/entity/ProductGroupInformationEntity.java
+++ b/src/main/java/com/spring/modules/part/entity/ProductGroupInformationEntity.java
@@ -20,17 +20,21 @@ public class ProductGroupInformationEntity extends QueryPage implements Serializ
**/
private String site;
/**
- * 分类编码
+ * 商品组编码
**/
private String productGroupId;
/**
- * 分类名称
+ * 商品组名称
**/
private String productGroupName;
/**
* 是否可用
**/
private String active;
+ /**
+ * 商品组
+ **/
+ private String type;
/**
* 创建时间
**/
diff --git a/src/main/resources/mapper/part/ProductGroupInformationMapper.xml b/src/main/resources/mapper/part/ProductGroupInformationMapper.xml
index e8583212..1c982029 100644
--- a/src/main/resources/mapper/part/ProductGroupInformationMapper.xml
+++ b/src/main/resources/mapper/part/ProductGroupInformationMapper.xml
@@ -9,6 +9,7 @@
product_group_id,
product_group_name,
active,
+ type,
create_by,
create_date,
update_by,
@@ -25,6 +26,9 @@
AND active = #{query.active}
+
+ AND type = #{query.type}
+