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.
39 lines
1018 B
39 lines
1018 B
1 year ago
|
using System.Threading.Tasks;
|
||
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Volo.Abp.AspNetCore.Mvc;
|
||
|
using Win_in.Sfs.Wms.Store.Application.Contracts;
|
||
|
|
||
|
namespace Win_in.Sfs.Wms.Pda.Controllers.Stores;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
[ApiController]
|
||
|
[Route($"{PdaHostConst.ROOT_ROUTE}store/container")]
|
||
|
|
||
|
public class ContainerNoteController : AbpController
|
||
|
{
|
||
|
private readonly IContainerNoteAppService _containerNoteAppService;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
/// <param name="containerNoteAppService"></param>
|
||
|
public ContainerNoteController(IContainerNoteAppService containerNoteAppService)
|
||
|
{
|
||
|
_containerNoteAppService = containerNoteAppService;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// 创建器具转移记录
|
||
|
/// </summary>
|
||
|
/// <param name="input">CreateInput</param>
|
||
|
/// <returns></returns>
|
||
|
[HttpPost("")]
|
||
|
public virtual async Task CreateAsync(ContainerNoteEditInput input)
|
||
|
{
|
||
|
await _containerNoteAppService.CreateAsync(input).ConfigureAwait(false);
|
||
|
}
|
||
|
|
||
|
}
|