yanjinhui
2025-03-19 2632d69e3a6364b2d32c00a1526bc745aaa4bb58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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);
 
    }
 
   
}