You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
899 B
31 lines
899 B
using Znyc.CloudCar.Model.Dtos.Dictionary;
|
|
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
|
|
|
|
namespace Znyc.CloudCar.IServices.Dictionary
|
|
{
|
|
public interface IDictionaryService
|
|
{
|
|
/// <summary>
|
|
/// 根据Id获取字典
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
Task<DictionaryOutput> GetByIdAsync(long id);
|
|
|
|
/// <summary>
|
|
/// 根据ParentId查询数据字典列表
|
|
/// </summary>
|
|
/// <param name="pid"></param>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> GetListByParentIdAsync(long pid);
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 根据ParentId,Code查询数据字典列表
|
|
/// </summary>
|
|
/// <param name="pid"></param>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> GetListByCodeAsync(long parentId, string code);
|
|
}
|
|
}
|
|
|