using Myshipping.Application.Service.Fee.Dto; using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Application.Service.Fee { public interface IFeeCurrencyService { /// /// 获取币别列表 /// Task> List(); } }