using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Model.ModelDto.SysDto;
using WMS.Entity;
using WMS.Entity.SysEntity;
namespace WMS.IBLL.ISysServer
{
public interface IWareHouseServer
{
///
/// 获取仓库信息
///
/// 仓库号
/// 仓库名称
/// 类型
///
///
///
///
List GetWarehouseList(string wareHouseNo,string wareHouseName,string type, int page, int limit,out int count);
///
/// 获取单条仓库信息
///
/// ID
///
Task GetWarehouse(int id);
///
/// 修改仓库信息
///
/// ID
/// 仓库编号
/// 仓库名称
/// 类型
/// 存储环境
/// 排
/// 列
/// 层
/// 操作人
/// 是否成功
Task EditWareHouse(int id,string no, string name, string type, string temp, int? row, int? col, int? layer, int userId);
///
/// 获取仓库号和名称信息
///
///
Task> GetWareHouseDic();
}
}