Admin
2026-01-16 d5fe80c5cb7dc0b209d8fea9faa84c7ca5b20324
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_StockService/StockInfoService.cs
@@ -1,4 +1,6 @@
using AutoMapper;
using WIDESEA_Common.StockEnum;
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_IStockService;
@@ -17,5 +19,25 @@
            _mapper = mapper;
        }
        /*public WebResponseContent AddStockInfo(string PalletCode, int PalletType, int WarehouseId)
        {
            WebResponseContent webResponse=new WebResponseContent();
            try
            {
                Dt_StockInfo dt_StockInfo = new Dt_StockInfo();
                dt_StockInfo.PalletCode = PalletCode;
                dt_StockInfo.PalletType = PalletType;
                dt_StockInfo.WarehouseId = WarehouseId;
                dt_StockInfo.StockStatus = (int)StockStatusEmun.入库中;
                dt_StockInfo.Creater = "MWS";
                dt_StockInfo.CreateDate = DateTime.Now;
                BaseDal.AddData(dt_StockInfo);
                return webResponse.OK();
            }
            catch (Exception ex)
            {
                return webResponse.Error($"库存添加错误:原因:{ex.Message}");
            }
        }*/
    }
}