You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using HighWayIot.Repository.domain;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HighWayIot.Repository.service
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 货道信息业务接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IBaseSpaceInfoService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 通过物料类型获取指定货道,如果没有对应类型的货道返回空白类型的货道
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="materialType"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
List<BaseSpaceInfo> GetSpaceInfoByMaterialType(string materialType);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新货道信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="spaceInfo"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
bool UpdateSpaceInf(BaseSpaceInfo spaceInfo);
|
|
|
|
|
}
|
|
|
|
|
}
|