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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using Common ;
using Common.DJYModel ;
using Common.Entity ;
using Common.Tools ;
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>
/// <param name="bondOwnType">bond是否自有; 值是: 1或者2; 1表示“自有BOND”, 2表示“使用CargoEDI的BOND”; 当值为2时, 需要额外扣除ISF-Bond使用费</param>
/// <returns></returns>
public ReturnResult < object > Expend ( CustFee Dto , int ExpType , BondOwnTypeEnum ? bondOwnType ) ;
}
}