4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
package com.web.pda.lyt.lytPda.service.internal;
 
import com.app.base.data.ApiResponseResult;
import com.web.pda.lyt.lytPda.service.HoPatrolCheckService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.CallableStatementCallback;
import org.springframework.jdbc.core.CallableStatementCreator;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
 
import java.io.Console;
import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
@Service
@Transactional(propagation = Propagation.REQUIRED)
public class HoPatrolCheckImpl implements HoPatrolCheckService {
    @Autowired
    private JdbcTemplate jdbcTemplate;
 
    @Override
    public ApiResponseResult getLineNo(String userNo) throws Exception {
        List<Object> list = getLineNooPrc(userNo);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        return ApiResponseResult.success().data(list.get(2));
    }
 
    @Override
    public ApiResponseResult getProccInfoT(String userNo) throws Exception {
        List<Object> list = getProccPrc(userNo);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        return ApiResponseResult.success().data(list.get(2));
    }
 
    public List getProccPrc(String userNo) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call PRC_PAD_PQC_Procc_INFO(?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.registerOutParameter(2, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(3, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(4, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                cs.execute();
                result.add(cs.getInt(2));
                result.add(cs.getString(3));
                if (cs.getString(2).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(4);
                    try {
                        l = fitMap(rs);
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    result.add(l);
                }
                System.out.println(l);
                return result;
            }
        });
        return resultList;
    }
 
 
 
    @Override
    public ApiResponseResult getLineSelect(String userNo, String lineNo, String taskNo) throws Exception {
        List<Object> list = getLineSelectPrc(userNo,lineNo,taskNo);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        return ApiResponseResult.success().data(list.get(2));
    }
 
    @Override
    public ApiResponseResult getBillSelect(String userNo, String lineNo, String taskNo) throws Exception {
        List<Object> list = getBillSelectPrc(userNo,lineNo,taskNo);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        Map map = new HashMap();
        map.put("cursor1", list.get(2));
        map.put("cursor2", list.get(3));
        return ApiResponseResult.success().data(map);
    }
 
    @Override
    public ApiResponseResult getprocessBillSelect(String userNo, String lineNo, String taskNo) throws Exception {
        List<Object> list = getprocessBillSelectPrc(userNo,lineNo,taskNo);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        Map map = new HashMap();
        map.put("cursor1", list.get(2));
        map.put("cursor2", list.get(3));
        return ApiResponseResult.success().data(map);
    }
 
    public List getprocessBillSelectPrc(String userNo, String lineNo, String taskNo) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call PRC_PAD_PQC_process_SELECT(?,?,?,?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2, lineNo);
                cs.setString(3, taskNo);
                cs.registerOutParameter(4, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(5, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(6, -10);// 输出参数 追溯数据
                cs.registerOutParameter(7, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                List<Map<String, Object>> l_2 = new ArrayList();
                cs.execute();
                result.add(cs.getInt(4));
                result.add(cs.getString(5));
                if (cs.getString(4).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(6);
                    ResultSet rs2 = (ResultSet) cs.getObject(7);
                    try {
                        l = fitMap(rs);
                        l_2 = fitMap(rs2);
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    result.add(l);
                    result.add(l_2);
                }
                System.out.println(l);
                System.out.println(l_2);
                return result;
            }
        });
        return resultList;
    }
 
    @Override
    public ApiResponseResult getDetails(String userNo, String checkNo, int pid) throws Exception {
        List<Object> list = getDetailsPrc(userNo,checkNo,pid);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        Map map = new HashMap();
        map.put("cursor1", list.get(2));
        map.put("cursor2", list.get(3));
        return ApiResponseResult.success().data(map);
    }
 
    @Override
    public ApiResponseResult checkDetailSave(String userNo, String checkNo, int pid, String checkResult, String checkDemo) throws Exception {
        List<Object> list = checkDetailSaveProc(userNo, checkNo, pid, checkResult, checkDemo);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        return ApiResponseResult.success();
    }
 
    @Override
    public ApiResponseResult checkDetailDel(String userNo, String checkNo, int pid, String checkResult, String checkDemo, String type) throws Exception {
        List<Object> list = checkDetailDelProc(userNo, checkNo, pid, checkResult, checkDemo, type);
        if (!list.get(0).toString().equals("0")) { // 存储过程调用失败
            return ApiResponseResult.failure(list.get(1).toString());
        }
        return ApiResponseResult.success();
    }
 
 
    @Override
    public ApiResponseResult checkDetailPass(String userNo, String checkNo) throws Exception {
        List<Object> list = checkDetailPassProc(userNo, checkNo);
        if (!list.get(0).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(1).toString());
        }
        return ApiResponseResult.success();
    }
 
