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.
24 lines
608 B
C#
24 lines
608 B
C#
using SlnMesnac.Model.domain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
public interface IMcsMaterialInfoService
|
|
{
|
|
/// <summary>
|
|
/// 获取MCS物料信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<McsMaterialInfo> GetMcsMaterialInfoList();
|
|
|
|
/// <summary>
|
|
/// 根据物料代码获取物料信息
|
|
/// </summary>
|
|
/// <param name="MatCode"></param>
|
|
/// <returns></returns>
|
|
McsMaterialInfo GetMcsMaterialInfoByMatCode(string MatCode);
|
|
}
|
|
}
|