| | |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取设备模糊分页列表 |
| | | /// </summary> |
| | | List<Entity.RepairRequestForm> GetFluzzyPageListOfEquipmentIds |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? CreateUserID, |
| | | int? FormStatus, |
| | | int? Urgency, |
| | | string FormNo, |
| | | DateTime? StartTime, |
| | | DateTime? EndTime, |
| | | int PageIndex, |
| | | int PageSize, |
| | | ref int Total |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取待派单分页列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairRequestForm, Entity.RepairTaskForm>> GetJustAccepedPageList |
| | | List<Tuple<Entity.RepairRequestForm, Entity.RepairTaskForm>> GetJustAcceptedPageList |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? CreateUserID, |
| | |
| | | ref int Total |
| | | ); |
| | | |
| | | /// <summary> |
| | | /// 获取设备待派单分页列表 |
| | | /// </summary> |
| | | List<Tuple<Entity.RepairRequestForm, Entity.RepairTaskForm>> GetJustAcceptedPageListOfEquipmentIds |
| | | ( |
| | | List<long> EquipmentIds, |
| | | long? CreateUserID, |
| | | int? Urgency, |
| | | string FormNo, |
| | | DateTime? StartTime, |
| | | DateTime? EndTime, |
| | | int PageIndex, |
| | | int PageSize, |
| | | ref int Total |
| | | ); |
| | | |
| | | |
| | | |