KKSU
2023-11-01 c3fb56bd3cc141875b3ff2a6b893e9cbca0d11a9
1
2
3
4
5
6
7
8
9
10
11
12
13
package cc.mrbird.febs.mall.service;
 
import cc.mrbird.febs.mall.dto.WithdrawalDto;
import cc.mrbird.febs.mall.dto.WithdrawalScoreDto;
import cc.mrbird.febs.mall.entity.MallMemberWithdraw;
import com.baomidou.mybatisplus.extension.service.IService;
 
public interface IMallMemberWithdrawService extends IService<MallMemberWithdraw> {
 
    void withdrawal(WithdrawalDto withdrawalDto);
 
    void withdrawalScore(WithdrawalScoreDto withdrawalScoreDto);
}