| | |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取设备模糊列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairTaskForm, Entity.RepairRequestForm>> GetFluzzyListOfEquipmentIds |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? RepairUserID, |
| | | int? FormStatus, |
| | | int? Urgency, |
| | | string FormNo, |
| | | DateTime? StartTime, |
| | | DateTime? EndTime |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取分页列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairTaskForm, Entity.RepairRequestForm>> GetPageList |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? RepairUserID, |
| | | int? FormStatus, |
| | | int? Urgency, |
| | | string FormNo, |
| | | DateTime? StartTime, |
| | | DateTime? EndTime, |
| | | int PageIndex, |
| | | int PageSize, |
| | | ref int Total |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取设备分页列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairTaskForm, Entity.RepairRequestForm>> GetPageListOfEquipmentIds |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? RepairUserID, |
| | |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取设备进行中的分页列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairTaskForm, Entity.RepairRequestForm>> GetProgressPageListOfEquipmentIds |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? RepairUserID, |
| | | int? Urgency, |
| | | string FormNo, |
| | | DateTime? StartTime, |
| | | DateTime? EndTime, |
| | | int PageIndex, |
| | | int PageSize, |
| | | ref int Total |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取已完成的分页列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairTaskForm, Entity.RepairRequestForm>> GetHasFinishedPageList |
| | |
| | | ref int Total |
| | | ); |
| | | |
| | | |
| | | /// <summary> |
| | | /// 获取设备已完成的分页列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairTaskForm, Entity.RepairRequestForm>> GetHasFinishedPageListOfEquipmentIds |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? RepairUserID, |
| | | int? Urgency, |
| | | string FormNo, |
| | | DateTime? StartTime, |
| | | DateTime? EndTime, |
| | | int PageIndex, |
| | | int PageSize, |
| | | ref int Total |
| | | ); |
| | | |
| | | |
| | | } |