|
@@ -36,13 +36,12 @@ public class SolutionTask extends BaseTask {
|
36
|
36
|
|
37
|
37
|
StringBuffer sql = new StringBuffer("SELECT id,version,case when categoryId is null then 20342 else 20340 end as type,title,keywords,content,status,");
|
38
|
38
|
sql.append("create_user_id,createtime as create_time,renew_user_id,renewtime as renew_time,solutionnumber as solution_number,");
|
39
|
|
- sql.append("version_number,star,categoryId as category_id,introduce_count,file_abstract,duty_dept,IF( `status` = 74, 1, 0 ) AS delete_flag FROM itsm_solution");
|
|
39
|
+ sql.append("version_number,star,categoryId as category_id,introduce_count,file_abstract,duty_dept as hos_id,IF( `status` = 74, 1, 0 ) AS delete_flag FROM itsm_solution");
|
40
|
40
|
List<Map<String, Object>> solutionList = jdbcTemplateMdv2.queryForList(sql.toString());
|
41
|
41
|
FieldMapper mapper = new FieldMapper();
|
42
|
|
- mapper.addOperationUpdate("duty_dept", "hos_id");
|
43
|
42
|
Map<Long, Long> hosIdCache = hospitalTask.loadCache().getIdCache();
|
44
|
43
|
Map<Long, Long> dicIdCache = dictionaryTask.loadCache().getIdCache();
|
45
|
|
- mapper.addOperationReplace("duty_dept", hosIdCache);
|
|
44
|
+ mapper.addOperationReplace("hos_id", hosIdCache);
|
46
|
45
|
mapper.addOperationReplace("status", dicIdCache);
|
47
|
46
|
mapper.trans2JdbcRow(solutionList);
|
48
|
47
|
|