using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEAWCS_Core;
|
using WIDESEAWCS_Core.BaseRepository;
|
using WIDESEAWCS_Core.BaseServices;
|
using WIDESEAWCS_Model.Models;
|
|
namespace WIDESEAWCS_ITelescopicService
|
{
|
public interface IMaintenanceService:IService<Dt_Maintenance>
|
{
|
IRepository<Dt_Maintenance> Repository { get; }
|
|
/// <summary>
|
/// 设置检修权限
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent ShowMaintence();
|
|
/// <summary>
|
/// 在检修人员监控
|
/// </summary>
|
/// <returns></returns>
|
WebResponseContent PersonnelMonitoring(bool ispossible);
|
|
/// <summary>
|
/// 更改状态,运行进入检修
|
/// </summary>
|
/// <param name="id"></param>
|
/// <returns></returns>
|
WebResponseContent RunOperation(int id);
|
|
WebResponseContent ChangeTasState(int id);
|
|
}
|
|
|
}
|