package com.stylefeng.guns.modular.system.service;
|
|
import com.baomidou.mybatisplus.service.IService;
|
import com.stylefeng.guns.modular.system.model.TransactionDetails;
|
|
public interface ITransactionDetailsService extends IService<TransactionDetails> {
|
|
|
/**
|
* 添加数据
|
* @param userId 对象id
|
* @param remark 备注
|
* @param money 金额
|
* @param state 状态(1=添加,2=减少)
|
* @param type 类型(1=金额,2=积分)
|
* @param userType 用户类型(1=用户,2=司机)
|
* @param orderType 订单类型(1=专车,2=出租车,3=城际,4=小件物流,5=余额充值,6=余额提现)
|
* @param orderId
|
* @throws Exception
|
*/
|
void saveData(Integer userId, String remark, Double money, Integer state,
|
Integer type, Integer userType, Integer orderType, Integer orderId) throws Exception;
|
}
|