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);
|
|
|
|
| }
| }
|
|