lixiaojun
2024-06-07 dad0c33f18a3175d1235512673c6fc71d0d87dcc
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 : IBaseDAL<Entity.DmaSite>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter
    {
 
        /// <summary>
        /// 通过 BelongType 和 BelongID 获取
        /// </summary>
        List<Entity.DmaSite> GetByBelongTypeAndBelongID(string BelongType, long BelongID);
 
 
 
 
    }
}