using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Model.ModelDto.SysDto;
using WMS.Entity.SysEntity;
namespace WMS.IBLL.ISysServer
{
public interface IStorageRoadwayServer
{
///
/// 查询巷道信息
///
/// 仓库号
/// 巷道名称
/// 状态
/// 类型
///
///
///
///
List GetStorageRoadwayList(string houseNo, string roadwayName, string status, string type, int page, int limit,out int count);
///
/// 查询单条巷道信息
///
///
///
SysStorageRoadway GetStorageRoadway(int id);
///
/// 获取巷道信息(根据仓库号)
///
/// 仓库号
///
List GetStorageRoadwayByHouseNo(string wareHouseNo);
///
/// 编辑巷道信息
///
///
///
///
///
///
///
///
bool EditStorageRoadway(int id, string roadwayName, int priority, string type, string temp, int userId);
///
/// 编辑巷道状态
///
///
/// 状态
/// 操作人
///
bool EditStorageRoadwayStatus(int id, string status, int userId);
}
}