lixiaojun
2024-03-26 38b6c0f70c646d247e50083c4a09abce055e363a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace Yw.DAL
{
    /// <summary>
    /// Dma点位映射
    /// </summary>
    public interface IDmaSiteBinding : IBaseDAL<Entity.DmaSiteBinding>
    {
 
        /// <summary>
        /// 通过 SiteID 获取
        /// </summary>
        List<Entity.DmaSiteBinding> GetBySiteID(long SiteID);
 
        /// <summary>
        /// 通过 MeterID 获取
        /// </summary>
        List<Entity.DmaSiteBinding> GetByMeterID(long MeterID);
 
 
 
    }
}