using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_IWMSPart;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_Server.Controllers.WMSPart
|
{
|
/// <summary>
|
/// 库存数量变动记录
|
/// </summary>
|
[Route("api/StockQuantityChangeRecord")]
|
[ApiController]
|
public class StockQuantityChangeRecordController : ApiBaseController<IStockQuantityChangeRecordService, Dt_StockQuantityChangeRecord>
|
{
|
public StockQuantityChangeRecordController(IStockQuantityChangeRecordService service) : base(service)
|
{
|
}
|
}
|
}
|