质检模块
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
namespace Tnb.QcMgr.Interfaces
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
26
QcMgr/Tnb.QcMgr.Interfaces/IQcCheckItemService.cs
Normal file
26
QcMgr/Tnb.QcMgr.Interfaces/IQcCheckItemService.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Tnb.QcMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.QcMgr.Interfaces
|
||||
{
|
||||
public interface IQcCheckItemService
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取质检项集合
|
||||
/// </summary>
|
||||
/// <param name="CheckItemInput"></param>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> GetCheckItem();
|
||||
|
||||
/// <summary>
|
||||
/// 保存质检项清单
|
||||
/// </summary>
|
||||
/// <param name="CheckItemInput"></param>
|
||||
/// <returns></returns>
|
||||
public Task SaveData(CheckItemsInput CheckItemsInput);
|
||||
}
|
||||
}
|
||||
19
QcMgr/Tnb.QcMgr.Interfaces/IQcCheckPlanService.cs
Normal file
19
QcMgr/Tnb.QcMgr.Interfaces/IQcCheckPlanService.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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 IQcCheckPlanService
|
||||
{
|
||||
/// <summary>
|
||||
/// 保存质检方案
|
||||
/// </summary>
|
||||
/// <param name="CheckPlanInput"></param>
|
||||
/// <returns></returns>
|
||||
public Task SaveData(CheckPlanInput CheckPlanInput);
|
||||
}
|
||||
}
|
||||
15
QcMgr/Tnb.QcMgr.Interfaces/IQcCheckTypeService.cs
Normal file
15
QcMgr/Tnb.QcMgr.Interfaces/IQcCheckTypeService.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Tnb.QcMgr.Entities;
|
||||
using Tnb.QcMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.QcMgr.Interfaces
|
||||
{
|
||||
public interface IQcCheckTypeService
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user