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.
28 lines
733 B
28 lines
733 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/third-location-note")]
|
||
|
|
||
|
public class ThirdLocationNoteController : AbpController
|
||
|
{
|
||
|
private readonly IThirdLocationNoteAppService _thirdLocationNoteAppService;
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
/// <param name="thirdLocationNoteAppService"></param>
|
||
|
public ThirdLocationNoteController(IThirdLocationNoteAppService thirdLocationNoteAppService)
|
||
|
{
|
||
|
_thirdLocationNoteAppService = thirdLocationNoteAppService;
|
||
|
}
|
||
|
|
||
|
}
|