|
@@ -1,12 +1,19 @@
|
1
|
1
|
package com.dashitech.migration.task.uc;
|
2
|
2
|
|
3
|
3
|
import com.dashitech.migration.BaseTask;
|
|
4
|
+import com.dashitech.migration.SqlTask;
|
|
5
|
+import com.dashitech.migration.core.DataMigrationter;
|
4
|
6
|
import com.dashitech.migration.core.FieldMapper;
|
|
7
|
+import com.dashitech.migration.util.JdbcUtil;
|
5
|
8
|
import org.apache.commons.logging.Log;
|
6
|
9
|
import org.apache.commons.logging.LogFactory;
|
|
10
|
+import org.springframework.beans.factory.annotation.Autowired;
|
7
|
11
|
import org.springframework.stereotype.Component;
|
8
|
12
|
import org.springframework.transaction.annotation.Transactional;
|
9
|
13
|
|
|
14
|
+import java.util.List;
|
|
15
|
+import java.util.Map;
|
|
16
|
+
|
10
|
17
|
/**
|
11
|
18
|
* Created by CX on 2024/10/10.
|
12
|
19
|
*/
|
|
@@ -15,20 +22,39 @@ public class CompanyTask extends BaseTask {
|
15
|
22
|
|
16
|
23
|
public static Log log = LogFactory.getLog(CompanyTask.class);
|
17
|
24
|
|
|
25
|
+ @Autowired
|
|
26
|
+ SqlTask hospitalTask;
|
|
27
|
+
|
18
|
28
|
@Override
|
19
|
29
|
@Transactional
|
20
|
30
|
public void start() {
|
|
31
|
+ StringBuffer sb = new StringBuffer();
|
|
32
|
+ sb.append(" select * from itsm_uc_groups ");
|
|
33
|
+
|
|
34
|
+ List list = jdbcTemplateMdv2.queryForList(sb.toString());
|
21
|
35
|
|
|
36
|
+ //测试
|
|
37
|
+ FieldMapper mapper = new FieldMapper();
|
|
38
|
+ mapper.addOperationRemove("id").addOperationRemove("duty_id");
|
|
39
|
+ mapper.addOperationUpdate("_hospital_id", "branch_id");
|
|
40
|
+ mapper.addOperationAdd("type", 3);
|
|
41
|
+ Map<Long, Long> hosIdCache = hospitalTask.loadCache().getIdCache();
|
|
42
|
+ mapper.addOperationReplace("branch_id", hosIdCache);
|
|
43
|
+ mapper.trans2JdbcRow(list);
|
|
44
|
+
|
|
45
|
+ JdbcUtil jdbcUtil = new JdbcUtil(jdbcTemplateHsms);
|
|
46
|
+ jdbcUtil.batchPageInsert("itsm_uc_groups", mapper.getRows());
|
|
47
|
+
|
|
48
|
+ //clear释放内存
|
|
49
|
+ mapper.clear();
|
22
|
50
|
}
|
23
|
51
|
|
24
|
52
|
@Override
|
25
|
53
|
public FieldMapper loadCache() {
|
26
|
54
|
log.info(" *** 加载请求人Requesterl缓存 *** ");
|
27
|
55
|
|
28
|
|
- FieldMapper mapper = new FieldMapper();
|
29
|
|
-
|
30
|
56
|
|
31
|
57
|
|
32
|
|
- return mapper;
|
|
58
|
+ return null;
|
33
|
59
|
}
|
34
|
60
|
}
|