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 { IRepository Repository { get; } /// /// 设置检修权限 /// /// <<<<<<< Updated upstream WebResponseContent ShowMaintence(); ======= WebResponseContent ShowMaintence(PaginationDTO pagination); >>>>>>> Stashed changes /// /// 在检修人员监控 /// /// <<<<<<< Updated upstream WebResponseContent PersonnelMonitoring(bool ispossible); ======= WebResponseContent PersonnelMonitoring(PaginationDTO pagination); >>>>>>> Stashed changes /// /// 更改状态,运行进入检修 /// /// /// WebResponseContent RunOperation(int id); WebResponseContent ChangeTasState(int id); <<<<<<< Updated upstream ======= /// /// 检修操作记录 /// /// WebResponseContent MaintenanceOperationRecord(PaginationDTO pagination); >>>>>>> Stashed changes } }