duheng
2024-07-23 3fec42c6383aa3b8d65f744a93b8a918d7cc6e02
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
using Yw.DAL.SQLite;
 
namespace HStation.DAL.SQLite
{
    /// <summary>
    /// 泵曲线
    /// </summary>
    public partial class XhsPhartDiagram : BaseDAL_Paras_Flags_TagName_Sorter<Entity.XhsPhartDiagram>, IXhsPhartDiagram
    {
        /// <summary>
        /// 
        /// </summary>
        public override ConnectionConfig ConnectionConfig
        {
            get { return Xhs.ConfigHelper.SQLiteConnectionConfig; }
        }
 
        /// <summary>
        /// 插入拓展
        /// </summary>
        public long InsertEx(Entity.XhsPhartDiagram diagram, List<Entity.XhsPhartGraph> graphList)
        {
            using (var db = new SqlSugarClient(ConnectionConfig))
            {
                try
                {
                    db.BeginTran();
                    long diagramId = 0;
                    if (diagram.ID > 0)
                    {
                        var bol = db.Insertable(diagram).ExecuteCommand() > 0;
                        if (bol)
                        {
                            diagramId = diagram.ID;
                        }
                    }
                    else
                    {
                        diagramId = db.Insertable(diagram).ExecuteReturnSnowflakeId();
                    }
                    if (diagramId < 1)
                    {
                        db.RollbackTran();
                        return default;
                    }
                    if (graphList != null && graphList.Any())
                    {
                        List<long> graphIds = null;
                        graphList.ForEach(x => x.DiagramID = diagramId);
                        if (graphList.Exists(x => x.ID > 0))
                        {
                            graphList.ForEach(x =>
                            {
                                if (x.ID < 1)
                                {
                                    x.ID = SnowFlakeSingle.instance.NextId();
                                }
                            });
                            if (db.Insertable(graphList).ExecuteCommand() > 0)
                            {
                                graphIds = graphList.Select(x => x.ID).Distinct().ToList();
                            }
                        }
                        else
                        {
                            graphIds = db.Insertable(graphList).ExecuteReturnSnowflakeIdList();
                        }
                        if (graphIds == null || !graphIds.Any())
                        {
                            db.RollbackTran();
                            return default;
                        }
                    }
                    db.CommitTran();
                    return diagramId;
                }
                catch
                {
                    db.RollbackTran();
                    throw;
                }
            }
        }
 
        /// <summary>
        /// 更新拓展
        /// </summary>
        public bool UpdateEx(Entity.XhsPhartDiagram diagram, List<Entity.XhsPhartGraph> graphList)
        {
            using (var db = new SqlSugarClient(ConnectionConfig))
            {
                try
                {
                    db.BeginTran();
                    var bol = db.Updateable(diagram).ExecuteCommandHasChange();
                    if (!bol)
                    {
                        db.RollbackTran();
                        return false;
                    }
                    bol = db.Updateable(graphList).ExecuteCommandHasChange();
                    if (!bol)
                    {
                        db.RollbackTran();
                        return false;
                    }
                    db.CommitTran();
                    return true;
                }
                catch
                {
                    db.RollbackTran();
                    throw;
                }
            }
        }
 
        /// <summary>
        /// 更新 DiagramParas
        /// </summary>
        public bool UpdateDiagramParas(long ID, string DiagramParas)
        {
            using (var db = new SqlSugarClient(ConnectionConfig))
            {
                return db.Updateable<Entity.XhsPhartDiagram>()
                    .SetColumns(x => x.DiagramParas == DiagramParas)
                    .Where(x => x.ID == ID).ExecuteCommandHasChange();
            }
        }
 
        /// <summary>
        /// 更新 DiagramInfo
        /// </summary>
        public bool UpdateDiagramInfo(long ID, string DiagramInfo)
        {
            using (var db = new SqlSugarClient(ConnectionConfig))
            {
                return db.Updateable<Entity.XhsPhartDiagram>()
                    .SetColumns(x => x.DiagramInfo == DiagramInfo)
                    .Where(x => x.ID == ID).ExecuteCommandHasChange();
            }
        }
 
        /// <summary>
        /// 更新 DispParas
        /// </summary>
        public bool UpdateDispParas(long ID, string DispParas)
        {
            using (var db = new SqlSugarClient(ConnectionConfig))
            {
                return db.Updateable<Entity.XhsPhartDiagram>()
                    .SetColumns(x => x.DispParas == DispParas)
                    .Where(x => x.ID == ID).ExecuteCommandHasChange();
            }
        }
 
        /// <summary>
        /// 更新 ExtraParas
        /// </summary>
        public bool UpdateExtraParas(long ID, string ExtraParas)
        {
            using (var db = new SqlSugarClient(ConnectionConfig))
            {
                return db.Updateable<Entity.XhsPhartDiagram>()
                    .SetColumns(x => x.ExtraParas == ExtraParas)
                    .Where(x => x.ID == ID).ExecuteCommandHasChange();
            }
        }
 
        /// <summary>
        /// 通过 ID 删除 同时删除图形
        /// </summary>
        public bool DeleteExByID(long ID)
        {
            using (var db = new SqlSugarClient(ConnectionConfig))
            {
                try
                {
                    db.BeginTran();
                    var bol = db.Deleteable<Entity.XhsPhartDiagram>().Where(x => x.ID == ID).ExecuteCommandHasChange();
                    if (!bol)
                    {
                        db.RollbackTran();
                        return default;
                    }
                    db.Deleteable<Entity.XhsPhartGraph>().Where(x => x.DiagramID == ID).ExecuteCommandHasChange();
                    db.CommitTran();
                    return true;
                }
                catch
                {
                    db.RollbackTran();
                    throw;
                }
            }
        }
 
 
 
 
    }
}