| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using Microsoft.AspNetCore.JsonPatch.Operations; |
| | | using WIDESEAWCS_Core; |
| | | using WIDESEAWCS_Core.BaseRepository; |
| | | using WIDESEAWCS_Core.BaseServices; |
| | | using WIDESEAWCS_DTO.Telescopic; |
| | | using WIDESEAWCS_Model.Models; |
| | | |
| | | namespace WIDESEAWCS_ITelescopicService |
| | |
| | | IRepository<Dt_Maintenance> Repository { get; } |
| | | |
| | | /// <summary> |
| | | /// 设置æ£ä¿®æé |
| | | /// å±ç¤ºè®¾ç½®æ£ä¿®æé |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | WebResponseContent ShowMaintence(); |
| | | WebResponseContent ShowMaintence(PaginationDTO pagination); |
| | | |
| | | /// <summary> |
| | | /// 卿£ä¿®äººåçæ§ |
| | | /// å±ç¤ºå¨æ£ä¿®äººåçæ§ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | WebResponseContent PersonnelMonitoring(bool ispossible); |
| | | WebResponseContent PersonnelMonitoring(PaginationDTO pagination); |
| | | |
| | | /// <summary> |
| | | /// æ´æ¹ç¶æï¼è¿è¡è¿å
¥æ£ä¿® |
| | | /// </summary> |
| | | /// <param name="id"></param> |
| | | /// <returns></returns> |
| | | WebResponseContent RunOperation(int id); |
| | | WebResponseContent RunOperation(int id,string ispossible); |
| | | |
| | | WebResponseContent ChangeTasState(int id); |
| | | |
| | | /// <summary> |
| | | /// æ£ä¿®æä½è®°å½ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | WebResponseContent MaintenanceOperationRecord(PaginationDTO pagination); |
| | | |
| | | } |
| | | |
| | | |