wangxinhui
2026-04-08 6861434f1445d1685b67a24897890c34f8c54f85
´úÂë¹ÜÀí/WMS/WMSServices/WIDESEA_IStockRepository/IStockInfoRepository.cs
@@ -4,29 +4,11 @@
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.BaseRepository;
using WIDESEA_DTO.Stock;
using WIDESEA_Model.Models;
namespace WIDESEA_IStockRepository
{
    public interface IStockInfoRepository : IRepository<Dt_StockInfo>
    {
        Dt_StockInfo GetStockInfo(string palletCode);
        List<Dt_StockInfo> GetStockInfos(string materielCode);
        List<Dt_StockInfo> GetStockInfos(int materielId,decimal width, List<string> locationCodes);
        /// <summary>
        /// èŽ·å–ç”Ÿç®¡å¯ä½¿ç”¨åº“å­˜
        /// </summary>
        List<Dt_StockInfo> GetStockInfos(string materielCode, decimal width, List<string> locationCodes);
        List<Dt_StockInfo> GetStockInfos(string materielCode, List<string> locationCodes);
        List<Dt_StockInfo> GetStockInfosByIds(List<int> ids);
        List<Dt_StockInfo> GetStockInfosByPalletCodes(List<string> palletCodes);
        List<Dt_StockInfo> GetStockInfosExclude(string materielCode, List<string> palletCodes);
    }
}