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/third-location-note")] public class ThirdLocationNoteController : AbpController { private readonly IThirdLocationNoteAppService _thirdLocationNoteAppService; /// /// /// /// public ThirdLocationNoteController(IThirdLocationNoteAppService thirdLocationNoteAppService) { _thirdLocationNoteAppService = thirdLocationNoteAppService; } /// /// 创建三方库转移记录 /// /// CreateInput /// [HttpPost("")] public virtual async Task CreateAsync(ThirdLocationNoteEditInput input) { await _thirdLocationNoteAppService.CreateAsync(input).ConfigureAwait(false); } }