add - 大料校验数据接口
parent
6450bd5a0f
commit
6ee56047f0
@ -0,0 +1,25 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using SlnMesnac.Model.domain;
|
||||||
|
|
||||||
|
namespace SlnMesnac.Repository.service
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 上辅机料罐物料对应信息
|
||||||
|
/// </summary>
|
||||||
|
public interface IMcsBinToMaterService
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取大料料罐物料对应信息
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
List<McsBinToMater> GetMcsBinToMaterList();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 通过机台编号、料罐编号获取料罐物料对应信息
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="EquipId"></param>
|
||||||
|
/// <param name="BinNo"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
McsBinToMater GetMcsBinToMaterByBinNo(int EquipId,int BinNo);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,54 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using Microsoft.Extensions.Logging;
|
||||||
|
using SlnMesnac.Model.domain;
|
||||||
|
|
||||||
|
namespace SlnMesnac.Repository.service.Impl
|
||||||
|
{
|
||||||
|
public class McsBinToMaterServiceImpl:IMcsBinToMaterService
|
||||||
|
{
|
||||||
|
private readonly Repository<McsBinToMater> _rep;
|
||||||
|
|
||||||
|
public McsBinToMaterServiceImpl(Repository<McsBinToMater> rep)
|
||||||
|
{
|
||||||
|
_rep = rep;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 获取大料料罐物料对应信息
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <exception cref="ArgumentException"></exception>
|
||||||
|
public List<McsBinToMater> GetMcsBinToMaterList()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return _rep.GetList();;
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
throw new ArgumentException($"获取料仓物料对应信息异常:{e.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 通过机台编号、料罐编号获取料罐物料对应信息
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="EquipId"></param>
|
||||||
|
/// <param name="BinNo"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
/// <exception cref="ArgumentException"></exception>
|
||||||
|
public McsBinToMater GetMcsBinToMaterByBinNo(int EquipId, int BinNo)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return _rep.GetFirst(x=>x.EquipId == EquipId && x.BinNo == BinNo);;
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
throw new ArgumentException($"根据设备编号、料罐编号获取料仓物料对应信息异常:{e.Message}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue