|
@@ -1,9 +1,12 @@
|
|
|
package com.gree.mall.manager.commonmapper;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.SqlParser;
|
|
|
+import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
-import com.gree.mall.manager.bean.goods.*;
|
|
|
+import com.gree.mall.manager.bean.goods.GoodsPackageList;
|
|
|
+import com.gree.mall.manager.bean.goods.GoodsSpecBean;
|
|
|
+import com.gree.mall.manager.bean.goods.GoodsTypeCount;
|
|
|
+import com.gree.mall.manager.bean.goods.GoodsVO;
|
|
|
import com.gree.mall.manager.plus.entity.Goods;
|
|
|
import com.gree.mall.manager.plus.entity.GoodsCategory;
|
|
|
import com.gree.mall.manager.zfire.bean.ZfireParamBean;
|
|
@@ -31,7 +34,7 @@ public interface CustomGoodsMapper {
|
|
|
* @param status
|
|
|
* @return
|
|
|
*/
|
|
|
- @SqlParser(filter = true)
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
IPage<GoodsSpecBean> pageList(Page<GoodsSpecBean> objectPage,
|
|
|
@Param("flag") String flag,
|
|
|
@Param("keyword") String keyword,
|
|
@@ -45,7 +48,7 @@ public interface CustomGoodsMapper {
|
|
|
@Param("goodsTypes") List<String> goodsTypes,
|
|
|
@Param("companyWechatId")String companyWechatId);
|
|
|
|
|
|
- @SqlParser(filter = true)
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
List<GoodsSpecBean> list(@Param("commonTemplateId") String commonTemplateId);
|
|
|
|
|
|
|
|
@@ -54,7 +57,7 @@ public interface CustomGoodsMapper {
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
- @SqlParser(filter = true)
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
public GoodsTypeCount countByType(@Param("companyWechatIds") List<String> companyWechatIds);
|
|
|
|
|
|
/**
|
|
@@ -62,7 +65,7 @@ public interface CustomGoodsMapper {
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
- @SqlParser(filter = true)
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
public Integer countByFlag(@Param("companyWechatIds") List<String> companyWechatIds);
|
|
|
|
|
|
/**
|
|
@@ -70,7 +73,7 @@ public interface CustomGoodsMapper {
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
- @SqlParser(filter = true)
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
public Integer ysq(@Param("companyWechatIds") List<String> companyWechatIds);
|
|
|
|
|
|
/**
|
|
@@ -82,7 +85,7 @@ public interface CustomGoodsMapper {
|
|
|
/**
|
|
|
* 查询商品分类
|
|
|
*/
|
|
|
- @SqlParser(filter = true)
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
public GoodsCategory queryGoodsCategoryByGoodsId(@Param("goodsId") String goodsId);
|
|
|
|
|
|
/**
|