模具设备产品关联
This commit is contained in:
33
EquipMgr/Tnb.EquipMgr.Interfaces/IToolMoldsService.cs
Normal file
33
EquipMgr/Tnb.EquipMgr.Interfaces/IToolMoldsService.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Tnb.EquipMgr.Entities.Dto;
|
||||
|
||||
namespace Tnb.EquipMgr.Interfaces
|
||||
{
|
||||
public interface IToolMoldsService
|
||||
{
|
||||
/// <summary>
|
||||
/// 根据模具id获取设备集合
|
||||
/// </summary>
|
||||
/// <param name="mold"></param>
|
||||
/// <returns></returns>
|
||||
public Task<List<EquipmentListOutput>> GetEquipmentLists(ToolMoldInput ToolMoldInput);
|
||||
/// <summary>
|
||||
/// 增加模具设备绑定
|
||||
/// </summary>
|
||||
/// <param name="mold"></param>
|
||||
/// <param name="equipid"></param>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> SaveData(ToolMoldInput ToolMoldInput);
|
||||
/// <summary>
|
||||
/// 批量删除模具设备绑定
|
||||
/// </summary>
|
||||
/// <param name="mold"></param>
|
||||
/// <param name="equipid"></param>
|
||||
/// <returns></returns>
|
||||
public Task<dynamic> DetachData(ToolMoldInput ToolMoldInput);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user