using WIDESEA_IStorageBasicService; namespace WIDESEA_WMSServer.Controllers; [Route("api/StockInfo")] [ApiController] public class StockInfoController : ApiBaseController { public StockInfoController(IStockInfoService service) : base(service) { } [HttpGet, AllowAnonymous, Route("GetLocationByStockType")] public Task> GetLocationByStockType(bool stockType, string areaCode) { return Service.GetLocationByStockType(stockType, areaCode); } }