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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
| using Yw.DAL;
|
| namespace HStation.DAL
| {
| /// <summary>
| /// 图表
| /// </summary>
| public interface IXhsPhartDiagram : IBaseDAL<Entity.XhsPhartDiagram>, IUpdateParas, IUpdateFlags, IUpdateTagName, IUpdateSorter
| {
| /// <summary>
| /// 插入拓展
| /// </summary>
| long InsertEx(Entity.XhsPhartDiagram diagram, List<Entity.XhsPhartGraph> graphList);
|
| /// <summary>
| /// 更新拓展
| /// </summary>
| bool UpdateEx(Entity.XhsPhartDiagram diagram, List<Entity.XhsPhartGraph> graphList);
|
| /// <summary>
| /// 更新 DiagramParas
| /// </summary>
| bool UpdateDiagramParas(long ID, string DiagramParas);
|
| /// <summary>
| /// 更新 DiagramInfo
| /// </summary>
| bool UpdateDiagramInfo(long ID, string DiagramInfo);
|
| /// <summary>
| /// 更新 DispParas
| /// </summary>
| bool UpdateDispParas(long ID, string DispParas);
|
| /// <summary>
| /// 更新 ExtraParas
| /// </summary>
| bool UpdateExtraParas(long ID, string ExtraParas);
|
| /// <summary>
| /// 通过 ID 删除 同时删除图形
| /// </summary>
| bool DeleteExByID(long ID);
|
|
|
|
|
| }
| }
|
|