1
huanghongfeng
2025-06-25 b1c2dd1869a51b8f0e4acb9ddeb148f796db147f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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();
    }
 
    /// <summary>
    /// 更新库存入库时间
    /// </summary>
    /// <returns></returns>
    [HttpPost, AllowAnonymous, Route("UpdateInventoryStatue")]
    public WebResponseContent UpdateInventoryStatue()
    {
        return Service.UpdateInventoryStatue();
    }
}