using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
namespace NCC.Order.Interfaces.BaseAmountHistory
{
public interface IBaseAmountHistoryService
{
///
/// 订单分销金额计算 还需要完善
///
///
///
Task DistributionAccount(string orderId);
///
/// 订单 匹配次数增加
///
///
///
Task UserMatchCountAccount(string orderId);
///
/// 获取当前用户所有剩余匹配次数
///
///
int GetMatchOverCount();
}
}