using HighWayIot.Repository.domain; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.service { /// /// 货道信息业务接口 /// public interface IBaseSpaceInfoService { /// /// 通过物料类型获取指定货道,如果没有对应类型的货道返回空白类型的货道 /// /// /// /// BaseSpaceInfo GetSpaceInfoByMaterialType(string store, string materialType); /// /// 更新货道信息 /// /// /// bool UpdateSpaceInf(BaseSpaceInfo spaceInfo); } }