mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
123 lines
3.0 KiB
C#
123 lines
3.0 KiB
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Infrastructure;
|
|
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 = "打印模板接口_SysPrinterPlans")]
|
|
public class SysPrinterPlansController : ControllerBase
|
|
{
|
|
private readonly SysPrinterPlanApp _app;
|
|
|
|
//获取详情
|
|
[HttpGet]
|
|
public Response<SysPrinterPlan> Get(string id)
|
|
{
|
|
var result = new Response<SysPrinterPlan>();
|
|
try
|
|
{
|
|
result.Result = _app.Get(id);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
result.Code = 500;
|
|
result.Message = ex.InnerException?.Message ?? ex.Message;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
//添加
|
|
[HttpPost]
|
|
public Response<string> Add(AddOrUpdateSysPrinterPlanReq obj)
|
|
{
|
|
var result = new Response<string>();
|
|
try
|
|
{
|
|
result.Result=_app.Add(obj);
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
result.Code = 500;
|
|
result.Message = ex.InnerException?.Message ?? ex.Message;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
//修改
|
|
[HttpPost]
|
|
public Response Update(AddOrUpdateSysPrinterPlanReq 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>
|
|
[HttpGet]
|
|
public async Task<TableData> Load([FromQuery]QuerySysPrinterPlanListReq request)
|
|
{
|
|
return await _app.Load(request);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 打印方案根据数据源获取打印数据
|
|
/// </summary>
|
|
[HttpGet]
|
|
public async Task<TableData> Query(QueryReq request)
|
|
{
|
|
return await _app.Query(request);
|
|
}
|
|
|
|
/// <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;
|
|
}
|
|
|
|
public SysPrinterPlansController(SysPrinterPlanApp app)
|
|
{
|
|
_app = app;
|
|
}
|
|
}
|
|
}
|