刘磊
2025-04-19 823752496e2a4cdb6a1fb36227cd15b8b7135336
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
using WIDESEA_IStorageBasicService;
using WIDESEA_StorageBasicService;
 
namespace WIDESEA_WMSServer.Controllers;
 
[Route("api/Dt_WheelsStock_Old")]
[ApiController]
public class Dt_WheelsStock_OldController : ApiBaseController<IDt_WheelsStock_OldService, Dt_WheelsStock_Old>
{
    private readonly IDt_WheelsStock_OldService _WheelsStock_OldService;
    public Dt_WheelsStock_OldController(IDt_WheelsStock_OldService service) : base(service)
    {
        _WheelsStock_OldService = service;
    }
 
    /// <summary>
    /// 获取旧库数据
    /// </summary>
    /// <param name="id"></param>
    /// <returns></returns>
    [HttpGet, Route("GetOldLocationWheels"), AllowAnonymous]
    public WebResponseContent GetOldLocationWheels()
    {
        return _WheelsStock_OldService.GetOldLocationWheels();
    }
}