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
1.0 KiB

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>
12 months ago
/// 注塑计划记录
/// </summary>
[ApiController]
12 months ago
[Route($"{PdaHostConst.ROOT_ROUTE}store/injection-plan-note")]
12 months ago
public class InjectionPlanNoteController : AbpController
{
private readonly IInjectionIssueNoteAppService _injectionNoteAppService;
/// <summary>
///
/// </summary>
/// <param name="injectionNoteAppService"></param>
12 months ago
public InjectionPlanNoteController(IInjectionIssueNoteAppService injectionNoteAppService)
{
_injectionNoteAppService = injectionNoteAppService;
}
/// <summary>
12 months ago
/// 创建注塑计划记录
/// </summary>
/// <param name="input">CreateInput</param>
/// <returns></returns>
[HttpPost("")]
public virtual async Task CreateAsync(InjectionIssueNoteEditInput input)
{
await _injectionNoteAppService.CreateAsync(input).ConfigureAwait(false);
}
}