song 5 months ago
parent
commit
f199ea7f23

+ 39 - 0
src/main/java/com/dashitech/migration/task/consumable/RepairSummaryTask.java

@@ -0,0 +1,39 @@
1
+package com.dashitech.migration.task.consumable;
2
+
3
+import com.dashitech.migration.BaseTask;
4
+import com.dashitech.migration.core.FieldMapper;
5
+import com.dashitech.migration.util.JdbcUtil;
6
+import org.apache.commons.logging.Log;
7
+import org.apache.commons.logging.LogFactory;
8
+import org.springframework.stereotype.Component;
9
+
10
+import java.util.List;
11
+import java.util.Map;
12
+
13
+/**
14
+ * @author song
15
+ * @date 2024年10月14日
16
+ */
17
+@Component
18
+public class RepairSummaryTask extends BaseTask {
19
+
20
+    public static Log log = LogFactory.getLog(RepairSummaryTask.class);
21
+    @Override
22
+    public void start() {
23
+        log.info("汇总单数据RepairSummaryTask开始转换");
24
+        StringBuffer sql = new StringBuffer("select * from itsm_repair_summary");
25
+        List<Map<String, Object>> repairSummaryList = jdbcTemplateMdv2.queryForList(sql.toString());
26
+        FieldMapper mapper = new FieldMapper();
27
+        mapper.trans2JdbcRow(repairSummaryList);
28
+
29
+        JdbcUtil jdbcUtil = new JdbcUtil(jdbcTemplateHsms);
30
+        jdbcUtil.batchPageInsert("itsm_itsm_repair_summary", mapper.getRows());
31
+
32
+        mapper.clear();
33
+    }
34
+
35
+    @Override
36
+    public FieldMapper loadCache() {
37
+        return null;
38
+    }
39
+}