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 { /// /// 财务相关 /// public interface IFinanceService : IsBase { /// ///消费扣费 并更新钱包 一定要指定 SENDUSERID 作为UserId标准 /// /// /// 1判断钱包并执行扣款生成记录 2 验证钱包金额是否充足 /// bond是否自有;值是:1或者2;1表示“自有BOND”,2表示“使用CargoEDI的BOND”;当值为2时,需要额外扣除ISF-Bond使用费 /// public ReturnResult Expend(CustFee Dto, int ExpType, BondOwnTypeEnum? bondOwnType); } }