| | |
| | | namespace WIDESEA_IStorageBasicService; |
| | | using WIDESEA_DTO.Basic; |
| | | using WIDESEA_DTO.Stock; |
| | | |
| | | namespace WIDESEA_IStorageBasicService; |
| | | |
| | | public interface IStockInfoService : IService<DtStockInfo> |
| | | { |
| | | |
| | | /// <summary> |
| | | /// æ ¹æ®ç©æç¼ç è·ååºåå¯ç¨éè§å¾ |
| | | /// </summary> |
| | | /// <param name="materielCode"></param> |
| | | /// <returns></returns> |
| | | List<StockSelectViewDTO> GetStockSelectViews(string materielCode); |
| | | |
| | | /// <summary> |
| | | /// ç»ç |
| | | /// </summary> |
| | | /// <param name="groupPlate"></param> |
| | | /// <returns></returns> |
| | | Task<WebResponseContent> AddGroupPlateAsync(GroupPlate groupPlate); |
| | | |
| | | /// <summary> |
| | | /// è§£ç |
| | | /// </summary> |
| | | /// <param name="groupPlate"></param> |
| | | /// <returns></returns> |
| | | Task<WebResponseContent> DeleteGroupPlateAsync(GroupPlate groupPlate); |
| | | |
| | | /// <summary> |
| | | /// æ ¹æ®è¯·æ±åºåºä»»å¡ |
| | | /// </summary> |
| | | /// <param name="requestOut"></param> |
| | | /// <returns></returns> |
| | | WebResponseContent GenerateOutboundTask(GenerateOutTaskDto requestOut); |
| | | } |