|
@@ -16,6 +16,7 @@
|
|
|
*/
|
|
|
package org.springblade.modules.finance.mapper;
|
|
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
import org.springblade.modules.finance.entity.AfterSales;
|
|
|
import org.springblade.modules.finance.vo.AfterSalesVO;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
@@ -39,9 +40,12 @@ public interface AfterSalesMapper extends BaseMapper<AfterSales> {
|
|
|
*/
|
|
|
List<AfterSalesVO> selectAfterSalesPage(IPage page, AfterSalesVO afterSales);
|
|
|
|
|
|
- IPage<AfterSalesVO> selectUserAfterSalesList(IPage pag, Long userId,Integer state);
|
|
|
+ IPage<AfterSalesVO> selectUserAfterSalesList(@Param("pag") IPage pag, @Param("userId") Long userId, @Param("state") Integer state);
|
|
|
|
|
|
List<AfterSalesVO> getByGrouponIds(List<Long> gIds);
|
|
|
|
|
|
List<AfterSalesVO> getByGrouponId(Long grouponId, Long selfTakeId);
|
|
|
+
|
|
|
+ IPage<AfterSalesVO> selectMerchantAfterSalesList(@Param("page") IPage page, @Param("userId") Long userId, @Param("state") Integer state);
|
|
|
+
|
|
|
}
|