23 lines
544 B
C#
23 lines
544 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Tnb.EquipMgr.Entities;
|
|
|
|
namespace Tnb.EquipMgr.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// 模具维修任务接口
|
|
/// </summary>
|
|
public interface IToolMoldMaintainTaskService
|
|
{
|
|
/// <summary>
|
|
/// 创建模具维修任务
|
|
/// </summary>
|
|
/// <param name="entity">维修任务记录 </param>
|
|
/// <returns></returns>
|
|
Task Create(ToolMoldMaintainTask entity);
|
|
}
|
|
}
|