You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
717 B
C#
29 lines
717 B
C#
using Common;
|
|
using Common.DJYModel;
|
|
using Common.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace djy.IService.Djy
|
|
{
|
|
/// <summary>
|
|
/// 财务相关
|
|
/// </summary>
|
|
public interface IFinanceService : IsBase
|
|
{
|
|
/// <summary>
|
|
///消费扣费 并更新钱包 一定要指定 SENDUSERID 作为UserId标准
|
|
/// </summary>
|
|
/// <param name="Dto"></param>
|
|
/// <param name="ExpType">1判断钱包并执行扣款生成记录 2 验证钱包金额是否充足</param>
|
|
/// <returns></returns>
|
|
public ReturnResult<object> Expend(CustFee Dto, int ExpType);
|
|
|
|
|
|
|
|
}
|
|
}
|