You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

131 lines
3.1 KiB
C#

using System;
using System.Threading.Tasks;
using Infrastructure;
using JetBrains.Annotations;
using Microsoft.AspNetCore.Mvc;
using OpenAuth.App;
using OpenAuth.App.Request;
using OpenAuth.App.Response;
using OpenAuth.Repository.Domain;
namespace OpenAuth.WebApi.Controllers
{
/// <summary>
/// 分类(字典)管理
/// </summary>
[Route("api/[controller]/[action]")]
[ApiController]
//[ApiExplorerSettings(GroupName = "分类字典_Categorys")]
class CategorysController : ControllerBase
{
private readonly CategoryApp _app;
/// <summary>
/// 获取分类详情
/// </summary>
/// <param name="id">分类id</param>
/// <returns></returns>
[HttpGet]
public Response<SysCategory> Get(string id)
{
var result = new Response<SysCategory>();
try
{
result.Result = _app.Get(id);
}
catch (Exception ex)
{
result.Code = 500;
result.Message = ex.InnerException?.Message ?? ex.Message;
}
return result;
}
/// <summary>
/// 添加分类
/// </summary>
/// <returns></returns>
[HttpPost]
public Response Add(AddOrUpdateCategoryReq obj)
{
var result = new Response();
try
{
_app.Add(obj);
}
catch (Exception ex)
{
result.Code = 500;
result.Message = ex.InnerException?.Message ?? ex.Message;
}
return result;
}
/// <summary>
/// 修改分类(字典)
/// </summary>
/// <returns></returns>
[HttpPost]
public Response Update(AddOrUpdateCategoryReq obj)
{
var result = new Response();
try
{
_app.Update(obj);
}
catch (Exception ex)
{
result.Code = 500;
result.Message = ex.InnerException?.Message ?? ex.Message;
}
return result;
}
/// <summary>
/// 批量删除
/// </summary>
[HttpPost]
public Response Delete([FromBody] string[] ids)
{
var result = new Response();
try
{
_app.Delete(ids);
}
catch (Exception ex)
{
result.Code = 500;
result.Message = ex.InnerException?.Message ?? ex.Message;
}
return result;
}
/// <summary>
/// 获取分类字典
/// </summary>
/// <param name="typeId"></param>
/// <param name="page"></param>
/// <param name="limit"></param>
/// <returns></returns>
[HttpGet]
public dynamic Load(string typeId, int page = 1, int limit = 20)
{
return _app.LoadByTypeId(typeId, page, limit);
}
public CategorysController(CategoryApp app)
{
_app = app;
}
}
}