ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/mapper/ShopWithdrawMapper.java
@@ -1,7 +1,11 @@ package com.ruoyi.other.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.common.core.web.page.PageInfo; import com.ruoyi.other.api.domain.ShopWithdraw; import org.apache.ibatis.annotations.Param; import java.util.List; /** * <p> @@ -13,4 +17,5 @@ */ public interface ShopWithdrawMapper extends BaseMapper<ShopWithdraw> { List<ShopWithdraw> page(PageInfo<ShopWithdraw> page, @Param("shopIds") List<Integer> shopIds, @Param("auditStatus") Integer auditStatus); }