xiaoyong931011
2022-09-22 d040c0f42d6799e2a89ea2dcbd5e3b0f97bffc2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.mall.service;
 
import cc.mrbird.febs.mall.entity.MallMoneyFlow;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.math.BigDecimal;
 
public interface IMallMoneyFlowService extends IService<MallMoneyFlow> {
 
    void addMoneyFlow(Long memberId, BigDecimal amount, Integer type, String orderNo, String description, String remark, Long rtMemberId, Integer status, Integer flowType, Integer isReturn);
 
    void addMoneyFlow(Long memberId, BigDecimal amount, Integer type, String orderNo, Integer flowType);
 
    void addMoneyFlow(Long memberId, BigDecimal amount, Integer type, String orderNo, Integer flowType, String remark,Integer status);
 
    void addMoneyFlow(Long memberId, BigDecimal amount, Integer type, String orderNo, Integer flowType, Integer isReturn);
 
    void addMoneyFlow(Long memberId, BigDecimal amount, Integer type, String orderNo, Long rtMemberId, Integer flowType);
 
}