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.
25 lines
735 B
C#
25 lines
735 B
C#
using System.Collections.Generic;
|
|
using SlnMesnac.Model.domain;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
/// <summary>
|
|
/// 小料料罐物料对应信息
|
|
/// </summary>
|
|
public interface ICwssBinToMaterService
|
|
{
|
|
/// <summary>
|
|
/// 获取小料料罐物料对应信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<CwssBinToMater> GetCwssBinToMaterList();
|
|
|
|
/// <summary>
|
|
/// 通过机台编号、料罐编号获取料罐物料对应信息
|
|
/// </summary>
|
|
/// <param name="EquipId"></param>
|
|
/// <param name="BinNo"></param>
|
|
/// <returns></returns>
|
|
CwssBinToMater GetCwssBinToMaterByBinNo(int EquipId,string BinNo);
|
|
}
|
|
} |