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