111
yanjinhui
2025-03-28 2d4e07b5d61490d3c3cfeb398d3d6e4b6f8be9bb
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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_DTO.Telescopic;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_ITelescopicService
{
    public interface IMaintenanceService:IService<Dt_Maintenance>
    {
        IRepository<Dt_Maintenance> Repository { get; }
 
       /// <summary>
       /// 设置检修权限
       /// </summary>
       /// <returns></returns>
<<<<<<< Updated upstream
        WebResponseContent ShowMaintence();
=======
        WebResponseContent ShowMaintence(PaginationDTO pagination);
>>>>>>> Stashed changes
 
        /// <summary>
        /// 在检修人员监控
        /// </summary>
        /// <returns></returns>
<<<<<<< Updated upstream
        WebResponseContent PersonnelMonitoring(bool ispossible);
=======
        WebResponseContent PersonnelMonitoring(PaginationDTO pagination);
>>>>>>> Stashed changes
 
        /// <summary>
        /// 更改状态,运行进入检修
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        WebResponseContent RunOperation(int id);
 
        WebResponseContent ChangeTasState(int id);
 
<<<<<<< Updated upstream
=======
        /// <summary>
        /// 检修操作记录
        /// </summary>
        /// <returns></returns>
        WebResponseContent MaintenanceOperationRecord(PaginationDTO pagination);
 
>>>>>>> Stashed changes
    }
 
   
}