工艺标准接口
This commit is contained in:
28
PerMgr/Tnb.PerMgr.Interfaces/IPerProcessParamTypeService.cs
Normal file
28
PerMgr/Tnb.PerMgr.Interfaces/IPerProcessParamTypeService.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Tnb.PerMgr.Entities.Dto;
|
||||
namespace Tnb.PerMgr.Interfaces
|
||||
{
|
||||
public interface IPerProcessParamTypeService
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据设备id获取工艺参数类型和对应工艺参数
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetProcessParamType(Dictionary<string, string> dic);
|
||||
|
||||
/// <summary>
|
||||
/// 保存工艺参数子表
|
||||
/// </summary>
|
||||
/// <param name="inpuy"></param>
|
||||
/// <returns></returns>
|
||||
public Task<string> SaveData(List<ProcessChildDataInput> input);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 根据id获取修改信息
|
||||
/// </summary>
|
||||
/// <param name="dic"></param>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetProcessStandardsChildrenInfo(Dictionary<string, string> dic);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user