| | |
| | | List<Entity.RunRealRecord> GetByObjectTypeAndObjectID(string ObjectType, long ObjectID, DateTime? StartTime, DateTime? EndTime, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取 (限制数量) |
| | | /// </summary> |
| | | List<Entity.RunRealRecord> GetLimitByObjectTypeAndObjectID(string ObjectType, long ObjectID, DateTime? StartTime, DateTime? EndTime, int limit, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取某日的数据 |
| | | /// </summary> |
| | | List<Entity.RunRealRecord> GetByObjectTypeAndObjectIDOfDay(string ObjectType, long ObjectID, DateTime Day, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取某日的数据 (限制数量) |
| | | /// </summary> |
| | | List<Entity.RunRealRecord> GetLimitByObjectTypeAndObjectIDOfDay(string ObjectType, long ObjectID, DateTime Day, int limit, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取日期区间内的数据 |
| | |
| | | List<Entity.RunRealRecord> GetByObjectTypeAndObjectIDOfDayRange(string ObjectType, long ObjectID, DateTime StartDay, DateTime EndDay, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取日期区间内的数据 (限制数量) |
| | | /// </summary> |
| | | List<Entity.RunRealRecord> GetLimitByObjectTypeAndObjectIDOfDayRange(string ObjectType, long ObjectID, DateTime StartDay, DateTime EndDay, int limit, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取时间区间内的数据 |
| | | /// </summary> |
| | | List<Entity.RunRealRecord> GetByObjectTypeAndObjectIDOfTimeRange(string ObjectType, long ObjectID, DateTime StartTime, DateTime EndTime, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取时间区间内的数据(限制数量) |
| | | /// </summary> |
| | | List<Entity.RunRealRecord> GetLimitByObjectTypeAndObjectIDOfTimeRange(string ObjectType, long ObjectID, DateTime StartTime, DateTime EndTime, int limit, bool? Run = null); |
| | | |
| | | /// <summary> |
| | | /// 通过 ObjectType 和 ObjectID 获取分页列表 |
| | | /// </summary> |
| | | List<Entity.RunRealRecord> GetPageListByObjectTypeAndObjectID(string ObjectType, long ObjectID, DateTime? StartTime, DateTime? EndTime, bool? Run, int PageIndex, int PageSize, ref int Total); |