using Znyc.CloudCar.Model.Dtos.Dictionary; using Znyc.CloudCar.Model.ViewModels.ReportsCallBack; namespace Znyc.CloudCar.IServices.Dictionary { public interface IDictionaryService { /// /// 根据Id获取字典 /// /// /// Task GetByIdAsync(long id); /// /// 根据ParentId查询数据字典列表 /// /// /// Task GetListByParentIdAsync(long pid); /// /// 根据ParentId,Code查询数据字典列表 /// /// /// Task GetListByCodeAsync(long parentId, string code); } }