using WIDESEA_IStorageBasicService; namespace WIDESEA_WMSServer.Controllers; [Route("api/Dt_WheelsStock")] [ApiController] public class Dt_WheelsStockController : ApiBaseController { public Dt_WheelsStockController(IDt_WheelsStockService service) : base(service) { } /// /// 库存信息统计 /// /// [HttpPost, AllowAnonymous, Route("InventoryStatistics")] public WebResponseContent InventoryStatistics() { return Service.InventoryStatistics(); } /// /// 更新库存入库时间 /// /// [HttpPost, AllowAnonymous, Route("UpdateInventoryStatue")] public WebResponseContent UpdateInventoryStatue() { return Service.UpdateInventoryStatue(); } }