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.
77 lines
1.9 KiB
C#
77 lines
1.9 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using DS.WMS.Core.Code.Dtos;
|
|
using DS.WMS.Core.Code.Interface;
|
|
using DS.WMS.Core.Sys.Dtos;
|
|
using DS.WMS.Core.Sys.Interface;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DS.WMS.MainApi.Controllers;
|
|
|
|
/// <summary>
|
|
/// 表单字段复制设置 模块
|
|
/// </summary>
|
|
public class FormCopyController : ApiController
|
|
{
|
|
private readonly IFormCopyService _invokeService;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="invokeService"></param>
|
|
public FormCopyController(IFormCopyService invokeService)
|
|
{
|
|
_invokeService = invokeService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("GetFormCopyList")]
|
|
public DataResult<List<CodeFormCopyRes>> GetFormCopyList([FromBody] PageRequest request)
|
|
{
|
|
var res = _invokeService.GetListByPage(request);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="req"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("EditFormCopy")]
|
|
public DataResult EditFormCopy([FromBody] CodeFormCopyReq req)
|
|
{
|
|
var res = _invokeService.EditFormCopy(req);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="id">Id</param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Route("GetFormCopyInfo")]
|
|
public DataResult<CodeFormCopyRes> GetFormCopyInfo([FromQuery] string id)
|
|
{
|
|
var res = _invokeService.GetFormCopyInfo(id);
|
|
return res;
|
|
}
|
|
/// <summary>
|
|
/// 批量删除
|
|
/// </summary>
|
|
/// <param name="req">req</param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("BatchDelFormCopy")]
|
|
public DataResult BatchDelFormCopy([FromBody] IdModel req)
|
|
{
|
|
var res = _invokeService.BatchDelFormCopy(req);
|
|
return res;
|
|
}
|
|
} |