1
dengjunjie
2025-06-26 72390e0230b64cd43fedf0ba8e17aba097568a4a
代码管理/WMS/WIDESEA_WMSServer/WIDESEA_IBasicService/IWarehouseService.cs
@@ -3,6 +3,7 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core;
using WIDESEA_Core.BaseServices;
using WIDESEA_IBasicRepository;
using WIDESEA_Model.Models;
@@ -12,5 +13,13 @@
    public interface IWarehouseService : IService<Dt_Warehouse>
    {
        IWarehouseRepository Repository { get; }
        WebResponseContent WarehouseEnableStatus(int[] keys);
        WebResponseContent WarehouseDisableStatus(int[] keys);
        WebResponseContent WarehouseEnableStatus(int key);
        WebResponseContent WarehouseDisableStatus(int key);
    }
}