陈勇
2026-04-06 9de6c7c6d835ba5161d64114d154bfc7676244a1
项目代码/WMS/WMSServer/WIDESEA_StorageBasicServices/Stock/VV_StockInfoService.cs
@@ -6,15 +6,18 @@
using System.Drawing.Printing;
using System.Linq.Expressions;
using WIDESEA_Core;
using WIDESEA_IRecordService;
namespace WIDESEA_StorageBasicService;
public class VV_StockInfoService : ServiceBase<VV_StockInfo, IVV_StockInfoRepository>, IVV_StockInfoService
{
   private readonly IDt_PalletStockInfoRepository _repository;
    public VV_StockInfoService(IVV_StockInfoRepository BaseDal, IDt_PalletStockInfoRepository repository) : base(BaseDal)
    private readonly IStockQuantityChangeRecordService _stockQuantityChangeRecord;
    public VV_StockInfoService(IVV_StockInfoRepository BaseDal, IDt_PalletStockInfoRepository repository, IStockQuantityChangeRecordService stockQuantityChangeRecord) : base(BaseDal)
    {
        _repository = repository;
        _stockQuantityChangeRecord = stockQuantityChangeRecord;
    }
    public WebResponseContent stockLock(object[] keys)