gao
2020-05-25 caef53a16aff2baadad1c5f49e80a915ba97f674
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.xcong.excoin.modules.home.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleCommitDto;
import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleDto;
import com.xcong.excoin.modules.home.entity.MemberQuickBuySaleEntity;
 
public interface MemberQuickBuySaleService extends IService<MemberQuickBuySaleEntity> {
 
    public Result recharge(MemberQuickBuySaleDto memberQuickBuySaleDto);
    
    public Result commitPay(MemberQuickBuySaleCommitDto memberQuickBuySaleCommitDto);
    
    public Result selectById(Long id);
    
    public Result sell();
    
    public Result cancelRecharge(Long id);
}