using WIDESEA_IStorageBasicService;
|
|
namespace WIDESEA_WMSServer.Controllers;
|
|
[Route("api/Dt_WheelsStock")]
|
[ApiController]
|
public class Dt_WheelsStockController : ApiBaseController<IDt_WheelsStockService, Dt_WheelsStock>
|
{
|
public Dt_WheelsStockController(IDt_WheelsStockService service) : base(service)
|
{
|
|
}
|
|
/// <summary>
|
/// 库存信息统计
|
/// </summary>
|
/// <returns></returns>
|
[HttpPost, AllowAnonymous, Route("InventoryStatistics")]
|
public WebResponseContent InventoryStatistics()
|
{
|
return Service.InventoryStatistics();
|
}
|
}
|