    @Override
    public ApiResponseResult submitData(String userNo, String checkNo, int type) throws Exception {
        List<Object> list = submitDataProc(userNo, checkNo,type);
        if (!list.get(1).toString().equals("0")) {// 存储过程调用失败 //判断返回游标
            return ApiResponseResult.failure(list.get(2).toString());
        }
        return ApiResponseResult.success(list.get(0).toString());
    }
 
    public List getLineNooPrc(String userNo) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call PRC_PAD_PQC_LINE_INFO(?,?,?,?)}";// 调用的sql
 
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.registerOutParameter(2, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(3, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(4, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                cs.execute();
                result.add(cs.getInt(2));
                result.add(cs.getString(3));
                if (cs.getString(2).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(4);
                    try {
                        l = fitMap(rs);
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    result.add(l);
                }
                System.out.println(l);
                return result;
            }
        });
        return resultList;
    }
 
    public List getLineSelectPrc(String userNo, String lineNo, String taskNo) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call PRC_PAD_PQC_LINE_SELECT(?,?,?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2, lineNo);
                cs.setString(3, taskNo);
                cs.registerOutParameter(4, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(5, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(6, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                cs.execute();
                result.add(cs.getInt(4));
                result.add(cs.getString(5));
                if (cs.getString(4).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(6);
                    try {
                        l = fitMap(rs);
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    result.add(l);
                }
                System.out.println(l);
                return result;
            }
        });
        return resultList;
    }
 
    public List getBillSelectPrc(String userNo, String lineNo, String taskNo) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call PRC_PAD_PQC_BILL_SELECT(?,?,?,?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2, lineNo);
                cs.setString(3, taskNo);
                cs.registerOutParameter(4, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(5, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(6, -10);// 输出参数 追溯数据
                cs.registerOutParameter(7, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                List<Map<String, Object>> l_2 = new ArrayList();
                cs.execute();
                result.add(cs.getInt(4));
                result.add(cs.getString(5));
                if (cs.getString(4).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(6);
                    ResultSet rs2 = (ResultSet) cs.getObject(7);
                    try {
                        l = fitMap(rs);
                        l_2 = fitMap(rs2);
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    result.add(l);
                    result.add(l_2);
                }
                System.out.println(l);
                System.out.println(l_2);
                return result;
            }
        });
        return resultList;
    }
 
    public List getDetailsPrc(String userNo, String checkNo, int pid) throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call PRC_PAD_PQC_DETAIL_SELECT(?,?,?,?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2, checkNo);
                cs.setInt(3, pid);
                cs.registerOutParameter(4, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(5, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(6, -10);// 输出参数 追溯数据
                cs.registerOutParameter(7, -10);// 输出参数 追溯数据
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                List<Map<String, Object>> l = new ArrayList();
                List<Map<String, Object>> l_2 = new ArrayList();
                cs.execute();
                result.add(cs.getInt(4));
                result.add(cs.getString(5));
                if (cs.getString(4).toString().equals("0")) {
                    // 游标处理
                    ResultSet rs = (ResultSet) cs.getObject(6);
                    ResultSet rs2 = (ResultSet) cs.getObject(7);
                    try {
                        l = fitMap(rs);
                        l_2 = fitMap(rs2);
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                    result.add(l);
                    result.add(l_2);
                }
                System.out.println(l);
                System.out.println(l_2);
                return result;
            }
        });
        return resultList;
    }
 
 
    public List checkDetailSaveProc(String userNo, String checkNo, int pid, String checkResult, String checkDemo)
            throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call  PRC_PAD_PQC_DETAIL_SAVE(?,?,?,?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2,checkNo);
                cs.setInt(3, pid);
                cs.setString(4, checkResult);
                cs.setString(5, checkDemo);
                cs.registerOutParameter(6, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(7, java.sql.Types.VARCHAR);// 输出参数 返回标识
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                cs.execute();
                result.add(cs.getInt(6));
                result.add(cs.getString(7));
                return result;
            }
        });
        return resultList;
    }
 
    public List checkDetailDelProc(String userNo, String checkNo, int pid, String checkResult, String checkDemo, String type)
            throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call PRC_PAD_PQC_DETAIL_DEL(?,?,?,?,?,?)}"; // 修改存储过程,增加 type 参数
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2, checkNo);
                cs.setInt(3, pid);
                cs.setString(4, type); // 传入 type,区分不同的检验类型
                cs.registerOutParameter(5, java.sql.Types.INTEGER); // 输出参数:状态码
                cs.registerOutParameter(6, java.sql.Types.VARCHAR); // 输出参数:错误信息
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                cs.execute();
                result.add(cs.getInt(5));  // 获取状态码
                result.add(cs.getString(6)); // 获取错误信息
                return result;
            }
        });
        return resultList;
    }
 
 
    public List checkDetailPassProc(String userNo, String checkNo)
            throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call  PRC_PAD_PQC_DETAIL_ALLOK(?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2,checkNo);
                cs.registerOutParameter(3, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(4, java.sql.Types.VARCHAR);// 输出参数 返回标识
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                cs.execute();
                result.add(cs.getInt(3));
                result.add(cs.getString(4));
                return result;
            }
        });
        return resultList;
    }
 
    public List submitDataProc(String userNo, String checkNo, int type)
            throws Exception {
        List resultList = (List) jdbcTemplate.execute(new CallableStatementCreator() {
            @Override
            public CallableStatement createCallableStatement(Connection con) throws SQLException {
                String storedProc = "{call  PRC_PAD_PQC_FSUBMIT(?,?,?,?,?,?)}";// 调用的sql
                CallableStatement cs = con.prepareCall(storedProc);
                cs.setString(1, userNo);
                cs.setString(2,checkNo);
                cs.setInt(3,type);
                cs.registerOutParameter(4, java.sql.Types.VARCHAR);// 输出参数 返回标识
                cs.registerOutParameter(5, java.sql.Types.INTEGER);// 输出参数 返回标识
                cs.registerOutParameter(6, java.sql.Types.VARCHAR);// 输出参数 返回标识
                return cs;
            }
        }, new CallableStatementCallback() {
            public Object doInCallableStatement(CallableStatement cs) throws SQLException, DataAccessException {
                List<Object> result = new ArrayList<>();
                cs.execute();
                result.add(cs.getString(4));
                result.add(cs.getInt(5));
                result.add(cs.getString(6));
                return result;
            }
        });
        return resultList;
    }
 
    public List<Map<String, Object>> fitMap(ResultSet rs) throws Exception {
        List<Map<String, Object>> list = new ArrayList<>();
        if (null != rs) {
            Map<String, Object> map;
            int colNum = rs.getMetaData().getColumnCount();
            List<String> columnNames = new ArrayList<String>();
            for (int i = 1; i <= colNum; i++) {
                columnNames.add(rs.getMetaData().getColumnName(i));
            }
            while (rs.next()) {
                map = new HashMap<String, Object>();
                for (String columnName : columnNames) {
                    map.put(columnName, rs.getString(columnName));
                }
                list.add(map);
            }
        }
        return list;
    }
}