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.
 
 

57 lines
1.8 KiB

using Microsoft.AspNetCore.Mvc;
using Znyc.CloudCar.IServices.Dictionary;
using Znyc.CloudCar.Model.Dtos.Dictionary;
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
namespace Znyc.CloudCar.Controller
{
/// <summary>
/// 数据字典
/// </summary>
public class DictionaryController : ControllerBase
{
private readonly IDictionaryService _dictionaryServices;
public DictionaryController(IDictionaryService dictionaryServices)
{
_dictionaryServices = dictionaryServices;
}
/// <summary>
/// 根据Id获取字典
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
[HttpGet]
[Route("api/v1/dict/{id}")]
public async Task<DictionaryOutput> GetByIdAsync(long id)
{
return await _dictionaryServices.GetByIdAsync(id);
}
/// <summary>
/// 根据ParentId查询数据字典列表
/// </summary>
/// <param name="pid"></param>
/// <returns></returns>
[HttpGet]
[Route("api/v1/dict/pid/{pid}")]
public async Task<ResponseOutput> GetListByParentIdAsync(long pid)
{
return await _dictionaryServices.GetListByParentIdAsync(pid);
}
/// <summary>
/// 根据ParentId,Code查询数据字典列表
/// </summary>
/// <param name="parentId"></param>
/// <param name="code"></param>
/// <returns></returns>
[HttpGet]
[Route("api/v1/dict/{parentId}/{code}")]
public async Task<ResponseOutput> GetListByCodeAsync(long parentId, string code)
{
return await _dictionaryServices.GetListByCodeAsync(parentId, code);
}
}
}