| | |
| | | public interface IMonitorPointMapping<T> : IProjectDAL_Cover<T> where T : Entity.MonitorPointMapping, new() |
| | | { |
| | | |
| | | #region Query |
| | | #region Get |
| | | |
| | | /// <summary> |
| | | /// 根据 MonitorPointId 查询 |
| | | /// </summary> |
| | | List<T> QueryByMonitorPointId(long projectId, long monitorPointId); |
| | | List<T> GetByMonitorPointId(long projectId, long monitorPointId); |
| | | |
| | | /// <summary> |
| | | /// 根据 ObjectType 和 ObjectId 查询 |
| | | /// </summary> |
| | | List<T> QueryByObjectTypeAndObjectId(long projectId, string objectType, long objectId); |
| | | List<T> GetByObjectTypeAndObjectId(long projectId, string objectType, long objectId); |
| | | |
| | | /// <summary> |
| | | /// 根据 ObjectType 和 ObjectIds 查询 |