@ -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;
* 创建时间
@ -9,6 +9,7 @@
product_group_id,
product_group_name,
active,
type,
create_by,
create_date,
update_by,
@ -25,6 +26,9 @@
<if test = "query.active != null and query.active != ''">
AND active = #{query.active}
</if>
<if test = "query.type != null and query.type != ''">
AND type = #{query.type}
</where>
</select>