tx
2025-04-09 fa7510e1ed63df0366787fa4ed1b3db6426d2b46
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
using SqlSugar;
using System.Collections.Generic;
using System.Linq;
using TProduct.HttpClient;
 
namespace TProduct.DAL
{
    /// <summary>
    /// 测试记录
    /// </summary>
    public class ValveFeatTestRecord
    {
        #region Insert
 
        /// <summary>
        /// 插入指定对象到数据库中
        /// </summary>
        public long Insert(int Year, Entity.ValveFeatTestRecord entity)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                var id = db.Insertable(entity).ExecuteReturnSnowflakeId();
                if (id > 0 && TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                {
                    var dto = db.Queryable<Entity.ValveFeatTestRecord>().Single(x => x.ID == id);
                    HttpClientHelper.Build("ValveFeatTestRecord", "Insert@V1.0").Post<bool>(dto);
                }
                return id;
            }
        }
 
        /// <summary>
        /// 插入指定对象集合到数据库中
        /// </summary>
        public bool Inserts(int Year, List<Entity.ValveFeatTestRecord> list)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                try
                {
                    db.Ado.BeginTran();
                    var snowflakeIds = db.Insertable(list).ExecuteReturnSnowflakeIdList();
                    if (snowflakeIds.Count < list.Count)
                    {
                        db.Ado.RollbackTran();
                        return default;
                    }
                    if (snowflakeIds == null || snowflakeIds.Count < 1)
                    {
                        db.Ado.RollbackTran();
                        return default;
                    }
                    db.Ado.CommitTran();
 
                    if (TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                    {
                        var dtos = db.Queryable<Entity.ValveFeatTestRecord>().Where(x => snowflakeIds.Contains(x.ID));
                        HttpClientHelper.Build("ValveFeatTestRecord", "Inserts@V1.0").Post<bool>(dtos);
                    }
                    return true;
                }
                catch
                {
                    db.Ado.RollbackTran();
                    throw;
                }
            }
        }
 
        /// <summary>
        /// 插入并返回
        /// </summary>
        public List<long> InsertsR(int Year, List<Entity.ValveFeatTestRecord> list)
        {
            if (list == null || list.Count() < 1)
                return default;
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                try
                {
                    db.Ado.BeginTran();
                    var snowflakeIds = db.Insertable(list).ExecuteReturnSnowflakeIdList();
                    if (snowflakeIds.Count < list.Count)
                    {
                        db.Ado.RollbackTran();
                        return default;
                    }
                    if (snowflakeIds == null || snowflakeIds.Count < 1)
                    {
                        db.Ado.RollbackTran();
                        return default;
                    }
                    db.Ado.CommitTran();
 
                    if (TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                    {
                        var dtos = db.Queryable<Entity.ValveFeatTestRecord>().Where(x => snowflakeIds.Contains(x.ID));
                        HttpClientHelper.Build("ValveFeatTestRecord", "Inserts@V1.0").Post<bool>(dtos);
                    }
                    return snowflakeIds;
                }
                catch
                {
                    db.Ado.RollbackTran();
                    throw;
                }
            }
        }
 
        #endregion
 
        #region Update
 
        /// <summary>
        /// 更新对象属性到数据库中
        /// </summary>
        public bool Update(int Year, Entity.ValveFeatTestRecord entity)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                var result = db.Updateable(entity).ExecuteCommand() > 0;
                if (result && TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                {
                    HttpClientHelper.Build("ValveFeatTestRecord", "Update@V1.0").Put<bool>(entity);
                }
                return result;
            }
        }
 
        /// <summary>
        /// 更新部分
        /// </summary>
        public bool UpdatePart(int Year, Entity.ValveFeatTestRecord entity, List<string> pros)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                var result = db.Updateable(entity).UpdateColumns(pros.ToArray()).ExecuteCommand() > 0;
                if (result && TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                {
                    HttpClientHelper.Build("ValveFeatTestRecord", "Update@V1.0").Put<bool>(entity);
                }
                return result;
            }
        }
 
        /// <summary>
        /// 更新指定对象集合到数据库中
        /// </summary>
        public bool Updates(int Year, List<Entity.ValveFeatTestRecord> list)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                try
                {
                    db.Ado.BeginTran();
                    var result = db.Updateable(list).ExecuteCommand() > 0;
                    db.Ado.CommitTran();
 
                    if (result && TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                    {
                        HttpClientHelper.Build("ValveFeatTestRecord", "Updates@V1.0").Put<bool>(list);
                    }
                    return result;
                }
                catch
                {
                    db.Ado.RollbackTran();
                    throw;
                }
            }
        }
 
        /// <summary>
        /// 批量更新部分
        /// </summary>
        public bool UpdatesPart(int Year, List<Entity.ValveFeatTestRecord> list, List<string> pros)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                try
                {
                    db.Ado.BeginTran();
                    var result = db.Updateable(list).UpdateColumns(pros.ToArray()).ExecuteCommand() > 0;
                    db.Ado.CommitTran();
 
                    if (result && TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                    {
                        HttpClientHelper.Build("ValveFeatTestRecord", "Updates@V1.0").Put<bool>(list);
                    }
                    return result;
                }
                catch
                {
                    db.Ado.RollbackTran();
                    throw;
                }
            }
        }
 
        #endregion
 
        #region Delete
 
        /// <summary>
        /// 从数据库中删除指定对象
        /// </summary>
        public bool ClearAllRecord(int Year, long ItemID)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                var delList = db.Queryable<Entity.ValveFeatTestRecord>().Where(it => it.TestItemID == ItemID).ToList();
                if (delList != null && delList.Count > 0)
                {
                    var result = db.Deleteable<Entity.ValveFeatTestRecord>(delList).ExecuteCommand();
                    if (result > 0 && TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                    {
                        var ids = delList.Select(x => x.ID);
                        var input = LongListHelper.ToString(ids);
                        HttpClientHelper.Build("ValveFeatTestRecord", $"DeleteByIds@V1.0?Ids={input}").Delete<bool>();
                    }
                }
 
                return true;
            }
        }
 
 
 
        /// <summary>
        /// 根据指定对象的ID,从数据库中删除指定对象
        /// </summary>
        public bool DeleteByID(int Year, long ID)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                var delList = db.Queryable<Entity.ValveFeatTestRecord>().Where(it => it.ID == ID).ToList();
                if (delList != null && delList.Count > 0)
                {
                    var result = db.Deleteable<Entity.ValveFeatTestRecord>(delList).ExecuteCommand();
                    if (result > 0 && TProduct.CorpConfig.Instance.RealTimeRemoteService.IsSynMainData)
                    {
                        var ids = delList.Select(x => x.ID);
                        var input = LongListHelper.ToString(ids);
                        HttpClientHelper.Build("ValveFeatTestRecord", $"DeleteByIds@V1.0?Ids={input}").Delete<bool>();
                    }
                }
                return true;
            }
        }
 
 
        #endregion
 
        #region Query
 
 
        /// <summary>
        /// 查询数据库,返回指定ID的对象
        /// </summary>
        public List<Entity.ValveFeatTestRecord> GetByTestItemID(int Year, long TestItemID)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                return db.Queryable<Entity.ValveFeatTestRecord>().Where(x => x.TestItemID == TestItemID)?.ToList();
            }
        }
 
 
        /// <summary>
        /// 查询数据库,返回指定ID的对象
        /// </summary>
        public List<Entity.ValveFeatTestRecord> GetAllByYear(int Year)
        {
            using (ISqlSugarClient db = TProduct.DAL.SQLite.ConfigHelper.RecordConn(Year))
            {
                return db.Queryable<Entity.ValveFeatTestRecord>()?.ToList();
            }
        }
 
        #endregion
 
 
 
 
    }
}