lixiaojun
2024-06-07 dad0c33f18a3175d1235512673c6fc71d0d87dcc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Yw.DAL
{
    /// <summary>
    /// Dma分区
    /// </summary>
    public interface IDmaArea : IBaseDAL<Entity.DmaArea>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter
    {
 
        /// <summary>
        /// 通过 BelongType 和 BelongID 获取
        /// </summary>
        List<Entity.DmaArea> GetByBelongTypeAndBelongID(string BelongType, long BelongID);
 
 
 
 
 
    }
}