15 lines
379 B
C#
15 lines
379 B
C#
using Tnb.PerMgr.Entities.Dto;
|
|
|
|
namespace Tnb.PerMgr.Interfaces
|
|
{
|
|
public interface IPerProcessParamService
|
|
{
|
|
/// <summary>
|
|
/// 根据id获取工艺参数信息
|
|
/// </summary>
|
|
/// <param name="dic"></param>
|
|
/// <returns></returns>
|
|
public Task<ProcessParamOutput> GetProcessParamInfo(Dictionary<string, string> dic);
|
|
|
|
}
|
|
} |