1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| using SqlSugar;
|
| namespace IStation.DAL
| {
| /// <summary>
| /// 测点
| /// </summary>
| public class MonitorPoint : BaseDAL_Sorter_Flags_TagName_UseStatus<Entity.MonitorPoint>
| {
| public override ConnectionConfig ConnectionConfig
| {
| get { return ConnectionFactory.BasicConnection(SettingsD.Project.ID); }
| }
|
| }
| }
|
|