fix
Helius
2022-05-10 5d17f725bb5bb51108aaba4230b5a0e5789a825d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
 
    void addMoneyFlow(Long memberId, BigDecimal amount, Integer type, String orderNo, Integer flowType);
 
}