/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System.Threading.Tasks; using CoreCms.Net.Model.Entities; using CoreCms.Net.Model.ViewModels.UI; namespace CoreCms.Net.IServices { /// /// 银行卡信息 服务工厂接口 /// public interface ICoreCmsUserBankCardServices : IBaseServices { /// /// 我的银行卡列表 /// /// /// Task GetMyBankcardsList(int userId); /// /// 我的银行卡列表 /// /// /// Task AddBankCards(CoreCmsUserBankCard entity); /// /// 删除银行卡 /// /// /// /// Task Removebankcard(int id, int userId); /// /// 获取用户默认银行卡信息 /// /// /// Task GetDefaultBankCard(int userId); /// /// 获取银行卡组织信息 /// /// /// Task BankCardsOrganization(string cardCode); /// /// 设置默认的银行卡 /// /// /// Task SetDefault(int userId, int id); /// /// 获取银行卡信息 /// /// /// Task GetBankcardInfo(int userId, int id); } }