1
This commit is contained in:
25
QcMgr/Tnb.QcMgr.Interfaces/IQcSpcService.cs
Normal file
25
QcMgr/Tnb.QcMgr.Interfaces/IQcSpcService.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Tnb.QcMgr.Entities;
|
||||
|
||||
namespace Tnb.QcMgr.Interfaces
|
||||
{
|
||||
public interface IQcSpcService
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取spcd数据
|
||||
/// </summary>
|
||||
/// <param name="id"></param>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetSpcItems(string id);
|
||||
|
||||
/// <summary>
|
||||
/// 保存spcd数据
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public Task SaveData(SpcDataInput SpcDataInput);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user