lixiaojun
2024-03-26 38b6c0f70c646d247e50083c4a09abce055e363a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Yw.DAL
{
    /// <summary>
    /// Dma点位
    /// </summary>
    public interface IDmaSite : IBaseTraceDAL<Entity.DmaSite>, IUpdateCode, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter
    {
 
        /// <summary>
        /// 通过 BelongType 和 BelongID 获取
        /// </summary>
        List<Entity.DmaSite> GetByBelongTypeAndBelongID(string BelongType, long BelongID);
 
 
 
 
    }
}