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;
///
///
///
[ApiController]
[Route($"{PdaHostConst.ROOT_ROUTE}store/container")]
public class ContainerNoteController : AbpController
{
private readonly IContainerNoteAppService _containerNoteAppService;
///
///
///
///
public ContainerNoteController(IContainerNoteAppService containerNoteAppService)
{
_containerNoteAppService = containerNoteAppService;
}
///
/// 创建器具转移记录
///
/// CreateInput
///
[HttpPost("")]
public virtual async Task CreateAsync(ContainerNoteEditInput input)
{
await _containerNoteAppService.CreateAsync(input).ConfigureAwait(false);
}
}