server/services/src/main/java/com/doumee/service/business/WithdrawalOrdersService.java
@@ -4,6 +4,7 @@ import com.doumee.core.model.PageWrap; import com.doumee.dao.business.model.WithdrawalOrders; import com.doumee.dao.dto.WithdrawalApproveDTO; import com.doumee.dao.dto.WithdrawalDTO; import java.util.List; @@ -112,4 +113,20 @@ */ void approve(WithdrawalApproveDTO dto); /** * 司机提现申请 * * @param dto 提现参数 * @param memberId 会员主键 */ void applyDriverWithdrawal(WithdrawalDTO dto, Integer memberId); /** * 门店提现申请 * * @param dto 提现参数 * @param shopId 门店主键 */ void applyShopWithdrawal(WithdrawalDTO dto, Integer shopId); }