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.
Aucma.Scada/HighWayIot.Repository/service/IBaseSpaceInfoService.cs

31 lines
896 B
C#

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="store"></param>
/// <param name="materialType"></param>
/// <returns></returns>
BaseSpaceInfo GetSpaceInfoByMaterialType(string store, string materialType);
/// <summary>
/// 更新货道信息
/// </summary>
/// <param name="spaceInfo"></param>
/// <returns></returns>
bool UpdateSpaceInf(BaseSpaceInfo spaceInfo);
}
}