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
28
29
30
| namespace Yw.DAL
| {
| /// <summary>
| /// 运行分析配置
| /// </summary>
| public interface IRunAnalyConfigure : IBaseDAL<Entity.RunAnalyConfigure>
| {
|
| /// <summary>
| /// 通过 ObjectType 和 ObjectID 获取
| /// </summary>
| Entity.RunAnalyConfigure GetByObjectTypeAndObjectID(string ObjectType, long ObjectID);
|
| /// <summary>
| /// 插入或更新
| /// </summary>
| long InsertOrUpdate(Entity.RunAnalyConfigurePure pure);
|
| /// <summary>
| /// 设置
| /// </summary>
| bool Set(List<Entity.RunAnalyConfigurePure> pureList);
|
| /// <summary>
| /// 通过 ObjectType 和 ObjectID 删除
| /// </summary>
| bool DeleteByObjectTypeAndObjectID(string ObjectType, long ObjectID);
|
| }
| }
|
|