|  |  | 
 |  |  | using Microsoft.AspNetCore.Authorization; | 
 |  |  | using Microsoft.AspNetCore.Http; | 
 |  |  | using Microsoft.AspNetCore.Mvc; | 
 |  |  | using WIDESEA_Core; | 
 |  |  | using WIDESEA_Core.BaseController; | 
 |  |  | using WIDESEA_DTO.Stock; | 
 |  |  | using WIDESEA_IBasicRepository; | 
 |  |  | 
 |  |  |  | 
 |  |  | namespace WIDESEA_WMSServer.Controllers.Stock | 
 |  |  | { | 
 |  |  |     /// <summary> | 
 |  |  |     /// åºå | 
 |  |  |     /// </summary> | 
 |  |  |     [Route("api/StockInfo")] | 
 |  |  |     [ApiController] | 
 |  |  |     public class StockInfoController : ApiBaseController<IStockInfoService, Dt_StockInfo> | 
 |  |  | 
 |  |  |         { | 
 |  |  |             return Service.GetStockSelectViews(orderId, materielCode); | 
 |  |  |         } | 
 |  |  |         /// <summary> | 
 |  |  |         /// æ ¹æ®æçååºåºæ¥è¯¢åºåä¿¡æ¯ | 
 |  |  |         /// </summary> | 
 |  |  |         /// <param name="saveModel"></param> | 
 |  |  |         /// <returns></returns> | 
 |  |  |         [HttpPost, HttpGet, Route("StockQueryData")] | 
 |  |  |         public WebResponseContent StockQueryData([FromBody] SaveModel saveModel) | 
 |  |  |         { | 
 |  |  |             return Service.StockQueryData(saveModel); | 
 |  |  |         } | 
 |  |  |     } | 
 |  |  | } |