|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.gree.mall.miniapp.bean.material.*;
|
|
|
import com.gree.mall.miniapp.bean.material.parts.*;
|
|
|
import com.gree.mall.miniapp.bean.material.stock.WorkerNormStockBean;
|
|
|
+import com.gree.mall.miniapp.plus.entity.WebsitGoods;
|
|
|
import com.gree.mall.miniapp.plus.entity.WebsitPartsSalesItem;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
@@ -91,6 +92,7 @@ public interface MaterialMapper {
|
|
|
* @param goodsType
|
|
|
* @return
|
|
|
*/
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
List<WebsitShoppingCartList> queryShoppingCartList(@Param("workerId") String workerId,
|
|
|
@Param("websitId") String websitId,
|
|
|
@Param("goodsType") String goodsType);
|
|
@@ -128,10 +130,24 @@ public interface MaterialMapper {
|
|
|
* @param records
|
|
|
* @return
|
|
|
*/
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
List<WebsitPartsSalesItem> querySalesPushFlagItem(String websitId, String salesId, String partsWebsitId,
|
|
|
String identity, String pushFlag, List<SalesItemRecordDTO> records);
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
List<PartsSalesOrderItemBean> selectItemBySalesOrderId(@Param("id") String id);
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
List<OldRefundManageRecordBean> queryOldRefundRecordById(@Param("id") String id);
|
|
|
+
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
+ WebsitGoods websitGroupList(@Param("companyWechatId") String companyWechatId, @Param("websitId") String websitId, @Param("id") String partsWebsiteNumber);
|
|
|
+
|
|
|
+ @InterceptorIgnore(tenantLine = "1", blockAttack = "1", illegalSql = "1")
|
|
|
+ List<WebsitPartsStockBean> existWebsitStockList(@Param("companyWechatId") String companyWechatId,
|
|
|
+ @Param("websitId") String websitId,
|
|
|
+ @Param("partsWebsitId") String partsWebsitId,
|
|
|
+ @Param("partsNumber") String partsNumber,
|
|
|
+ @Param("partsName") String partsName,
|
|
|
+ @Param("materialGroupName") String materialGroupName);
|
|
|
}
|