1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| using SqlSugar;
| using System;
| using System.Collections.Generic;
| using System.Data;
| using System.Linq;
|
| namespace IStation.DAL
| {
| /// <summary>
| /// 分类
| /// </summary>
| public partial class Catalog : CorpTraceDAL_TreeSorter<Entity.Catalog>
| {
| /// <summary>
| ///
| /// </summary>
| public override ConnectionConfig ConnectionConfig
| {
| get { return ConfigHelper.DefaultConnectionConfig; }
|
| }
|
|
|
|
| }
| }
|
|