Commit 830a2e3ed772c773cf467578971449e1256d0d34
1 parent
15bce4b4
1、国际化改造:人员基础信息后端国际化改造
Showing
19 changed files
with
3617 additions
and
115 deletions
src/main/java/com/bsth/service/schedule/datatools/EmployeeDataToolsImpl.java
| 1 | 1 | package com.bsth.service.schedule.datatools; |
| 2 | 2 | |
| 3 | 3 | import com.bsth.service.schedule.exception.ScheduleException; |
| 4 | -import com.bsth.service.schedule.utils.*; | |
| 5 | -import jxl.write.Label; | |
| 6 | -import jxl.write.WritableSheet; | |
| 7 | -import jxl.write.WritableWorkbook; | |
| 4 | +import com.bsth.service.schedule.utils.DataToolsFile; | |
| 5 | +import com.bsth.service.schedule.utils.DataToolsProperties; | |
| 6 | +import com.bsth.service.schedule.utils.DataToolsService; | |
| 7 | +import com.bsth.util.I18n; | |
| 8 | 8 | import org.slf4j.Logger; |
| 9 | 9 | import org.slf4j.LoggerFactory; |
| 10 | 10 | import org.springframework.beans.factory.annotation.Autowired; |
| 11 | 11 | import org.springframework.beans.factory.annotation.Qualifier; |
| 12 | -import org.springframework.boot.context.properties.EnableConfigurationProperties; | |
| 13 | 12 | import org.springframework.stereotype.Service; |
| 14 | 13 | |
| 15 | 14 | import java.io.File; |
| 16 | 15 | import java.io.PrintWriter; |
| 17 | 16 | import java.io.StringWriter; |
| 18 | 17 | import java.util.HashMap; |
| 18 | +import java.util.Locale; | |
| 19 | 19 | import java.util.Map; |
| 20 | 20 | |
| 21 | 21 | /** |
| ... | ... | @@ -35,48 +35,7 @@ public class EmployeeDataToolsImpl implements DataToolsService { |
| 35 | 35 | |
| 36 | 36 | @Override |
| 37 | 37 | public DataToolsFile uploadFile(String filename, byte[] filedata) throws ScheduleException { |
| 38 | - try { | |
| 39 | - // 对上传的excel文件做处理 | |
| 40 | - // 将第一个sheet保存成一个xls文件 | |
| 41 | - DataToolsFile dataToolsFile = dataToolsService.uploadFile(filename, filedata); | |
| 42 | - File file = dataToolsFile.getFile(); | |
| 43 | - | |
| 44 | - // poi api | |
| 45 | - org.apache.poi.ss.usermodel.Workbook poi_workbook = dataToolsFile.getFileType().getWorkBook(file); | |
| 46 | - org.apache.poi.ss.usermodel.Sheet poi_sheet = poi_workbook.getSheetAt(0); // 第一个sheet | |
| 47 | - int rowNum = poi_sheet.getLastRowNum(); // 获取总共多少行 | |
| 48 | - if (rowNum < 0) { | |
| 49 | - throw new RuntimeException("表格内容为空!"); | |
| 50 | - } | |
| 51 | - int colNum = poi_sheet.getRow(0).getLastCellNum(); // 获取总共多少列,以第一行为主 | |
| 52 | - | |
| 53 | - // jxl api | |
| 54 | - File fileCal = new File(file.getAbsolutePath() + "_sheetChange.xls"); | |
| 55 | - WritableWorkbook writableWorkbook = jxl.Workbook.createWorkbook(fileCal); | |
| 56 | - WritableSheet writableSheet = writableWorkbook.createSheet("工作表1", 0); | |
| 57 | - | |
| 58 | - for (int i = 0; i <= rowNum; i++) { | |
| 59 | - for (int j = 0; j <= colNum; j++) { | |
| 60 | - // poi读 | |
| 61 | - String cellContent = PoiUtils.getStringValueFromCell(poi_sheet.getRow(i).getCell(j)); | |
| 62 | - // jxl写 | |
| 63 | - writableSheet.addCell(new Label(j, i, cellContent)); | |
| 64 | - } | |
| 65 | - | |
| 66 | - } | |
| 67 | - writableWorkbook.write(); | |
| 68 | - writableWorkbook.close(); | |
| 69 | - poi_workbook.close(); | |
| 70 | - | |
| 71 | - DataToolsFile dataToolsFile1 = new DataToolsFile(); | |
| 72 | - dataToolsFile1.setFile(fileCal); | |
| 73 | - dataToolsFile1.setFileType(DataToolsFileType.XLS); | |
| 74 | - | |
| 75 | - return dataToolsFile1; | |
| 76 | - | |
| 77 | - } catch (Exception exp) { | |
| 78 | - throw new ScheduleException(exp); | |
| 79 | - } | |
| 38 | + return this.dataToolsService.uploadFile(filename, filedata); | |
| 80 | 39 | } |
| 81 | 40 | |
| 82 | 41 | @Override |
| ... | ... | @@ -85,8 +44,17 @@ public class EmployeeDataToolsImpl implements DataToolsService { |
| 85 | 44 | LOGGER.info("//---------------- 导入人员基础信息 start... ----------------//"); |
| 86 | 45 | // 创建ktr转换所需参数 |
| 87 | 46 | Map<String, Object> ktrParms = new HashMap<>(); |
| 88 | - File ktrFile = new File(this.getClass().getResource( | |
| 89 | - dataToolsProperties.getEmployeesDatainputktr()).toURI()); | |
| 47 | + String country = Locale.getDefault().getLanguage(); | |
| 48 | + File ktrFile = null; | |
| 49 | + if ("zh".equals(country)) { | |
| 50 | + ktrFile = new File(this.getClass().getResource( | |
| 51 | + dataToolsProperties.getZhPersonnelBasicDataImport()).toURI()); | |
| 52 | + } else if ("en".equals(country)) { | |
| 53 | + ktrFile = new File(this.getClass().getResource( | |
| 54 | + dataToolsProperties.getEnPersonnelBasicDataImport()).toURI()); | |
| 55 | + } else { | |
| 56 | + throw new Exception("not found Local[" + country + "] corresponding ktr."); | |
| 57 | + } | |
| 90 | 58 | |
| 91 | 59 | // 通用参数,转换文件路径,excel输入文件路径,错误输出文件路径 |
| 92 | 60 | ktrParms.put("transpath", ktrFile.getAbsolutePath()); |
| ... | ... | @@ -113,12 +81,21 @@ public class EmployeeDataToolsImpl implements DataToolsService { |
| 113 | 81 | LOGGER.info("//---------------- 导出人员基础信息 start... ----------------//"); |
| 114 | 82 | // 创建ktr转换所需参数 |
| 115 | 83 | Map<String, Object> ktrParms = new HashMap<>(); |
| 116 | - File ktrFile = new File(this.getClass().getResource( | |
| 117 | - dataToolsProperties.getEmployeesDataoutputktr()).toURI()); | |
| 84 | + String country = Locale.getDefault().getLanguage(); | |
| 85 | + File ktrFile = null; | |
| 86 | + if ("zh".equals(country)) { | |
| 87 | + ktrFile = new File(this.getClass().getResource( | |
| 88 | + dataToolsProperties.getZhPersonnelBasicDataExport()).toURI()); | |
| 89 | + } else if ("en".equals(country)) { | |
| 90 | + ktrFile = new File(this.getClass().getResource( | |
| 91 | + dataToolsProperties.getEnPersonnelBasicDataExport()).toURI()); | |
| 92 | + } else { | |
| 93 | + throw new Exception("not found Local[" + country + "] corresponding ktr."); | |
| 94 | + } | |
| 118 | 95 | |
| 119 | 96 | // 通用参数,转换文件路径,excel输出文件名 |
| 120 | 97 | ktrParms.put("transpath", ktrFile.getAbsolutePath()); |
| 121 | - ktrParms.put("filename", "$$$$$${txt-1614}_download-"); | |
| 98 | + ktrParms.put("filename", I18n.getInstance().getMessage("txt-1614") + "_download-"); | |
| 122 | 99 | |
| 123 | 100 | ktrParms.putAll(params); |
| 124 | 101 | ... | ... |
src/main/java/com/bsth/service/schedule/impl/EmployeeServiceImpl.java
| ... | ... | @@ -5,6 +5,7 @@ import com.bsth.service.schedule.EmployeeService; |
| 5 | 5 | import com.bsth.service.schedule.exception.ScheduleException; |
| 6 | 6 | import com.bsth.service.schedule.utils.DataToolsFile; |
| 7 | 7 | import com.bsth.service.schedule.utils.DataToolsService; |
| 8 | +import com.bsth.util.I18n; | |
| 8 | 9 | import org.springframework.beans.factory.annotation.Autowired; |
| 9 | 10 | import org.springframework.beans.factory.annotation.Qualifier; |
| 10 | 11 | import org.springframework.stereotype.Service; |
| ... | ... | @@ -48,9 +49,9 @@ public class EmployeeServiceImpl extends BServiceImpl<Personnel, Integer> implem |
| 48 | 49 | param.put("id_ne", personnel.getId()); |
| 49 | 50 | } |
| 50 | 51 | param.put("companyCode_eq", personnel.getCompanyCode()); |
| 51 | - param.put("jobCode_eq", personnel.getJobCode()); | |
| 52 | + param.put("jobCodeori_eq", personnel.getJobCode()); | |
| 52 | 53 | if (!CollectionUtils.isEmpty(list(param))) { |
| 53 | - throw new ScheduleException("相同公司工号重复"); | |
| 54 | + throw new ScheduleException(I18n.getInstance().getMessage("employeeServiceImpl-line54")); | |
| 54 | 55 | } |
| 55 | 56 | } |
| 56 | 57 | } | ... | ... |
src/main/java/com/bsth/service/schedule/utils/DataToolsProperties.java
| ... | ... | @@ -98,11 +98,56 @@ public class DataToolsProperties { |
| 98 | 98 | |
| 99 | 99 | //---------------------------- 车辆基础数据相关ktr(以上)----------------------------// |
| 100 | 100 | |
| 101 | + //---------------------------- 人员基础数据相关ktr(以下)----------------------------// | |
| 102 | + /** 人员基础信息导入(英文) */ | |
| 103 | + @NotNull | |
| 104 | + private String enPersonnelBasicDataImport; | |
| 105 | + /** 人员基础信息导出(英文) */ | |
| 106 | + @NotNull | |
| 107 | + private String enPersonnelBasicDataExport; | |
| 108 | + /** 人员基础信息导入(中文) */ | |
| 109 | + @NotNull | |
| 110 | + private String zhPersonnelBasicDataImport; | |
| 111 | + /** 人员基础信息导入(中文) */ | |
| 112 | + @NotNull | |
| 113 | + private String zhPersonnelBasicDataExport; | |
| 114 | + | |
| 115 | + public String getEnPersonnelBasicDataImport() { | |
| 116 | + return enPersonnelBasicDataImport; | |
| 117 | + } | |
| 118 | + | |
| 119 | + public void setEnPersonnelBasicDataImport(String enPersonnelBasicDataImport) { | |
| 120 | + this.enPersonnelBasicDataImport = enPersonnelBasicDataImport; | |
| 121 | + } | |
| 122 | + | |
| 123 | + public String getEnPersonnelBasicDataExport() { | |
| 124 | + return enPersonnelBasicDataExport; | |
| 125 | + } | |
| 126 | + | |
| 127 | + public void setEnPersonnelBasicDataExport(String enPersonnelBasicDataExport) { | |
| 128 | + this.enPersonnelBasicDataExport = enPersonnelBasicDataExport; | |
| 129 | + } | |
| 130 | + | |
| 131 | + public String getZhPersonnelBasicDataImport() { | |
| 132 | + return zhPersonnelBasicDataImport; | |
| 133 | + } | |
| 134 | + | |
| 135 | + public void setZhPersonnelBasicDataImport(String zhPersonnelBasicDataImport) { | |
| 136 | + this.zhPersonnelBasicDataImport = zhPersonnelBasicDataImport; | |
| 137 | + } | |
| 138 | + | |
| 139 | + public String getZhPersonnelBasicDataExport() { | |
| 140 | + return zhPersonnelBasicDataExport; | |
| 141 | + } | |
| 142 | + | |
| 143 | + public void setZhPersonnelBasicDataExport(String zhPersonnelBasicDataExport) { | |
| 144 | + this.zhPersonnelBasicDataExport = zhPersonnelBasicDataExport; | |
| 145 | + } | |
| 146 | + | |
| 147 | + //---------------------------- 人员基础数据相关ktr(以上)----------------------------// | |
| 148 | + | |
| 101 | 149 | |
| 102 | 150 | //------------------------- 导入数据ktr --------------------------// |
| 103 | - /** 人员信息导入ktr转换 */ | |
| 104 | - @NotNull | |
| 105 | - private String employeesDatainputktr; | |
| 106 | 151 | /** 车辆配置信息导入 */ |
| 107 | 152 | @NotNull |
| 108 | 153 | private String carsconfigDatainputktr; |
| ... | ... | @@ -142,9 +187,6 @@ public class DataToolsProperties { |
| 142 | 187 | |
| 143 | 188 | |
| 144 | 189 | //------------------------- 导出数据ktr --------------------------// |
| 145 | - /** 人员信息导出ktr转换 */ | |
| 146 | - @NotNull | |
| 147 | - private String employeesDataoutputktr; | |
| 148 | 190 | /** 时刻表导出元数据ktr转换 */ |
| 149 | 191 | @NotNull |
| 150 | 192 | private String ttinfodetailMetaoutput; |
| ... | ... | @@ -198,14 +240,6 @@ public class DataToolsProperties { |
| 198 | 240 | this.ttinfodetailMetadatainputktr = ttinfodetailMetadatainputktr; |
| 199 | 241 | } |
| 200 | 242 | |
| 201 | - public String getEmployeesDatainputktr() { | |
| 202 | - return employeesDatainputktr; | |
| 203 | - } | |
| 204 | - | |
| 205 | - public void setEmployeesDatainputktr(String employeesDatainputktr) { | |
| 206 | - this.employeesDatainputktr = employeesDatainputktr; | |
| 207 | - } | |
| 208 | - | |
| 209 | 243 | public String getCarsconfigDatainputktr() { |
| 210 | 244 | return carsconfigDatainputktr; |
| 211 | 245 | } |
| ... | ... | @@ -310,14 +344,6 @@ public class DataToolsProperties { |
| 310 | 344 | this.fileoutputDir = fileoutputDir; |
| 311 | 345 | } |
| 312 | 346 | |
| 313 | - public String getEmployeesDataoutputktr() { | |
| 314 | - return employeesDataoutputktr; | |
| 315 | - } | |
| 316 | - | |
| 317 | - public void setEmployeesDataoutputktr(String employeesDataoutputktr) { | |
| 318 | - this.employeesDataoutputktr = employeesDataoutputktr; | |
| 319 | - } | |
| 320 | - | |
| 321 | 347 | public String getKvarsDbdname() { |
| 322 | 348 | return kvarsDbdname; |
| 323 | 349 | } | ... | ... |
src/main/resources/datatools/config-cloud.properties
| ... | ... | @@ -25,10 +25,15 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp |
| 25 | 25 | datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr |
| 26 | 26 | ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## |
| 27 | 27 | |
| 28 | +##---------------------------- 人员基础数据相关ktr(以下)----------------------------## | |
| 29 | +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr | |
| 30 | +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr | |
| 31 | +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr | |
| 32 | +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr | |
| 33 | +##---------------------------- 人员基础数据相关ktr(以上)----------------------------## | |
| 34 | + | |
| 28 | 35 | |
| 29 | 36 | ##---------------------------- 导入数据ktr ----------------------------## |
| 30 | -# 人员信息导入 | |
| 31 | -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr | |
| 32 | 37 | # 路牌信息导入 |
| 33 | 38 | datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr |
| 34 | 39 | # 时刻表基础信息导入 |
| ... | ... | @@ -58,8 +63,6 @@ datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr |
| 58 | 63 | |
| 59 | 64 | |
| 60 | 65 | ##---------------------------- 导出数据ktr -----------------------------## |
| 61 | -# 人员信息导出ktr转换 | |
| 62 | -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr | |
| 63 | 66 | # 时刻表导出元数据ktr转换 |
| 64 | 67 | datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr |
| 65 | 68 | # 时刻表导出数据ktr转换 | ... | ... |
src/main/resources/datatools/config-dev.properties
| ... | ... | @@ -24,13 +24,17 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp |
| 24 | 24 | datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr |
| 25 | 25 | ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## |
| 26 | 26 | |
| 27 | +##---------------------------- 人员基础数据相关ktr(以下)----------------------------## | |
| 28 | +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr | |
| 29 | +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr | |
| 30 | +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr | |
| 31 | +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr | |
| 32 | +##---------------------------- 人员基础数据相关ktr(以上)----------------------------## | |
| 27 | 33 | |
| 28 | 34 | |
| 29 | 35 | |
| 30 | 36 | |
| 31 | 37 | ##---------------------------- 导入数据ktr ----------------------------## |
| 32 | -# 人员信息导入 | |
| 33 | -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr | |
| 34 | 38 | # 路牌信息导入 |
| 35 | 39 | datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr |
| 36 | 40 | # 时刻表基础信息导入 |
| ... | ... | @@ -59,8 +63,6 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput. |
| 59 | 63 | datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr |
| 60 | 64 | |
| 61 | 65 | ##---------------------------- 导出数据ktr -----------------------------## |
| 62 | -# 人员信息导出ktr转换 | |
| 63 | -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr | |
| 64 | 66 | # 时刻表导出元数据ktr转换 |
| 65 | 67 | datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr |
| 66 | 68 | # 时刻表导出数据ktr转换 | ... | ... |
src/main/resources/datatools/config-prod.properties
| ... | ... | @@ -25,11 +25,16 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp |
| 25 | 25 | datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr |
| 26 | 26 | ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## |
| 27 | 27 | |
| 28 | +##---------------------------- 人员基础数据相关ktr(以下)----------------------------## | |
| 29 | +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr | |
| 30 | +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr | |
| 31 | +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr | |
| 32 | +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr | |
| 33 | +##---------------------------- 人员基础数据相关ktr(以上)----------------------------## | |
| 34 | + | |
| 28 | 35 | |
| 29 | 36 | |
| 30 | 37 | ##---------------------------- 导入数据ktr ----------------------------## |
| 31 | -# 人员信息导入 | |
| 32 | -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr | |
| 33 | 38 | # 路牌信息导入 |
| 34 | 39 | datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr |
| 35 | 40 | # 时刻表基础信息导入 |
| ... | ... | @@ -59,8 +64,6 @@ datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr |
| 59 | 64 | |
| 60 | 65 | |
| 61 | 66 | ##---------------------------- 导出数据ktr -----------------------------## |
| 62 | -# 人员信息导出ktr转换 | |
| 63 | -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr | |
| 64 | 67 | # 时刻表导出元数据ktr转换 |
| 65 | 68 | datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr |
| 66 | 69 | # 时刻表导出数据ktr转换 | ... | ... |
src/main/resources/datatools/config-test.properties
| ... | ... | @@ -26,10 +26,15 @@ datatools.zh_vehicle_basic_data_import=/datatools/ktrs/zh/vehicle-basic-data_imp |
| 26 | 26 | datatools.zh_vehicle_basic_data_export=/datatools/ktrs/zh/vehicle-basic-data_export.ktr |
| 27 | 27 | ##---------------------------- 车辆基础数据相关ktr(以上)----------------------------## |
| 28 | 28 | |
| 29 | +##---------------------------- 人员基础数据相关ktr(以下)----------------------------## | |
| 30 | +datatools.en_personnel_basic_data_import=/datatools/ktrs/en/personnel-basic-data_import.ktr | |
| 31 | +datatools.en_personnel_basic_data_export=/datatools/ktrs/en/personnel-basic-data_export.ktr | |
| 32 | +datatools.zh_personnel_basic_data_import=/datatools/ktrs/zh/personnel-basic-data_import.ktr | |
| 33 | +datatools.zh_personnel_basic_data_export=/datatools/ktrs/zh/personnel-basic-data_export.ktr | |
| 34 | +##---------------------------- 人员基础数据相关ktr(以上)----------------------------## | |
| 35 | + | |
| 29 | 36 | |
| 30 | 37 | ##---------------------------- 导入数据ktr ----------------------------## |
| 31 | -# 人员信息导入 | |
| 32 | -datatools.employees_datainputktr=/datatools/ktrs/employeesDataInput.ktr | |
| 33 | 38 | # 路牌信息导入 |
| 34 | 39 | datatools.guideboards_datainputktr=/datatools/ktrs/guideboardDataInput.ktr |
| 35 | 40 | # 时刻表基础信息导入 |
| ... | ... | @@ -58,8 +63,6 @@ datatools.employeesconfig_datainputktr=/datatools/ktrs/employeesConfigDataInput. |
| 58 | 63 | datatools.schedulerule_datainputktr=/datatools/ktrs/scheduleRuleDataInput.ktr |
| 59 | 64 | |
| 60 | 65 | ##---------------------------- 导出数据ktr -----------------------------## |
| 61 | -# 人员信息导出ktr转换 | |
| 62 | -datatools.employees_dataoutputktr=/datatools/ktrs/employeesDataOutput.ktr | |
| 63 | 66 | # 时刻表导出元数据ktr转换 |
| 64 | 67 | datatools.ttinfodetail_metaoutput=/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr |
| 65 | 68 | # 时刻表导出数据ktr转换 | ... | ... |
src/main/resources/datatools/ktrs/en/personnel-basic-data_export.ktr
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>人员信息导出_en</name> | |
| 5 | + <description/> | |
| 6 | + <extended_description/> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>cgsbm_in</name> | |
| 14 | + <default_value/> | |
| 15 | + <description>分公司编码</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>filepath</name> | |
| 19 | + <default_value/> | |
| 20 | + <description>excel文件路径</description> | |
| 21 | + </parameter> | |
| 22 | + </parameters> | |
| 23 | + <log> | |
| 24 | +<trans-log-table><connection/> | |
| 25 | +<schema/> | |
| 26 | +<table/> | |
| 27 | +<size_limit_lines/> | |
| 28 | +<interval/> | |
| 29 | +<timeout_days/> | |
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | +<perf-log-table><connection/> | |
| 32 | +<schema/> | |
| 33 | +<table/> | |
| 34 | +<interval/> | |
| 35 | +<timeout_days/> | |
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | +<channel-log-table><connection/> | |
| 38 | +<schema/> | |
| 39 | +<table/> | |
| 40 | +<timeout_days/> | |
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | +<step-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | +<metrics-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | + </log> | |
| 53 | + <maxdate> | |
| 54 | + <connection/> | |
| 55 | + <table/> | |
| 56 | + <field/> | |
| 57 | + <offset>0.0</offset> | |
| 58 | + <maxdiff>0.0</maxdiff> | |
| 59 | + </maxdate> | |
| 60 | + <size_rowset>10000</size_rowset> | |
| 61 | + <sleep_time_empty>50</sleep_time_empty> | |
| 62 | + <sleep_time_full>50</sleep_time_full> | |
| 63 | + <unique_connections>N</unique_connections> | |
| 64 | + <feedback_shown>Y</feedback_shown> | |
| 65 | + <feedback_size>50000</feedback_size> | |
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | + <shared_objects_file/> | |
| 68 | + <capture_step_performance>N</capture_step_performance> | |
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | + <dependencies> | |
| 72 | + </dependencies> | |
| 73 | + <partitionschemas> | |
| 74 | + </partitionschemas> | |
| 75 | + <slaveservers> | |
| 76 | + </slaveservers> | |
| 77 | + <clusterschemas> | |
| 78 | + </clusterschemas> | |
| 79 | + <created_user>-</created_user> | |
| 80 | + <created_date>2016/08/09 09:57:38.471</created_date> | |
| 81 | + <modified_user>-</modified_user> | |
| 82 | + <modified_date>2016/08/09 09:57:38.471</modified_date> | |
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | + <is_key_private>N</is_key_private> | |
| 85 | + </info> | |
| 86 | + <notepads> | |
| 87 | + <notepad> | |
| 88 | + <note>英文模版导出
excel中文字段名 excel英文字段名 
姓名 name 
工号 employee number
性别 gender
所属公司 company
所属分公司 branch company
一卡通号 one card number
运营服务证号 Operation service certificate number
岗位 occupation type
备注 remarks</note> | |
| 89 | + <xloc>124</xloc> | |
| 90 | + <yloc>166</yloc> | |
| 91 | + <width>376</width> | |
| 92 | + <heigth>186</heigth> | |
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | + <fontsize>12</fontsize> | |
| 95 | + <fontbold>N</fontbold> | |
| 96 | + <fontitalic>N</fontitalic> | |
| 97 | + <fontcolorred>0</fontcolorred> | |
| 98 | + <fontcolorgreen>0</fontcolorgreen> | |
| 99 | + <fontcolorblue>0</fontcolorblue> | |
| 100 | + <backgroundcolorred>255</backgroundcolorred> | |
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | + <bordercolorred>100</bordercolorred> | |
| 104 | + <bordercolorgreen>100</bordercolorgreen> | |
| 105 | + <bordercolorblue>100</bordercolorblue> | |
| 106 | + <drawshadow>Y</drawshadow> | |
| 107 | + </notepad> | |
| 108 | + </notepads> | |
| 109 | + <connection> | |
| 110 | + <name>192.168.168.1_jwgl_dw</name> | |
| 111 | + <server>192.168.168.1</server> | |
| 112 | + <type>ORACLE</type> | |
| 113 | + <access>Native</access> | |
| 114 | + <database>orcl</database> | |
| 115 | + <port>1521</port> | |
| 116 | + <username>jwgl_dw</username> | |
| 117 | + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | |
| 118 | + <servername/> | |
| 119 | + <data_tablespace/> | |
| 120 | + <index_tablespace/> | |
| 121 | + <attributes> | |
| 122 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 123 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 124 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 125 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 126 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 127 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 128 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 129 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 130 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 131 | + </attributes> | |
| 132 | + </connection> | |
| 133 | + <connection> | |
| 134 | + <name>bus_control_variable</name> | |
| 135 | + <server>${v_db_ip}</server> | |
| 136 | + <type>MYSQL</type> | |
| 137 | + <access>Native</access> | |
| 138 | + <database>${v_db_dname}</database> | |
| 139 | + <port>3306</port> | |
| 140 | + <username>${v_db_uname}</username> | |
| 141 | + <password>${v_db_pwd}</password> | |
| 142 | + <servername/> | |
| 143 | + <data_tablespace/> | |
| 144 | + <index_tablespace/> | |
| 145 | + <attributes> | |
| 146 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 147 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 148 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 149 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 150 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 151 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 152 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 153 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 155 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 157 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 158 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 159 | + </attributes> | |
| 160 | + </connection> | |
| 161 | + <connection> | |
| 162 | + <name>bus_control_公司_201</name> | |
| 163 | + <server>localhost</server> | |
| 164 | + <type>MYSQL</type> | |
| 165 | + <access>Native</access> | |
| 166 | + <database>control</database> | |
| 167 | + <port>3306</port> | |
| 168 | + <username>root</username> | |
| 169 | + <password>Encrypted </password> | |
| 170 | + <servername/> | |
| 171 | + <data_tablespace/> | |
| 172 | + <index_tablespace/> | |
| 173 | + <attributes> | |
| 174 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 175 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 176 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 177 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 178 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 179 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 180 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 182 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 184 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 185 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 186 | + </attributes> | |
| 187 | + </connection> | |
| 188 | + <connection> | |
| 189 | + <name>bus_control_本机</name> | |
| 190 | + <server>localhost</server> | |
| 191 | + <type>MYSQL</type> | |
| 192 | + <access>Native</access> | |
| 193 | + <database>control</database> | |
| 194 | + <port>3306</port> | |
| 195 | + <username>root</username> | |
| 196 | + <password>Encrypted </password> | |
| 197 | + <servername/> | |
| 198 | + <data_tablespace/> | |
| 199 | + <index_tablespace/> | |
| 200 | + <attributes> | |
| 201 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 202 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 203 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 204 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 205 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 207 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 209 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 210 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 211 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 212 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 213 | + </attributes> | |
| 214 | + </connection> | |
| 215 | + <connection> | |
| 216 | + <name>control_jndi</name> | |
| 217 | + <server/> | |
| 218 | + <type>MYSQL</type> | |
| 219 | + <access>JNDI</access> | |
| 220 | + <database>control_jndi</database> | |
| 221 | + <port>1521</port> | |
| 222 | + <username/> | |
| 223 | + <password>Encrypted </password> | |
| 224 | + <servername/> | |
| 225 | + <data_tablespace/> | |
| 226 | + <index_tablespace/> | |
| 227 | + <attributes> | |
| 228 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 229 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 230 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 231 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 232 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 235 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 236 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 237 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 238 | + </attributes> | |
| 239 | + </connection> | |
| 240 | + <connection> | |
| 241 | + <name>JGJW_VM</name> | |
| 242 | + <server>192.168.198.240</server> | |
| 243 | + <type>ORACLE</type> | |
| 244 | + <access>Native</access> | |
| 245 | + <database>orcl</database> | |
| 246 | + <port>1521</port> | |
| 247 | + <username>jwgl</username> | |
| 248 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 249 | + <servername/> | |
| 250 | + <data_tablespace/> | |
| 251 | + <index_tablespace/> | |
| 252 | + <attributes> | |
| 253 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 254 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 255 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 256 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 257 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 260 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 261 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 262 | + </attributes> | |
| 263 | + </connection> | |
| 264 | + <connection> | |
| 265 | + <name>NHJW_VM</name> | |
| 266 | + <server>192.168.198.240</server> | |
| 267 | + <type>ORACLE</type> | |
| 268 | + <access>Native</access> | |
| 269 | + <database>orcl</database> | |
| 270 | + <port>1521</port> | |
| 271 | + <username>nhjw</username> | |
| 272 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password> | |
| 273 | + <servername/> | |
| 274 | + <data_tablespace/> | |
| 275 | + <index_tablespace/> | |
| 276 | + <attributes> | |
| 277 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 278 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 279 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 280 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 281 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 282 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 283 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 284 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 285 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 286 | + </attributes> | |
| 287 | + </connection> | |
| 288 | + <connection> | |
| 289 | + <name>PDGJ_VM</name> | |
| 290 | + <server>192.168.198.240</server> | |
| 291 | + <type>ORACLE</type> | |
| 292 | + <access>Native</access> | |
| 293 | + <database>orcl</database> | |
| 294 | + <port>1521</port> | |
| 295 | + <username>pdgj</username> | |
| 296 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password> | |
| 297 | + <servername/> | |
| 298 | + <data_tablespace/> | |
| 299 | + <index_tablespace/> | |
| 300 | + <attributes> | |
| 301 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 302 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 303 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 304 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 305 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 306 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 307 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 308 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 309 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 310 | + </attributes> | |
| 311 | + </connection> | |
| 312 | + <connection> | |
| 313 | + <name>repair_dw_mysql_jndi</name> | |
| 314 | + <server/> | |
| 315 | + <type>MYSQL</type> | |
| 316 | + <access>JNDI</access> | |
| 317 | + <database>repair_dw_mysql</database> | |
| 318 | + <port>1521</port> | |
| 319 | + <username/> | |
| 320 | + <password>Encrypted </password> | |
| 321 | + <servername/> | |
| 322 | + <data_tablespace/> | |
| 323 | + <index_tablespace/> | |
| 324 | + <attributes> | |
| 325 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 326 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 327 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 328 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 329 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 330 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 331 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 332 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 333 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 334 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 335 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 336 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 337 | + </attributes> | |
| 338 | + </connection> | |
| 339 | + <connection> | |
| 340 | + <name>repair_dw(本机)</name> | |
| 341 | + <server>localhost</server> | |
| 342 | + <type>MYSQL</type> | |
| 343 | + <access>Native</access> | |
| 344 | + <database>ruoyi-vue-3.5</database> | |
| 345 | + <port>3306</port> | |
| 346 | + <username>root</username> | |
| 347 | + <password>Encrypted </password> | |
| 348 | + <servername/> | |
| 349 | + <data_tablespace/> | |
| 350 | + <index_tablespace/> | |
| 351 | + <attributes> | |
| 352 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 353 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 354 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 355 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 356 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 357 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 358 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 359 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 360 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 361 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 362 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 363 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 364 | + </attributes> | |
| 365 | + </connection> | |
| 366 | + <connection> | |
| 367 | + <name>repair_real_h2</name> | |
| 368 | + <server/> | |
| 369 | + <type>H2</type> | |
| 370 | + <access>JNDI</access> | |
| 371 | + <database>repair_real_h2</database> | |
| 372 | + <port>1521</port> | |
| 373 | + <username/> | |
| 374 | + <password>Encrypted </password> | |
| 375 | + <servername/> | |
| 376 | + <data_tablespace/> | |
| 377 | + <index_tablespace/> | |
| 378 | + <attributes> | |
| 379 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 380 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 381 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 382 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 383 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 384 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 385 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 386 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 387 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 388 | + </attributes> | |
| 389 | + </connection> | |
| 390 | + <connection> | |
| 391 | + <name>SNJW_VM</name> | |
| 392 | + <server>192.168.198.240</server> | |
| 393 | + <type>ORACLE</type> | |
| 394 | + <access>Native</access> | |
| 395 | + <database>orcl</database> | |
| 396 | + <port>1521</port> | |
| 397 | + <username>snjw</username> | |
| 398 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password> | |
| 399 | + <servername/> | |
| 400 | + <data_tablespace/> | |
| 401 | + <index_tablespace/> | |
| 402 | + <attributes> | |
| 403 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 404 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 405 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 406 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 407 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 408 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 409 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 410 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 411 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 412 | + </attributes> | |
| 413 | + </connection> | |
| 414 | + <connection> | |
| 415 | + <name>test_control_local</name> | |
| 416 | + <server>localhost</server> | |
| 417 | + <type>MYSQL</type> | |
| 418 | + <access>Native</access> | |
| 419 | + <database>test_control</database> | |
| 420 | + <port>3306</port> | |
| 421 | + <username>root</username> | |
| 422 | + <password>Encrypted </password> | |
| 423 | + <servername/> | |
| 424 | + <data_tablespace/> | |
| 425 | + <index_tablespace/> | |
| 426 | + <attributes> | |
| 427 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 428 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 429 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 430 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 431 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 432 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 433 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 434 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 435 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 436 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 437 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 438 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 439 | + </attributes> | |
| 440 | + </connection> | |
| 441 | + <connection> | |
| 442 | + <name>test_control(本机)</name> | |
| 443 | + <server>127.0.0.1</server> | |
| 444 | + <type>MYSQL</type> | |
| 445 | + <access>Native</access> | |
| 446 | + <database>test_control</database> | |
| 447 | + <port>3306</port> | |
| 448 | + <username>root</username> | |
| 449 | + <password>Encrypted </password> | |
| 450 | + <servername/> | |
| 451 | + <data_tablespace/> | |
| 452 | + <index_tablespace/> | |
| 453 | + <attributes> | |
| 454 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 455 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 456 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 457 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 458 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 459 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 460 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 461 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 462 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 463 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 464 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 465 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 466 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 467 | + </attributes> | |
| 468 | + </connection> | |
| 469 | + <connection> | |
| 470 | + <name>wzk_mysql_jndi</name> | |
| 471 | + <server/> | |
| 472 | + <type>MYSQL</type> | |
| 473 | + <access>JNDI</access> | |
| 474 | + <database>wzk_mysql</database> | |
| 475 | + <port>1521</port> | |
| 476 | + <username/> | |
| 477 | + <password>Encrypted </password> | |
| 478 | + <servername/> | |
| 479 | + <data_tablespace/> | |
| 480 | + <index_tablespace/> | |
| 481 | + <attributes> | |
| 482 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 483 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 484 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 485 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 486 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 487 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 488 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 489 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 490 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 491 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 492 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 493 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 494 | + </attributes> | |
| 495 | + </connection> | |
| 496 | + <connection> | |
| 497 | + <name>wzk(本机)</name> | |
| 498 | + <server>localhost</server> | |
| 499 | + <type>MYSQL</type> | |
| 500 | + <access>Native</access> | |
| 501 | + <database>pdgj_wzk_sys</database> | |
| 502 | + <port>3306</port> | |
| 503 | + <username>root</username> | |
| 504 | + <password>Encrypted </password> | |
| 505 | + <servername/> | |
| 506 | + <data_tablespace/> | |
| 507 | + <index_tablespace/> | |
| 508 | + <attributes> | |
| 509 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 510 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 511 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 512 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 513 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 514 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 515 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 516 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 517 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 518 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 519 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 520 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 521 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 522 | + </attributes> | |
| 523 | + </connection> | |
| 524 | + <connection> | |
| 525 | + <name>xlab_mysql_youle</name> | |
| 526 | + <server>101.231.124.8</server> | |
| 527 | + <type>MYSQL</type> | |
| 528 | + <access>Native</access> | |
| 529 | + <database>xlab_youle</database> | |
| 530 | + <port>45687</port> | |
| 531 | + <username>xlab-youle</username> | |
| 532 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 533 | + <servername/> | |
| 534 | + <data_tablespace/> | |
| 535 | + <index_tablespace/> | |
| 536 | + <attributes> | |
| 537 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 538 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 539 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 540 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 541 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 542 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 543 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 544 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 545 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 546 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 547 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 548 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 549 | + </attributes> | |
| 550 | + </connection> | |
| 551 | + <connection> | |
| 552 | + <name>xlab_mysql_youle(本机)</name> | |
| 553 | + <server>localhost</server> | |
| 554 | + <type>MYSQL</type> | |
| 555 | + <access>Native</access> | |
| 556 | + <database>xlab_youle</database> | |
| 557 | + <port>3306</port> | |
| 558 | + <username>root</username> | |
| 559 | + <password>Encrypted </password> | |
| 560 | + <servername/> | |
| 561 | + <data_tablespace/> | |
| 562 | + <index_tablespace/> | |
| 563 | + <attributes> | |
| 564 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 565 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 566 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 567 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 568 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 569 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 570 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 571 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 572 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 573 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 574 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 575 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 576 | + </attributes> | |
| 577 | + </connection> | |
| 578 | + <connection> | |
| 579 | + <name>xlab_youle</name> | |
| 580 | + <server/> | |
| 581 | + <type>MYSQL</type> | |
| 582 | + <access>JNDI</access> | |
| 583 | + <database>xlab_youle</database> | |
| 584 | + <port>1521</port> | |
| 585 | + <username/> | |
| 586 | + <password>Encrypted </password> | |
| 587 | + <servername/> | |
| 588 | + <data_tablespace/> | |
| 589 | + <index_tablespace/> | |
| 590 | + <attributes> | |
| 591 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 592 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 593 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 594 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 595 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 596 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 597 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 598 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 599 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 600 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 601 | + </attributes> | |
| 602 | + </connection> | |
| 603 | + <connection> | |
| 604 | + <name>YGJW_VM</name> | |
| 605 | + <server>192.168.198.240</server> | |
| 606 | + <type>ORACLE</type> | |
| 607 | + <access>Native</access> | |
| 608 | + <database>orcl</database> | |
| 609 | + <port>1521</port> | |
| 610 | + <username>ygjw</username> | |
| 611 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 612 | + <servername/> | |
| 613 | + <data_tablespace/> | |
| 614 | + <index_tablespace/> | |
| 615 | + <attributes> | |
| 616 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 617 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 618 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 619 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 620 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 621 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 622 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 623 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 624 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 625 | + </attributes> | |
| 626 | + </connection> | |
| 627 | + <connection> | |
| 628 | + <name>公司jgjw</name> | |
| 629 | + <server>192.168.168.1</server> | |
| 630 | + <type>ORACLE</type> | |
| 631 | + <access>Native</access> | |
| 632 | + <database>orcl</database> | |
| 633 | + <port>1521</port> | |
| 634 | + <username>jwgl</username> | |
| 635 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 636 | + <servername/> | |
| 637 | + <data_tablespace/> | |
| 638 | + <index_tablespace/> | |
| 639 | + <attributes> | |
| 640 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 641 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 642 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 643 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 644 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 645 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 646 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 647 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 648 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 649 | + </attributes> | |
| 650 | + </connection> | |
| 651 | + <connection> | |
| 652 | + <name>公司snjw</name> | |
| 653 | + <server>192.168.168.1</server> | |
| 654 | + <type>ORACLE</type> | |
| 655 | + <access>Native</access> | |
| 656 | + <database>orcl</database> | |
| 657 | + <port>1521</port> | |
| 658 | + <username>snjw</username> | |
| 659 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password> | |
| 660 | + <servername/> | |
| 661 | + <data_tablespace/> | |
| 662 | + <index_tablespace/> | |
| 663 | + <attributes> | |
| 664 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 665 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 666 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 667 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 668 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 669 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 670 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 671 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 672 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 673 | + </attributes> | |
| 674 | + </connection> | |
| 675 | + <connection> | |
| 676 | + <name>公司ygjw</name> | |
| 677 | + <server>192.168.168.178</server> | |
| 678 | + <type>ORACLE</type> | |
| 679 | + <access>Native</access> | |
| 680 | + <database>orcl</database> | |
| 681 | + <port>1521</port> | |
| 682 | + <username>ygjw</username> | |
| 683 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 684 | + <servername/> | |
| 685 | + <data_tablespace/> | |
| 686 | + <index_tablespace/> | |
| 687 | + <attributes> | |
| 688 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 689 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 690 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 691 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 692 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 693 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 694 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 695 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 696 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 697 | + </attributes> | |
| 698 | + </connection> | |
| 699 | + <connection> | |
| 700 | + <name>公司机务_pdgj</name> | |
| 701 | + <server>192.168.168.178</server> | |
| 702 | + <type>ORACLE</type> | |
| 703 | + <access>Native</access> | |
| 704 | + <database>orcl</database> | |
| 705 | + <port>1521</port> | |
| 706 | + <username>pdgj</username> | |
| 707 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password> | |
| 708 | + <servername/> | |
| 709 | + <data_tablespace/> | |
| 710 | + <index_tablespace/> | |
| 711 | + <attributes> | |
| 712 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 713 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 714 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 715 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 716 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 717 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 718 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 719 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 720 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 721 | + </attributes> | |
| 722 | + </connection> | |
| 723 | + <connection> | |
| 724 | + <name>外网vpn临港机务oracle</name> | |
| 725 | + <server>10.10.150.114</server> | |
| 726 | + <type>ORACLE</type> | |
| 727 | + <access>Native</access> | |
| 728 | + <database>helowin</database> | |
| 729 | + <port>1521</port> | |
| 730 | + <username>lgjw</username> | |
| 731 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password> | |
| 732 | + <servername/> | |
| 733 | + <data_tablespace/> | |
| 734 | + <index_tablespace/> | |
| 735 | + <attributes> | |
| 736 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 737 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 738 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 739 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 740 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 741 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 742 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 743 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 744 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 745 | + </attributes> | |
| 746 | + </connection> | |
| 747 | + <connection> | |
| 748 | + <name>外网南汇机务oracle</name> | |
| 749 | + <server>58.247.254.118</server> | |
| 750 | + <type>ORACLE</type> | |
| 751 | + <access>Native</access> | |
| 752 | + <database>orcl</database> | |
| 753 | + <port>15211</port> | |
| 754 | + <username>nhjw</username> | |
| 755 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password> | |
| 756 | + <servername/> | |
| 757 | + <data_tablespace/> | |
| 758 | + <index_tablespace/> | |
| 759 | + <attributes> | |
| 760 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 761 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 762 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 763 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 764 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 765 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 766 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 767 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 768 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 769 | + </attributes> | |
| 770 | + </connection> | |
| 771 | + <connection> | |
| 772 | + <name>外网杨高机务oracle</name> | |
| 773 | + <server>58.247.254.118</server> | |
| 774 | + <type>ORACLE</type> | |
| 775 | + <access>Native</access> | |
| 776 | + <database>orcl</database> | |
| 777 | + <port>15211</port> | |
| 778 | + <username>ygjw</username> | |
| 779 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 780 | + <servername/> | |
| 781 | + <data_tablespace/> | |
| 782 | + <index_tablespace/> | |
| 783 | + <attributes> | |
| 784 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 785 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 786 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 787 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 788 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 789 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 790 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 791 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 792 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 793 | + </attributes> | |
| 794 | + </connection> | |
| 795 | + <connection> | |
| 796 | + <name>外网金高机务oracle</name> | |
| 797 | + <server>58.247.254.118</server> | |
| 798 | + <type>ORACLE</type> | |
| 799 | + <access>Native</access> | |
| 800 | + <database>orcl</database> | |
| 801 | + <port>15211</port> | |
| 802 | + <username>jwgl</username> | |
| 803 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 804 | + <servername/> | |
| 805 | + <data_tablespace/> | |
| 806 | + <index_tablespace/> | |
| 807 | + <attributes> | |
| 808 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 809 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 810 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 811 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 812 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 813 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 814 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 815 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 816 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 817 | + </attributes> | |
| 818 | + </connection> | |
| 819 | + <order> | |
| 820 | + <hop> <from>人员信息表输入</from><to>添加查询常量</to><enabled>Y</enabled> </hop> | |
| 821 | + <hop> <from>岗位数据查询</from><to>性别数据查询</to><enabled>Y</enabled> </hop> | |
| 822 | + <hop> <from>性别数据查询</from><to>处理工号</to><enabled>Y</enabled> </hop> | |
| 823 | + <hop> <from>处理工号</from><to>字段选择</to><enabled>Y</enabled> </hop> | |
| 824 | + <hop> <from>添加查询常量</from><to>公司查询</to><enabled>Y</enabled> </hop> | |
| 825 | + <hop> <from>公司查询</from><to>分公司查询</to><enabled>Y</enabled> </hop> | |
| 826 | + <hop> <from>分公司查询</from><to>岗位数据查询</to><enabled>Y</enabled> </hop> | |
| 827 | + <hop> <from>字段选择</from><to>英文字段名</to><enabled>Y</enabled> </hop> | |
| 828 | + <hop> <from>英文字段名</from><to>Excel输出</to><enabled>Y</enabled> </hop> | |
| 829 | + </order> | |
| 830 | + <step> | |
| 831 | + <name>Excel输出</name> | |
| 832 | + <type>ExcelOutput</type> | |
| 833 | + <description/> | |
| 834 | + <distribute>Y</distribute> | |
| 835 | + <custom_distribution/> | |
| 836 | + <copies>1</copies> | |
| 837 | + <partitioning> | |
| 838 | + <method>none</method> | |
| 839 | + <schema_name/> | |
| 840 | + </partitioning> | |
| 841 | + <header>Y</header> | |
| 842 | + <footer>N</footer> | |
| 843 | + <encoding/> | |
| 844 | + <append>N</append> | |
| 845 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 846 | + <file> | |
| 847 | + <name>${filepath}</name> | |
| 848 | + <extention>xls</extention> | |
| 849 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 850 | + <create_parent_folder>N</create_parent_folder> | |
| 851 | + <split>N</split> | |
| 852 | + <add_date>N</add_date> | |
| 853 | + <add_time>N</add_time> | |
| 854 | + <SpecifyFormat>N</SpecifyFormat> | |
| 855 | + <date_time_format>yyyyMMddHHmmss</date_time_format> | |
| 856 | + <sheetname>sheet1</sheetname> | |
| 857 | + <autosizecolums>N</autosizecolums> | |
| 858 | + <nullisblank>N</nullisblank> | |
| 859 | + <protect_sheet>N</protect_sheet> | |
| 860 | + <password>Encrypted </password> | |
| 861 | + <splitevery>0</splitevery> | |
| 862 | + <usetempfiles>N</usetempfiles> | |
| 863 | + <tempdirectory/> | |
| 864 | + </file> | |
| 865 | + <template> | |
| 866 | + <enabled>N</enabled> | |
| 867 | + <append>N</append> | |
| 868 | + <filename>template.xls</filename> | |
| 869 | + </template> | |
| 870 | + <fields> | |
| 871 | + <field> | |
| 872 | + <name>name</name> | |
| 873 | + <type>String</type> | |
| 874 | + <format/> | |
| 875 | + </field> | |
| 876 | + <field> | |
| 877 | + <name>employee number</name> | |
| 878 | + <type>String</type> | |
| 879 | + <format/> | |
| 880 | + </field> | |
| 881 | + <field> | |
| 882 | + <name>gender</name> | |
| 883 | + <type>String</type> | |
| 884 | + <format/> | |
| 885 | + </field> | |
| 886 | + <field> | |
| 887 | + <name>company</name> | |
| 888 | + <type>String</type> | |
| 889 | + <format/> | |
| 890 | + </field> | |
| 891 | + <field> | |
| 892 | + <name>branch company</name> | |
| 893 | + <type>String</type> | |
| 894 | + <format/> | |
| 895 | + </field> | |
| 896 | + <field> | |
| 897 | + <name>one card number</name> | |
| 898 | + <type>String</type> | |
| 899 | + <format/> | |
| 900 | + </field> | |
| 901 | + <field> | |
| 902 | + <name>Operation service certificate number</name> | |
| 903 | + <type>String</type> | |
| 904 | + <format/> | |
| 905 | + </field> | |
| 906 | + <field> | |
| 907 | + <name>occupation type</name> | |
| 908 | + <type>String</type> | |
| 909 | + <format/> | |
| 910 | + </field> | |
| 911 | + <field> | |
| 912 | + <name>remarks</name> | |
| 913 | + <type>String</type> | |
| 914 | + <format/> | |
| 915 | + </field> | |
| 916 | + </fields> | |
| 917 | + <custom> | |
| 918 | + <header_font_name>arial</header_font_name> | |
| 919 | + <header_font_size>10</header_font_size> | |
| 920 | + <header_font_bold>N</header_font_bold> | |
| 921 | + <header_font_italic>N</header_font_italic> | |
| 922 | + <header_font_underline>no</header_font_underline> | |
| 923 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 924 | + <header_font_color>black</header_font_color> | |
| 925 | + <header_background_color>none</header_background_color> | |
| 926 | + <header_row_height>255</header_row_height> | |
| 927 | + <header_alignment>left</header_alignment> | |
| 928 | + <header_image/> | |
| 929 | + <row_font_name>arial</row_font_name> | |
| 930 | + <row_font_size>10</row_font_size> | |
| 931 | + <row_font_color>black</row_font_color> | |
| 932 | + <row_background_color>none</row_background_color> | |
| 933 | + </custom> | |
| 934 | + <cluster_schema/> | |
| 935 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 936 | + <xloc>633</xloc> | |
| 937 | + <yloc>387</yloc> | |
| 938 | + <draw>Y</draw> | |
| 939 | + </GUI> | |
| 940 | + </step> | |
| 941 | + | |
| 942 | + <step> | |
| 943 | + <name>人员信息表输入</name> | |
| 944 | + <type>TableInput</type> | |
| 945 | + <description/> | |
| 946 | + <distribute>Y</distribute> | |
| 947 | + <custom_distribution/> | |
| 948 | + <copies>1</copies> | |
| 949 | + <partitioning> | |
| 950 | + <method>none</method> | |
| 951 | + <schema_name/> | |
| 952 | + </partitioning> | |
| 953 | + <connection>control_jndi</connection> | |
| 954 | + <sql>SELECT * FROM bsth_c_personnel
where concat(company_code, '_', branche_company_code) in (${cgsbm_in})</sql> | |
| 955 | + <limit>0</limit> | |
| 956 | + <lookup/> | |
| 957 | + <execute_each_row>N</execute_each_row> | |
| 958 | + <variables_active>Y</variables_active> | |
| 959 | + <lazy_conversion_active>N</lazy_conversion_active> | |
| 960 | + <cluster_schema/> | |
| 961 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 962 | + <xloc>112</xloc> | |
| 963 | + <yloc>66</yloc> | |
| 964 | + <draw>Y</draw> | |
| 965 | + </GUI> | |
| 966 | + </step> | |
| 967 | + | |
| 968 | + <step> | |
| 969 | + <name>公司查询</name> | |
| 970 | + <type>DBLookup</type> | |
| 971 | + <description/> | |
| 972 | + <distribute>Y</distribute> | |
| 973 | + <custom_distribution/> | |
| 974 | + <copies>1</copies> | |
| 975 | + <partitioning> | |
| 976 | + <method>none</method> | |
| 977 | + <schema_name/> | |
| 978 | + </partitioning> | |
| 979 | + <connection>control_jndi</connection> | |
| 980 | + <cache>N</cache> | |
| 981 | + <cache_load_all>N</cache_load_all> | |
| 982 | + <cache_size>0</cache_size> | |
| 983 | + <lookup> | |
| 984 | + <schema/> | |
| 985 | + <table>bsth_c_business</table> | |
| 986 | + <orderby/> | |
| 987 | + <fail_on_multiple>N</fail_on_multiple> | |
| 988 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 989 | + <key> | |
| 990 | + <name>up_code</name> | |
| 991 | + <field>up_code</field> | |
| 992 | + <condition>=</condition> | |
| 993 | + <name2/> | |
| 994 | + </key> | |
| 995 | + <key> | |
| 996 | + <name>company_code</name> | |
| 997 | + <field>business_code</field> | |
| 998 | + <condition>=</condition> | |
| 999 | + <name2/> | |
| 1000 | + </key> | |
| 1001 | + <value> | |
| 1002 | + <name>business_name</name> | |
| 1003 | + <rename>gs</rename> | |
| 1004 | + <default/> | |
| 1005 | + <type>String</type> | |
| 1006 | + </value> | |
| 1007 | + </lookup> | |
| 1008 | + <cluster_schema/> | |
| 1009 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1010 | + <xloc>361</xloc> | |
| 1011 | + <yloc>65</yloc> | |
| 1012 | + <draw>Y</draw> | |
| 1013 | + </GUI> | |
| 1014 | + </step> | |
| 1015 | + | |
| 1016 | + <step> | |
| 1017 | + <name>分公司查询</name> | |
| 1018 | + <type>DBLookup</type> | |
| 1019 | + <description/> | |
| 1020 | + <distribute>Y</distribute> | |
| 1021 | + <custom_distribution/> | |
| 1022 | + <copies>1</copies> | |
| 1023 | + <partitioning> | |
| 1024 | + <method>none</method> | |
| 1025 | + <schema_name/> | |
| 1026 | + </partitioning> | |
| 1027 | + <connection>control_jndi</connection> | |
| 1028 | + <cache>N</cache> | |
| 1029 | + <cache_load_all>N</cache_load_all> | |
| 1030 | + <cache_size>0</cache_size> | |
| 1031 | + <lookup> | |
| 1032 | + <schema/> | |
| 1033 | + <table>bsth_c_business</table> | |
| 1034 | + <orderby/> | |
| 1035 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1036 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1037 | + <key> | |
| 1038 | + <name>company_code</name> | |
| 1039 | + <field>up_code</field> | |
| 1040 | + <condition>=</condition> | |
| 1041 | + <name2/> | |
| 1042 | + </key> | |
| 1043 | + <key> | |
| 1044 | + <name>branche_company_code</name> | |
| 1045 | + <field>business_code</field> | |
| 1046 | + <condition>=</condition> | |
| 1047 | + <name2/> | |
| 1048 | + </key> | |
| 1049 | + <value> | |
| 1050 | + <name>business_name</name> | |
| 1051 | + <rename>fgs</rename> | |
| 1052 | + <default/> | |
| 1053 | + <type>String</type> | |
| 1054 | + </value> | |
| 1055 | + </lookup> | |
| 1056 | + <cluster_schema/> | |
| 1057 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1058 | + <xloc>479</xloc> | |
| 1059 | + <yloc>67</yloc> | |
| 1060 | + <draw>Y</draw> | |
| 1061 | + </GUI> | |
| 1062 | + </step> | |
| 1063 | + | |
| 1064 | + <step> | |
| 1065 | + <name>处理工号</name> | |
| 1066 | + <type>ScriptValueMod</type> | |
| 1067 | + <description/> | |
| 1068 | + <distribute>Y</distribute> | |
| 1069 | + <custom_distribution/> | |
| 1070 | + <copies>1</copies> | |
| 1071 | + <partitioning> | |
| 1072 | + <method>none</method> | |
| 1073 | + <schema_name/> | |
| 1074 | + </partitioning> | |
| 1075 | + <compatible>N</compatible> | |
| 1076 | + <optimizationLevel>9</optimizationLevel> | |
| 1077 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1078 | + <jsScript_name>Script 1</jsScript_name> | |
| 1079 | + <jsScript_script>//Script here

var jc;
jc = job_code.split("-")[1];</jsScript_script> | |
| 1080 | + </jsScript> </jsScripts> <fields> <field> <name>jc</name> | |
| 1081 | + <rename>jc</rename> | |
| 1082 | + <type>String</type> | |
| 1083 | + <length>-1</length> | |
| 1084 | + <precision>-1</precision> | |
| 1085 | + <replace>N</replace> | |
| 1086 | + </field> </fields> <cluster_schema/> | |
| 1087 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1088 | + <xloc>786</xloc> | |
| 1089 | + <yloc>168</yloc> | |
| 1090 | + <draw>Y</draw> | |
| 1091 | + </GUI> | |
| 1092 | + </step> | |
| 1093 | + | |
| 1094 | + <step> | |
| 1095 | + <name>字段选择</name> | |
| 1096 | + <type>SelectValues</type> | |
| 1097 | + <description/> | |
| 1098 | + <distribute>Y</distribute> | |
| 1099 | + <custom_distribution/> | |
| 1100 | + <copies>1</copies> | |
| 1101 | + <partitioning> | |
| 1102 | + <method>none</method> | |
| 1103 | + <schema_name/> | |
| 1104 | + </partitioning> | |
| 1105 | + <fields> <field> <name>personnel_name</name> | |
| 1106 | + <rename>姓名</rename> | |
| 1107 | + <length>-2</length> | |
| 1108 | + <precision>-2</precision> | |
| 1109 | + </field> <field> <name>jc</name> | |
| 1110 | + <rename>工号</rename> | |
| 1111 | + <length>-2</length> | |
| 1112 | + <precision>-2</precision> | |
| 1113 | + </field> <field> <name>sex</name> | |
| 1114 | + <rename>性别</rename> | |
| 1115 | + <length>-2</length> | |
| 1116 | + <precision>-2</precision> | |
| 1117 | + </field> <field> <name>gs</name> | |
| 1118 | + <rename>所属公司</rename> | |
| 1119 | + <length>-2</length> | |
| 1120 | + <precision>-2</precision> | |
| 1121 | + </field> <field> <name>fgs</name> | |
| 1122 | + <rename>所属分公司</rename> | |
| 1123 | + <length>-2</length> | |
| 1124 | + <precision>-2</precision> | |
| 1125 | + </field> <field> <name>ic_card_code</name> | |
| 1126 | + <rename>一卡通号</rename> | |
| 1127 | + <length>-2</length> | |
| 1128 | + <precision>-2</precision> | |
| 1129 | + </field> <field> <name>papers_code</name> | |
| 1130 | + <rename>运营服务证号</rename> | |
| 1131 | + <length>-2</length> | |
| 1132 | + <precision>-2</precision> | |
| 1133 | + </field> <field> <name>gz</name> | |
| 1134 | + <rename>岗位</rename> | |
| 1135 | + <length>-2</length> | |
| 1136 | + <precision>-2</precision> | |
| 1137 | + </field> <field> <name>remark</name> | |
| 1138 | + <rename>备注</rename> | |
| 1139 | + <length>-2</length> | |
| 1140 | + <precision>-2</precision> | |
| 1141 | + </field> <select_unspecified>N</select_unspecified> | |
| 1142 | + </fields> <cluster_schema/> | |
| 1143 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1144 | + <xloc>634</xloc> | |
| 1145 | + <yloc>167</yloc> | |
| 1146 | + <draw>Y</draw> | |
| 1147 | + </GUI> | |
| 1148 | + </step> | |
| 1149 | + | |
| 1150 | + <step> | |
| 1151 | + <name>岗位数据查询</name> | |
| 1152 | + <type>DBLookup</type> | |
| 1153 | + <description/> | |
| 1154 | + <distribute>Y</distribute> | |
| 1155 | + <custom_distribution/> | |
| 1156 | + <copies>1</copies> | |
| 1157 | + <partitioning> | |
| 1158 | + <method>none</method> | |
| 1159 | + <schema_name/> | |
| 1160 | + </partitioning> | |
| 1161 | + <connection>control_jndi</connection> | |
| 1162 | + <cache>N</cache> | |
| 1163 | + <cache_load_all>N</cache_load_all> | |
| 1164 | + <cache_size>0</cache_size> | |
| 1165 | + <lookup> | |
| 1166 | + <schema/> | |
| 1167 | + <table>bsth_c_sys_dictionary</table> | |
| 1168 | + <orderby/> | |
| 1169 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1170 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1171 | + <key> | |
| 1172 | + <name>gzType</name> | |
| 1173 | + <field>d_group</field> | |
| 1174 | + <condition>=</condition> | |
| 1175 | + <name2/> | |
| 1176 | + </key> | |
| 1177 | + <key> | |
| 1178 | + <name>posts</name> | |
| 1179 | + <field>d_code</field> | |
| 1180 | + <condition>=</condition> | |
| 1181 | + <name2/> | |
| 1182 | + </key> | |
| 1183 | + <value> | |
| 1184 | + <name>d_name</name> | |
| 1185 | + <rename>gz</rename> | |
| 1186 | + <default/> | |
| 1187 | + <type>String</type> | |
| 1188 | + </value> | |
| 1189 | + </lookup> | |
| 1190 | + <cluster_schema/> | |
| 1191 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1192 | + <xloc>633</xloc> | |
| 1193 | + <yloc>69</yloc> | |
| 1194 | + <draw>Y</draw> | |
| 1195 | + </GUI> | |
| 1196 | + </step> | |
| 1197 | + | |
| 1198 | + <step> | |
| 1199 | + <name>性别数据查询</name> | |
| 1200 | + <type>DBLookup</type> | |
| 1201 | + <description/> | |
| 1202 | + <distribute>Y</distribute> | |
| 1203 | + <custom_distribution/> | |
| 1204 | + <copies>1</copies> | |
| 1205 | + <partitioning> | |
| 1206 | + <method>none</method> | |
| 1207 | + <schema_name/> | |
| 1208 | + </partitioning> | |
| 1209 | + <connection>control_jndi</connection> | |
| 1210 | + <cache>N</cache> | |
| 1211 | + <cache_load_all>N</cache_load_all> | |
| 1212 | + <cache_size>0</cache_size> | |
| 1213 | + <lookup> | |
| 1214 | + <schema/> | |
| 1215 | + <table>bsth_c_sys_dictionary</table> | |
| 1216 | + <orderby/> | |
| 1217 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1218 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1219 | + <key> | |
| 1220 | + <name>sexType</name> | |
| 1221 | + <field>d_group</field> | |
| 1222 | + <condition>=</condition> | |
| 1223 | + <name2/> | |
| 1224 | + </key> | |
| 1225 | + <key> | |
| 1226 | + <name>personnel_type</name> | |
| 1227 | + <field>d_code</field> | |
| 1228 | + <condition>=</condition> | |
| 1229 | + <name2/> | |
| 1230 | + </key> | |
| 1231 | + <value> | |
| 1232 | + <name>d_name</name> | |
| 1233 | + <rename>sex</rename> | |
| 1234 | + <default/> | |
| 1235 | + <type>String</type> | |
| 1236 | + </value> | |
| 1237 | + </lookup> | |
| 1238 | + <cluster_schema/> | |
| 1239 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1240 | + <xloc>785</xloc> | |
| 1241 | + <yloc>70</yloc> | |
| 1242 | + <draw>Y</draw> | |
| 1243 | + </GUI> | |
| 1244 | + </step> | |
| 1245 | + | |
| 1246 | + <step> | |
| 1247 | + <name>添加查询常量</name> | |
| 1248 | + <type>ScriptValueMod</type> | |
| 1249 | + <description/> | |
| 1250 | + <distribute>Y</distribute> | |
| 1251 | + <custom_distribution/> | |
| 1252 | + <copies>1</copies> | |
| 1253 | + <partitioning> | |
| 1254 | + <method>none</method> | |
| 1255 | + <schema_name/> | |
| 1256 | + </partitioning> | |
| 1257 | + <compatible>N</compatible> | |
| 1258 | + <optimizationLevel>9</optimizationLevel> | |
| 1259 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1260 | + <jsScript_name>Script 1</jsScript_name> | |
| 1261 | + <jsScript_script>//Script here

var up_code = '88';
var sexType = 'sexType';
var gzType = 'gzType';</jsScript_script> | |
| 1262 | + </jsScript> </jsScripts> <fields> <field> <name>up_code</name> | |
| 1263 | + <rename>up_code</rename> | |
| 1264 | + <type>String</type> | |
| 1265 | + <length>-1</length> | |
| 1266 | + <precision>-1</precision> | |
| 1267 | + <replace>N</replace> | |
| 1268 | + </field> <field> <name>sexType</name> | |
| 1269 | + <rename>sexType</rename> | |
| 1270 | + <type>String</type> | |
| 1271 | + <length>-1</length> | |
| 1272 | + <precision>-1</precision> | |
| 1273 | + <replace>N</replace> | |
| 1274 | + </field> <field> <name>gzType</name> | |
| 1275 | + <rename>gzType</rename> | |
| 1276 | + <type>String</type> | |
| 1277 | + <length>-1</length> | |
| 1278 | + <precision>-1</precision> | |
| 1279 | + <replace>N</replace> | |
| 1280 | + </field> </fields> <cluster_schema/> | |
| 1281 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1282 | + <xloc>235</xloc> | |
| 1283 | + <yloc>65</yloc> | |
| 1284 | + <draw>Y</draw> | |
| 1285 | + </GUI> | |
| 1286 | + </step> | |
| 1287 | + | |
| 1288 | + <step> | |
| 1289 | + <name>英文字段名</name> | |
| 1290 | + <type>SelectValues</type> | |
| 1291 | + <description/> | |
| 1292 | + <distribute>Y</distribute> | |
| 1293 | + <custom_distribution/> | |
| 1294 | + <copies>1</copies> | |
| 1295 | + <partitioning> | |
| 1296 | + <method>none</method> | |
| 1297 | + <schema_name/> | |
| 1298 | + </partitioning> | |
| 1299 | + <fields> <field> <name>姓名</name> | |
| 1300 | + <rename>name</rename> | |
| 1301 | + <length>-2</length> | |
| 1302 | + <precision>-2</precision> | |
| 1303 | + </field> <field> <name>工号</name> | |
| 1304 | + <rename>employee number</rename> | |
| 1305 | + <length>-2</length> | |
| 1306 | + <precision>-2</precision> | |
| 1307 | + </field> <field> <name>性别</name> | |
| 1308 | + <rename>gender</rename> | |
| 1309 | + <length>-2</length> | |
| 1310 | + <precision>-2</precision> | |
| 1311 | + </field> <field> <name>所属公司</name> | |
| 1312 | + <rename>company</rename> | |
| 1313 | + <length>-2</length> | |
| 1314 | + <precision>-2</precision> | |
| 1315 | + </field> <field> <name>所属分公司</name> | |
| 1316 | + <rename>branch company</rename> | |
| 1317 | + <length>-2</length> | |
| 1318 | + <precision>-2</precision> | |
| 1319 | + </field> <field> <name>一卡通号</name> | |
| 1320 | + <rename>one card number</rename> | |
| 1321 | + <length>-2</length> | |
| 1322 | + <precision>-2</precision> | |
| 1323 | + </field> <field> <name>运营服务证号</name> | |
| 1324 | + <rename>Operation service certificate number</rename> | |
| 1325 | + <length>-2</length> | |
| 1326 | + <precision>-2</precision> | |
| 1327 | + </field> <field> <name>岗位</name> | |
| 1328 | + <rename>occupation type</rename> | |
| 1329 | + <length>-2</length> | |
| 1330 | + <precision>-2</precision> | |
| 1331 | + </field> <field> <name>备注</name> | |
| 1332 | + <rename>remarks</rename> | |
| 1333 | + <length>-2</length> | |
| 1334 | + <precision>-2</precision> | |
| 1335 | + </field> <select_unspecified>N</select_unspecified> | |
| 1336 | + </fields> <cluster_schema/> | |
| 1337 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1338 | + <xloc>634</xloc> | |
| 1339 | + <yloc>268</yloc> | |
| 1340 | + <draw>Y</draw> | |
| 1341 | + </GUI> | |
| 1342 | + </step> | |
| 1343 | + | |
| 1344 | + <step_error_handling> | |
| 1345 | + </step_error_handling> | |
| 1346 | + <slave-step-copy-partition-distribution> | |
| 1347 | +</slave-step-copy-partition-distribution> | |
| 1348 | + <slave_transformation>N</slave_transformation> | |
| 1349 | + | |
| 1350 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/en/personnel-basic-data_import.ktr
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<transformation> | |
| 3 | + <info> | |
| 4 | + <name>人员信息导入_en</name> | |
| 5 | + <description>人员基础信息导入</description> | |
| 6 | + <extended_description>人员基础信息</extended_description> | |
| 7 | + <trans_version/> | |
| 8 | + <trans_type>Normal</trans_type> | |
| 9 | + <trans_status>0</trans_status> | |
| 10 | + <directory>/</directory> | |
| 11 | + <parameters> | |
| 12 | + <parameter> | |
| 13 | + <name>erroroutputdir</name> | |
| 14 | + <default_value/> | |
| 15 | + <description>ktr step配置的错误输出目录</description> | |
| 16 | + </parameter> | |
| 17 | + <parameter> | |
| 18 | + <name>filepath</name> | |
| 19 | + <default_value/> | |
| 20 | + <description>待处理导入的excel文件</description> | |
| 21 | + </parameter> | |
| 22 | + </parameters> | |
| 23 | + <log> | |
| 24 | +<trans-log-table><connection/> | |
| 25 | +<schema/> | |
| 26 | +<table/> | |
| 27 | +<size_limit_lines/> | |
| 28 | +<interval/> | |
| 29 | +<timeout_days/> | |
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | |
| 31 | +<perf-log-table><connection/> | |
| 32 | +<schema/> | |
| 33 | +<table/> | |
| 34 | +<interval/> | |
| 35 | +<timeout_days/> | |
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | |
| 37 | +<channel-log-table><connection/> | |
| 38 | +<schema/> | |
| 39 | +<table/> | |
| 40 | +<timeout_days/> | |
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | |
| 42 | +<step-log-table><connection/> | |
| 43 | +<schema/> | |
| 44 | +<table/> | |
| 45 | +<timeout_days/> | |
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | |
| 47 | +<metrics-log-table><connection/> | |
| 48 | +<schema/> | |
| 49 | +<table/> | |
| 50 | +<timeout_days/> | |
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | |
| 52 | + </log> | |
| 53 | + <maxdate> | |
| 54 | + <connection/> | |
| 55 | + <table/> | |
| 56 | + <field/> | |
| 57 | + <offset>0.0</offset> | |
| 58 | + <maxdiff>0.0</maxdiff> | |
| 59 | + </maxdate> | |
| 60 | + <size_rowset>10000</size_rowset> | |
| 61 | + <sleep_time_empty>50</sleep_time_empty> | |
| 62 | + <sleep_time_full>50</sleep_time_full> | |
| 63 | + <unique_connections>N</unique_connections> | |
| 64 | + <feedback_shown>Y</feedback_shown> | |
| 65 | + <feedback_size>50000</feedback_size> | |
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | |
| 67 | + <shared_objects_file/> | |
| 68 | + <capture_step_performance>N</capture_step_performance> | |
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | |
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | |
| 71 | + <dependencies> | |
| 72 | + </dependencies> | |
| 73 | + <partitionschemas> | |
| 74 | + </partitionschemas> | |
| 75 | + <slaveservers> | |
| 76 | + </slaveservers> | |
| 77 | + <clusterschemas> | |
| 78 | + </clusterschemas> | |
| 79 | + <created_user>-</created_user> | |
| 80 | + <created_date>2016/06/29 10:18:56.974</created_date> | |
| 81 | + <modified_user>-</modified_user> | |
| 82 | + <modified_date>2016/06/29 10:18:56.974</modified_date> | |
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | |
| 84 | + <is_key_private>N</is_key_private> | |
| 85 | + </info> | |
| 86 | + <notepads> | |
| 87 | + <notepad> | |
| 88 | + <note>英文模版导入
excel中文字段名 excel英文字段名 
姓名 name 
工号 employee number
性别 gender
所属公司 company
所属分公司 branch company
一卡通号 one card number
运营服务证号 Operation service certificate number
岗位 occupation type
备注 remarks</note> | |
| 89 | + <xloc>36</xloc> | |
| 90 | + <yloc>250</yloc> | |
| 91 | + <width>376</width> | |
| 92 | + <heigth>186</heigth> | |
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | |
| 94 | + <fontsize>12</fontsize> | |
| 95 | + <fontbold>N</fontbold> | |
| 96 | + <fontitalic>N</fontitalic> | |
| 97 | + <fontcolorred>0</fontcolorred> | |
| 98 | + <fontcolorgreen>0</fontcolorgreen> | |
| 99 | + <fontcolorblue>0</fontcolorblue> | |
| 100 | + <backgroundcolorred>255</backgroundcolorred> | |
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | |
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | |
| 103 | + <bordercolorred>100</bordercolorred> | |
| 104 | + <bordercolorgreen>100</bordercolorgreen> | |
| 105 | + <bordercolorblue>100</bordercolorblue> | |
| 106 | + <drawshadow>Y</drawshadow> | |
| 107 | + </notepad> | |
| 108 | + </notepads> | |
| 109 | + <connection> | |
| 110 | + <name>192.168.168.1_jwgl_dw</name> | |
| 111 | + <server>192.168.168.1</server> | |
| 112 | + <type>ORACLE</type> | |
| 113 | + <access>Native</access> | |
| 114 | + <database>orcl</database> | |
| 115 | + <port>1521</port> | |
| 116 | + <username>jwgl_dw</username> | |
| 117 | + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | |
| 118 | + <servername/> | |
| 119 | + <data_tablespace/> | |
| 120 | + <index_tablespace/> | |
| 121 | + <attributes> | |
| 122 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 123 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 124 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 125 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 126 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 127 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 128 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 129 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 130 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 131 | + </attributes> | |
| 132 | + </connection> | |
| 133 | + <connection> | |
| 134 | + <name>bus_control_variable</name> | |
| 135 | + <server>${v_db_ip}</server> | |
| 136 | + <type>MYSQL</type> | |
| 137 | + <access>Native</access> | |
| 138 | + <database>${v_db_dname}</database> | |
| 139 | + <port>3306</port> | |
| 140 | + <username>${v_db_uname}</username> | |
| 141 | + <password>${v_db_pwd}</password> | |
| 142 | + <servername/> | |
| 143 | + <data_tablespace/> | |
| 144 | + <index_tablespace/> | |
| 145 | + <attributes> | |
| 146 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 147 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 148 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 149 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 150 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 151 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 152 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 153 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 154 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 155 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 156 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 157 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 158 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 159 | + </attributes> | |
| 160 | + </connection> | |
| 161 | + <connection> | |
| 162 | + <name>bus_control_公司_201</name> | |
| 163 | + <server>localhost</server> | |
| 164 | + <type>MYSQL</type> | |
| 165 | + <access>Native</access> | |
| 166 | + <database>control</database> | |
| 167 | + <port>3306</port> | |
| 168 | + <username>root</username> | |
| 169 | + <password>Encrypted </password> | |
| 170 | + <servername/> | |
| 171 | + <data_tablespace/> | |
| 172 | + <index_tablespace/> | |
| 173 | + <attributes> | |
| 174 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 175 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 176 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 177 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 178 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 179 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 180 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 181 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 182 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | |
| 183 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 184 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 185 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 186 | + </attributes> | |
| 187 | + </connection> | |
| 188 | + <connection> | |
| 189 | + <name>bus_control_本机</name> | |
| 190 | + <server>localhost</server> | |
| 191 | + <type>MYSQL</type> | |
| 192 | + <access>Native</access> | |
| 193 | + <database>control</database> | |
| 194 | + <port>3306</port> | |
| 195 | + <username>root</username> | |
| 196 | + <password>Encrypted </password> | |
| 197 | + <servername/> | |
| 198 | + <data_tablespace/> | |
| 199 | + <index_tablespace/> | |
| 200 | + <attributes> | |
| 201 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 202 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 203 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 204 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 205 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 206 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 207 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 208 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 209 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 210 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 211 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 212 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 213 | + </attributes> | |
| 214 | + </connection> | |
| 215 | + <connection> | |
| 216 | + <name>control_jndi</name> | |
| 217 | + <server/> | |
| 218 | + <type>MYSQL</type> | |
| 219 | + <access>JNDI</access> | |
| 220 | + <database>control_jndi</database> | |
| 221 | + <port>1521</port> | |
| 222 | + <username/> | |
| 223 | + <password>Encrypted </password> | |
| 224 | + <servername/> | |
| 225 | + <data_tablespace/> | |
| 226 | + <index_tablespace/> | |
| 227 | + <attributes> | |
| 228 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 229 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 230 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 231 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 232 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 233 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 234 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 235 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 236 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 237 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 238 | + </attributes> | |
| 239 | + </connection> | |
| 240 | + <connection> | |
| 241 | + <name>JGJW_VM</name> | |
| 242 | + <server>192.168.198.240</server> | |
| 243 | + <type>ORACLE</type> | |
| 244 | + <access>Native</access> | |
| 245 | + <database>orcl</database> | |
| 246 | + <port>1521</port> | |
| 247 | + <username>jwgl</username> | |
| 248 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 249 | + <servername/> | |
| 250 | + <data_tablespace/> | |
| 251 | + <index_tablespace/> | |
| 252 | + <attributes> | |
| 253 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 254 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 255 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 256 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 257 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 258 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 259 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 260 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 261 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 262 | + </attributes> | |
| 263 | + </connection> | |
| 264 | + <connection> | |
| 265 | + <name>NHJW_VM</name> | |
| 266 | + <server>192.168.198.240</server> | |
| 267 | + <type>ORACLE</type> | |
| 268 | + <access>Native</access> | |
| 269 | + <database>orcl</database> | |
| 270 | + <port>1521</port> | |
| 271 | + <username>nhjw</username> | |
| 272 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password> | |
| 273 | + <servername/> | |
| 274 | + <data_tablespace/> | |
| 275 | + <index_tablespace/> | |
| 276 | + <attributes> | |
| 277 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 278 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 279 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 280 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 281 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 282 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 283 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 284 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 285 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 286 | + </attributes> | |
| 287 | + </connection> | |
| 288 | + <connection> | |
| 289 | + <name>PDGJ_VM</name> | |
| 290 | + <server>192.168.198.240</server> | |
| 291 | + <type>ORACLE</type> | |
| 292 | + <access>Native</access> | |
| 293 | + <database>orcl</database> | |
| 294 | + <port>1521</port> | |
| 295 | + <username>pdgj</username> | |
| 296 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password> | |
| 297 | + <servername/> | |
| 298 | + <data_tablespace/> | |
| 299 | + <index_tablespace/> | |
| 300 | + <attributes> | |
| 301 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 302 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 303 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 304 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 305 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 306 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 307 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 308 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 309 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 310 | + </attributes> | |
| 311 | + </connection> | |
| 312 | + <connection> | |
| 313 | + <name>repair_dw_mysql_jndi</name> | |
| 314 | + <server/> | |
| 315 | + <type>MYSQL</type> | |
| 316 | + <access>JNDI</access> | |
| 317 | + <database>repair_dw_mysql</database> | |
| 318 | + <port>1521</port> | |
| 319 | + <username/> | |
| 320 | + <password>Encrypted </password> | |
| 321 | + <servername/> | |
| 322 | + <data_tablespace/> | |
| 323 | + <index_tablespace/> | |
| 324 | + <attributes> | |
| 325 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 326 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 327 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 328 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 329 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 330 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 331 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 332 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 333 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 334 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 335 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 336 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 337 | + </attributes> | |
| 338 | + </connection> | |
| 339 | + <connection> | |
| 340 | + <name>repair_dw(本机)</name> | |
| 341 | + <server>localhost</server> | |
| 342 | + <type>MYSQL</type> | |
| 343 | + <access>Native</access> | |
| 344 | + <database>ruoyi-vue-3.5</database> | |
| 345 | + <port>3306</port> | |
| 346 | + <username>root</username> | |
| 347 | + <password>Encrypted </password> | |
| 348 | + <servername/> | |
| 349 | + <data_tablespace/> | |
| 350 | + <index_tablespace/> | |
| 351 | + <attributes> | |
| 352 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 353 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 354 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 355 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 356 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 357 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 358 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 359 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 360 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 361 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 362 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 363 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 364 | + </attributes> | |
| 365 | + </connection> | |
| 366 | + <connection> | |
| 367 | + <name>repair_real_h2</name> | |
| 368 | + <server/> | |
| 369 | + <type>H2</type> | |
| 370 | + <access>JNDI</access> | |
| 371 | + <database>repair_real_h2</database> | |
| 372 | + <port>1521</port> | |
| 373 | + <username/> | |
| 374 | + <password>Encrypted </password> | |
| 375 | + <servername/> | |
| 376 | + <data_tablespace/> | |
| 377 | + <index_tablespace/> | |
| 378 | + <attributes> | |
| 379 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 380 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 381 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 382 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 383 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 384 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 385 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 386 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 387 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 388 | + </attributes> | |
| 389 | + </connection> | |
| 390 | + <connection> | |
| 391 | + <name>SNJW_VM</name> | |
| 392 | + <server>192.168.198.240</server> | |
| 393 | + <type>ORACLE</type> | |
| 394 | + <access>Native</access> | |
| 395 | + <database>orcl</database> | |
| 396 | + <port>1521</port> | |
| 397 | + <username>snjw</username> | |
| 398 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password> | |
| 399 | + <servername/> | |
| 400 | + <data_tablespace/> | |
| 401 | + <index_tablespace/> | |
| 402 | + <attributes> | |
| 403 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 404 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 405 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 406 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 407 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 408 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 409 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 410 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 411 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 412 | + </attributes> | |
| 413 | + </connection> | |
| 414 | + <connection> | |
| 415 | + <name>test_control_local</name> | |
| 416 | + <server>localhost</server> | |
| 417 | + <type>MYSQL</type> | |
| 418 | + <access>Native</access> | |
| 419 | + <database>test_control</database> | |
| 420 | + <port>3306</port> | |
| 421 | + <username>root</username> | |
| 422 | + <password>Encrypted </password> | |
| 423 | + <servername/> | |
| 424 | + <data_tablespace/> | |
| 425 | + <index_tablespace/> | |
| 426 | + <attributes> | |
| 427 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 428 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 429 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 430 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 431 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 432 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 433 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 434 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 435 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 436 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 437 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 438 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 439 | + </attributes> | |
| 440 | + </connection> | |
| 441 | + <connection> | |
| 442 | + <name>test_control(本机)</name> | |
| 443 | + <server>127.0.0.1</server> | |
| 444 | + <type>MYSQL</type> | |
| 445 | + <access>Native</access> | |
| 446 | + <database>test_control</database> | |
| 447 | + <port>3306</port> | |
| 448 | + <username>root</username> | |
| 449 | + <password>Encrypted </password> | |
| 450 | + <servername/> | |
| 451 | + <data_tablespace/> | |
| 452 | + <index_tablespace/> | |
| 453 | + <attributes> | |
| 454 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 455 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 456 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 457 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 458 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 459 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 460 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 461 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 462 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 463 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 464 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 465 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 466 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 467 | + </attributes> | |
| 468 | + </connection> | |
| 469 | + <connection> | |
| 470 | + <name>wzk_mysql_jndi</name> | |
| 471 | + <server/> | |
| 472 | + <type>MYSQL</type> | |
| 473 | + <access>JNDI</access> | |
| 474 | + <database>wzk_mysql</database> | |
| 475 | + <port>1521</port> | |
| 476 | + <username/> | |
| 477 | + <password>Encrypted </password> | |
| 478 | + <servername/> | |
| 479 | + <data_tablespace/> | |
| 480 | + <index_tablespace/> | |
| 481 | + <attributes> | |
| 482 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 483 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 484 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 485 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 486 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 487 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 488 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 489 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 490 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 491 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 492 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 493 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 494 | + </attributes> | |
| 495 | + </connection> | |
| 496 | + <connection> | |
| 497 | + <name>wzk(本机)</name> | |
| 498 | + <server>localhost</server> | |
| 499 | + <type>MYSQL</type> | |
| 500 | + <access>Native</access> | |
| 501 | + <database>pdgj_wzk_sys</database> | |
| 502 | + <port>3306</port> | |
| 503 | + <username>root</username> | |
| 504 | + <password>Encrypted </password> | |
| 505 | + <servername/> | |
| 506 | + <data_tablespace/> | |
| 507 | + <index_tablespace/> | |
| 508 | + <attributes> | |
| 509 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 510 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 511 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 512 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 513 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 514 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 515 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 516 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 517 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 518 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 519 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 520 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 521 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 522 | + </attributes> | |
| 523 | + </connection> | |
| 524 | + <connection> | |
| 525 | + <name>xlab_mysql_youle</name> | |
| 526 | + <server>101.231.124.8</server> | |
| 527 | + <type>MYSQL</type> | |
| 528 | + <access>Native</access> | |
| 529 | + <database>xlab_youle</database> | |
| 530 | + <port>45687</port> | |
| 531 | + <username>xlab-youle</username> | |
| 532 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | |
| 533 | + <servername/> | |
| 534 | + <data_tablespace/> | |
| 535 | + <index_tablespace/> | |
| 536 | + <attributes> | |
| 537 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 538 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 539 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 540 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 541 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 542 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | |
| 543 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 544 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 545 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 546 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 547 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 548 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 549 | + </attributes> | |
| 550 | + </connection> | |
| 551 | + <connection> | |
| 552 | + <name>xlab_mysql_youle(本机)</name> | |
| 553 | + <server>localhost</server> | |
| 554 | + <type>MYSQL</type> | |
| 555 | + <access>Native</access> | |
| 556 | + <database>xlab_youle</database> | |
| 557 | + <port>3306</port> | |
| 558 | + <username>root</username> | |
| 559 | + <password>Encrypted </password> | |
| 560 | + <servername/> | |
| 561 | + <data_tablespace/> | |
| 562 | + <index_tablespace/> | |
| 563 | + <attributes> | |
| 564 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 565 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 566 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 567 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 568 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 569 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 570 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 571 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 572 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 573 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 574 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | |
| 575 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 576 | + </attributes> | |
| 577 | + </connection> | |
| 578 | + <connection> | |
| 579 | + <name>xlab_youle</name> | |
| 580 | + <server/> | |
| 581 | + <type>MYSQL</type> | |
| 582 | + <access>JNDI</access> | |
| 583 | + <database>xlab_youle</database> | |
| 584 | + <port>1521</port> | |
| 585 | + <username/> | |
| 586 | + <password>Encrypted </password> | |
| 587 | + <servername/> | |
| 588 | + <data_tablespace/> | |
| 589 | + <index_tablespace/> | |
| 590 | + <attributes> | |
| 591 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 592 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 593 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 594 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 595 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 596 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 597 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 598 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 599 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 600 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 601 | + </attributes> | |
| 602 | + </connection> | |
| 603 | + <connection> | |
| 604 | + <name>YGJW_VM</name> | |
| 605 | + <server>192.168.198.240</server> | |
| 606 | + <type>ORACLE</type> | |
| 607 | + <access>Native</access> | |
| 608 | + <database>orcl</database> | |
| 609 | + <port>1521</port> | |
| 610 | + <username>ygjw</username> | |
| 611 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 612 | + <servername/> | |
| 613 | + <data_tablespace/> | |
| 614 | + <index_tablespace/> | |
| 615 | + <attributes> | |
| 616 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 617 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 618 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 619 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 620 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 621 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 622 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 623 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 624 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 625 | + </attributes> | |
| 626 | + </connection> | |
| 627 | + <connection> | |
| 628 | + <name>公司jgjw</name> | |
| 629 | + <server>192.168.168.1</server> | |
| 630 | + <type>ORACLE</type> | |
| 631 | + <access>Native</access> | |
| 632 | + <database>orcl</database> | |
| 633 | + <port>1521</port> | |
| 634 | + <username>jwgl</username> | |
| 635 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 636 | + <servername/> | |
| 637 | + <data_tablespace/> | |
| 638 | + <index_tablespace/> | |
| 639 | + <attributes> | |
| 640 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 641 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 642 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 643 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 644 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 645 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 646 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 647 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 648 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 649 | + </attributes> | |
| 650 | + </connection> | |
| 651 | + <connection> | |
| 652 | + <name>公司snjw</name> | |
| 653 | + <server>192.168.168.1</server> | |
| 654 | + <type>ORACLE</type> | |
| 655 | + <access>Native</access> | |
| 656 | + <database>orcl</database> | |
| 657 | + <port>1521</port> | |
| 658 | + <username>snjw</username> | |
| 659 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password> | |
| 660 | + <servername/> | |
| 661 | + <data_tablespace/> | |
| 662 | + <index_tablespace/> | |
| 663 | + <attributes> | |
| 664 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 665 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 666 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 667 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 668 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 669 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 670 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 671 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 672 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 673 | + </attributes> | |
| 674 | + </connection> | |
| 675 | + <connection> | |
| 676 | + <name>公司ygjw</name> | |
| 677 | + <server>192.168.168.178</server> | |
| 678 | + <type>ORACLE</type> | |
| 679 | + <access>Native</access> | |
| 680 | + <database>orcl</database> | |
| 681 | + <port>1521</port> | |
| 682 | + <username>ygjw</username> | |
| 683 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 684 | + <servername/> | |
| 685 | + <data_tablespace/> | |
| 686 | + <index_tablespace/> | |
| 687 | + <attributes> | |
| 688 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 689 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 690 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 691 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 692 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 693 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 694 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 695 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 696 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 697 | + </attributes> | |
| 698 | + </connection> | |
| 699 | + <connection> | |
| 700 | + <name>公司机务_pdgj</name> | |
| 701 | + <server>192.168.168.178</server> | |
| 702 | + <type>ORACLE</type> | |
| 703 | + <access>Native</access> | |
| 704 | + <database>orcl</database> | |
| 705 | + <port>1521</port> | |
| 706 | + <username>pdgj</username> | |
| 707 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password> | |
| 708 | + <servername/> | |
| 709 | + <data_tablespace/> | |
| 710 | + <index_tablespace/> | |
| 711 | + <attributes> | |
| 712 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 713 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 714 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 715 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 716 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 717 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 718 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 719 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 720 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 721 | + </attributes> | |
| 722 | + </connection> | |
| 723 | + <connection> | |
| 724 | + <name>外网vpn临港机务oracle</name> | |
| 725 | + <server>10.10.150.114</server> | |
| 726 | + <type>ORACLE</type> | |
| 727 | + <access>Native</access> | |
| 728 | + <database>helowin</database> | |
| 729 | + <port>1521</port> | |
| 730 | + <username>lgjw</username> | |
| 731 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password> | |
| 732 | + <servername/> | |
| 733 | + <data_tablespace/> | |
| 734 | + <index_tablespace/> | |
| 735 | + <attributes> | |
| 736 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 737 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 738 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 739 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 740 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 741 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 742 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 743 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 744 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 745 | + </attributes> | |
| 746 | + </connection> | |
| 747 | + <connection> | |
| 748 | + <name>外网南汇机务oracle</name> | |
| 749 | + <server>58.247.254.118</server> | |
| 750 | + <type>ORACLE</type> | |
| 751 | + <access>Native</access> | |
| 752 | + <database>orcl</database> | |
| 753 | + <port>15211</port> | |
| 754 | + <username>nhjw</username> | |
| 755 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password> | |
| 756 | + <servername/> | |
| 757 | + <data_tablespace/> | |
| 758 | + <index_tablespace/> | |
| 759 | + <attributes> | |
| 760 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 761 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 762 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 763 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 764 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 765 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 766 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 767 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 768 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 769 | + </attributes> | |
| 770 | + </connection> | |
| 771 | + <connection> | |
| 772 | + <name>外网杨高机务oracle</name> | |
| 773 | + <server>58.247.254.118</server> | |
| 774 | + <type>ORACLE</type> | |
| 775 | + <access>Native</access> | |
| 776 | + <database>orcl</database> | |
| 777 | + <port>15211</port> | |
| 778 | + <username>ygjw</username> | |
| 779 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 780 | + <servername/> | |
| 781 | + <data_tablespace/> | |
| 782 | + <index_tablespace/> | |
| 783 | + <attributes> | |
| 784 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 785 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 786 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 787 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 788 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 789 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 790 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 791 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 792 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 793 | + </attributes> | |
| 794 | + </connection> | |
| 795 | + <connection> | |
| 796 | + <name>外网金高机务oracle</name> | |
| 797 | + <server>58.247.254.118</server> | |
| 798 | + <type>ORACLE</type> | |
| 799 | + <access>Native</access> | |
| 800 | + <database>orcl</database> | |
| 801 | + <port>15211</port> | |
| 802 | + <username>jwgl</username> | |
| 803 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 804 | + <servername/> | |
| 805 | + <data_tablespace/> | |
| 806 | + <index_tablespace/> | |
| 807 | + <attributes> | |
| 808 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 809 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 810 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 811 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 812 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 813 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 814 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 815 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 816 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 817 | + </attributes> | |
| 818 | + </connection> | |
| 819 | + <order> | |
| 820 | + <hop> <from>插入/更新bsth_c_personnel</from><to>错误输出</to><enabled>Y</enabled> </hop> | |
| 821 | + <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | |
| 822 | + <hop> <from>添加查询常量</from><to>公司查询</to><enabled>Y</enabled> </hop> | |
| 823 | + <hop> <from>工号不为空</from><to>添加查询常量</to><enabled>Y</enabled> </hop> | |
| 824 | + <hop> <from>公司查询</from><to>公司代码不为空</to><enabled>Y</enabled> </hop> | |
| 825 | + <hop> <from>公司代码不为空</from><to>分公司查询</to><enabled>Y</enabled> </hop> | |
| 826 | + <hop> <from>分公司查询</from><to>分公司代码不为空</to><enabled>Y</enabled> </hop> | |
| 827 | + <hop> <from>分公司代码不为空</from><to>处理工号前缀</to><enabled>Y</enabled> </hop> | |
| 828 | + <hop> <from>处理工号前缀</from><to>岗位数据查询</to><enabled>Y</enabled> </hop> | |
| 829 | + <hop> <from>岗位数据查询</from><to>性别数据查询</to><enabled>Y</enabled> </hop> | |
| 830 | + <hop> <from>性别数据查询</from><to>插入/更新bsth_c_personnel</to><enabled>Y</enabled> </hop> | |
| 831 | + <hop> <from>原始系统导出的Excel输入</from><to>修正字段名(空格替换成_)</to><enabled>Y</enabled> </hop> | |
| 832 | + <hop> <from>修正字段名(空格替换成_)</from><to>工号不为空</to><enabled>Y</enabled> </hop> | |
| 833 | + </order> | |
| 834 | + <step> | |
| 835 | + <name>公司代码不为空</name> | |
| 836 | + <type>FilterRows</type> | |
| 837 | + <description/> | |
| 838 | + <distribute>Y</distribute> | |
| 839 | + <custom_distribution/> | |
| 840 | + <copies>1</copies> | |
| 841 | + <partitioning> | |
| 842 | + <method>none</method> | |
| 843 | + <schema_name/> | |
| 844 | + </partitioning> | |
| 845 | +<send_true_to/> | |
| 846 | +<send_false_to/> | |
| 847 | + <compare> | |
| 848 | +<condition> | |
| 849 | + <negated>N</negated> | |
| 850 | + <conditions> | |
| 851 | + <condition> | |
| 852 | + <negated>N</negated> | |
| 853 | + <leftvalue>gs_code</leftvalue> | |
| 854 | + <function>IS NOT NULL</function> | |
| 855 | + <rightvalue/> | |
| 856 | + </condition> | |
| 857 | + </conditions> | |
| 858 | + </condition> | |
| 859 | + </compare> | |
| 860 | + <cluster_schema/> | |
| 861 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 862 | + <xloc>628</xloc> | |
| 863 | + <yloc>176</yloc> | |
| 864 | + <draw>Y</draw> | |
| 865 | + </GUI> | |
| 866 | + </step> | |
| 867 | + | |
| 868 | + <step> | |
| 869 | + <name>公司查询</name> | |
| 870 | + <type>DBLookup</type> | |
| 871 | + <description/> | |
| 872 | + <distribute>Y</distribute> | |
| 873 | + <custom_distribution/> | |
| 874 | + <copies>1</copies> | |
| 875 | + <partitioning> | |
| 876 | + <method>none</method> | |
| 877 | + <schema_name/> | |
| 878 | + </partitioning> | |
| 879 | + <connection>control_jndi</connection> | |
| 880 | + <cache>N</cache> | |
| 881 | + <cache_load_all>N</cache_load_all> | |
| 882 | + <cache_size>0</cache_size> | |
| 883 | + <lookup> | |
| 884 | + <schema/> | |
| 885 | + <table>bsth_c_business</table> | |
| 886 | + <orderby/> | |
| 887 | + <fail_on_multiple>N</fail_on_multiple> | |
| 888 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 889 | + <key> | |
| 890 | + <name>up_code</name> | |
| 891 | + <field>up_code</field> | |
| 892 | + <condition>=</condition> | |
| 893 | + <name2/> | |
| 894 | + </key> | |
| 895 | + <key> | |
| 896 | + <name>company</name> | |
| 897 | + <field>business_name</field> | |
| 898 | + <condition>=</condition> | |
| 899 | + <name2/> | |
| 900 | + </key> | |
| 901 | + <value> | |
| 902 | + <name>business_code</name> | |
| 903 | + <rename>gs_code</rename> | |
| 904 | + <default/> | |
| 905 | + <type>String</type> | |
| 906 | + </value> | |
| 907 | + </lookup> | |
| 908 | + <cluster_schema/> | |
| 909 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 910 | + <xloc>628</xloc> | |
| 911 | + <yloc>84</yloc> | |
| 912 | + <draw>Y</draw> | |
| 913 | + </GUI> | |
| 914 | + </step> | |
| 915 | + | |
| 916 | + <step> | |
| 917 | + <name>分公司代码不为空</name> | |
| 918 | + <type>FilterRows</type> | |
| 919 | + <description/> | |
| 920 | + <distribute>Y</distribute> | |
| 921 | + <custom_distribution/> | |
| 922 | + <copies>1</copies> | |
| 923 | + <partitioning> | |
| 924 | + <method>none</method> | |
| 925 | + <schema_name/> | |
| 926 | + </partitioning> | |
| 927 | +<send_true_to/> | |
| 928 | +<send_false_to/> | |
| 929 | + <compare> | |
| 930 | +<condition> | |
| 931 | + <negated>N</negated> | |
| 932 | + <conditions> | |
| 933 | + <condition> | |
| 934 | + <negated>N</negated> | |
| 935 | + <leftvalue>fgs_code</leftvalue> | |
| 936 | + <function>IS NOT NULL</function> | |
| 937 | + <rightvalue/> | |
| 938 | + </condition> | |
| 939 | + </conditions> | |
| 940 | + </condition> | |
| 941 | + </compare> | |
| 942 | + <cluster_schema/> | |
| 943 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 944 | + <xloc>801</xloc> | |
| 945 | + <yloc>179</yloc> | |
| 946 | + <draw>Y</draw> | |
| 947 | + </GUI> | |
| 948 | + </step> | |
| 949 | + | |
| 950 | + <step> | |
| 951 | + <name>分公司查询</name> | |
| 952 | + <type>DBLookup</type> | |
| 953 | + <description/> | |
| 954 | + <distribute>Y</distribute> | |
| 955 | + <custom_distribution/> | |
| 956 | + <copies>1</copies> | |
| 957 | + <partitioning> | |
| 958 | + <method>none</method> | |
| 959 | + <schema_name/> | |
| 960 | + </partitioning> | |
| 961 | + <connection>control_jndi</connection> | |
| 962 | + <cache>N</cache> | |
| 963 | + <cache_load_all>N</cache_load_all> | |
| 964 | + <cache_size>0</cache_size> | |
| 965 | + <lookup> | |
| 966 | + <schema/> | |
| 967 | + <table>bsth_c_business</table> | |
| 968 | + <orderby/> | |
| 969 | + <fail_on_multiple>N</fail_on_multiple> | |
| 970 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 971 | + <key> | |
| 972 | + <name>gs_code</name> | |
| 973 | + <field>up_code</field> | |
| 974 | + <condition>=</condition> | |
| 975 | + <name2/> | |
| 976 | + </key> | |
| 977 | + <key> | |
| 978 | + <name>branch_company</name> | |
| 979 | + <field>business_name</field> | |
| 980 | + <condition>=</condition> | |
| 981 | + <name2/> | |
| 982 | + </key> | |
| 983 | + <value> | |
| 984 | + <name>business_code</name> | |
| 985 | + <rename>fgs_code</rename> | |
| 986 | + <default/> | |
| 987 | + <type>String</type> | |
| 988 | + </value> | |
| 989 | + </lookup> | |
| 990 | + <cluster_schema/> | |
| 991 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 992 | + <xloc>801</xloc> | |
| 993 | + <yloc>84</yloc> | |
| 994 | + <draw>Y</draw> | |
| 995 | + </GUI> | |
| 996 | + </step> | |
| 997 | + | |
| 998 | + <step> | |
| 999 | + <name>原始系统导出的Excel输入</name> | |
| 1000 | + <type>ExcelInput</type> | |
| 1001 | + <description/> | |
| 1002 | + <distribute>Y</distribute> | |
| 1003 | + <custom_distribution/> | |
| 1004 | + <copies>1</copies> | |
| 1005 | + <partitioning> | |
| 1006 | + <method>none</method> | |
| 1007 | + <schema_name/> | |
| 1008 | + </partitioning> | |
| 1009 | + <header>Y</header> | |
| 1010 | + <noempty>Y</noempty> | |
| 1011 | + <stoponempty>N</stoponempty> | |
| 1012 | + <filefield/> | |
| 1013 | + <sheetfield/> | |
| 1014 | + <sheetrownumfield/> | |
| 1015 | + <rownumfield/> | |
| 1016 | + <sheetfield/> | |
| 1017 | + <filefield/> | |
| 1018 | + <limit>0</limit> | |
| 1019 | + <encoding>UTF-8</encoding> | |
| 1020 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1021 | + <accept_filenames>Y</accept_filenames> | |
| 1022 | + <accept_field>filepath_</accept_field> | |
| 1023 | + <accept_stepname>获取变量</accept_stepname> | |
| 1024 | + <file> | |
| 1025 | + <name/> | |
| 1026 | + <filemask/> | |
| 1027 | + <exclude_filemask/> | |
| 1028 | + <file_required>N</file_required> | |
| 1029 | + <include_subfolders>N</include_subfolders> | |
| 1030 | + </file> | |
| 1031 | + <fields> | |
| 1032 | + <field> | |
| 1033 | + <name>name</name> | |
| 1034 | + <type>String</type> | |
| 1035 | + <length>-1</length> | |
| 1036 | + <precision>-1</precision> | |
| 1037 | + <trim_type>none</trim_type> | |
| 1038 | + <repeat>N</repeat> | |
| 1039 | + <format/> | |
| 1040 | + <currency/> | |
| 1041 | + <decimal/> | |
| 1042 | + <group/> | |
| 1043 | + </field> | |
| 1044 | + <field> | |
| 1045 | + <name>employee number</name> | |
| 1046 | + <type>String</type> | |
| 1047 | + <length>-1</length> | |
| 1048 | + <precision>-1</precision> | |
| 1049 | + <trim_type>none</trim_type> | |
| 1050 | + <repeat>N</repeat> | |
| 1051 | + <format>#</format> | |
| 1052 | + <currency/> | |
| 1053 | + <decimal/> | |
| 1054 | + <group/> | |
| 1055 | + </field> | |
| 1056 | + <field> | |
| 1057 | + <name>gender</name> | |
| 1058 | + <type>String</type> | |
| 1059 | + <length>-1</length> | |
| 1060 | + <precision>-1</precision> | |
| 1061 | + <trim_type>none</trim_type> | |
| 1062 | + <repeat>N</repeat> | |
| 1063 | + <format/> | |
| 1064 | + <currency/> | |
| 1065 | + <decimal/> | |
| 1066 | + <group/> | |
| 1067 | + </field> | |
| 1068 | + <field> | |
| 1069 | + <name>company</name> | |
| 1070 | + <type>String</type> | |
| 1071 | + <length>-1</length> | |
| 1072 | + <precision>-1</precision> | |
| 1073 | + <trim_type>none</trim_type> | |
| 1074 | + <repeat>N</repeat> | |
| 1075 | + <format/> | |
| 1076 | + <currency/> | |
| 1077 | + <decimal/> | |
| 1078 | + <group/> | |
| 1079 | + </field> | |
| 1080 | + <field> | |
| 1081 | + <name>branch company</name> | |
| 1082 | + <type>String</type> | |
| 1083 | + <length>-1</length> | |
| 1084 | + <precision>-1</precision> | |
| 1085 | + <trim_type>none</trim_type> | |
| 1086 | + <repeat>N</repeat> | |
| 1087 | + <format/> | |
| 1088 | + <currency/> | |
| 1089 | + <decimal/> | |
| 1090 | + <group/> | |
| 1091 | + </field> | |
| 1092 | + <field> | |
| 1093 | + <name>one card number</name> | |
| 1094 | + <type>String</type> | |
| 1095 | + <length>-1</length> | |
| 1096 | + <precision>-1</precision> | |
| 1097 | + <trim_type>none</trim_type> | |
| 1098 | + <repeat>N</repeat> | |
| 1099 | + <format>#</format> | |
| 1100 | + <currency/> | |
| 1101 | + <decimal/> | |
| 1102 | + <group/> | |
| 1103 | + </field> | |
| 1104 | + <field> | |
| 1105 | + <name>operation service certificate number</name> | |
| 1106 | + <type>String</type> | |
| 1107 | + <length>-1</length> | |
| 1108 | + <precision>-1</precision> | |
| 1109 | + <trim_type>none</trim_type> | |
| 1110 | + <repeat>N</repeat> | |
| 1111 | + <format>#</format> | |
| 1112 | + <currency/> | |
| 1113 | + <decimal/> | |
| 1114 | + <group/> | |
| 1115 | + </field> | |
| 1116 | + <field> | |
| 1117 | + <name>occupation type</name> | |
| 1118 | + <type>String</type> | |
| 1119 | + <length>-1</length> | |
| 1120 | + <precision>-1</precision> | |
| 1121 | + <trim_type>none</trim_type> | |
| 1122 | + <repeat>N</repeat> | |
| 1123 | + <format/> | |
| 1124 | + <currency/> | |
| 1125 | + <decimal/> | |
| 1126 | + <group/> | |
| 1127 | + </field> | |
| 1128 | + <field> | |
| 1129 | + <name>remarks</name> | |
| 1130 | + <type>String</type> | |
| 1131 | + <length>-1</length> | |
| 1132 | + <precision>-1</precision> | |
| 1133 | + <trim_type>none</trim_type> | |
| 1134 | + <repeat>N</repeat> | |
| 1135 | + <format/> | |
| 1136 | + <currency/> | |
| 1137 | + <decimal/> | |
| 1138 | + <group/> | |
| 1139 | + </field> | |
| 1140 | + </fields> | |
| 1141 | + <sheets> | |
| 1142 | + <sheet> | |
| 1143 | + <name>sheet1</name> | |
| 1144 | + <startrow>0</startrow> | |
| 1145 | + <startcol>0</startcol> | |
| 1146 | + </sheet> | |
| 1147 | + </sheets> | |
| 1148 | + <strict_types>N</strict_types> | |
| 1149 | + <error_ignored>N</error_ignored> | |
| 1150 | + <error_line_skipped>N</error_line_skipped> | |
| 1151 | + <bad_line_files_destination_directory/> | |
| 1152 | + <bad_line_files_extension>warning</bad_line_files_extension> | |
| 1153 | + <error_line_files_destination_directory/> | |
| 1154 | + <error_line_files_extension>error</error_line_files_extension> | |
| 1155 | + <line_number_files_destination_directory/> | |
| 1156 | + <line_number_files_extension>line</line_number_files_extension> | |
| 1157 | + <shortFileFieldName/> | |
| 1158 | + <pathFieldName/> | |
| 1159 | + <hiddenFieldName/> | |
| 1160 | + <lastModificationTimeFieldName/> | |
| 1161 | + <uriNameFieldName/> | |
| 1162 | + <rootUriNameFieldName/> | |
| 1163 | + <extensionFieldName/> | |
| 1164 | + <sizeFieldName/> | |
| 1165 | + <spreadsheet_type>JXL</spreadsheet_type> | |
| 1166 | + <cluster_schema/> | |
| 1167 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1168 | + <xloc>236</xloc> | |
| 1169 | + <yloc>83</yloc> | |
| 1170 | + <draw>Y</draw> | |
| 1171 | + </GUI> | |
| 1172 | + </step> | |
| 1173 | + | |
| 1174 | + <step> | |
| 1175 | + <name>处理工号前缀</name> | |
| 1176 | + <type>ScriptValueMod</type> | |
| 1177 | + <description/> | |
| 1178 | + <distribute>Y</distribute> | |
| 1179 | + <custom_distribution/> | |
| 1180 | + <copies>1</copies> | |
| 1181 | + <partitioning> | |
| 1182 | + <method>none</method> | |
| 1183 | + <schema_name/> | |
| 1184 | + </partitioning> | |
| 1185 | + <compatible>N</compatible> | |
| 1186 | + <optimizationLevel>9</optimizationLevel> | |
| 1187 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1188 | + <jsScript_name>Script 1</jsScript_name> | |
| 1189 | + <jsScript_script>//Script here

var gh_calcu = employee_number;

if (employee_number.indexOf(gs_code + "-") < 0) {
 gh_calcu = gs_code + "-" + employee_number;
} </jsScript_script> | |
| 1190 | + </jsScript> </jsScripts> <fields> <field> <name>gh_calcu</name> | |
| 1191 | + <rename>gh_calcu</rename> | |
| 1192 | + <type>String</type> | |
| 1193 | + <length>-1</length> | |
| 1194 | + <precision>-1</precision> | |
| 1195 | + <replace>N</replace> | |
| 1196 | + </field> </fields> <cluster_schema/> | |
| 1197 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1198 | + <xloc>801</xloc> | |
| 1199 | + <yloc>296</yloc> | |
| 1200 | + <draw>Y</draw> | |
| 1201 | + </GUI> | |
| 1202 | + </step> | |
| 1203 | + | |
| 1204 | + <step> | |
| 1205 | + <name>岗位数据查询</name> | |
| 1206 | + <type>DBLookup</type> | |
| 1207 | + <description/> | |
| 1208 | + <distribute>Y</distribute> | |
| 1209 | + <custom_distribution/> | |
| 1210 | + <copies>1</copies> | |
| 1211 | + <partitioning> | |
| 1212 | + <method>none</method> | |
| 1213 | + <schema_name/> | |
| 1214 | + </partitioning> | |
| 1215 | + <connection>control_jndi</connection> | |
| 1216 | + <cache>N</cache> | |
| 1217 | + <cache_load_all>N</cache_load_all> | |
| 1218 | + <cache_size>0</cache_size> | |
| 1219 | + <lookup> | |
| 1220 | + <schema/> | |
| 1221 | + <table>bsth_c_sys_dictionary</table> | |
| 1222 | + <orderby/> | |
| 1223 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1224 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1225 | + <key> | |
| 1226 | + <name>gzType</name> | |
| 1227 | + <field>d_group</field> | |
| 1228 | + <condition>=</condition> | |
| 1229 | + <name2/> | |
| 1230 | + </key> | |
| 1231 | + <key> | |
| 1232 | + <name>occupation_type</name> | |
| 1233 | + <field>d_name</field> | |
| 1234 | + <condition>=</condition> | |
| 1235 | + <name2/> | |
| 1236 | + </key> | |
| 1237 | + <value> | |
| 1238 | + <name>d_code</name> | |
| 1239 | + <rename>posts</rename> | |
| 1240 | + <default/> | |
| 1241 | + <type>String</type> | |
| 1242 | + </value> | |
| 1243 | + </lookup> | |
| 1244 | + <cluster_schema/> | |
| 1245 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1246 | + <xloc>631</xloc> | |
| 1247 | + <yloc>295</yloc> | |
| 1248 | + <draw>Y</draw> | |
| 1249 | + </GUI> | |
| 1250 | + </step> | |
| 1251 | + | |
| 1252 | + <step> | |
| 1253 | + <name>工号不为空</name> | |
| 1254 | + <type>FilterRows</type> | |
| 1255 | + <description/> | |
| 1256 | + <distribute>Y</distribute> | |
| 1257 | + <custom_distribution/> | |
| 1258 | + <copies>1</copies> | |
| 1259 | + <partitioning> | |
| 1260 | + <method>none</method> | |
| 1261 | + <schema_name/> | |
| 1262 | + </partitioning> | |
| 1263 | +<send_true_to/> | |
| 1264 | +<send_false_to/> | |
| 1265 | + <compare> | |
| 1266 | +<condition> | |
| 1267 | + <negated>N</negated> | |
| 1268 | + <conditions> | |
| 1269 | + <condition> | |
| 1270 | + <negated>N</negated> | |
| 1271 | + <leftvalue>employee_number</leftvalue> | |
| 1272 | + <function>IS NOT NULL</function> | |
| 1273 | + <rightvalue/> | |
| 1274 | + </condition> | |
| 1275 | + </conditions> | |
| 1276 | + </condition> | |
| 1277 | + </compare> | |
| 1278 | + <cluster_schema/> | |
| 1279 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1280 | + <xloc>415</xloc> | |
| 1281 | + <yloc>179</yloc> | |
| 1282 | + <draw>Y</draw> | |
| 1283 | + </GUI> | |
| 1284 | + </step> | |
| 1285 | + | |
| 1286 | + <step> | |
| 1287 | + <name>性别数据查询</name> | |
| 1288 | + <type>DBLookup</type> | |
| 1289 | + <description/> | |
| 1290 | + <distribute>Y</distribute> | |
| 1291 | + <custom_distribution/> | |
| 1292 | + <copies>1</copies> | |
| 1293 | + <partitioning> | |
| 1294 | + <method>none</method> | |
| 1295 | + <schema_name/> | |
| 1296 | + </partitioning> | |
| 1297 | + <connection>control_jndi</connection> | |
| 1298 | + <cache>N</cache> | |
| 1299 | + <cache_load_all>N</cache_load_all> | |
| 1300 | + <cache_size>0</cache_size> | |
| 1301 | + <lookup> | |
| 1302 | + <schema/> | |
| 1303 | + <table>bsth_c_sys_dictionary</table> | |
| 1304 | + <orderby/> | |
| 1305 | + <fail_on_multiple>N</fail_on_multiple> | |
| 1306 | + <eat_row_on_failure>N</eat_row_on_failure> | |
| 1307 | + <key> | |
| 1308 | + <name>sexType</name> | |
| 1309 | + <field>d_group</field> | |
| 1310 | + <condition>=</condition> | |
| 1311 | + <name2/> | |
| 1312 | + </key> | |
| 1313 | + <key> | |
| 1314 | + <name>gender</name> | |
| 1315 | + <field>d_name</field> | |
| 1316 | + <condition>=</condition> | |
| 1317 | + <name2/> | |
| 1318 | + </key> | |
| 1319 | + <value> | |
| 1320 | + <name>d_code</name> | |
| 1321 | + <rename>sex</rename> | |
| 1322 | + <default/> | |
| 1323 | + <type>String</type> | |
| 1324 | + </value> | |
| 1325 | + </lookup> | |
| 1326 | + <cluster_schema/> | |
| 1327 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1328 | + <xloc>499</xloc> | |
| 1329 | + <yloc>298</yloc> | |
| 1330 | + <draw>Y</draw> | |
| 1331 | + </GUI> | |
| 1332 | + </step> | |
| 1333 | + | |
| 1334 | + <step> | |
| 1335 | + <name>插入/更新bsth_c_personnel</name> | |
| 1336 | + <type>InsertUpdate</type> | |
| 1337 | + <description/> | |
| 1338 | + <distribute>Y</distribute> | |
| 1339 | + <custom_distribution/> | |
| 1340 | + <copies>1</copies> | |
| 1341 | + <partitioning> | |
| 1342 | + <method>none</method> | |
| 1343 | + <schema_name/> | |
| 1344 | + </partitioning> | |
| 1345 | + <connection>control_jndi</connection> | |
| 1346 | + <commit>500</commit> | |
| 1347 | + <update_bypassed>N</update_bypassed> | |
| 1348 | + <lookup> | |
| 1349 | + <schema/> | |
| 1350 | + <table>bsth_c_personnel</table> | |
| 1351 | + <key> | |
| 1352 | + <name>gh_calcu</name> | |
| 1353 | + <field>job_code</field> | |
| 1354 | + <condition>=</condition> | |
| 1355 | + <name2/> | |
| 1356 | + </key> | |
| 1357 | + <value> | |
| 1358 | + <name>company</name> | |
| 1359 | + <rename>company</rename> | |
| 1360 | + <update>Y</update> | |
| 1361 | + </value> | |
| 1362 | + <value> | |
| 1363 | + <name>company_code</name> | |
| 1364 | + <rename>gs_code</rename> | |
| 1365 | + <update>Y</update> | |
| 1366 | + </value> | |
| 1367 | + <value> | |
| 1368 | + <name>branche_company</name> | |
| 1369 | + <rename>branch_company</rename> | |
| 1370 | + <update>Y</update> | |
| 1371 | + </value> | |
| 1372 | + <value> | |
| 1373 | + <name>branche_company_code</name> | |
| 1374 | + <rename>fgs_code</rename> | |
| 1375 | + <update>Y</update> | |
| 1376 | + </value> | |
| 1377 | + <value> | |
| 1378 | + <name>ic_card_code</name> | |
| 1379 | + <rename>one_card_number</rename> | |
| 1380 | + <update>Y</update> | |
| 1381 | + </value> | |
| 1382 | + <value> | |
| 1383 | + <name>papers_code</name> | |
| 1384 | + <rename>operation_service_certificate_number</rename> | |
| 1385 | + <update>Y</update> | |
| 1386 | + </value> | |
| 1387 | + <value> | |
| 1388 | + <name>job_code</name> | |
| 1389 | + <rename>gh_calcu</rename> | |
| 1390 | + <update>Y</update> | |
| 1391 | + </value> | |
| 1392 | + <value> | |
| 1393 | + <name>job_codeori</name> | |
| 1394 | + <rename>employee_number</rename> | |
| 1395 | + <update>Y</update> | |
| 1396 | + </value> | |
| 1397 | + <value> | |
| 1398 | + <name>personnel_name</name> | |
| 1399 | + <rename>name</rename> | |
| 1400 | + <update>Y</update> | |
| 1401 | + </value> | |
| 1402 | + <value> | |
| 1403 | + <name>personnel_type</name> | |
| 1404 | + <rename>sex</rename> | |
| 1405 | + <update>Y</update> | |
| 1406 | + </value> | |
| 1407 | + <value> | |
| 1408 | + <name>posts</name> | |
| 1409 | + <rename>posts</rename> | |
| 1410 | + <update>Y</update> | |
| 1411 | + </value> | |
| 1412 | + <value> | |
| 1413 | + <name>remark</name> | |
| 1414 | + <rename>remarks</rename> | |
| 1415 | + <update>Y</update> | |
| 1416 | + </value> | |
| 1417 | + </lookup> | |
| 1418 | + <cluster_schema/> | |
| 1419 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1420 | + <xloc>502</xloc> | |
| 1421 | + <yloc>423</yloc> | |
| 1422 | + <draw>Y</draw> | |
| 1423 | + </GUI> | |
| 1424 | + </step> | |
| 1425 | + | |
| 1426 | + <step> | |
| 1427 | + <name>添加查询常量</name> | |
| 1428 | + <type>ScriptValueMod</type> | |
| 1429 | + <description/> | |
| 1430 | + <distribute>Y</distribute> | |
| 1431 | + <custom_distribution/> | |
| 1432 | + <copies>1</copies> | |
| 1433 | + <partitioning> | |
| 1434 | + <method>none</method> | |
| 1435 | + <schema_name/> | |
| 1436 | + </partitioning> | |
| 1437 | + <compatible>N</compatible> | |
| 1438 | + <optimizationLevel>9</optimizationLevel> | |
| 1439 | + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type> | |
| 1440 | + <jsScript_name>Script 1</jsScript_name> | |
| 1441 | + <jsScript_script>//Script here

var up_code = '88';
var sexType = 'sexType';
var gzType = 'gzType';</jsScript_script> | |
| 1442 | + </jsScript> </jsScripts> <fields> <field> <name>up_code</name> | |
| 1443 | + <rename>up_code</rename> | |
| 1444 | + <type>String</type> | |
| 1445 | + <length>-1</length> | |
| 1446 | + <precision>-1</precision> | |
| 1447 | + <replace>N</replace> | |
| 1448 | + </field> <field> <name>sexType</name> | |
| 1449 | + <rename>sexType</rename> | |
| 1450 | + <type>String</type> | |
| 1451 | + <length>-1</length> | |
| 1452 | + <precision>-1</precision> | |
| 1453 | + <replace>N</replace> | |
| 1454 | + </field> <field> <name>gzType</name> | |
| 1455 | + <rename>gzType</rename> | |
| 1456 | + <type>String</type> | |
| 1457 | + <length>-1</length> | |
| 1458 | + <precision>-1</precision> | |
| 1459 | + <replace>N</replace> | |
| 1460 | + </field> </fields> <cluster_schema/> | |
| 1461 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1462 | + <xloc>414</xloc> | |
| 1463 | + <yloc>85</yloc> | |
| 1464 | + <draw>Y</draw> | |
| 1465 | + </GUI> | |
| 1466 | + </step> | |
| 1467 | + | |
| 1468 | + <step> | |
| 1469 | + <name>获取变量</name> | |
| 1470 | + <type>GetVariable</type> | |
| 1471 | + <description/> | |
| 1472 | + <distribute>Y</distribute> | |
| 1473 | + <custom_distribution/> | |
| 1474 | + <copies>1</copies> | |
| 1475 | + <partitioning> | |
| 1476 | + <method>none</method> | |
| 1477 | + <schema_name/> | |
| 1478 | + </partitioning> | |
| 1479 | + <fields> | |
| 1480 | + <field> | |
| 1481 | + <name>filepath_</name> | |
| 1482 | + <variable>${filepath}</variable> | |
| 1483 | + <type>String</type> | |
| 1484 | + <format/> | |
| 1485 | + <currency/> | |
| 1486 | + <decimal/> | |
| 1487 | + <group/> | |
| 1488 | + <length>-1</length> | |
| 1489 | + <precision>-1</precision> | |
| 1490 | + <trim_type>none</trim_type> | |
| 1491 | + </field> | |
| 1492 | + <field> | |
| 1493 | + <name>erroroutputdir_</name> | |
| 1494 | + <variable>${erroroutputdir}</variable> | |
| 1495 | + <type>String</type> | |
| 1496 | + <format/> | |
| 1497 | + <currency/> | |
| 1498 | + <decimal/> | |
| 1499 | + <group/> | |
| 1500 | + <length>-1</length> | |
| 1501 | + <precision>-1</precision> | |
| 1502 | + <trim_type>none</trim_type> | |
| 1503 | + </field> | |
| 1504 | + </fields> | |
| 1505 | + <cluster_schema/> | |
| 1506 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1507 | + <xloc>70</xloc> | |
| 1508 | + <yloc>85</yloc> | |
| 1509 | + <draw>Y</draw> | |
| 1510 | + </GUI> | |
| 1511 | + </step> | |
| 1512 | + | |
| 1513 | + <step> | |
| 1514 | + <name>错误输出</name> | |
| 1515 | + <type>ExcelOutput</type> | |
| 1516 | + <description/> | |
| 1517 | + <distribute>Y</distribute> | |
| 1518 | + <custom_distribution/> | |
| 1519 | + <copies>1</copies> | |
| 1520 | + <partitioning> | |
| 1521 | + <method>none</method> | |
| 1522 | + <schema_name/> | |
| 1523 | + </partitioning> | |
| 1524 | + <header>Y</header> | |
| 1525 | + <footer>N</footer> | |
| 1526 | + <encoding>UTF-8</encoding> | |
| 1527 | + <append>N</append> | |
| 1528 | + <add_to_result_filenames>Y</add_to_result_filenames> | |
| 1529 | + <file> | |
| 1530 | + <name>${erroroutputdir}/人员基础信息_错误</name> | |
| 1531 | + <extention>xls</extention> | |
| 1532 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | |
| 1533 | + <create_parent_folder>N</create_parent_folder> | |
| 1534 | + <split>N</split> | |
| 1535 | + <add_date>N</add_date> | |
| 1536 | + <add_time>N</add_time> | |
| 1537 | + <SpecifyFormat>N</SpecifyFormat> | |
| 1538 | + <date_time_format/> | |
| 1539 | + <sheetname>Sheet1</sheetname> | |
| 1540 | + <autosizecolums>N</autosizecolums> | |
| 1541 | + <nullisblank>N</nullisblank> | |
| 1542 | + <protect_sheet>N</protect_sheet> | |
| 1543 | + <password>Encrypted </password> | |
| 1544 | + <splitevery>0</splitevery> | |
| 1545 | + <usetempfiles>N</usetempfiles> | |
| 1546 | + <tempdirectory/> | |
| 1547 | + </file> | |
| 1548 | + <template> | |
| 1549 | + <enabled>N</enabled> | |
| 1550 | + <append>N</append> | |
| 1551 | + <filename>template.xls</filename> | |
| 1552 | + </template> | |
| 1553 | + <fields> | |
| 1554 | + <field> | |
| 1555 | + <name>name</name> | |
| 1556 | + <type>String</type> | |
| 1557 | + <format/> | |
| 1558 | + </field> | |
| 1559 | + <field> | |
| 1560 | + <name>employee_number</name> | |
| 1561 | + <type>String</type> | |
| 1562 | + <format/> | |
| 1563 | + </field> | |
| 1564 | + <field> | |
| 1565 | + <name>company</name> | |
| 1566 | + <type>String</type> | |
| 1567 | + <format/> | |
| 1568 | + </field> | |
| 1569 | + <field> | |
| 1570 | + <name>gs_code</name> | |
| 1571 | + <type>String</type> | |
| 1572 | + <format/> | |
| 1573 | + </field> | |
| 1574 | + <field> | |
| 1575 | + <name>branch_company</name> | |
| 1576 | + <type>String</type> | |
| 1577 | + <format/> | |
| 1578 | + </field> | |
| 1579 | + <field> | |
| 1580 | + <name>fgs_code</name> | |
| 1581 | + <type>String</type> | |
| 1582 | + <format/> | |
| 1583 | + </field> | |
| 1584 | + <field> | |
| 1585 | + <name>gh_calcu</name> | |
| 1586 | + <type>String</type> | |
| 1587 | + <format/> | |
| 1588 | + </field> | |
| 1589 | + <field> | |
| 1590 | + <name>error_count</name> | |
| 1591 | + <type>Integer</type> | |
| 1592 | + <format/> | |
| 1593 | + </field> | |
| 1594 | + <field> | |
| 1595 | + <name>error_desc</name> | |
| 1596 | + <type>String</type> | |
| 1597 | + <format/> | |
| 1598 | + </field> | |
| 1599 | + <field> | |
| 1600 | + <name>error_column1</name> | |
| 1601 | + <type>String</type> | |
| 1602 | + <format/> | |
| 1603 | + </field> | |
| 1604 | + <field> | |
| 1605 | + <name>error_column2</name> | |
| 1606 | + <type>String</type> | |
| 1607 | + <format/> | |
| 1608 | + </field> | |
| 1609 | + </fields> | |
| 1610 | + <custom> | |
| 1611 | + <header_font_name>arial</header_font_name> | |
| 1612 | + <header_font_size>10</header_font_size> | |
| 1613 | + <header_font_bold>N</header_font_bold> | |
| 1614 | + <header_font_italic>N</header_font_italic> | |
| 1615 | + <header_font_underline>no</header_font_underline> | |
| 1616 | + <header_font_orientation>horizontal</header_font_orientation> | |
| 1617 | + <header_font_color>black</header_font_color> | |
| 1618 | + <header_background_color>none</header_background_color> | |
| 1619 | + <header_row_height>255</header_row_height> | |
| 1620 | + <header_alignment>left</header_alignment> | |
| 1621 | + <header_image/> | |
| 1622 | + <row_font_name>arial</row_font_name> | |
| 1623 | + <row_font_size>10</row_font_size> | |
| 1624 | + <row_font_color>black</row_font_color> | |
| 1625 | + <row_background_color>none</row_background_color> | |
| 1626 | + </custom> | |
| 1627 | + <cluster_schema/> | |
| 1628 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1629 | + <xloc>502</xloc> | |
| 1630 | + <yloc>568</yloc> | |
| 1631 | + <draw>Y</draw> | |
| 1632 | + </GUI> | |
| 1633 | + </step> | |
| 1634 | + | |
| 1635 | + <step> | |
| 1636 | + <name>修正字段名(空格替换成_)</name> | |
| 1637 | + <type>SelectValues</type> | |
| 1638 | + <description/> | |
| 1639 | + <distribute>Y</distribute> | |
| 1640 | + <custom_distribution/> | |
| 1641 | + <copies>1</copies> | |
| 1642 | + <partitioning> | |
| 1643 | + <method>none</method> | |
| 1644 | + <schema_name/> | |
| 1645 | + </partitioning> | |
| 1646 | + <fields> <field> <name>branch company</name> | |
| 1647 | + <rename>branch_company</rename> | |
| 1648 | + <length>-2</length> | |
| 1649 | + <precision>-2</precision> | |
| 1650 | + </field> <field> <name>employee number</name> | |
| 1651 | + <rename>employee_number</rename> | |
| 1652 | + <length>-2</length> | |
| 1653 | + <precision>-2</precision> | |
| 1654 | + </field> <field> <name>occupation type</name> | |
| 1655 | + <rename>occupation_type</rename> | |
| 1656 | + <length>-2</length> | |
| 1657 | + <precision>-2</precision> | |
| 1658 | + </field> <field> <name>one card number</name> | |
| 1659 | + <rename>one_card_number</rename> | |
| 1660 | + <length>-2</length> | |
| 1661 | + <precision>-2</precision> | |
| 1662 | + </field> <field> <name>operation service certificate number</name> | |
| 1663 | + <rename>operation_service_certificate_number</rename> | |
| 1664 | + <length>-2</length> | |
| 1665 | + <precision>-2</precision> | |
| 1666 | + </field> <select_unspecified>Y</select_unspecified> | |
| 1667 | + </fields> <cluster_schema/> | |
| 1668 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | |
| 1669 | + <xloc>237</xloc> | |
| 1670 | + <yloc>180</yloc> | |
| 1671 | + <draw>Y</draw> | |
| 1672 | + </GUI> | |
| 1673 | + </step> | |
| 1674 | + | |
| 1675 | + <step_error_handling> | |
| 1676 | + <error> | |
| 1677 | + <source_step>插入/更新bsth_c_personnel</source_step> | |
| 1678 | + <target_step>错误输出</target_step> | |
| 1679 | + <is_enabled>Y</is_enabled> | |
| 1680 | + <nr_valuename>error_count</nr_valuename> | |
| 1681 | + <descriptions_valuename>error_desc</descriptions_valuename> | |
| 1682 | + <fields_valuename>error_column1</fields_valuename> | |
| 1683 | + <codes_valuename>error_column2</codes_valuename> | |
| 1684 | + <max_errors/> | |
| 1685 | + <max_pct_errors/> | |
| 1686 | + <min_pct_rows/> | |
| 1687 | + </error> | |
| 1688 | + </step_error_handling> | |
| 1689 | + <slave-step-copy-partition-distribution> | |
| 1690 | +</slave-step-copy-partition-distribution> | |
| 1691 | + <slave_transformation>N</slave_transformation> | |
| 1692 | + | |
| 1693 | +</transformation> | ... | ... |
src/main/resources/datatools/ktrs/employeesDataOutput.ktr renamed to src/main/resources/datatools/ktrs/zh/personnel-basic-data_export.ktr
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 2 | <transformation> |
| 3 | 3 | <info> |
| 4 | - <name>人员信息导出</name> | |
| 4 | + <name>人员信息导出_zh</name> | |
| 5 | 5 | <description/> |
| 6 | 6 | <extended_description/> |
| 7 | 7 | <trans_version/> |
| ... | ... | @@ -391,6 +391,33 @@ |
| 391 | 391 | </attributes> |
| 392 | 392 | </connection> |
| 393 | 393 | <connection> |
| 394 | + <name>test_control_local</name> | |
| 395 | + <server>localhost</server> | |
| 396 | + <type>MYSQL</type> | |
| 397 | + <access>Native</access> | |
| 398 | + <database>test_control</database> | |
| 399 | + <port>3306</port> | |
| 400 | + <username>root</username> | |
| 401 | + <password>Encrypted </password> | |
| 402 | + <servername/> | |
| 403 | + <data_tablespace/> | |
| 404 | + <index_tablespace/> | |
| 405 | + <attributes> | |
| 406 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 407 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 408 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 409 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 410 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 411 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 412 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 413 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 414 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 415 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 416 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 417 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 418 | + </attributes> | |
| 419 | + </connection> | |
| 420 | + <connection> | |
| 394 | 421 | <name>test_control(本机)</name> |
| 395 | 422 | <server>127.0.0.1</server> |
| 396 | 423 | <type>MYSQL</type> |
| ... | ... | @@ -403,6 +430,62 @@ |
| 403 | 430 | <data_tablespace/> |
| 404 | 431 | <index_tablespace/> |
| 405 | 432 | <attributes> |
| 433 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 434 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 435 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 436 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 437 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 438 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 439 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 440 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 441 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 442 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 443 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 444 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 445 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 446 | + </attributes> | |
| 447 | + </connection> | |
| 448 | + <connection> | |
| 449 | + <name>wzk_mysql_jndi</name> | |
| 450 | + <server/> | |
| 451 | + <type>MYSQL</type> | |
| 452 | + <access>JNDI</access> | |
| 453 | + <database>wzk_mysql</database> | |
| 454 | + <port>1521</port> | |
| 455 | + <username/> | |
| 456 | + <password>Encrypted </password> | |
| 457 | + <servername/> | |
| 458 | + <data_tablespace/> | |
| 459 | + <index_tablespace/> | |
| 460 | + <attributes> | |
| 461 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 462 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 463 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 464 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 465 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 466 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 467 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 468 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 469 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 470 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 471 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 472 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 473 | + </attributes> | |
| 474 | + </connection> | |
| 475 | + <connection> | |
| 476 | + <name>wzk(本机)</name> | |
| 477 | + <server>localhost</server> | |
| 478 | + <type>MYSQL</type> | |
| 479 | + <access>Native</access> | |
| 480 | + <database>pdgj_wzk_sys</database> | |
| 481 | + <port>3306</port> | |
| 482 | + <username>root</username> | |
| 483 | + <password>Encrypted </password> | |
| 484 | + <servername/> | |
| 485 | + <data_tablespace/> | |
| 486 | + <index_tablespace/> | |
| 487 | + <attributes> | |
| 488 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 406 | 489 | <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> |
| 407 | 490 | <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> |
| 408 | 491 | <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> |
| ... | ... | @@ -570,7 +653,7 @@ |
| 570 | 653 | </connection> |
| 571 | 654 | <connection> |
| 572 | 655 | <name>公司ygjw</name> |
| 573 | - <server>192.168.168.1</server> | |
| 656 | + <server>192.168.168.178</server> | |
| 574 | 657 | <type>ORACLE</type> |
| 575 | 658 | <access>Native</access> |
| 576 | 659 | <database>orcl</database> |
| ... | ... | @@ -592,6 +675,126 @@ |
| 592 | 675 | <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> |
| 593 | 676 | </attributes> |
| 594 | 677 | </connection> |
| 678 | + <connection> | |
| 679 | + <name>公司机务_pdgj</name> | |
| 680 | + <server>192.168.168.178</server> | |
| 681 | + <type>ORACLE</type> | |
| 682 | + <access>Native</access> | |
| 683 | + <database>orcl</database> | |
| 684 | + <port>1521</port> | |
| 685 | + <username>pdgj</username> | |
| 686 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password> | |
| 687 | + <servername/> | |
| 688 | + <data_tablespace/> | |
| 689 | + <index_tablespace/> | |
| 690 | + <attributes> | |
| 691 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 692 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 693 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 694 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 695 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 696 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 697 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 698 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 699 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 700 | + </attributes> | |
| 701 | + </connection> | |
| 702 | + <connection> | |
| 703 | + <name>外网vpn临港机务oracle</name> | |
| 704 | + <server>10.10.150.114</server> | |
| 705 | + <type>ORACLE</type> | |
| 706 | + <access>Native</access> | |
| 707 | + <database>helowin</database> | |
| 708 | + <port>1521</port> | |
| 709 | + <username>lgjw</username> | |
| 710 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password> | |
| 711 | + <servername/> | |
| 712 | + <data_tablespace/> | |
| 713 | + <index_tablespace/> | |
| 714 | + <attributes> | |
| 715 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 716 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 717 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 718 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 719 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 720 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 721 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 722 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 723 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 724 | + </attributes> | |
| 725 | + </connection> | |
| 726 | + <connection> | |
| 727 | + <name>外网南汇机务oracle</name> | |
| 728 | + <server>58.247.254.118</server> | |
| 729 | + <type>ORACLE</type> | |
| 730 | + <access>Native</access> | |
| 731 | + <database>orcl</database> | |
| 732 | + <port>15211</port> | |
| 733 | + <username>nhjw</username> | |
| 734 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password> | |
| 735 | + <servername/> | |
| 736 | + <data_tablespace/> | |
| 737 | + <index_tablespace/> | |
| 738 | + <attributes> | |
| 739 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 740 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 741 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 742 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 743 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 744 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 745 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 746 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 747 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 748 | + </attributes> | |
| 749 | + </connection> | |
| 750 | + <connection> | |
| 751 | + <name>外网杨高机务oracle</name> | |
| 752 | + <server>58.247.254.118</server> | |
| 753 | + <type>ORACLE</type> | |
| 754 | + <access>Native</access> | |
| 755 | + <database>orcl</database> | |
| 756 | + <port>15211</port> | |
| 757 | + <username>ygjw</username> | |
| 758 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 759 | + <servername/> | |
| 760 | + <data_tablespace/> | |
| 761 | + <index_tablespace/> | |
| 762 | + <attributes> | |
| 763 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 764 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 765 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 766 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 767 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 768 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 769 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 770 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 771 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 772 | + </attributes> | |
| 773 | + </connection> | |
| 774 | + <connection> | |
| 775 | + <name>外网金高机务oracle</name> | |
| 776 | + <server>58.247.254.118</server> | |
| 777 | + <type>ORACLE</type> | |
| 778 | + <access>Native</access> | |
| 779 | + <database>orcl</database> | |
| 780 | + <port>15211</port> | |
| 781 | + <username>jwgl</username> | |
| 782 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 783 | + <servername/> | |
| 784 | + <data_tablespace/> | |
| 785 | + <index_tablespace/> | |
| 786 | + <attributes> | |
| 787 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 788 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 789 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 790 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 791 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 792 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 793 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 794 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 795 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 796 | + </attributes> | |
| 797 | + </connection> | |
| 595 | 798 | <order> |
| 596 | 799 | <hop> <from>人员信息表输入</from><to>添加查询常量</to><enabled>Y</enabled> </hop> |
| 597 | 800 | <hop> <from>岗位数据查询</from><to>性别数据查询</to><enabled>Y</enabled> </hop> | ... | ... |
src/main/resources/datatools/ktrs/employeesDataInput.ktr renamed to src/main/resources/datatools/ktrs/zh/personnel-basic-data_import.ktr
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 2 | <transformation> |
| 3 | 3 | <info> |
| 4 | - <name>人员信息导入</name> | |
| 4 | + <name>人员信息导入_zh</name> | |
| 5 | 5 | <description>人员基础信息导入</description> |
| 6 | 6 | <extended_description>人员基础信息</extended_description> |
| 7 | 7 | <trans_version/> |
| ... | ... | @@ -391,6 +391,33 @@ |
| 391 | 391 | </attributes> |
| 392 | 392 | </connection> |
| 393 | 393 | <connection> |
| 394 | + <name>test_control_local</name> | |
| 395 | + <server>localhost</server> | |
| 396 | + <type>MYSQL</type> | |
| 397 | + <access>Native</access> | |
| 398 | + <database>test_control</database> | |
| 399 | + <port>3306</port> | |
| 400 | + <username>root</username> | |
| 401 | + <password>Encrypted </password> | |
| 402 | + <servername/> | |
| 403 | + <data_tablespace/> | |
| 404 | + <index_tablespace/> | |
| 405 | + <attributes> | |
| 406 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 407 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 408 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 409 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 410 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 411 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 412 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 413 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 414 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 415 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 416 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 417 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 418 | + </attributes> | |
| 419 | + </connection> | |
| 420 | + <connection> | |
| 394 | 421 | <name>test_control(本机)</name> |
| 395 | 422 | <server>127.0.0.1</server> |
| 396 | 423 | <type>MYSQL</type> |
| ... | ... | @@ -403,6 +430,62 @@ |
| 403 | 430 | <data_tablespace/> |
| 404 | 431 | <index_tablespace/> |
| 405 | 432 | <attributes> |
| 433 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 434 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 435 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 436 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 437 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 438 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 439 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | |
| 440 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 441 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 442 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 443 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 444 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 445 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 446 | + </attributes> | |
| 447 | + </connection> | |
| 448 | + <connection> | |
| 449 | + <name>wzk_mysql_jndi</name> | |
| 450 | + <server/> | |
| 451 | + <type>MYSQL</type> | |
| 452 | + <access>JNDI</access> | |
| 453 | + <database>wzk_mysql</database> | |
| 454 | + <port>1521</port> | |
| 455 | + <username/> | |
| 456 | + <password>Encrypted </password> | |
| 457 | + <servername/> | |
| 458 | + <data_tablespace/> | |
| 459 | + <index_tablespace/> | |
| 460 | + <attributes> | |
| 461 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | |
| 462 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | |
| 463 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 464 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 465 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 466 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 467 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 468 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 469 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | |
| 470 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 471 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 472 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 473 | + </attributes> | |
| 474 | + </connection> | |
| 475 | + <connection> | |
| 476 | + <name>wzk(本机)</name> | |
| 477 | + <server>localhost</server> | |
| 478 | + <type>MYSQL</type> | |
| 479 | + <access>Native</access> | |
| 480 | + <database>pdgj_wzk_sys</database> | |
| 481 | + <port>3306</port> | |
| 482 | + <username>root</username> | |
| 483 | + <password>Encrypted </password> | |
| 484 | + <servername/> | |
| 485 | + <data_tablespace/> | |
| 486 | + <index_tablespace/> | |
| 487 | + <attributes> | |
| 488 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | |
| 406 | 489 | <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> |
| 407 | 490 | <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> |
| 408 | 491 | <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> |
| ... | ... | @@ -570,7 +653,7 @@ |
| 570 | 653 | </connection> |
| 571 | 654 | <connection> |
| 572 | 655 | <name>公司ygjw</name> |
| 573 | - <server>192.168.168.1</server> | |
| 656 | + <server>192.168.168.178</server> | |
| 574 | 657 | <type>ORACLE</type> |
| 575 | 658 | <access>Native</access> |
| 576 | 659 | <database>orcl</database> |
| ... | ... | @@ -592,6 +675,126 @@ |
| 592 | 675 | <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> |
| 593 | 676 | </attributes> |
| 594 | 677 | </connection> |
| 678 | + <connection> | |
| 679 | + <name>公司机务_pdgj</name> | |
| 680 | + <server>192.168.168.178</server> | |
| 681 | + <type>ORACLE</type> | |
| 682 | + <access>Native</access> | |
| 683 | + <database>orcl</database> | |
| 684 | + <port>1521</port> | |
| 685 | + <username>pdgj</username> | |
| 686 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password> | |
| 687 | + <servername/> | |
| 688 | + <data_tablespace/> | |
| 689 | + <index_tablespace/> | |
| 690 | + <attributes> | |
| 691 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 692 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 693 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 694 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 695 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 696 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 697 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 698 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 699 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 700 | + </attributes> | |
| 701 | + </connection> | |
| 702 | + <connection> | |
| 703 | + <name>外网vpn临港机务oracle</name> | |
| 704 | + <server>10.10.150.114</server> | |
| 705 | + <type>ORACLE</type> | |
| 706 | + <access>Native</access> | |
| 707 | + <database>helowin</database> | |
| 708 | + <port>1521</port> | |
| 709 | + <username>lgjw</username> | |
| 710 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d295a5cd</password> | |
| 711 | + <servername/> | |
| 712 | + <data_tablespace/> | |
| 713 | + <index_tablespace/> | |
| 714 | + <attributes> | |
| 715 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 716 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 717 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 718 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | |
| 719 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 720 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 721 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 722 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 723 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 724 | + </attributes> | |
| 725 | + </connection> | |
| 726 | + <connection> | |
| 727 | + <name>外网南汇机务oracle</name> | |
| 728 | + <server>58.247.254.118</server> | |
| 729 | + <type>ORACLE</type> | |
| 730 | + <access>Native</access> | |
| 731 | + <database>orcl</database> | |
| 732 | + <port>15211</port> | |
| 733 | + <username>nhjw</username> | |
| 734 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password> | |
| 735 | + <servername/> | |
| 736 | + <data_tablespace/> | |
| 737 | + <index_tablespace/> | |
| 738 | + <attributes> | |
| 739 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 740 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 741 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 742 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 743 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 744 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 745 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 746 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 747 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 748 | + </attributes> | |
| 749 | + </connection> | |
| 750 | + <connection> | |
| 751 | + <name>外网杨高机务oracle</name> | |
| 752 | + <server>58.247.254.118</server> | |
| 753 | + <type>ORACLE</type> | |
| 754 | + <access>Native</access> | |
| 755 | + <database>orcl</database> | |
| 756 | + <port>15211</port> | |
| 757 | + <username>ygjw</username> | |
| 758 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password> | |
| 759 | + <servername/> | |
| 760 | + <data_tablespace/> | |
| 761 | + <index_tablespace/> | |
| 762 | + <attributes> | |
| 763 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 764 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 765 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 766 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 767 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 768 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 769 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 770 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 771 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 772 | + </attributes> | |
| 773 | + </connection> | |
| 774 | + <connection> | |
| 775 | + <name>外网金高机务oracle</name> | |
| 776 | + <server>58.247.254.118</server> | |
| 777 | + <type>ORACLE</type> | |
| 778 | + <access>Native</access> | |
| 779 | + <database>orcl</database> | |
| 780 | + <port>15211</port> | |
| 781 | + <username>jwgl</username> | |
| 782 | + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password> | |
| 783 | + <servername/> | |
| 784 | + <data_tablespace/> | |
| 785 | + <index_tablespace/> | |
| 786 | + <attributes> | |
| 787 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | |
| 788 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | |
| 789 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | |
| 790 | + <attribute><code>PORT_NUMBER</code><attribute>15211</attribute></attribute> | |
| 791 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | |
| 792 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | |
| 793 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 794 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | |
| 795 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | |
| 796 | + </attributes> | |
| 797 | + </connection> | |
| 595 | 798 | <order> |
| 596 | 799 | <hop> <from>插入/更新bsth_c_personnel</from><to>错误输出</to><enabled>Y</enabled> </hop> |
| 597 | 800 | <hop> <from>获取变量</from><to>原始系统导出的Excel输入</to><enabled>Y</enabled> </hop> | ... | ... |
src/main/resources/message_en_US.properties
| ... | ... | @@ -4538,6 +4538,8 @@ carsServiceImpl-line118=duplicate vehicle Code |
| 4538 | 4538 | carsServiceImpl-line132=duplicate license number |
| 4539 | 4539 | carsServiceImpl-line147=duplicate terminal number |
| 4540 | 4540 | |
| 4541 | +employeeServiceImpl-line54=duplicate employee number | |
| 4542 | + | |
| 4541 | 4543 | bController-line192=import file not exist |
| 4542 | 4544 | bController-line197=import file successful |
| 4543 | 4545 | bController-line217=upload and import file successful | ... | ... |
src/main/resources/message_zh_CN.properties
| ... | ... | @@ -4539,6 +4539,8 @@ carsServiceImpl-line118=车辆编号重复 |
| 4539 | 4539 | carsServiceImpl-line132=车牌号重复 |
| 4540 | 4540 | carsServiceImpl-line147=设备编号重复 |
| 4541 | 4541 | |
| 4542 | +employeeServiceImpl-line54=相同公司工号重复 | |
| 4543 | + | |
| 4542 | 4544 | bController-line192=导入文件不存在! |
| 4543 | 4545 | bController-line197=导入文件成功 |
| 4544 | 4546 | bController-line217=上传&导入文件成功 | ... | ... |
src/main/resources/static/pages/scheduleApp/language/en.js
| ... | ... | @@ -394,7 +394,8 @@ var ScheduleApp_en_language = { |
| 394 | 394 | "employeeInfoManage_index_page_line36_txt-2234" : "Personnel information table", |
| 395 | 395 | "employeeInfoManage_index_page_line41_txt-1648" : "Add personnel information", |
| 396 | 396 | "employeeInfoManage_index_page_line47_txt-3339" : "Data tool", |
| 397 | - "employeeInfoManage_index_page_line54_txt-4493" : "Export to excel", | |
| 397 | + "employeeInfoManage_index_page_line54_txt-4449" : "Import from excel", | |
| 398 | + "employeeInfoManage_index_page_line60_txt-4493" : "Export to excel", | |
| 398 | 399 | |
| 399 | 400 | // 页面:orderOptionOpen.html |
| 400 | 401 | "employeeInfoManage_orderOptionOpen_page_line5_txt-1682" : "Sort field selection", |
| ... | ... | @@ -517,6 +518,19 @@ var ScheduleApp_en_language = { |
| 517 | 518 | "employeeInfoManage_form_page_line174_txt-4173" : "Submit", |
| 518 | 519 | "employeeInfoManage_form_page_line175_txt-3817" : "Cancel", |
| 519 | 520 | |
| 521 | + // 页面:dataImport.html | |
| 522 | + "employeeInfoManage_dataImport_page_line2_txt-4335" : "Basic information of personnel import from excel", | |
| 523 | + "employeeInfoManage_dataImport_page_line7_txt-2684" : "Select file", | |
| 524 | + "employeeInfoManage_dataImport_page_line20_txt-3658" : "file name", | |
| 525 | + "employeeInfoManage_dataImport_page_line21_txt-4092" : "Size(MB)", | |
| 526 | + "employeeInfoManage_dataImport_page_line22_txt-4091" : "progress", | |
| 527 | + "employeeInfoManage_dataImport_page_line23_txt-3874" : "Status", | |
| 528 | + "employeeInfoManage_dataImport_page_line24_txt-3942" : "Operation", | |
| 529 | + "employeeInfoManage_dataImport_page_line53_txt-4154" : "upload", | |
| 530 | + "employeeInfoManage_dataImport_page_line57_txt-3817" : "Cancel", | |
| 531 | + "employeeInfoManage_dataImport_page_line60_txt-3868" : "Delete", | |
| 532 | + "employeeInfoManage_dataImport_page_line71_txt-4015" : "Close", | |
| 533 | + | |
| 520 | 534 | // module.js |
| 521 | 535 | "employeeInfoManage_module_js_line33_txt-3949" : "Name", |
| 522 | 536 | "employeeInfoManage_module_js_line34_txt-3940" : "Worker number", | ... | ... |
src/main/resources/static/pages/scheduleApp/language/zh.js
| ... | ... | @@ -394,7 +394,8 @@ var ScheduleApp_zh_language = { |
| 394 | 394 | "employeeInfoManage_index_page_line36_txt-2234" : "人员信息表", |
| 395 | 395 | "employeeInfoManage_index_page_line41_txt-1648" : "添加人员信息", |
| 396 | 396 | "employeeInfoManage_index_page_line47_txt-3339" : "数据工具", |
| 397 | - "employeeInfoManage_index_page_line54_txt-4493" : "导出Excel", | |
| 397 | + "employeeInfoManage_index_page_line54_txt-4449" : "导入Excel", | |
| 398 | + "employeeInfoManage_index_page_line60_txt-4493" : "导出Excel", | |
| 398 | 399 | |
| 399 | 400 | // 页面:orderOptionOpen.html |
| 400 | 401 | "employeeInfoManage_orderOptionOpen_page_line5_txt-1682" : "排序字段选择", |
| ... | ... | @@ -517,6 +518,19 @@ var ScheduleApp_zh_language = { |
| 517 | 518 | "employeeInfoManage_form_page_line174_txt-4173" : "提交", |
| 518 | 519 | "employeeInfoManage_form_page_line175_txt-3817" : "取消", |
| 519 | 520 | |
| 521 | + // 页面:dataImport.html | |
| 522 | + "employeeInfoManage_dataImport_page_line2_txt-4335" : "人员基础信息excel数据导入", | |
| 523 | + "employeeInfoManage_dataImport_page_line7_txt-2684" : "选择文件", | |
| 524 | + "employeeInfoManage_dataImport_page_line20_txt-3658" : "文件名", | |
| 525 | + "employeeInfoManage_dataImport_page_line21_txt-4092" : "大小(M)", | |
| 526 | + "employeeInfoManage_dataImport_page_line22_txt-4091" : "进度", | |
| 527 | + "employeeInfoManage_dataImport_page_line23_txt-3874" : "状态", | |
| 528 | + "employeeInfoManage_dataImport_page_line24_txt-3942" : "操作", | |
| 529 | + "employeeInfoManage_dataImport_page_line53_txt-4154" : "上传", | |
| 530 | + "employeeInfoManage_dataImport_page_line57_txt-3817" : "取消", | |
| 531 | + "employeeInfoManage_dataImport_page_line60_txt-3868" : "删除", | |
| 532 | + "employeeInfoManage_dataImport_page_line71_txt-4015" : "关闭", | |
| 533 | + | |
| 520 | 534 | // module.js |
| 521 | 535 | "employeeInfoManage_module_js_line33_txt-3949" : "姓名", |
| 522 | 536 | "employeeInfoManage_module_js_line34_txt-3940" : "工号", | ... | ... |
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/dataImport.html
| 1 | 1 | <div class="modal-header"> |
| 2 | - <h3 class="modal-title">$$$$$${txt-4335}</h3> | |
| 2 | + <h3 class="modal-title">{{"employeeInfoManage_dataImport_page_line2_txt-4335" | translate}}</h3> | |
| 3 | 3 | </div> |
| 4 | 4 | <div class="modal-body"> |
| 5 | 5 | <div class="col-md-6"> |
| 6 | 6 | <div class="input-group"> |
| 7 | - <input type="file" class="form-control" nv-file-select="" uploader="ctrl.uploader"/> | |
| 8 | - <span class="input-group-btn"> | |
| 7 | + <label class="btn btn-info" for="xFile">{{"employeeInfoManage_dataImport_page_line7_txt-2684" | translate}}</label> | |
| 8 | + <input id="xFile" type="file" style="position: absolute;clip: rect(0 0 0 0);" class="form-control" nv-file-select="" uploader="ctrl.uploader"/> | |
| 9 | 9 | <button type="button" ng-click="ctrl.clearInputFile()" class="btn btn-default"> |
| 10 | 10 | <span class="glyphicon glyphicon-trash"></span> |
| 11 | 11 | </button> |
| 12 | - </span> | |
| 13 | 12 | </div> |
| 14 | 13 | </div> |
| 15 | 14 | |
| 16 | 15 | <div class="table-scrollable table-scrollable-borderless"> |
| 16 | + | |
| 17 | 17 | <table class="table table-hover table-light"> |
| 18 | 18 | <thead> |
| 19 | 19 | <tr class="uppercase"> |
| 20 | - <th width="50%">$$$$$${txt-3658}</th> | |
| 21 | - <th ng-show="ctrl.uploader.isHTML5">$$$$$${txt-4092}</th> | |
| 22 | - <th ng-show="ctrl.uploader.isHTML5">$$$$$${txt-4091}</th> | |
| 23 | - <th>$$$$$${txt-3874}</th> | |
| 24 | - <th>$$$$$${txt-3942}</th> | |
| 20 | + <th width="50%">{{"employeeInfoManage_dataImport_page_line20_txt-3658" | translate}}</th> | |
| 21 | + <th ng-show="ctrl.uploader.isHTML5">{{"employeeInfoManage_dataImport_page_line21_txt-4092" | translate}}</th> | |
| 22 | + <th ng-show="ctrl.uploader.isHTML5">{{"employeeInfoManage_dataImport_page_line22_txt-4091" | translate}}</th> | |
| 23 | + <th>{{"employeeInfoManage_dataImport_page_line23_txt-3874" | translate}}</th> | |
| 24 | + <th>{{"employeeInfoManage_dataImport_page_line24_txt-3942" | translate}}</th> | |
| 25 | 25 | </tr> |
| 26 | 26 | </thead> |
| 27 | 27 | <tbody> |
| ... | ... | @@ -50,14 +50,14 @@ |
| 50 | 50 | <td nowrap> |
| 51 | 51 | <button type="button" class="btn btn-success btn-xs" ng-click="item.upload()" |
| 52 | 52 | ng-disabled="item.isReady || item.isUploading || item.isSuccess"> |
| 53 | - <span class="glyphicon glyphicon-upload"></span> $$$$$${txt-4154} | |
| 53 | + <span class="glyphicon glyphicon-upload"></span> {{"employeeInfoManage_dataImport_page_line53_txt-4154" | translate}} | |
| 54 | 54 | </button> |
| 55 | 55 | <button type="button" class="btn btn-warning btn-xs" ng-click="item.cancel()" |
| 56 | 56 | ng-disabled="!item.isUploading"> |
| 57 | - <span class="glyphicon glyphicon-ban-circle"></span> $$$$$${txt-3817} | |
| 57 | + <span class="glyphicon glyphicon-ban-circle"></span> {{"employeeInfoManage_dataImport_page_line57_txt-3817" | translate}} | |
| 58 | 58 | </button> |
| 59 | 59 | <button type="button" class="btn btn-danger btn-xs" ng-click="item.remove()"> |
| 60 | - <span class="glyphicon glyphicon-trash"></span> $$$$$${txt-3868} | |
| 60 | + <span class="glyphicon glyphicon-trash"></span> {{"employeeInfoManage_dataImport_page_line60_txt-3868" | translate}} | |
| 61 | 61 | </button> |
| 62 | 62 | </td> |
| 63 | 63 | </tr> |
| ... | ... | @@ -68,5 +68,5 @@ |
| 68 | 68 | </div> |
| 69 | 69 | |
| 70 | 70 | <div class="modal-footer"> |
| 71 | - <button class="btn btn-primary" ng-click="ctrl.close()">$$$$$${txt-4015}</button> | |
| 72 | -</div> | |
| 73 | 71 | \ No newline at end of file |
| 72 | + <button class="btn btn-primary" ng-click="ctrl.close()">{{"employeeInfoManage_dataImport_page_line71_txt-4015" | translate}}</button> | |
| 73 | +</div> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/edit.html
| ... | ... | @@ -88,7 +88,7 @@ |
| 88 | 88 | required placeholder="{{'employeeInfoManage_edit_page_line88_txt-2346' | translate}}" |
| 89 | 89 | remote-Validation |
| 90 | 90 | remotevtype="ee_gh" |
| 91 | - remotevparam="{{ {'id_eq': ctrl.employeeInfoForSave.id, 'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCode} | json}}"/> | |
| 91 | + remotevparam="{{ {'id_eq': ctrl.employeeInfoForSave.id, 'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCodeori} | json}}"/> | |
| 92 | 92 | </div> |
| 93 | 93 | <!-- 隐藏块,显示验证信息 --> |
| 94 | 94 | <div class="alert alert-danger well-sm" ng-show="myForm.jobCode.$error.required"> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/form.html
| ... | ... | @@ -88,7 +88,7 @@ |
| 88 | 88 | required placeholder="{{'employeeInfoManage_form_page_line88_txt-2346' | translate}}" |
| 89 | 89 | remote-Validation |
| 90 | 90 | remotevtype="ee_gh" |
| 91 | - remotevparam="{{ {'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCode} | json}}"/> | |
| 91 | + remotevparam="{{ {'companyCode_eq' : ctrl.employeeInfoForSave.companyCode, 'jobCode_eq': ctrl.employeeInfoForSave.jobCodeori} | json}}"/> | |
| 92 | 92 | </div> |
| 93 | 93 | <!-- 隐藏块,显示验证信息 --> |
| 94 | 94 | <div class="alert alert-danger well-sm" ng-show="myForm.jobCode.$error.required"> | ... | ... |
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/index.html
| ... | ... | @@ -49,9 +49,15 @@ |
| 49 | 49 | </a> |
| 50 | 50 | <ul class="dropdown-menu pull-right"> |
| 51 | 51 | <li> |
| 52 | + <a href="javascript:" class="tool-action" ng-click="ctrl.importData()"> | |
| 53 | + <i class="fa fa-file-excel-o"></i> | |
| 54 | + {{"employeeInfoManage_index_page_line54_txt-4449" | translate}} | |
| 55 | + </a> | |
| 56 | + </li> | |
| 57 | + <li> | |
| 52 | 58 | <a href="javascript:" class="tool-action" ng-click="ctrl.exportData()"> |
| 53 | 59 | <i class="fa fa-file-excel-o"></i> |
| 54 | - {{"employeeInfoManage_index_page_line54_txt-4493" | translate}} | |
| 60 | + {{"employeeInfoManage_index_page_line60_txt-4493" | translate}} | |
| 55 | 61 | </a> |
| 56 | 62 | </li> |
| 57 | 63 | <!--<li class="divider"></li>--> | ... | ... |