From 271ae63c20fcbe28d29c47f1881138ff6551a2a1 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期三, 10 六月 2020 19:26:26 +0800 Subject: [PATCH] 唯品会订单bug修复,APP端佣金比例展示错误bug修复 --- fanli/src/main/java/com/yeshi/fanli/service/inter/shop/BanLiShopGoodsSetPayService.java | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/shop/BanLiShopGoodsSetPayService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/shop/BanLiShopGoodsSetPayService.java index 8d3bf38..d8fb4bc 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/shop/BanLiShopGoodsSetPayService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/shop/BanLiShopGoodsSetPayService.java @@ -3,6 +3,7 @@ import java.util.List; import com.yeshi.fanli.entity.shop.BanLiShopGoodsSetsPay; +import com.yeshi.fanli.exception.shop.BanLiShopGoodsSetException; import com.yeshi.fanli.exception.shop.BanLiShopGoodsSetPayException; /** @@ -73,8 +74,15 @@ * @param payType * @return */ - public List<BanLiShopGoodsSetsPay> listQuery(int page, int pageSize, String key, Integer payType); + public List<BanLiShopGoodsSetsPay> listQuery(int page, int pageSize, String key, Integer payType, Long setId); - public long countQuery(String key, Integer payType); + public long countQuery(String key, Integer payType, Long setId); + + /** + * 鍚庡彴缂栬緫 + * @param record + * @throws BanLiShopGoodsSetException + */ + public void saveObject(BanLiShopGoodsSetsPay record) throws BanLiShopGoodsSetPayException; } -- Gitblit v1.8.0