ningshuxia
2025-04-22 1519533649b43337d214523f7cd075edf237b3f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
namespace IStation.DAL
{
    /// <summary>
    /// 
    /// </summary> 
    public interface IEtaMultiRealRecord
    {
 
        #region Query
         
        /// <summary>
        ///  通过 ObjectType 和 ObjectID 获取流量、扬程、日期区间内运行的汇总内容数据
        /// </summary>
        List<Entity.EtaMultiRunSummaryContent> GetRunSummaryContentByStationOfQHDayRange
            (int Station, double Qmin, double Qmax, double Hmin, double Hmax, DateTime StartDay, DateTime EndDay);
 
 
        /// <summary>
        /// 通过 ObjectType 和 ObjectID 获取时间区间内的运行QHET
        /// </summary>
        List<Entity.EtaQHET> GetRunQHETByStationOfDayRange(int Station, DateTime StartDay, DateTime EndDay);
 
        #endregion
 
 
    }
}