using Admin.Core.IService;
using Admin.Core.Model;
using System.Threading.Tasks;
namespace Admin.Core.IService
{
///
/// IBaseSpaceInfoServices
///
public interface IBaseSpaceInfoServices : IBaseServices
{
///
/// 入库通过物料类型获取指定货道,如果没有对应类型的货道返回空白类型的货道
///
///
///
///
Task InStoreGetSpaceInfoByMaterialType(string store, string materialType);
}
}