Commit d26340437fc4666e02640bc5dedbf64ff09eb430

Authored by 娄高锋
2 parents 4f24b1f9 df0f514b

Merge branch 'pudong' of 192.168.168.201:panzhaov5/bsth_control into pudong

src/main/java/com/bsth/controller/oil/YlbController.java
@@ -229,6 +229,12 @@ public class YlbController extends BaseController<Ylb, Integer>{ @@ -229,6 +229,12 @@ public class YlbController extends BaseController<Ylb, Integer>{
229 return list; 229 return list;
230 } 230 }
231 231
  232 + @RequestMapping(value = "/checkDate",method = RequestMethod.GET)
  233 + public String checkDate(@RequestParam Map<String, Object> map){
  234 + String list=ylbService.checkDate(map);
  235 + return list;
  236 + }
  237 +
232 @RequestMapping(value = "/sumYlb",method = RequestMethod.GET) 238 @RequestMapping(value = "/sumYlb",method = RequestMethod.GET)
233 public Map<String, Object> sumYlb(@RequestParam Map<String, Object> map){ 239 public Map<String, Object> sumYlb(@RequestParam Map<String, Object> map){
234 Map<String, Object> list=ylbService.sumYlb(map); 240 Map<String, Object> list=ylbService.sumYlb(map);
src/main/java/com/bsth/controller/report/ReportController.java
@@ -209,6 +209,12 @@ public class ReportController { @@ -209,6 +209,12 @@ public class ReportController {
209 return service.historyMessageCount(line, date, code); 209 return service.historyMessageCount(line, date, code);
210 } 210 }
211 211
  212 + @RequestMapping(value = "/historyMessageList", method = RequestMethod.GET)
  213 + public List<Object[]> historyMessageList(@RequestParam String line, @RequestParam String date,
  214 + @RequestParam String code,@RequestParam String type) {
  215 + return service.historyMessageList(line, date, code, type);
  216 + }
  217 +
212 @RequestMapping(value = "/tbodyTime1", method = RequestMethod.GET) 218 @RequestMapping(value = "/tbodyTime1", method = RequestMethod.GET)
213 public Map<String, Object> tbodyTime1(@RequestParam String line,@RequestParam String ttinfo) { 219 public Map<String, Object> tbodyTime1(@RequestParam String line,@RequestParam String ttinfo) {
214 return service.tbodyTime1(line, ttinfo); 220 return service.tbodyTime1(line, ttinfo);
src/main/java/com/bsth/repository/CarDeviceRepository.java
1 package com.bsth.repository; 1 package com.bsth.repository;
2 2
3 import com.bsth.entity.CarDevice; 3 import com.bsth.entity.CarDevice;
  4 +
  5 +import java.util.Date;
  6 +import java.util.List;
  7 +
  8 +import org.springframework.data.jpa.repository.Query;
4 import org.springframework.stereotype.Repository; 9 import org.springframework.stereotype.Repository;
5 10
6 /** 11 /**
@@ -8,4 +13,6 @@ import org.springframework.stereotype.Repository; @@ -8,4 +13,6 @@ import org.springframework.stereotype.Repository;
8 */ 13 */
9 @Repository 14 @Repository
10 public interface CarDeviceRepository extends BaseRepository<CarDevice, Long> { 15 public interface CarDeviceRepository extends BaseRepository<CarDevice, Long> {
  16 + @Query(value="select s from CarDevice s where s.oldDeviceNo=?1 and s.qyrq>=?2 ")
  17 + List<CarDevice> findCarDevice(String device,Date date );
11 } 18 }
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
@@ -58,6 +58,12 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI @@ -58,6 +58,12 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
58 + " lp_name,xl_name,cl_zbh",nativeQuery=true) 58 + " lp_name,xl_name,cl_zbh",nativeQuery=true)
59 List<Object[]> historyMessageCount(String line,String date,String code); 59 List<Object[]> historyMessageCount(String line,String date,String code);
60 60
  61 + @Query(value="SELECT r.xl_name,r.cl_zbh,d.sender,d.timestamp,d.txt_content "
  62 + + " FROM bsth_c_s_sp_info_real r RIGHT JOIN bsth_v_directive_60 d "
  63 + + " ON r.id = d.sch WHERE d.is_dispatch = 1 AND r.xl_bm like %?1% AND "
  64 + + " r.schedule_date_str = ?2 and r.cl_zbh =?3 ",nativeQuery=true)
  65 + List<Object[]> historyMessageList(String line,String date,String code);
  66 +
61 @Query(value = "select max(id) from ScheduleRealInfo") 67 @Query(value = "select max(id) from ScheduleRealInfo")
62 Long getMaxId(); 68 Long getMaxId();
63 69
src/main/java/com/bsth/service/oil/YlbService.java
@@ -19,6 +19,8 @@ public interface YlbService extends BaseService&lt;Ylb, Integer&gt;{ @@ -19,6 +19,8 @@ public interface YlbService extends BaseService&lt;Ylb, Integer&gt;{
19 19
20 Map<String, Object> sumYlb(Map<String, Object> map); 20 Map<String, Object> sumYlb(Map<String, Object> map);
21 String checkJsy(Map<String, Object> map); 21 String checkJsy(Map<String, Object> map);
  22 + String checkDate(Map<String, Object> map);
  23 +
22 List<Map<String, Object>> oilListMonth(Map<String, Object> map); 24 List<Map<String, Object>> oilListMonth(Map<String, Object> map);
23 List<Ylb> listYlb(Map<String, Object> map); 25 List<Ylb> listYlb(Map<String, Object> map);
24 StringBuffer checkNbmmNum(String rq, String gsbm,String fgsbm,String xlbm,String nbbm,int lx); 26 StringBuffer checkNbmmNum(String rq, String gsbm,String fgsbm,String xlbm,String nbbm,int lx);
src/main/java/com/bsth/service/oil/impl/YlbServiceImpl.java
@@ -1442,6 +1442,35 @@ public class YlbServiceImpl extends BaseServiceImpl&lt;Ylb,Integer&gt; implements YlbS @@ -1442,6 +1442,35 @@ public class YlbServiceImpl extends BaseServiceImpl&lt;Ylb,Integer&gt; implements YlbS
1442 } 1442 }
1443 return type; 1443 return type;
1444 } 1444 }
  1445 +
  1446 + @Override
  1447 + public String checkDate(Map<String, Object> map) {
  1448 + // TODO Auto-generated method stub
  1449 + SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
  1450 + String rq=map.get("rq").toString();
  1451 + String gsbm=map.get("ssgsdm_like").toString();
  1452 + String type="1";
  1453 + if(gsbm.equals("26")){
  1454 + Date date=new Date();
  1455 + Calendar aCalendar = Calendar.getInstance();
  1456 + aCalendar.setTime(date);
  1457 + int day1 = aCalendar.get(Calendar.DAY_OF_YEAR);
  1458 + try {
  1459 + aCalendar.setTime(sdf.parse(rq));
  1460 + } catch (ParseException e) {
  1461 + // TODO Auto-generated catch block
  1462 + e.printStackTrace();
  1463 + }
  1464 + int day2 = aCalendar.get(Calendar.DAY_OF_YEAR);
  1465 + int days=day1-day2;
  1466 + if(days>3){
  1467 + type="2";
  1468 + }
  1469 + }
  1470 + return type;
  1471 + }
  1472 +
  1473 +
1445 1474
1446 @Override 1475 @Override
1447 public Map<String, Object> saveYlb(Ylb t) { 1476 public Map<String, Object> saveYlb(Ylb t) {
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
@@ -21,6 +21,7 @@ import com.bsth.data.schedule.edit_logs.loggers.FcxxwtLogger; @@ -21,6 +21,7 @@ import com.bsth.data.schedule.edit_logs.loggers.FcxxwtLogger;
21 import com.bsth.data.schedule.edit_logs.service.dto.SchEditInfoDto; 21 import com.bsth.data.schedule.edit_logs.service.dto.SchEditInfoDto;
22 import com.bsth.data.schedule.late_adjust.LateAdjustHandle; 22 import com.bsth.data.schedule.late_adjust.LateAdjustHandle;
23 import com.bsth.data.utils.CustomStringUtils; 23 import com.bsth.data.utils.CustomStringUtils;
  24 +import com.bsth.entity.CarDevice;
24 import com.bsth.entity.Cars; 25 import com.bsth.entity.Cars;
25 import com.bsth.entity.Line; 26 import com.bsth.entity.Line;
26 import com.bsth.entity.Personnel; 27 import com.bsth.entity.Personnel;
@@ -39,6 +40,7 @@ import com.bsth.entity.schedule.GuideboardInfo; @@ -39,6 +40,7 @@ import com.bsth.entity.schedule.GuideboardInfo;
39 import com.bsth.entity.schedule.SchedulePlanInfo; 40 import com.bsth.entity.schedule.SchedulePlanInfo;
40 import com.bsth.entity.sys.DutyEmployee; 41 import com.bsth.entity.sys.DutyEmployee;
41 import com.bsth.entity.sys.SysUser; 42 import com.bsth.entity.sys.SysUser;
  43 +import com.bsth.repository.CarDeviceRepository;
42 import com.bsth.repository.LineRepository; 44 import com.bsth.repository.LineRepository;
43 import com.bsth.repository.oil.DlbRepository; 45 import com.bsth.repository.oil.DlbRepository;
44 import com.bsth.repository.oil.YlbRepository; 46 import com.bsth.repository.oil.YlbRepository;
@@ -153,6 +155,9 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf @@ -153,6 +155,9 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
153 155
154 @Autowired 156 @Autowired
155 DirectiveService directiveService; 157 DirectiveService directiveService;
  158 +
  159 + @Autowired
  160 + CarDeviceRepository carDeviceRepository;
156 161
157 Logger logger = LoggerFactory.getLogger(this.getClass()); 162 Logger logger = LoggerFactory.getLogger(this.getClass());
158 163
@@ -1097,6 +1102,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf @@ -1097,6 +1102,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
1097 @Override 1102 @Override
1098 public List<Object[]> historyMessage(String line, String date, String code, String type) { 1103 public List<Object[]> historyMessage(String line, String date, String code, String type) {
1099 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 1104 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  1105 +
1100 long d = 0; 1106 long d = 0;
1101 long t = 0; 1107 long t = 0;
1102 if (date.length() > 0) { 1108 if (date.length() > 0) {
@@ -1116,7 +1122,23 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf @@ -1116,7 +1122,23 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
1116 List<Object[]> list = scheduleRealInfoRepository.historyMessage(line, d, t, device); 1122 List<Object[]> list = scheduleRealInfoRepository.historyMessage(line, d, t, device);
1117 for (Object[] obj : list) { 1123 for (Object[] obj : list) {
1118 if (obj != null) { 1124 if (obj != null) {
1119 - obj[0] =BasicData.deviceId2NbbmMap.get(obj[0].toString()); 1125 +
  1126 + if(BasicData.deviceId2NbbmMap.get(obj[0].toString())==null){
  1127 + List<CarDevice> carDeviceList=new ArrayList<CarDevice>();
  1128 + try {
  1129 + carDeviceList = carDeviceRepository.findCarDevice(obj[0].toString(), sdf.parse(date + " 00:00:00"));
  1130 + } catch (ParseException e) {
  1131 + // TODO Auto-generated catch block
  1132 + e.printStackTrace();
  1133 + }
  1134 + if(carDeviceList.size()>0){
  1135 + obj[0] =carDeviceList.get(0).getClZbh();
  1136 + }else{
  1137 + obj[0] =BasicData.deviceId2NbbmMap.get(obj[0].toString());
  1138 + }
  1139 + }else{
  1140 + obj[0] =BasicData.deviceId2NbbmMap.get(obj[0].toString());
  1141 + }
1120 obj[3] = sdf.format(new Date(Long.parseLong(obj[3].toString()))); 1142 obj[3] = sdf.format(new Date(Long.parseLong(obj[3].toString())));
1121 obj[4] = BasicData.lineCode2NameMap.get(line); 1143 obj[4] = BasicData.lineCode2NameMap.get(line);
1122 } 1144 }
src/main/java/com/bsth/service/report/ReportService.java
@@ -22,6 +22,8 @@ public interface ReportService { @@ -22,6 +22,8 @@ public interface ReportService {
22 List<Map<String, String>> sreachZd(String line,int zdlx); 22 List<Map<String, String>> sreachZd(String line,int zdlx);
23 23
24 List<Object[]> historyMessageCount(String line, String date, String code); 24 List<Object[]> historyMessageCount(String line, String date, String code);
  25 + List<Object[]> historyMessageList(String line, String date, String code,String type);
  26 +
25 27
26 Map<String, Object> tbodyTime1(String line ,String ttinfo); 28 Map<String, Object> tbodyTime1(String line ,String ttinfo);
27 29
src/main/java/com/bsth/service/report/impl/ReportServiceImpl.java
1 package com.bsth.service.report.impl; 1 package com.bsth.service.report.impl;
2 import com.bsth.data.BasicData; 2 import com.bsth.data.BasicData;
  3 +import com.bsth.entity.CarDevice;
3 import com.bsth.entity.Line; 4 import com.bsth.entity.Line;
4 import com.bsth.entity.Personnel; 5 import com.bsth.entity.Personnel;
5 import com.bsth.entity.StationRoute; 6 import com.bsth.entity.StationRoute;
@@ -278,6 +279,48 @@ public class ReportServiceImpl implements ReportService{ @@ -278,6 +279,48 @@ public class ReportServiceImpl implements ReportService{
278 return list; 279 return list;
279 } 280 }
280 @Override 281 @Override
  282 + public List<Object[]> historyMessageList(String line, String date, String code,String type) {
  283 + // TODO Auto-generated method stub
  284 + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  285 +
  286 + List<Object[]> list = scheduleRealInfoRepository.historyMessageList(line, date, code);
  287 + for (Object[] obj : list) {
  288 + if (obj != null) {
  289 + obj[3] = sdf.format(new Date(Long.parseLong(obj[3].toString())));
  290 + }
  291 + }
  292 +
  293 + if (type != null && type.length() != 0 && type.equals("export_msg")) {
  294 + SimpleDateFormat sdfMonth = new SimpleDateFormat("yyyy-MM-dd"),
  295 + sdfSimple = new SimpleDateFormat("yyyyMMdd");
  296 + List<Iterator<?>> listI = new ArrayList<Iterator<?>>();
  297 + Map<String, Object> m = new HashMap<String, Object>();
  298 + ReportUtils ee = new ReportUtils();
  299 + List<Map<String, Object>> newList = new ArrayList<Map<String, Object>>();
  300 + for (int i = 0; i < list.size(); i++) {
  301 + Map<String, Object> map = new HashMap<String, Object>();
  302 + Object[] obj = list.get(i);
  303 + map.put("num", i + 1);
  304 + map.put("line", obj[0]);
  305 + map.put("clZbh", obj[1]);
  306 + map.put("sender", obj[2]);
  307 + map.put("date", obj[3]);
  308 + map.put("text", obj[4]);
  309 + newList.add(map);
  310 + }
  311 + try {
  312 + listI.add(newList.iterator());
  313 + String path = this.getClass().getResource("/").getPath() + "static/pages/forms/";
  314 + ee.excelReplace(listI, new Object[]{m}, path + "mould/message.xls",
  315 + path + "export/调度消息分析" + sdfSimple.format(sdfMonth.parse(date)) + ".xls");
  316 + } catch (Exception e) {
  317 + // TODO: handle exception
  318 + e.printStackTrace();
  319 + }
  320 + }
  321 + return list;
  322 + }
  323 + @Override
281 public Map<String, Object> tbodyTime1(String line, String ttinfo) { 324 public Map<String, Object> tbodyTime1(String line, String ttinfo) {
282 DecimalFormat df = new DecimalFormat("#0.00"); 325 DecimalFormat df = new DecimalFormat("#0.00");
283 // TODO Auto-generated method stub 326 // TODO Auto-generated method stub
src/main/resources/datatools/ktrs/ttinfodetailDataInput2_version.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</name>  
5 - <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>  
6 - <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - </parameters>  
13 - <log>  
14 -<trans-log-table><connection/>  
15 -<schema/>  
16 -<table/>  
17 -<size_limit_lines/>  
18 -<interval/>  
19 -<timeout_days/>  
20 -<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>  
21 -<perf-log-table><connection/>  
22 -<schema/>  
23 -<table/>  
24 -<interval/>  
25 -<timeout_days/>  
26 -<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>  
27 -<channel-log-table><connection/>  
28 -<schema/>  
29 -<table/>  
30 -<timeout_days/>  
31 -<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>  
32 -<step-log-table><connection/>  
33 -<schema/>  
34 -<table/>  
35 -<timeout_days/>  
36 -<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>  
37 -<metrics-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>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>  
42 - </log>  
43 - <maxdate>  
44 - <connection/>  
45 - <table/>  
46 - <field/>  
47 - <offset>0.0</offset>  
48 - <maxdiff>0.0</maxdiff>  
49 - </maxdate>  
50 - <size_rowset>10000</size_rowset>  
51 - <sleep_time_empty>50</sleep_time_empty>  
52 - <sleep_time_full>50</sleep_time_full>  
53 - <unique_connections>N</unique_connections>  
54 - <feedback_shown>Y</feedback_shown>  
55 - <feedback_size>50000</feedback_size>  
56 - <using_thread_priorities>Y</using_thread_priorities>  
57 - <shared_objects_file/>  
58 - <capture_step_performance>N</capture_step_performance>  
59 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
60 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
61 - <dependencies>  
62 - </dependencies>  
63 - <partitionschemas>  
64 - </partitionschemas>  
65 - <slaveservers>  
66 - </slaveservers>  
67 - <clusterschemas>  
68 - </clusterschemas>  
69 - <created_user>-</created_user>  
70 - <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>  
71 - <modified_user>-</modified_user>  
72 - <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>  
73 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
74 - <is_key_private>N</is_key_private>  
75 - </info>  
76 - <notepads>  
77 - <notepad>  
78 - <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>  
79 - <xloc>606</xloc>  
80 - <yloc>129</yloc>  
81 - <width>332</width>  
82 - <heigth>186</heigth>  
83 - <fontname>YaHei Consolas Hybrid</fontname>  
84 - <fontsize>12</fontsize>  
85 - <fontbold>N</fontbold>  
86 - <fontitalic>N</fontitalic>  
87 - <fontcolorred>0</fontcolorred>  
88 - <fontcolorgreen>0</fontcolorgreen>  
89 - <fontcolorblue>0</fontcolorblue>  
90 - <backgroundcolorred>255</backgroundcolorred>  
91 - <backgroundcolorgreen>205</backgroundcolorgreen>  
92 - <backgroundcolorblue>112</backgroundcolorblue>  
93 - <bordercolorred>100</bordercolorred>  
94 - <bordercolorgreen>100</bordercolorgreen>  
95 - <bordercolorblue>100</bordercolorblue>  
96 - <drawshadow>Y</drawshadow>  
97 - </notepad>  
98 - <notepad>  
99 - <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>  
100 - <xloc>79</xloc>  
101 - <yloc>206</yloc>  
102 - <width>346</width>  
103 - <heigth>74</heigth>  
104 - <fontname>YaHei Consolas Hybrid</fontname>  
105 - <fontsize>12</fontsize>  
106 - <fontbold>N</fontbold>  
107 - <fontitalic>N</fontitalic>  
108 - <fontcolorred>0</fontcolorred>  
109 - <fontcolorgreen>0</fontcolorgreen>  
110 - <fontcolorblue>0</fontcolorblue>  
111 - <backgroundcolorred>255</backgroundcolorred>  
112 - <backgroundcolorgreen>205</backgroundcolorgreen>  
113 - <backgroundcolorblue>112</backgroundcolorblue>  
114 - <bordercolorred>100</bordercolorred>  
115 - <bordercolorgreen>100</bordercolorgreen>  
116 - <bordercolorblue>100</bordercolorblue>  
117 - <drawshadow>Y</drawshadow>  
118 - </notepad>  
119 - <notepad>  
120 - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>  
121 - <xloc>721</xloc>  
122 - <yloc>762</yloc>  
123 - <width>333</width>  
124 - <heigth>90</heigth>  
125 - <fontname>YaHei Consolas Hybrid</fontname>  
126 - <fontsize>12</fontsize>  
127 - <fontbold>N</fontbold>  
128 - <fontitalic>N</fontitalic>  
129 - <fontcolorred>0</fontcolorred>  
130 - <fontcolorgreen>0</fontcolorgreen>  
131 - <fontcolorblue>0</fontcolorblue>  
132 - <backgroundcolorred>255</backgroundcolorred>  
133 - <backgroundcolorgreen>205</backgroundcolorgreen>  
134 - <backgroundcolorblue>112</backgroundcolorblue>  
135 - <bordercolorred>100</bordercolorred>  
136 - <bordercolorgreen>100</bordercolorgreen>  
137 - <bordercolorblue>100</bordercolorblue>  
138 - <drawshadow>Y</drawshadow>  
139 - </notepad>  
140 - <notepad>  
141 - <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>  
142 - <xloc>104</xloc>  
143 - <yloc>939</yloc>  
144 - <width>178</width>  
145 - <heigth>42</heigth>  
146 - <fontname>YaHei Consolas Hybrid</fontname>  
147 - <fontsize>12</fontsize>  
148 - <fontbold>N</fontbold>  
149 - <fontitalic>N</fontitalic>  
150 - <fontcolorred>0</fontcolorred>  
151 - <fontcolorgreen>0</fontcolorgreen>  
152 - <fontcolorblue>0</fontcolorblue>  
153 - <backgroundcolorred>255</backgroundcolorred>  
154 - <backgroundcolorgreen>205</backgroundcolorgreen>  
155 - <backgroundcolorblue>112</backgroundcolorblue>  
156 - <bordercolorred>100</bordercolorred>  
157 - <bordercolorgreen>100</bordercolorgreen>  
158 - <bordercolorblue>100</bordercolorblue>  
159 - <drawshadow>Y</drawshadow>  
160 - </notepad>  
161 - <notepad>  
162 - <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>  
163 - <xloc>578</xloc>  
164 - <yloc>1084</yloc>  
165 - <width>178</width>  
166 - <heigth>42</heigth>  
167 - <fontname>YaHei Consolas Hybrid</fontname>  
168 - <fontsize>12</fontsize>  
169 - <fontbold>N</fontbold>  
170 - <fontitalic>N</fontitalic>  
171 - <fontcolorred>0</fontcolorred>  
172 - <fontcolorgreen>0</fontcolorgreen>  
173 - <fontcolorblue>0</fontcolorblue>  
174 - <backgroundcolorred>255</backgroundcolorred>  
175 - <backgroundcolorgreen>205</backgroundcolorgreen>  
176 - <backgroundcolorblue>112</backgroundcolorblue>  
177 - <bordercolorred>100</bordercolorred>  
178 - <bordercolorgreen>100</bordercolorgreen>  
179 - <bordercolorblue>100</bordercolorblue>  
180 - <drawshadow>Y</drawshadow>  
181 - </notepad>  
182 - </notepads>  
183 - <connection>  
184 - <name>192.168.168.1_jwgl_dw</name>  
185 - <server>192.168.168.1</server>  
186 - <type>ORACLE</type>  
187 - <access>Native</access>  
188 - <database>orcl</database>  
189 - <port>1521</port>  
190 - <username>jwgl_dw</username>  
191 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
192 - <servername/>  
193 - <data_tablespace/>  
194 - <index_tablespace/>  
195 - <attributes>  
196 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
197 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
198 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
199 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
200 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
201 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
202 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
203 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
204 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
205 - </attributes>  
206 - </connection>  
207 - <connection>  
208 - <name>bus_control_variable</name>  
209 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
210 - <type>MYSQL</type>  
211 - <access>Native</access>  
212 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
213 - <port>3306</port>  
214 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
215 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
216 - <servername/>  
217 - <data_tablespace/>  
218 - <index_tablespace/>  
219 - <attributes>  
220 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
221 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
222 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
223 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
224 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
225 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
226 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
227 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
228 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
229 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
230 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
231 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
232 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
233 - </attributes>  
234 - </connection>  
235 - <connection>  
236 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
237 - <server>localhost</server>  
238 - <type>MYSQL</type>  
239 - <access>Native</access>  
240 - <database>control</database>  
241 - <port>3306</port>  
242 - <username>root</username>  
243 - <password>Encrypted </password>  
244 - <servername/>  
245 - <data_tablespace/>  
246 - <index_tablespace/>  
247 - <attributes>  
248 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
249 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
250 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
251 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
252 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
253 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
254 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
255 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
256 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
257 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
258 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
259 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
260 - </attributes>  
261 - </connection>  
262 - <connection>  
263 - <name>bus_control_&#x672c;&#x673a;</name>  
264 - <server>localhost</server>  
265 - <type>MYSQL</type>  
266 - <access>Native</access>  
267 - <database>control</database>  
268 - <port>3306</port>  
269 - <username>root</username>  
270 - <password>Encrypted </password>  
271 - <servername/>  
272 - <data_tablespace/>  
273 - <index_tablespace/>  
274 - <attributes>  
275 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
276 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
284 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
285 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
286 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
287 - </attributes>  
288 - </connection>  
289 - <connection>  
290 - <name>xlab_mysql_youle</name>  
291 - <server>101.231.124.8</server>  
292 - <type>MYSQL</type>  
293 - <access>Native</access>  
294 - <database>xlab_youle</database>  
295 - <port>45687</port>  
296 - <username>xlab-youle</username>  
297 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
298 - <servername/>  
299 - <data_tablespace/>  
300 - <index_tablespace/>  
301 - <attributes>  
302 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
303 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
304 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
305 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
306 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
307 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
308 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
309 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
310 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
311 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
312 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
313 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
314 - </attributes>  
315 - </connection>  
316 - <connection>  
317 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
318 - <server>localhost</server>  
319 - <type>MYSQL</type>  
320 - <access>Native</access>  
321 - <database>xlab_youle</database>  
322 - <port>3306</port>  
323 - <username>root</username>  
324 - <password>Encrypted </password>  
325 - <servername/>  
326 - <data_tablespace/>  
327 - <index_tablespace/>  
328 - <attributes>  
329 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
330 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
331 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
332 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
333 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
334 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
335 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
336 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
337 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
338 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
339 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
340 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
341 - </attributes>  
342 - </connection>  
343 - <connection>  
344 - <name>xlab_youle</name>  
345 - <server/>  
346 - <type>MYSQL</type>  
347 - <access>JNDI</access>  
348 - <database>xlab_youle</database>  
349 - <port>1521</port>  
350 - <username/>  
351 - <password>Encrypted </password>  
352 - <servername/>  
353 - <data_tablespace/>  
354 - <index_tablespace/>  
355 - <attributes>  
356 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
357 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
358 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
359 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
360 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
361 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
362 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
363 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
364 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
365 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
366 - </attributes>  
367 - </connection>  
368 - <order>  
369 - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>  
370 - <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>  
371 - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>  
372 - <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
373 - <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>  
374 - <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>  
375 - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>  
376 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
377 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>  
378 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>  
379 - <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>  
380 - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>  
381 - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
382 - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
383 - <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
384 - <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
385 - <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>  
386 - <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>  
387 - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>  
388 - <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
389 - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
390 - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
391 - <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
392 - <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>  
393 - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>  
394 - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>  
395 - <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>  
396 - <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>  
397 - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>  
398 - <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>  
399 - <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>  
400 - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>  
401 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>  
402 - <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>  
403 - <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>  
404 - <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>  
405 - <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
406 - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>  
407 - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>  
408 - <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>  
409 - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
410 - <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>  
411 - <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>  
412 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>  
413 - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>  
414 - <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>  
415 - <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>  
416 - <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>  
417 - <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>  
418 - <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>  
419 - <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>  
420 - </order>  
421 - <step>  
422 - <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>  
423 - <type>IfNull</type>  
424 - <description/>  
425 - <distribute>Y</distribute>  
426 - <custom_distribution/>  
427 - <copies>1</copies>  
428 - <partitioning>  
429 - <method>none</method>  
430 - <schema_name/>  
431 - </partitioning>  
432 - <replaceAllByValue/>  
433 - <replaceAllMask/>  
434 - <selectFields>Y</selectFields>  
435 - <selectValuesType>N</selectValuesType>  
436 - <setEmptyStringAll>N</setEmptyStringAll>  
437 - <valuetypes>  
438 - </valuetypes>  
439 - <fields>  
440 - <field>  
441 - <name>sxx</name>  
442 - <value>0</value>  
443 - <mask/>  
444 - <set_empty_string>N</set_empty_string>  
445 - </field>  
446 - </fields>  
447 - <cluster_schema/>  
448 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
449 - <xloc>335</xloc>  
450 - <yloc>938</yloc>  
451 - <draw>Y</draw>  
452 - </GUI>  
453 - </step>  
454 -  
455 - <step>  
456 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>  
457 - <type>IfNull</type>  
458 - <description/>  
459 - <distribute>Y</distribute>  
460 - <custom_distribution/>  
461 - <copies>1</copies>  
462 - <partitioning>  
463 - <method>none</method>  
464 - <schema_name/>  
465 - </partitioning>  
466 - <replaceAllByValue/>  
467 - <replaceAllMask/>  
468 - <selectFields>Y</selectFields>  
469 - <selectValuesType>N</selectValuesType>  
470 - <setEmptyStringAll>N</setEmptyStringAll>  
471 - <valuetypes>  
472 - </valuetypes>  
473 - <fields>  
474 - <field>  
475 - <name>sxx2</name>  
476 - <value>0</value>  
477 - <mask/>  
478 - <set_empty_string>N</set_empty_string>  
479 - </field>  
480 - </fields>  
481 - <cluster_schema/>  
482 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
483 - <xloc>804</xloc>  
484 - <yloc>1081</yloc>  
485 - <draw>Y</draw>  
486 - </GUI>  
487 - </step>  
488 -  
489 - <step>  
490 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>  
491 - <type>ValueMapper</type>  
492 - <description/>  
493 - <distribute>Y</distribute>  
494 - <custom_distribution/>  
495 - <copies>1</copies>  
496 - <partitioning>  
497 - <method>none</method>  
498 - <schema_name/>  
499 - </partitioning>  
500 - <field_to_use>sxx</field_to_use>  
501 - <target_field>sxx_desc</target_field>  
502 - <non_match_default/>  
503 - <fields>  
504 - <field>  
505 - <source_value>0</source_value>  
506 - <target_value>&#x4e0a;&#x884c;</target_value>  
507 - </field>  
508 - <field>  
509 - <source_value>1</source_value>  
510 - <target_value>&#x4e0b;&#x884c;</target_value>  
511 - </field>  
512 - </fields>  
513 - <cluster_schema/>  
514 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
515 - <xloc>147</xloc>  
516 - <yloc>403</yloc>  
517 - <draw>Y</draw>  
518 - </GUI>  
519 - </step>  
520 -  
521 - <step>  
522 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>  
523 - <type>ValueMapper</type>  
524 - <description/>  
525 - <distribute>Y</distribute>  
526 - <custom_distribution/>  
527 - <copies>1</copies>  
528 - <partitioning>  
529 - <method>none</method>  
530 - <schema_name/>  
531 - </partitioning>  
532 - <field_to_use>sxx</field_to_use>  
533 - <target_field>sxx_desc</target_field>  
534 - <non_match_default/>  
535 - <fields>  
536 - <field>  
537 - <source_value>0</source_value>  
538 - <target_value>&#x4e0a;&#x884c;</target_value>  
539 - </field>  
540 - <field>  
541 - <source_value>1</source_value>  
542 - <target_value>&#x4e0b;&#x884c;</target_value>  
543 - </field>  
544 - </fields>  
545 - <cluster_schema/>  
546 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
547 - <xloc>331</xloc>  
548 - <yloc>598</yloc>  
549 - <draw>Y</draw>  
550 - </GUI>  
551 - </step>  
552 -  
553 - <step>  
554 - <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>  
555 - <type>ValueMapper</type>  
556 - <description/>  
557 - <distribute>Y</distribute>  
558 - <custom_distribution/>  
559 - <copies>1</copies>  
560 - <partitioning>  
561 - <method>none</method>  
562 - <schema_name/>  
563 - </partitioning>  
564 - <field_to_use>sxx</field_to_use>  
565 - <target_field>sxx_desc</target_field>  
566 - <non_match_default/>  
567 - <fields>  
568 - <field>  
569 - <source_value>0</source_value>  
570 - <target_value>&#x4e0a;&#x884c;</target_value>  
571 - </field>  
572 - <field>  
573 - <source_value>1</source_value>  
574 - <target_value>&#x4e0b;&#x884c;</target_value>  
575 - </field>  
576 - </fields>  
577 - <cluster_schema/>  
578 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
579 - <xloc>553</xloc>  
580 - <yloc>859</yloc>  
581 - <draw>Y</draw>  
582 - </GUI>  
583 - </step>  
584 -  
585 - <step>  
586 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
587 - <type>ScriptValueMod</type>  
588 - <description/>  
589 - <distribute>Y</distribute>  
590 - <custom_distribution/>  
591 - <copies>1</copies>  
592 - <partitioning>  
593 - <method>none</method>  
594 - <schema_name/>  
595 - </partitioning>  
596 - <compatible>N</compatible>  
597 - <optimizationLevel>9</optimizationLevel>  
598 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
599 - <jsScript_name>Script 1</jsScript_name>  
600 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>  
601 - </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>  
602 - <rename>zdzname</rename>  
603 - <type>String</type>  
604 - <length>-1</length>  
605 - <precision>-1</precision>  
606 - <replace>N</replace>  
607 - </field> <field> <name>endZdtype</name>  
608 - <rename>endZdtype</rename>  
609 - <type>String</type>  
610 - <length>-1</length>  
611 - <precision>-1</precision>  
612 - <replace>N</replace>  
613 - </field> <field> <name>destory</name>  
614 - <rename>destory</rename>  
615 - <type>Integer</type>  
616 - <length>-1</length>  
617 - <precision>-1</precision>  
618 - <replace>N</replace>  
619 - </field> </fields> <cluster_schema/>  
620 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
621 - <xloc>575</xloc>  
622 - <yloc>502</yloc>  
623 - <draw>Y</draw>  
624 - </GUI>  
625 - </step>  
626 -  
627 - <step>  
628 - <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
629 - <type>Dummy</type>  
630 - <description/>  
631 - <distribute>Y</distribute>  
632 - <custom_distribution/>  
633 - <copies>1</copies>  
634 - <partitioning>  
635 - <method>none</method>  
636 - <schema_name/>  
637 - </partitioning>  
638 - <cluster_schema/>  
639 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
640 - <xloc>869</xloc>  
641 - <yloc>504</yloc>  
642 - <draw>Y</draw>  
643 - </GUI>  
644 - </step>  
645 -  
646 - <step>  
647 - <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>  
648 - <type>GroupBy</type>  
649 - <description/>  
650 - <distribute>Y</distribute>  
651 - <custom_distribution/>  
652 - <copies>1</copies>  
653 - <partitioning>  
654 - <method>none</method>  
655 - <schema_name/>  
656 - </partitioning>  
657 - <all_rows>Y</all_rows>  
658 - <ignore_aggregate>N</ignore_aggregate>  
659 - <field_ignore/>  
660 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
661 - <prefix>grp</prefix>  
662 - <add_linenr>Y</add_linenr>  
663 - <linenr_fieldname>gno</linenr_fieldname>  
664 - <give_back_row>N</give_back_row>  
665 - <group>  
666 - <field>  
667 - <name>lp</name>  
668 - </field>  
669 - </group>  
670 - <fields>  
671 - <field>  
672 - <aggregate>qdzgroups</aggregate>  
673 - <subject>qdzname</subject>  
674 - <type>CONCAT_STRING</type>  
675 - <valuefield>,</valuefield>  
676 - </field>  
677 - </fields>  
678 - <cluster_schema/>  
679 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
680 - <xloc>892</xloc>  
681 - <yloc>44</yloc>  
682 - <draw>Y</draw>  
683 - </GUI>  
684 - </step>  
685 -  
686 - <step>  
687 - <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
688 - <type>ScriptValueMod</type>  
689 - <description/>  
690 - <distribute>Y</distribute>  
691 - <custom_distribution/>  
692 - <copies>1</copies>  
693 - <partitioning>  
694 - <method>none</method>  
695 - <schema_name/>  
696 - </partitioning>  
697 - <compatible>N</compatible>  
698 - <optimizationLevel>9</optimizationLevel>  
699 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
700 - <jsScript_name>Script 1</jsScript_name>  
701 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>  
702 - </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>  
703 - <rename>jhlc</rename>  
704 - <type>String</type>  
705 - <length>-1</length>  
706 - <precision>-1</precision>  
707 - <replace>N</replace>  
708 - </field> <field> <name>bcsj</name>  
709 - <rename>bcsj</rename>  
710 - <type>String</type>  
711 - <length>-1</length>  
712 - <precision>-1</precision>  
713 - <replace>N</replace>  
714 - </field> </fields> <cluster_schema/>  
715 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
716 - <xloc>148</xloc>  
717 - <yloc>674</yloc>  
718 - <draw>Y</draw>  
719 - </GUI>  
720 - </step>  
721 -  
722 - <step>  
723 - <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
724 - <type>ScriptValueMod</type>  
725 - <description/>  
726 - <distribute>Y</distribute>  
727 - <custom_distribution/>  
728 - <copies>1</copies>  
729 - <partitioning>  
730 - <method>none</method>  
731 - <schema_name/>  
732 - </partitioning>  
733 - <compatible>N</compatible>  
734 - <optimizationLevel>9</optimizationLevel>  
735 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
736 - <jsScript_name>Script 1</jsScript_name>  
737 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>  
738 - </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>  
739 - <rename>out_mileage</rename>  
740 - <type>String</type>  
741 - <length>-1</length>  
742 - <precision>-1</precision>  
743 - <replace>N</replace>  
744 - </field> <field> <name>out_time</name>  
745 - <rename>out_time</rename>  
746 - <type>String</type>  
747 - <length>-1</length>  
748 - <precision>-1</precision>  
749 - <replace>N</replace>  
750 - </field> </fields> <cluster_schema/>  
751 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
752 - <xloc>336</xloc>  
753 - <yloc>862</yloc>  
754 - <draw>Y</draw>  
755 - </GUI>  
756 - </step>  
757 -  
758 - <step>  
759 - <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
760 - <type>ScriptValueMod</type>  
761 - <description/>  
762 - <distribute>Y</distribute>  
763 - <custom_distribution/>  
764 - <copies>1</copies>  
765 - <partitioning>  
766 - <method>none</method>  
767 - <schema_name/>  
768 - </partitioning>  
769 - <compatible>N</compatible>  
770 - <optimizationLevel>9</optimizationLevel>  
771 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
772 - <jsScript_name>Script 1</jsScript_name>  
773 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>  
774 - </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>  
775 - <rename>parade_mileage</rename>  
776 - <type>String</type>  
777 - <length>-1</length>  
778 - <precision>-1</precision>  
779 - <replace>N</replace>  
780 - </field> <field> <name>parade_time</name>  
781 - <rename>parade_time</rename>  
782 - <type>String</type>  
783 - <length>-1</length>  
784 - <precision>-1</precision>  
785 - <replace>N</replace>  
786 - </field> </fields> <cluster_schema/>  
787 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
788 - <xloc>726</xloc>  
789 - <yloc>1005</yloc>  
790 - <draw>Y</draw>  
791 - </GUI>  
792 - </step>  
793 -  
794 - <step>  
795 - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>  
796 - <type>DataGrid</type>  
797 - <description/>  
798 - <distribute>Y</distribute>  
799 - <custom_distribution/>  
800 - <copies>1</copies>  
801 - <partitioning>  
802 - <method>none</method>  
803 - <schema_name/>  
804 - </partitioning>  
805 - <fields>  
806 - </fields>  
807 - <data>  
808 - <line> </line>  
809 - </data>  
810 - <cluster_schema/>  
811 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
812 - <xloc>110</xloc>  
813 - <yloc>133</yloc>  
814 - <draw>Y</draw>  
815 - </GUI>  
816 - </step>  
817 -  
818 - <step>  
819 - <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>  
820 - <type>ScriptValueMod</type>  
821 - <description/>  
822 - <distribute>Y</distribute>  
823 - <custom_distribution/>  
824 - <copies>1</copies>  
825 - <partitioning>  
826 - <method>none</method>  
827 - <schema_name/>  
828 - </partitioning>  
829 - <compatible>N</compatible>  
830 - <optimizationLevel>9</optimizationLevel>  
831 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
832 - <jsScript_name>Script 1</jsScript_name>  
833 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x5982;&#x679c;&#x7ad9;&#x540d;&#x4e2d;&#x6709;&#x7c7b;&#x4f3c;-&#x3e;&#x7b;&#x6570;&#x5b57;&#x7d;&#xff0c;&#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x8fc7;&#x6ee4;&#x6389;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;-&#x3e;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu &#x3d; sendtime.replace&#x28;&#x2f;&#x5c;s&#x2f;g, &#x22;&#x22;&#x29;&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>  
834 - </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>  
835 - <rename>qdzname</rename>  
836 - <type>String</type>  
837 - <length>-1</length>  
838 - <precision>-1</precision>  
839 - <replace>Y</replace>  
840 - </field> <field> <name>isfb</name>  
841 - <rename>isfb</rename>  
842 - <type>Integer</type>  
843 - <length>-1</length>  
844 - <precision>-1</precision>  
845 - <replace>N</replace>  
846 - </field> <field> <name>iscanceled</name>  
847 - <rename>iscanceled</rename>  
848 - <type>Integer</type>  
849 - <length>-1</length>  
850 - <precision>-1</precision>  
851 - <replace>N</replace>  
852 - </field> <field> <name>sendtime_calcu</name>  
853 - <rename>sendtime_calcu</rename>  
854 - <type>String</type>  
855 - <length>-1</length>  
856 - <precision>-1</precision>  
857 - <replace>N</replace>  
858 - </field> <field> <name>ists</name>  
859 - <rename>ists</rename>  
860 - <type>Integer</type>  
861 - <length>-1</length>  
862 - <precision>-1</precision>  
863 - <replace>N</replace>  
864 - </field> </fields> <cluster_schema/>  
865 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
866 - <xloc>788</xloc>  
867 - <yloc>44</yloc>  
868 - <draw>Y</draw>  
869 - </GUI>  
870 - </step>  
871 -  
872 - <step>  
873 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
874 - <type>SelectValues</type>  
875 - <description/>  
876 - <distribute>Y</distribute>  
877 - <custom_distribution/>  
878 - <copies>1</copies>  
879 - <partitioning>  
880 - <method>none</method>  
881 - <schema_name/>  
882 - </partitioning>  
883 - <fields> <field> <name>&#x8def;&#x724c;</name>  
884 - <rename>lp</rename>  
885 - <length>-2</length>  
886 - <precision>-2</precision>  
887 - </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>  
888 - <rename>qdzname</rename>  
889 - <length>-2</length>  
890 - <precision>-2</precision>  
891 - </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>  
892 - <rename>sendtime</rename>  
893 - <length>-2</length>  
894 - <precision>-2</precision>  
895 - </field> <select_unspecified>Y</select_unspecified>  
896 - </fields> <cluster_schema/>  
897 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
898 - <xloc>444</xloc>  
899 - <yloc>131</yloc>  
900 - <draw>Y</draw>  
901 - </GUI>  
902 - </step>  
903 -  
904 - <step>  
905 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>  
906 - <type>FilterRows</type>  
907 - <description/>  
908 - <distribute>Y</distribute>  
909 - <custom_distribution/>  
910 - <copies>1</copies>  
911 - <partitioning>  
912 - <method>none</method>  
913 - <schema_name/>  
914 - </partitioning>  
915 -<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
916 -<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>  
917 - <compare>  
918 -<condition>  
919 - <negated>N</negated>  
920 - <leftvalue>bctype</leftvalue>  
921 - <function>&#x3d;</function>  
922 - <rightvalue/>  
923 - <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
924 - </compare>  
925 - <cluster_schema/>  
926 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
927 - <xloc>860</xloc>  
928 - <yloc>401</yloc>  
929 - <draw>Y</draw>  
930 - </GUI>  
931 - </step>  
932 -  
933 - <step>  
934 - <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>  
935 - <type>FilterRows</type>  
936 - <description/>  
937 - <distribute>Y</distribute>  
938 - <custom_distribution/>  
939 - <copies>1</copies>  
940 - <partitioning>  
941 - <method>none</method>  
942 - <schema_name/>  
943 - </partitioning>  
944 -<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>  
945 -<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>  
946 - <compare>  
947 -<condition>  
948 - <negated>N</negated>  
949 - <leftvalue>bctype</leftvalue>  
950 - <function>&#x3d;</function>  
951 - <rightvalue/>  
952 - <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>  
953 - </compare>  
954 - <cluster_schema/>  
955 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
956 - <xloc>995</xloc>  
957 - <yloc>503</yloc>  
958 - <draw>Y</draw>  
959 - </GUI>  
960 - </step>  
961 -  
962 - <step>  
963 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>  
964 - <type>InsertUpdate</type>  
965 - <description/>  
966 - <distribute>Y</distribute>  
967 - <custom_distribution/>  
968 - <copies>1</copies>  
969 - <partitioning>  
970 - <method>none</method>  
971 - <schema_name/>  
972 - </partitioning>  
973 - <connection>bus_control_variable</connection>  
974 - <commit>100</commit>  
975 - <update_bypassed>N</update_bypassed>  
976 - <lookup>  
977 - <schema/>  
978 - <table>bsth_c_s_ttinfo_detail</table>  
979 - <key>  
980 - <name>xlid</name>  
981 - <field>xl</field>  
982 - <condition>&#x3d;</condition>  
983 - <name2/>  
984 - </key>  
985 - <key>  
986 - <name>ttid</name>  
987 - <field>ttinfo</field>  
988 - <condition>&#x3d;</condition>  
989 - <name2/>  
990 - </key>  
991 - <key>  
992 - <name>lpid</name>  
993 - <field>lp</field>  
994 - <condition>&#x3d;</condition>  
995 - <name2/>  
996 - </key>  
997 - <key>  
998 - <name>fcno</name>  
999 - <field>fcno</field>  
1000 - <condition>&#x3d;</condition>  
1001 - <name2/>  
1002 - </key>  
1003 - <key>  
1004 - <name>bcs</name>  
1005 - <field>bcs</field>  
1006 - <condition>&#x3d;</condition>  
1007 - <name2/>  
1008 - </key>  
1009 - <value>  
1010 - <name>lp</name>  
1011 - <rename>lpid</rename>  
1012 - <update>Y</update>  
1013 - </value>  
1014 - <value>  
1015 - <name>bc_type</name>  
1016 - <rename>bctype_code</rename>  
1017 - <update>Y</update>  
1018 - </value>  
1019 - <value>  
1020 - <name>bcs</name>  
1021 - <rename>bcs</rename>  
1022 - <update>Y</update>  
1023 - </value>  
1024 - <value>  
1025 - <name>bcsj</name>  
1026 - <rename>bcsj</rename>  
1027 - <update>Y</update>  
1028 - </value>  
1029 - <value>  
1030 - <name>fcno</name>  
1031 - <rename>fcno</rename>  
1032 - <update>Y</update>  
1033 - </value>  
1034 - <value>  
1035 - <name>jhlc</name>  
1036 - <rename>jhlc</rename>  
1037 - <update>Y</update>  
1038 - </value>  
1039 - <value>  
1040 - <name>fcsj</name>  
1041 - <rename>sendtime_calcu</rename>  
1042 - <update>Y</update>  
1043 - </value>  
1044 - <value>  
1045 - <name>ttinfo</name>  
1046 - <rename>ttid</rename>  
1047 - <update>Y</update>  
1048 - </value>  
1049 - <value>  
1050 - <name>xl</name>  
1051 - <rename>xlid</rename>  
1052 - <update>Y</update>  
1053 - </value>  
1054 - <value>  
1055 - <name>qdz</name>  
1056 - <rename>qdzid</rename>  
1057 - <update>Y</update>  
1058 - </value>  
1059 - <value>  
1060 - <name>zdz</name>  
1061 - <rename>zdzid</rename>  
1062 - <update>Y</update>  
1063 - </value>  
1064 - <value>  
1065 - <name>xl_dir</name>  
1066 - <rename>sxx</rename>  
1067 - <update>Y</update>  
1068 - </value>  
1069 - <value>  
1070 - <name>isfb</name>  
1071 - <rename>isfb</rename>  
1072 - <update>Y</update>  
1073 - </value>  
1074 - <value>  
1075 - <name>qdz_code</name>  
1076 - <rename>qdzcode</rename>  
1077 - <update>Y</update>  
1078 - </value>  
1079 - <value>  
1080 - <name>qdz_name</name>  
1081 - <rename>qdzname_</rename>  
1082 - <update>Y</update>  
1083 - </value>  
1084 - <value>  
1085 - <name>zdz_code</name>  
1086 - <rename>zdzcode</rename>  
1087 - <update>Y</update>  
1088 - </value>  
1089 - <value>  
1090 - <name>zdz_name</name>  
1091 - <rename>zdzname</rename>  
1092 - <update>Y</update>  
1093 - </value>  
1094 - <value>  
1095 - <name>ists</name>  
1096 - <rename>ists</rename>  
1097 - <update>Y</update>  
1098 - </value>  
1099 - <value>  
1100 - <name>line_version</name>  
1101 - <rename>version</rename>  
1102 - <update>Y</update>  
1103 - </value>  
1104 - </lookup>  
1105 - <cluster_schema/>  
1106 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1107 - <xloc>143</xloc>  
1108 - <yloc>860</yloc>  
1109 - <draw>Y</draw>  
1110 - </GUI>  
1111 - </step>  
1112 -  
1113 - <step>  
1114 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>  
1115 - <type>InsertUpdate</type>  
1116 - <description/>  
1117 - <distribute>Y</distribute>  
1118 - <custom_distribution/>  
1119 - <copies>1</copies>  
1120 - <partitioning>  
1121 - <method>none</method>  
1122 - <schema_name/>  
1123 - </partitioning>  
1124 - <connection>bus_control_variable</connection>  
1125 - <commit>100</commit>  
1126 - <update_bypassed>N</update_bypassed>  
1127 - <lookup>  
1128 - <schema/>  
1129 - <table>bsth_c_s_ttinfo_detail</table>  
1130 - <key>  
1131 - <name>xlid</name>  
1132 - <field>xl</field>  
1133 - <condition>&#x3d;</condition>  
1134 - <name2/>  
1135 - </key>  
1136 - <key>  
1137 - <name>ttid</name>  
1138 - <field>ttinfo</field>  
1139 - <condition>&#x3d;</condition>  
1140 - <name2/>  
1141 - </key>  
1142 - <key>  
1143 - <name>lpid</name>  
1144 - <field>lp</field>  
1145 - <condition>&#x3d;</condition>  
1146 - <name2/>  
1147 - </key>  
1148 - <key>  
1149 - <name>fcno</name>  
1150 - <field>fcno</field>  
1151 - <condition>&#x3d;</condition>  
1152 - <name2/>  
1153 - </key>  
1154 - <key>  
1155 - <name>bcs</name>  
1156 - <field>bcs</field>  
1157 - <condition>&#x3d;</condition>  
1158 - <name2/>  
1159 - </key>  
1160 - <value>  
1161 - <name>tcc</name>  
1162 - <rename>qdzid</rename>  
1163 - <update>Y</update>  
1164 - </value>  
1165 - <value>  
1166 - <name>zdz</name>  
1167 - <rename>zdzid</rename>  
1168 - <update>Y</update>  
1169 - </value>  
1170 - <value>  
1171 - <name>xl</name>  
1172 - <rename>xlid</rename>  
1173 - <update>Y</update>  
1174 - </value>  
1175 - <value>  
1176 - <name>ttinfo</name>  
1177 - <rename>ttid</rename>  
1178 - <update>Y</update>  
1179 - </value>  
1180 - <value>  
1181 - <name>xl_dir</name>  
1182 - <rename>sxx</rename>  
1183 - <update>Y</update>  
1184 - </value>  
1185 - <value>  
1186 - <name>lp</name>  
1187 - <rename>lpid</rename>  
1188 - <update>Y</update>  
1189 - </value>  
1190 - <value>  
1191 - <name>jhlc</name>  
1192 - <rename>out_mileage</rename>  
1193 - <update>Y</update>  
1194 - </value>  
1195 - <value>  
1196 - <name>fcsj</name>  
1197 - <rename>sendtime_calcu</rename>  
1198 - <update>Y</update>  
1199 - </value>  
1200 - <value>  
1201 - <name>bcsj</name>  
1202 - <rename>out_time</rename>  
1203 - <update>Y</update>  
1204 - </value>  
1205 - <value>  
1206 - <name>bcs</name>  
1207 - <rename>bcs</rename>  
1208 - <update>Y</update>  
1209 - </value>  
1210 - <value>  
1211 - <name>fcno</name>  
1212 - <rename>fcno</rename>  
1213 - <update>Y</update>  
1214 - </value>  
1215 - <value>  
1216 - <name>bc_type</name>  
1217 - <rename>bctype_code</rename>  
1218 - <update>Y</update>  
1219 - </value>  
1220 - <value>  
1221 - <name>isfb</name>  
1222 - <rename>isfb</rename>  
1223 - <update>Y</update>  
1224 - </value>  
1225 - <value>  
1226 - <name>qdz_code</name>  
1227 - <rename>qdzcode</rename>  
1228 - <update>Y</update>  
1229 - </value>  
1230 - <value>  
1231 - <name>qdz_name</name>  
1232 - <rename>tn</rename>  
1233 - <update>Y</update>  
1234 - </value>  
1235 - <value>  
1236 - <name>zdz_code</name>  
1237 - <rename>zdzcode</rename>  
1238 - <update>Y</update>  
1239 - </value>  
1240 - <value>  
1241 - <name>zdz_name</name>  
1242 - <rename>zdzname_</rename>  
1243 - <update>Y</update>  
1244 - </value>  
1245 - <value>  
1246 - <name>ists</name>  
1247 - <rename>ists</rename>  
1248 - <update>Y</update>  
1249 - </value>  
1250 - <value>  
1251 - <name>line_version</name>  
1252 - <rename>version</rename>  
1253 - <update>Y</update>  
1254 - </value>  
1255 - </lookup>  
1256 - <cluster_schema/>  
1257 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1258 - <xloc>340</xloc>  
1259 - <yloc>1087</yloc>  
1260 - <draw>Y</draw>  
1261 - </GUI>  
1262 - </step>  
1263 -  
1264 - <step>  
1265 - <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>  
1266 - <type>InsertUpdate</type>  
1267 - <description/>  
1268 - <distribute>Y</distribute>  
1269 - <custom_distribution/>  
1270 - <copies>1</copies>  
1271 - <partitioning>  
1272 - <method>none</method>  
1273 - <schema_name/>  
1274 - </partitioning>  
1275 - <connection>bus_control_variable</connection>  
1276 - <commit>100</commit>  
1277 - <update_bypassed>N</update_bypassed>  
1278 - <lookup>  
1279 - <schema/>  
1280 - <table>bsth_c_s_ttinfo_detail</table>  
1281 - <key>  
1282 - <name>xlid</name>  
1283 - <field>xl</field>  
1284 - <condition>&#x3d;</condition>  
1285 - <name2/>  
1286 - </key>  
1287 - <key>  
1288 - <name>ttid</name>  
1289 - <field>ttinfo</field>  
1290 - <condition>&#x3d;</condition>  
1291 - <name2/>  
1292 - </key>  
1293 - <key>  
1294 - <name>lpid</name>  
1295 - <field>lp</field>  
1296 - <condition>&#x3d;</condition>  
1297 - <name2/>  
1298 - </key>  
1299 - <key>  
1300 - <name>fcno</name>  
1301 - <field>fcno</field>  
1302 - <condition>&#x3d;</condition>  
1303 - <name2/>  
1304 - </key>  
1305 - <key>  
1306 - <name>bcs</name>  
1307 - <field>bcs</field>  
1308 - <condition>&#x3d;</condition>  
1309 - <name2/>  
1310 - </key>  
1311 - <value>  
1312 - <name>fcno</name>  
1313 - <rename>fcno</rename>  
1314 - <update>Y</update>  
1315 - </value>  
1316 - <value>  
1317 - <name>bcs</name>  
1318 - <rename>bcs</rename>  
1319 - <update>Y</update>  
1320 - </value>  
1321 - <value>  
1322 - <name>xl</name>  
1323 - <rename>xlid</rename>  
1324 - <update>Y</update>  
1325 - </value>  
1326 - <value>  
1327 - <name>ttinfo</name>  
1328 - <rename>ttid</rename>  
1329 - <update>Y</update>  
1330 - </value>  
1331 - <value>  
1332 - <name>lp</name>  
1333 - <rename>lpid</rename>  
1334 - <update>Y</update>  
1335 - </value>  
1336 - <value>  
1337 - <name>bc_type</name>  
1338 - <rename>bctype_code</rename>  
1339 - <update>Y</update>  
1340 - </value>  
1341 - <value>  
1342 - <name>bcsj</name>  
1343 - <rename>parade_time</rename>  
1344 - <update>Y</update>  
1345 - </value>  
1346 - <value>  
1347 - <name>jhlc</name>  
1348 - <rename>parade_mileage</rename>  
1349 - <update>Y</update>  
1350 - </value>  
1351 - <value>  
1352 - <name>fcsj</name>  
1353 - <rename>sendtime_calcu</rename>  
1354 - <update>Y</update>  
1355 - </value>  
1356 - <value>  
1357 - <name>xl_dir</name>  
1358 - <rename>sxx2</rename>  
1359 - <update>Y</update>  
1360 - </value>  
1361 - <value>  
1362 - <name>qdz</name>  
1363 - <rename>qdzid</rename>  
1364 - <update>Y</update>  
1365 - </value>  
1366 - <value>  
1367 - <name>tcc</name>  
1368 - <rename>zdzid</rename>  
1369 - <update>Y</update>  
1370 - </value>  
1371 - <value>  
1372 - <name>isfb</name>  
1373 - <rename>isfb</rename>  
1374 - <update>Y</update>  
1375 - </value>  
1376 - <value>  
1377 - <name>qdz_code</name>  
1378 - <rename>qdzcode</rename>  
1379 - <update>Y</update>  
1380 - </value>  
1381 - <value>  
1382 - <name>qdz_name</name>  
1383 - <rename>qname</rename>  
1384 - <update>Y</update>  
1385 - </value>  
1386 - <value>  
1387 - <name>zdz_code</name>  
1388 - <rename>zdzcode</rename>  
1389 - <update>Y</update>  
1390 - </value>  
1391 - <value>  
1392 - <name>zdz_name</name>  
1393 - <rename>tn</rename>  
1394 - <update>Y</update>  
1395 - </value>  
1396 - <value>  
1397 - <name>ists</name>  
1398 - <rename>ists</rename>  
1399 - <update>Y</update>  
1400 - </value>  
1401 - <value>  
1402 - <name>line_version</name>  
1403 - <rename>version</rename>  
1404 - <update>Y</update>  
1405 - </value>  
1406 - </lookup>  
1407 - <cluster_schema/>  
1408 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1409 - <xloc>845</xloc>  
1410 - <yloc>899</yloc>  
1411 - <draw>Y</draw>  
1412 - </GUI>  
1413 - </step>  
1414 -  
1415 - <step>  
1416 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>  
1417 - <type>ExcelInput</type>  
1418 - <description/>  
1419 - <distribute>N</distribute>  
1420 - <custom_distribution/>  
1421 - <copies>1</copies>  
1422 - <partitioning>  
1423 - <method>none</method>  
1424 - <schema_name/>  
1425 - </partitioning>  
1426 - <header>Y</header>  
1427 - <noempty>Y</noempty>  
1428 - <stoponempty>N</stoponempty>  
1429 - <filefield/>  
1430 - <sheetfield/>  
1431 - <sheetrownumfield/>  
1432 - <rownumfield/>  
1433 - <sheetfield/>  
1434 - <filefield/>  
1435 - <limit>0</limit>  
1436 - <encoding/>  
1437 - <add_to_result_filenames>Y</add_to_result_filenames>  
1438 - <accept_filenames>N</accept_filenames>  
1439 - <accept_field/>  
1440 - <accept_stepname/>  
1441 - <file>  
1442 - <name/>  
1443 - <filemask/>  
1444 - <exclude_filemask/>  
1445 - <file_required>N</file_required>  
1446 - <include_subfolders>N</include_subfolders>  
1447 - </file>  
1448 - <fields>  
1449 - </fields>  
1450 - <sheets>  
1451 - <sheet>  
1452 - <name/>  
1453 - <startrow>0</startrow>  
1454 - <startcol>0</startcol>  
1455 - </sheet>  
1456 - </sheets>  
1457 - <strict_types>N</strict_types>  
1458 - <error_ignored>N</error_ignored>  
1459 - <error_line_skipped>N</error_line_skipped>  
1460 - <bad_line_files_destination_directory/>  
1461 - <bad_line_files_extension>warning</bad_line_files_extension>  
1462 - <error_line_files_destination_directory/>  
1463 - <error_line_files_extension>error</error_line_files_extension>  
1464 - <line_number_files_destination_directory/>  
1465 - <line_number_files_extension>line</line_number_files_extension>  
1466 - <shortFileFieldName/>  
1467 - <pathFieldName/>  
1468 - <hiddenFieldName/>  
1469 - <lastModificationTimeFieldName/>  
1470 - <uriNameFieldName/>  
1471 - <rootUriNameFieldName/>  
1472 - <extensionFieldName/>  
1473 - <sizeFieldName/>  
1474 - <spreadsheet_type>JXL</spreadsheet_type>  
1475 - <cluster_schema/>  
1476 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1477 - <xloc>112</xloc>  
1478 - <yloc>44</yloc>  
1479 - <draw>Y</draw>  
1480 - </GUI>  
1481 - </step>  
1482 -  
1483 - <step>  
1484 - <name>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</name>  
1485 - <type>Update</type>  
1486 - <description/>  
1487 - <distribute>Y</distribute>  
1488 - <custom_distribution/>  
1489 - <copies>1</copies>  
1490 - <partitioning>  
1491 - <method>none</method>  
1492 - <schema_name/>  
1493 - </partitioning>  
1494 - <connection>bus_control_variable</connection>  
1495 - <skip_lookup>N</skip_lookup>  
1496 - <commit>100</commit>  
1497 - <use_batch>N</use_batch>  
1498 - <error_ignored>N</error_ignored>  
1499 - <ignore_flag_field/>  
1500 - <lookup>  
1501 - <schema/>  
1502 - <table>bsth_c_s_ttinfo</table>  
1503 - <key>  
1504 - <name>ttid</name>  
1505 - <field>id</field>  
1506 - <condition>&#x3d;</condition>  
1507 - <name2/>  
1508 - </key>  
1509 - <value>  
1510 - <name>line_version</name>  
1511 - <rename>version</rename>  
1512 - </value>  
1513 - </lookup>  
1514 - <cluster_schema/>  
1515 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1516 - <xloc>863</xloc>  
1517 - <yloc>338</yloc>  
1518 - <draw>Y</draw>  
1519 - </GUI>  
1520 - </step>  
1521 -  
1522 - <step>  
1523 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>  
1524 - <type>DBLookup</type>  
1525 - <description/>  
1526 - <distribute>Y</distribute>  
1527 - <custom_distribution/>  
1528 - <copies>1</copies>  
1529 - <partitioning>  
1530 - <method>none</method>  
1531 - <schema_name/>  
1532 - </partitioning>  
1533 - <connection>bus_control_variable</connection>  
1534 - <cache>N</cache>  
1535 - <cache_load_all>N</cache_load_all>  
1536 - <cache_size>0</cache_size>  
1537 - <lookup>  
1538 - <schema/>  
1539 - <table>bsth_c_car_park</table>  
1540 - <orderby/>  
1541 - <fail_on_multiple>N</fail_on_multiple>  
1542 - <eat_row_on_failure>N</eat_row_on_failure>  
1543 - <key>  
1544 - <name>tccname_</name>  
1545 - <field>park_name</field>  
1546 - <condition>&#x3d;</condition>  
1547 - <name2/>  
1548 - </key>  
1549 - <value>  
1550 - <name>id</name>  
1551 - <rename>qdzid</rename>  
1552 - <default/>  
1553 - <type>Integer</type>  
1554 - </value>  
1555 - <value>  
1556 - <name>park_code</name>  
1557 - <rename>qdzcode</rename>  
1558 - <default/>  
1559 - <type>String</type>  
1560 - </value>  
1561 - <value>  
1562 - <name>park_name</name>  
1563 - <rename>tn</rename>  
1564 - <default/>  
1565 - <type>String</type>  
1566 - </value>  
1567 - </lookup>  
1568 - <cluster_schema/>  
1569 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1570 - <xloc>755</xloc>  
1571 - <yloc>504</yloc>  
1572 - <draw>Y</draw>  
1573 - </GUI>  
1574 - </step>  
1575 -  
1576 - <step>  
1577 - <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>  
1578 - <type>DBLookup</type>  
1579 - <description/>  
1580 - <distribute>Y</distribute>  
1581 - <custom_distribution/>  
1582 - <copies>1</copies>  
1583 - <partitioning>  
1584 - <method>none</method>  
1585 - <schema_name/>  
1586 - </partitioning>  
1587 - <connection>bus_control_variable</connection>  
1588 - <cache>N</cache>  
1589 - <cache_load_all>N</cache_load_all>  
1590 - <cache_size>0</cache_size>  
1591 - <lookup>  
1592 - <schema/>  
1593 - <table>bsth_c_car_park</table>  
1594 - <orderby/>  
1595 - <fail_on_multiple>N</fail_on_multiple>  
1596 - <eat_row_on_failure>N</eat_row_on_failure>  
1597 - <key>  
1598 - <name>tccname_</name>  
1599 - <field>park_name</field>  
1600 - <condition>&#x3d;</condition>  
1601 - <name2/>  
1602 - </key>  
1603 - <value>  
1604 - <name>id</name>  
1605 - <rename>zdzid</rename>  
1606 - <default/>  
1607 - <type>Integer</type>  
1608 - </value>  
1609 - <value>  
1610 - <name>park_code</name>  
1611 - <rename>zdzcode</rename>  
1612 - <default/>  
1613 - <type>String</type>  
1614 - </value>  
1615 - <value>  
1616 - <name>park_name</name>  
1617 - <rename>tn</rename>  
1618 - <default/>  
1619 - <type>String</type>  
1620 - </value>  
1621 - </lookup>  
1622 - <cluster_schema/>  
1623 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1624 - <xloc>887</xloc>  
1625 - <yloc>608</yloc>  
1626 - <draw>Y</draw>  
1627 - </GUI>  
1628 - </step>  
1629 -  
1630 - <step>  
1631 - <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
1632 - <type>DBLookup</type>  
1633 - <description/>  
1634 - <distribute>Y</distribute>  
1635 - <custom_distribution/>  
1636 - <copies>1</copies>  
1637 - <partitioning>  
1638 - <method>none</method>  
1639 - <schema_name/>  
1640 - </partitioning>  
1641 - <connection>bus_control_variable</connection>  
1642 - <cache>N</cache>  
1643 - <cache_load_all>N</cache_load_all>  
1644 - <cache_size>0</cache_size>  
1645 - <lookup>  
1646 - <schema/>  
1647 - <table>bsth_c_ls_stationroute</table>  
1648 - <orderby/>  
1649 - <fail_on_multiple>N</fail_on_multiple>  
1650 - <eat_row_on_failure>N</eat_row_on_failure>  
1651 - <key>  
1652 - <name>xlid</name>  
1653 - <field>line</field>  
1654 - <condition>&#x3d;</condition>  
1655 - <name2/>  
1656 - </key>  
1657 - <key>  
1658 - <name>version</name>  
1659 - <field>versions</field>  
1660 - <condition>&#x3d;</condition>  
1661 - <name2/>  
1662 - </key>  
1663 - <key>  
1664 - <name>zdzname</name>  
1665 - <field>station_name</field>  
1666 - <condition>LIKE</condition>  
1667 - <name2/>  
1668 - </key>  
1669 - <key>  
1670 - <name>endZdtype</name>  
1671 - <field>station_mark</field>  
1672 - <condition>&#x3d;</condition>  
1673 - <name2/>  
1674 - </key>  
1675 - <key>  
1676 - <name>destory</name>  
1677 - <field>destroy</field>  
1678 - <condition>&#x3d;</condition>  
1679 - <name2/>  
1680 - </key>  
1681 - <value>  
1682 - <name>station</name>  
1683 - <rename>zdzid</rename>  
1684 - <default/>  
1685 - <type>Integer</type>  
1686 - </value>  
1687 - <value>  
1688 - <name>directions</name>  
1689 - <rename>sxx</rename>  
1690 - <default/>  
1691 - <type>Integer</type>  
1692 - </value>  
1693 - <value>  
1694 - <name>station_code</name>  
1695 - <rename>zdzcode</rename>  
1696 - <default/>  
1697 - <type>String</type>  
1698 - </value>  
1699 - <value>  
1700 - <name>station_name</name>  
1701 - <rename>zdzname_</rename>  
1702 - <default/>  
1703 - <type>String</type>  
1704 - </value>  
1705 - </lookup>  
1706 - <cluster_schema/>  
1707 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1708 - <xloc>329</xloc>  
1709 - <yloc>505</yloc>  
1710 - <draw>Y</draw>  
1711 - </GUI>  
1712 - </step>  
1713 -  
1714 - <step>  
1715 - <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1716 - <type>DBLookup</type>  
1717 - <description/>  
1718 - <distribute>Y</distribute>  
1719 - <custom_distribution/>  
1720 - <copies>1</copies>  
1721 - <partitioning>  
1722 - <method>none</method>  
1723 - <schema_name/>  
1724 - </partitioning>  
1725 - <connection>bus_control_variable</connection>  
1726 - <cache>N</cache>  
1727 - <cache_load_all>N</cache_load_all>  
1728 - <cache_size>0</cache_size>  
1729 - <lookup>  
1730 - <schema/>  
1731 - <table>bsth_c_line_information</table>  
1732 - <orderby/>  
1733 - <fail_on_multiple>N</fail_on_multiple>  
1734 - <eat_row_on_failure>N</eat_row_on_failure>  
1735 - <key>  
1736 - <name>xlid</name>  
1737 - <field>line</field>  
1738 - <condition>&#x3d;</condition>  
1739 - <name2/>  
1740 - </key>  
1741 - <value>  
1742 - <name>up_mileage</name>  
1743 - <rename>up_mileage</rename>  
1744 - <default/>  
1745 - <type>Number</type>  
1746 - </value>  
1747 - <value>  
1748 - <name>down_mileage</name>  
1749 - <rename>down_mileage</rename>  
1750 - <default/>  
1751 - <type>Number</type>  
1752 - </value>  
1753 - <value>  
1754 - <name>up_travel_time</name>  
1755 - <rename>up_travel_time</rename>  
1756 - <default/>  
1757 - <type>Number</type>  
1758 - </value>  
1759 - <value>  
1760 - <name>down_travel_time</name>  
1761 - <rename>down_travel_time</rename>  
1762 - <default/>  
1763 - <type>Number</type>  
1764 - </value>  
1765 - <value>  
1766 - <name>early_start_time</name>  
1767 - <rename>early_start_time</rename>  
1768 - <default/>  
1769 - <type>String</type>  
1770 - </value>  
1771 - <value>  
1772 - <name>early_end_time</name>  
1773 - <rename>early_end_time</rename>  
1774 - <default/>  
1775 - <type>String</type>  
1776 - </value>  
1777 - <value>  
1778 - <name>early_up_time</name>  
1779 - <rename>early_up_time</rename>  
1780 - <default/>  
1781 - <type>Number</type>  
1782 - </value>  
1783 - <value>  
1784 - <name>early_down_time</name>  
1785 - <rename>early_down_time</rename>  
1786 - <default/>  
1787 - <type>Number</type>  
1788 - </value>  
1789 - <value>  
1790 - <name>late_start_time</name>  
1791 - <rename>late_start_time</rename>  
1792 - <default/>  
1793 - <type>String</type>  
1794 - </value>  
1795 - <value>  
1796 - <name>late_end_time</name>  
1797 - <rename>late_end_time</rename>  
1798 - <default/>  
1799 - <type>String</type>  
1800 - </value>  
1801 - <value>  
1802 - <name>late_up_time</name>  
1803 - <rename>late_up_time</rename>  
1804 - <default/>  
1805 - <type>Number</type>  
1806 - </value>  
1807 - <value>  
1808 - <name>late_down_time</name>  
1809 - <rename>late_down_time</rename>  
1810 - <default/>  
1811 - <type>Number</type>  
1812 - </value>  
1813 - </lookup>  
1814 - <cluster_schema/>  
1815 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1816 - <xloc>149</xloc>  
1817 - <yloc>581</yloc>  
1818 - <draw>Y</draw>  
1819 - </GUI>  
1820 - </step>  
1821 -  
1822 - <step>  
1823 - <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>  
1824 - <type>DBLookup</type>  
1825 - <description/>  
1826 - <distribute>Y</distribute>  
1827 - <custom_distribution/>  
1828 - <copies>1</copies>  
1829 - <partitioning>  
1830 - <method>none</method>  
1831 - <schema_name/>  
1832 - </partitioning>  
1833 - <connection>bus_control_variable</connection>  
1834 - <cache>N</cache>  
1835 - <cache_load_all>N</cache_load_all>  
1836 - <cache_size>0</cache_size>  
1837 - <lookup>  
1838 - <schema/>  
1839 - <table>bsth_c_s_ttinfo</table>  
1840 - <orderby/>  
1841 - <fail_on_multiple>N</fail_on_multiple>  
1842 - <eat_row_on_failure>N</eat_row_on_failure>  
1843 - <key>  
1844 - <name>xlid</name>  
1845 - <field>xl</field>  
1846 - <condition>&#x3d;</condition>  
1847 - <name2/>  
1848 - </key>  
1849 - <key>  
1850 - <name>ttinfoname_</name>  
1851 - <field>name</field>  
1852 - <condition>&#x3d;</condition>  
1853 - <name2/>  
1854 - </key>  
1855 - <key>  
1856 - <name>iscanceled</name>  
1857 - <field>is_cancel</field>  
1858 - <condition>&#x3d;</condition>  
1859 - <name2/>  
1860 - </key>  
1861 - <value>  
1862 - <name>id</name>  
1863 - <rename>ttid</rename>  
1864 - <default/>  
1865 - <type>Integer</type>  
1866 - </value>  
1867 - </lookup>  
1868 - <cluster_schema/>  
1869 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1870 - <xloc>1011</xloc>  
1871 - <yloc>134</yloc>  
1872 - <draw>Y</draw>  
1873 - </GUI>  
1874 - </step>  
1875 -  
1876 - <step>  
1877 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>  
1878 - <type>DBLookup</type>  
1879 - <description/>  
1880 - <distribute>Y</distribute>  
1881 - <custom_distribution/>  
1882 - <copies>1</copies>  
1883 - <partitioning>  
1884 - <method>none</method>  
1885 - <schema_name/>  
1886 - </partitioning>  
1887 - <connection>bus_control_variable</connection>  
1888 - <cache>N</cache>  
1889 - <cache_load_all>N</cache_load_all>  
1890 - <cache_size>0</cache_size>  
1891 - <lookup>  
1892 - <schema/>  
1893 - <table>bsth_c_line</table>  
1894 - <orderby/>  
1895 - <fail_on_multiple>N</fail_on_multiple>  
1896 - <eat_row_on_failure>N</eat_row_on_failure>  
1897 - <key>  
1898 - <name>xlname_</name>  
1899 - <field>name</field>  
1900 - <condition>&#x3d;</condition>  
1901 - <name2/>  
1902 - </key>  
1903 - <key>  
1904 - <name>iscanceled</name>  
1905 - <field>destroy</field>  
1906 - <condition>&#x3d;</condition>  
1907 - <name2/>  
1908 - </key>  
1909 - <value>  
1910 - <name>id</name>  
1911 - <rename>xlid</rename>  
1912 - <default/>  
1913 - <type>Integer</type>  
1914 - </value>  
1915 - </lookup>  
1916 - <cluster_schema/>  
1917 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1918 - <xloc>1007</xloc>  
1919 - <yloc>43</yloc>  
1920 - <draw>Y</draw>  
1921 - </GUI>  
1922 - </step>  
1923 -  
1924 - <step>  
1925 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1926 - <type>DBLookup</type>  
1927 - <description/>  
1928 - <distribute>Y</distribute>  
1929 - <custom_distribution/>  
1930 - <copies>1</copies>  
1931 - <partitioning>  
1932 - <method>none</method>  
1933 - <schema_name/>  
1934 - </partitioning>  
1935 - <connection>bus_control_variable</connection>  
1936 - <cache>N</cache>  
1937 - <cache_load_all>N</cache_load_all>  
1938 - <cache_size>0</cache_size>  
1939 - <lookup>  
1940 - <schema/>  
1941 - <table>bsth_c_line_information</table>  
1942 - <orderby/>  
1943 - <fail_on_multiple>N</fail_on_multiple>  
1944 - <eat_row_on_failure>N</eat_row_on_failure>  
1945 - <key>  
1946 - <name>xlid</name>  
1947 - <field>line</field>  
1948 - <condition>&#x3d;</condition>  
1949 - <name2/>  
1950 - </key>  
1951 - <value>  
1952 - <name>up_out_timer</name>  
1953 - <rename>up_out_timer</rename>  
1954 - <default/>  
1955 - <type>Number</type>  
1956 - </value>  
1957 - <value>  
1958 - <name>up_out_mileage</name>  
1959 - <rename>up_out_mileage</rename>  
1960 - <default/>  
1961 - <type>Number</type>  
1962 - </value>  
1963 - <value>  
1964 - <name>down_out_timer</name>  
1965 - <rename>down_out_timer</rename>  
1966 - <default/>  
1967 - <type>Number</type>  
1968 - </value>  
1969 - <value>  
1970 - <name>down_out_mileage</name>  
1971 - <rename>down_out_mileage</rename>  
1972 - <default/>  
1973 - <type>Number</type>  
1974 - </value>  
1975 - </lookup>  
1976 - <cluster_schema/>  
1977 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1978 - <xloc>335</xloc>  
1979 - <yloc>763</yloc>  
1980 - <draw>Y</draw>  
1981 - </GUI>  
1982 - </step>  
1983 -  
1984 - <step>  
1985 - <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>  
1986 - <type>DBLookup</type>  
1987 - <description/>  
1988 - <distribute>Y</distribute>  
1989 - <custom_distribution/>  
1990 - <copies>1</copies>  
1991 - <partitioning>  
1992 - <method>none</method>  
1993 - <schema_name/>  
1994 - </partitioning>  
1995 - <connection>bus_control_variable</connection>  
1996 - <cache>N</cache>  
1997 - <cache_load_all>N</cache_load_all>  
1998 - <cache_size>0</cache_size>  
1999 - <lookup>  
2000 - <schema/>  
2001 - <table>bsth_c_line_information</table>  
2002 - <orderby/>  
2003 - <fail_on_multiple>N</fail_on_multiple>  
2004 - <eat_row_on_failure>N</eat_row_on_failure>  
2005 - <key>  
2006 - <name>xlid</name>  
2007 - <field>line</field>  
2008 - <condition>&#x3d;</condition>  
2009 - <name2/>  
2010 - </key>  
2011 - <value>  
2012 - <name>up_in_mileage</name>  
2013 - <rename>up_in_mileage</rename>  
2014 - <default/>  
2015 - <type>Number</type>  
2016 - </value>  
2017 - <value>  
2018 - <name>up_in_timer</name>  
2019 - <rename>up_in_timer</rename>  
2020 - <default/>  
2021 - <type>Number</type>  
2022 - </value>  
2023 - <value>  
2024 - <name>down_in_mileage</name>  
2025 - <rename>down_in_mileage</rename>  
2026 - <default/>  
2027 - <type>Number</type>  
2028 - </value>  
2029 - <value>  
2030 - <name>down_in_timer</name>  
2031 - <rename>down_in_timer</rename>  
2032 - <default/>  
2033 - <type>Number</type>  
2034 - </value>  
2035 - </lookup>  
2036 - <cluster_schema/>  
2037 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2038 - <xloc>553</xloc>  
2039 - <yloc>1004</yloc>  
2040 - <draw>Y</draw>  
2041 - </GUI>  
2042 - </step>  
2043 -  
2044 - <step>  
2045 - <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>  
2046 - <type>DBLookup</type>  
2047 - <description/>  
2048 - <distribute>Y</distribute>  
2049 - <custom_distribution/>  
2050 - <copies>1</copies>  
2051 - <partitioning>  
2052 - <method>none</method>  
2053 - <schema_name/>  
2054 - </partitioning>  
2055 - <connection>bus_control_variable</connection>  
2056 - <cache>N</cache>  
2057 - <cache_load_all>N</cache_load_all>  
2058 - <cache_size>0</cache_size>  
2059 - <lookup>  
2060 - <schema/>  
2061 - <table>bsth_c_ls_stationroute</table>  
2062 - <orderby/>  
2063 - <fail_on_multiple>N</fail_on_multiple>  
2064 - <eat_row_on_failure>N</eat_row_on_failure>  
2065 - <key>  
2066 - <name>xlid</name>  
2067 - <field>line</field>  
2068 - <condition>&#x3d;</condition>  
2069 - <name2/>  
2070 - </key>  
2071 - <key>  
2072 - <name>version</name>  
2073 - <field>versions</field>  
2074 - <condition>&#x3d;</condition>  
2075 - <name2/>  
2076 - </key>  
2077 - <key>  
2078 - <name>sxx</name>  
2079 - <field>directions</field>  
2080 - <condition>&#x3d;</condition>  
2081 - <name2/>  
2082 - </key>  
2083 - <key>  
2084 - <name>endZdtype</name>  
2085 - <field>station_mark</field>  
2086 - <condition>&#x3d;</condition>  
2087 - <name2/>  
2088 - </key>  
2089 - <key>  
2090 - <name>destory</name>  
2091 - <field>destroy</field>  
2092 - <condition>&#x3d;</condition>  
2093 - <name2/>  
2094 - </key>  
2095 - <value>  
2096 - <name>station_name</name>  
2097 - <rename>zdzname</rename>  
2098 - <default/>  
2099 - <type>String</type>  
2100 - </value>  
2101 - <value>  
2102 - <name>station</name>  
2103 - <rename>zdzid</rename>  
2104 - <default/>  
2105 - <type>Integer</type>  
2106 - </value>  
2107 - <value>  
2108 - <name>station_code</name>  
2109 - <rename>zdzcode</rename>  
2110 - <default/>  
2111 - <type>String</type>  
2112 - </value>  
2113 - </lookup>  
2114 - <cluster_schema/>  
2115 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2116 - <xloc>280</xloc>  
2117 - <yloc>404</yloc>  
2118 - <draw>Y</draw>  
2119 - </GUI>  
2120 - </step>  
2121 -  
2122 - <step>  
2123 - <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
2124 - <type>DBLookup</type>  
2125 - <description/>  
2126 - <distribute>Y</distribute>  
2127 - <custom_distribution/>  
2128 - <copies>1</copies>  
2129 - <partitioning>  
2130 - <method>none</method>  
2131 - <schema_name/>  
2132 - </partitioning>  
2133 - <connection>bus_control_variable</connection>  
2134 - <cache>N</cache>  
2135 - <cache_load_all>N</cache_load_all>  
2136 - <cache_size>0</cache_size>  
2137 - <lookup>  
2138 - <schema/>  
2139 - <table>bsth_c_ls_stationroute</table>  
2140 - <orderby/>  
2141 - <fail_on_multiple>N</fail_on_multiple>  
2142 - <eat_row_on_failure>N</eat_row_on_failure>  
2143 - <key>  
2144 - <name>xlid</name>  
2145 - <field>line</field>  
2146 - <condition>&#x3d;</condition>  
2147 - <name2/>  
2148 - </key>  
2149 - <key>  
2150 - <name>version</name>  
2151 - <field>versions</field>  
2152 - <condition>&#x3d;</condition>  
2153 - <name2/>  
2154 - </key>  
2155 - <key>  
2156 - <name>qdzname</name>  
2157 - <field>station_name</field>  
2158 - <condition>LIKE</condition>  
2159 - <name2/>  
2160 - </key>  
2161 - <key>  
2162 - <name>sendZdtype</name>  
2163 - <field>station_mark</field>  
2164 - <condition>&#x3d;</condition>  
2165 - <name2/>  
2166 - </key>  
2167 - <key>  
2168 - <name>destory</name>  
2169 - <field>destroy</field>  
2170 - <condition>&#x3d;</condition>  
2171 - <name2/>  
2172 - </key>  
2173 - <value>  
2174 - <name>station</name>  
2175 - <rename>qdzid</rename>  
2176 - <default/>  
2177 - <type>Integer</type>  
2178 - </value>  
2179 - <value>  
2180 - <name>directions</name>  
2181 - <rename>sxx</rename>  
2182 - <default/>  
2183 - <type>Integer</type>  
2184 - </value>  
2185 - <value>  
2186 - <name>station_code</name>  
2187 - <rename>qdzcode</rename>  
2188 - <default/>  
2189 - <type>String</type>  
2190 - </value>  
2191 - <value>  
2192 - <name>station_name</name>  
2193 - <rename>qdzname_</rename>  
2194 - <default/>  
2195 - <type>String</type>  
2196 - </value>  
2197 - </lookup>  
2198 - <cluster_schema/>  
2199 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2200 - <xloc>430</xloc>  
2201 - <yloc>403</yloc>  
2202 - <draw>Y</draw>  
2203 - </GUI>  
2204 - </step>  
2205 -  
2206 - <step>  
2207 - <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>  
2208 - <type>DBLookup</type>  
2209 - <description/>  
2210 - <distribute>Y</distribute>  
2211 - <custom_distribution/>  
2212 - <copies>1</copies>  
2213 - <partitioning>  
2214 - <method>none</method>  
2215 - <schema_name/>  
2216 - </partitioning>  
2217 - <connection>bus_control_variable</connection>  
2218 - <cache>N</cache>  
2219 - <cache_load_all>N</cache_load_all>  
2220 - <cache_size>0</cache_size>  
2221 - <lookup>  
2222 - <schema/>  
2223 - <table>bsth_c_s_gbi</table>  
2224 - <orderby/>  
2225 - <fail_on_multiple>N</fail_on_multiple>  
2226 - <eat_row_on_failure>N</eat_row_on_failure>  
2227 - <key>  
2228 - <name>xlid</name>  
2229 - <field>xl</field>  
2230 - <condition>&#x3d;</condition>  
2231 - <name2/>  
2232 - </key>  
2233 - <key>  
2234 - <name>lp</name>  
2235 - <field>lp_name</field>  
2236 - <condition>&#x3d;</condition>  
2237 - <name2/>  
2238 - </key>  
2239 - <key>  
2240 - <name>iscanceled</name>  
2241 - <field>is_cancel</field>  
2242 - <condition>&#x3d;</condition>  
2243 - <name2/>  
2244 - </key>  
2245 - <value>  
2246 - <name>id</name>  
2247 - <rename>lpid</rename>  
2248 - <default/>  
2249 - <type>Integer</type>  
2250 - </value>  
2251 - </lookup>  
2252 - <cluster_schema/>  
2253 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2254 - <xloc>1013</xloc>  
2255 - <yloc>221</yloc>  
2256 - <draw>Y</draw>  
2257 - </GUI>  
2258 - </step>  
2259 -  
2260 - <step>  
2261 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>  
2262 - <type>DBLookup</type>  
2263 - <description/>  
2264 - <distribute>Y</distribute>  
2265 - <custom_distribution/>  
2266 - <copies>1</copies>  
2267 - <partitioning>  
2268 - <method>none</method>  
2269 - <schema_name/>  
2270 - </partitioning>  
2271 - <connection>bus_control_variable</connection>  
2272 - <cache>N</cache>  
2273 - <cache_load_all>N</cache_load_all>  
2274 - <cache_size>0</cache_size>  
2275 - <lookup>  
2276 - <schema/>  
2277 - <table>bsth_c_ls_stationroute</table>  
2278 - <orderby/>  
2279 - <fail_on_multiple>N</fail_on_multiple>  
2280 - <eat_row_on_failure>N</eat_row_on_failure>  
2281 - <key>  
2282 - <name>xlid</name>  
2283 - <field>line</field>  
2284 - <condition>&#x3d;</condition>  
2285 - <name2/>  
2286 - </key>  
2287 - <key>  
2288 - <name>version</name>  
2289 - <field>versions</field>  
2290 - <condition>&#x3d;</condition>  
2291 - <name2/>  
2292 - </key>  
2293 - <key>  
2294 - <name>startZdtype_calcu</name>  
2295 - <field>station_mark</field>  
2296 - <condition>&#x3d;</condition>  
2297 - <name2/>  
2298 - </key>  
2299 - <key>  
2300 - <name>qdzname_calcu</name>  
2301 - <field>station_name</field>  
2302 - <condition>LIKE</condition>  
2303 - <name2/>  
2304 - </key>  
2305 - <key>  
2306 - <name>destory</name>  
2307 - <field>destroy</field>  
2308 - <condition>&#x3d;</condition>  
2309 - <name2/>  
2310 - </key>  
2311 - <value>  
2312 - <name>directions</name>  
2313 - <rename>sxx</rename>  
2314 - <default/>  
2315 - <type>String</type>  
2316 - </value>  
2317 - </lookup>  
2318 - <cluster_schema/>  
2319 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2320 - <xloc>548</xloc>  
2321 - <yloc>610</yloc>  
2322 - <draw>Y</draw>  
2323 - </GUI>  
2324 - </step>  
2325 -  
2326 - <step>  
2327 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>  
2328 - <type>DBLookup</type>  
2329 - <description/>  
2330 - <distribute>Y</distribute>  
2331 - <custom_distribution/>  
2332 - <copies>1</copies>  
2333 - <partitioning>  
2334 - <method>none</method>  
2335 - <schema_name/>  
2336 - </partitioning>  
2337 - <connection>bus_control_variable</connection>  
2338 - <cache>N</cache>  
2339 - <cache_load_all>Y</cache_load_all>  
2340 - <cache_size>0</cache_size>  
2341 - <lookup>  
2342 - <schema/>  
2343 - <table>bsth_c_ls_stationroute</table>  
2344 - <orderby/>  
2345 - <fail_on_multiple>N</fail_on_multiple>  
2346 - <eat_row_on_failure>N</eat_row_on_failure>  
2347 - <key>  
2348 - <name>xlid</name>  
2349 - <field>line</field>  
2350 - <condition>&#x3d;</condition>  
2351 - <name2/>  
2352 - </key>  
2353 - <key>  
2354 - <name>version</name>  
2355 - <field>versions</field>  
2356 - <condition>&#x3d;</condition>  
2357 - <name2/>  
2358 - </key>  
2359 - <key>  
2360 - <name>endZdtype_calcu</name>  
2361 - <field>station_mark</field>  
2362 - <condition>&#x3d;</condition>  
2363 - <name2/>  
2364 - </key>  
2365 - <key>  
2366 - <name>sxx</name>  
2367 - <field>directions</field>  
2368 - <condition>&#x3d;</condition>  
2369 - <name2/>  
2370 - </key>  
2371 - <key>  
2372 - <name>destory</name>  
2373 - <field>destroy</field>  
2374 - <condition>&#x3d;</condition>  
2375 - <name2/>  
2376 - </key>  
2377 - <value>  
2378 - <name>station_name</name>  
2379 - <rename>zdzname_calcu</rename>  
2380 - <default/>  
2381 - <type>Integer</type>  
2382 - </value>  
2383 - </lookup>  
2384 - <cluster_schema/>  
2385 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2386 - <xloc>550</xloc>  
2387 - <yloc>701</yloc>  
2388 - <draw>Y</draw>  
2389 - </GUI>  
2390 - </step>  
2391 -  
2392 - <step>  
2393 - <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>  
2394 - <type>DBLookup</type>  
2395 - <description/>  
2396 - <distribute>Y</distribute>  
2397 - <custom_distribution/>  
2398 - <copies>1</copies>  
2399 - <partitioning>  
2400 - <method>none</method>  
2401 - <schema_name/>  
2402 - </partitioning>  
2403 - <connection>bus_control_variable</connection>  
2404 - <cache>N</cache>  
2405 - <cache_load_all>N</cache_load_all>  
2406 - <cache_size>0</cache_size>  
2407 - <lookup>  
2408 - <schema/>  
2409 - <table>bsth_c_ls_stationroute</table>  
2410 - <orderby/>  
2411 - <fail_on_multiple>N</fail_on_multiple>  
2412 - <eat_row_on_failure>N</eat_row_on_failure>  
2413 - <key>  
2414 - <name>xlid</name>  
2415 - <field>line</field>  
2416 - <condition>&#x3d;</condition>  
2417 - <name2/>  
2418 - </key>  
2419 - <key>  
2420 - <name>version</name>  
2421 - <field>versions</field>  
2422 - <condition>&#x3d;</condition>  
2423 - <name2/>  
2424 - </key>  
2425 - <key>  
2426 - <name>zdzname_calcu</name>  
2427 - <field>station_name</field>  
2428 - <condition>&#x3d;</condition>  
2429 - <name2/>  
2430 - </key>  
2431 - <key>  
2432 - <name>startZdtype_calcu</name>  
2433 - <field>station_mark</field>  
2434 - <condition>&#x3d;</condition>  
2435 - <name2/>  
2436 - </key>  
2437 - <key>  
2438 - <name>destory</name>  
2439 - <field>destroy</field>  
2440 - <condition>&#x3d;</condition>  
2441 - <name2/>  
2442 - </key>  
2443 - <value>  
2444 - <name>directions</name>  
2445 - <rename>sxx2</rename>  
2446 - <default/>  
2447 - <type>Integer</type>  
2448 - </value>  
2449 - <value>  
2450 - <name>station</name>  
2451 - <rename>qdzid</rename>  
2452 - <default/>  
2453 - <type>Integer</type>  
2454 - </value>  
2455 - <value>  
2456 - <name>station_code</name>  
2457 - <rename>qdzcode</rename>  
2458 - <default/>  
2459 - <type>String</type>  
2460 - </value>  
2461 - <value>  
2462 - <name>station_name</name>  
2463 - <rename>qname</rename>  
2464 - <default/>  
2465 - <type>String</type>  
2466 - </value>  
2467 - </lookup>  
2468 - <cluster_schema/>  
2469 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2470 - <xloc>551</xloc>  
2471 - <yloc>782</yloc>  
2472 - <draw>Y</draw>  
2473 - </GUI>  
2474 - </step>  
2475 -  
2476 - <step>  
2477 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>  
2478 - <type>ScriptValueMod</type>  
2479 - <description/>  
2480 - <distribute>Y</distribute>  
2481 - <custom_distribution/>  
2482 - <copies>1</copies>  
2483 - <partitioning>  
2484 - <method>none</method>  
2485 - <schema_name/>  
2486 - </partitioning>  
2487 - <compatible>N</compatible>  
2488 - <optimizationLevel>9</optimizationLevel>  
2489 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
2490 - <jsScript_name>Script 1</jsScript_name>  
2491 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>  
2492 - </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>  
2493 - <rename>sendZdtype</rename>  
2494 - <type>String</type>  
2495 - <length>-1</length>  
2496 - <precision>-1</precision>  
2497 - <replace>N</replace>  
2498 - </field> <field> <name>endZdtype</name>  
2499 - <rename>endZdtype</rename>  
2500 - <type>String</type>  
2501 - <length>-1</length>  
2502 - <precision>-1</precision>  
2503 - <replace>N</replace>  
2504 - </field> <field> <name>destory</name>  
2505 - <rename>destory</rename>  
2506 - <type>Integer</type>  
2507 - <length>-1</length>  
2508 - <precision>-1</precision>  
2509 - <replace>N</replace>  
2510 - </field> </fields> <cluster_schema/>  
2511 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2512 - <xloc>588</xloc>  
2513 - <yloc>403</yloc>  
2514 - <draw>Y</draw>  
2515 - </GUI>  
2516 - </step>  
2517 -  
2518 - <step>  
2519 - <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
2520 - <type>Dummy</type>  
2521 - <description/>  
2522 - <distribute>Y</distribute>  
2523 - <custom_distribution/>  
2524 - <copies>1</copies>  
2525 - <partitioning>  
2526 - <method>none</method>  
2527 - <schema_name/>  
2528 - </partitioning>  
2529 - <cluster_schema/>  
2530 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2531 - <xloc>725</xloc>  
2532 - <yloc>404</yloc>  
2533 - <draw>Y</draw>  
2534 - </GUI>  
2535 - </step>  
2536 -  
2537 - <step>  
2538 - <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>  
2539 - <type>GroupBy</type>  
2540 - <description/>  
2541 - <distribute>Y</distribute>  
2542 - <custom_distribution/>  
2543 - <copies>1</copies>  
2544 - <partitioning>  
2545 - <method>none</method>  
2546 - <schema_name/>  
2547 - </partitioning>  
2548 - <all_rows>Y</all_rows>  
2549 - <ignore_aggregate>N</ignore_aggregate>  
2550 - <field_ignore/>  
2551 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2552 - <prefix>grp</prefix>  
2553 - <add_linenr>Y</add_linenr>  
2554 - <linenr_fieldname>fcno</linenr_fieldname>  
2555 - <give_back_row>N</give_back_row>  
2556 - <group>  
2557 - <field>  
2558 - <name>lp</name>  
2559 - </field>  
2560 - </group>  
2561 - <fields>  
2562 - </fields>  
2563 - <cluster_schema/>  
2564 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2565 - <xloc>442</xloc>  
2566 - <yloc>44</yloc>  
2567 - <draw>Y</draw>  
2568 - </GUI>  
2569 - </step>  
2570 -  
2571 - <step>  
2572 - <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>  
2573 - <type>GroupBy</type>  
2574 - <description/>  
2575 - <distribute>Y</distribute>  
2576 - <custom_distribution/>  
2577 - <copies>1</copies>  
2578 - <partitioning>  
2579 - <method>none</method>  
2580 - <schema_name/>  
2581 - </partitioning>  
2582 - <all_rows>Y</all_rows>  
2583 - <ignore_aggregate>N</ignore_aggregate>  
2584 - <field_ignore/>  
2585 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
2586 - <prefix>grp</prefix>  
2587 - <add_linenr>Y</add_linenr>  
2588 - <linenr_fieldname>bcs</linenr_fieldname>  
2589 - <give_back_row>N</give_back_row>  
2590 - <group>  
2591 - </group>  
2592 - <fields>  
2593 - </fields>  
2594 - <cluster_schema/>  
2595 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2596 - <xloc>692</xloc>  
2597 - <yloc>44</yloc>  
2598 - <draw>Y</draw>  
2599 - </GUI>  
2600 - </step>  
2601 -  
2602 - <step>  
2603 - <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>  
2604 - <type>Normaliser</type>  
2605 - <description/>  
2606 - <distribute>Y</distribute>  
2607 - <custom_distribution/>  
2608 - <copies>1</copies>  
2609 - <partitioning>  
2610 - <method>none</method>  
2611 - <schema_name/>  
2612 - </partitioning>  
2613 - <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>  
2614 - <fields> </fields> <cluster_schema/>  
2615 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2616 - <xloc>248</xloc>  
2617 - <yloc>44</yloc>  
2618 - <draw>Y</draw>  
2619 - </GUI>  
2620 - </step>  
2621 -  
2622 - <step>  
2623 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>  
2624 - <type>ValueMapper</type>  
2625 - <description/>  
2626 - <distribute>Y</distribute>  
2627 - <custom_distribution/>  
2628 - <copies>1</copies>  
2629 - <partitioning>  
2630 - <method>none</method>  
2631 - <schema_name/>  
2632 - </partitioning>  
2633 - <field_to_use>bctype</field_to_use>  
2634 - <target_field>bctype_code</target_field>  
2635 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2636 - <fields>  
2637 - <field>  
2638 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2639 - <target_value>normal</target_value>  
2640 - </field>  
2641 - <field>  
2642 - <source_value>&#x51fa;&#x573a;</source_value>  
2643 - <target_value>out</target_value>  
2644 - </field>  
2645 - <field>  
2646 - <source_value>&#x8fdb;&#x573a;</source_value>  
2647 - <target_value>in</target_value>  
2648 - </field>  
2649 - <field>  
2650 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2651 - <target_value>oil</target_value>  
2652 - </field>  
2653 - <field>  
2654 - <source_value>&#x4e34;&#x52a0;</source_value>  
2655 - <target_value>temp</target_value>  
2656 - </field>  
2657 - <field>  
2658 - <source_value>&#x533a;&#x95f4;</source_value>  
2659 - <target_value>region</target_value>  
2660 - </field>  
2661 - <field>  
2662 - <source_value>&#x653e;&#x7a7a;</source_value>  
2663 - <target_value>venting</target_value>  
2664 - </field>  
2665 - <field>  
2666 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2667 - <target_value>major</target_value>  
2668 - </field>  
2669 - </fields>  
2670 - <cluster_schema/>  
2671 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2672 - <xloc>149</xloc>  
2673 - <yloc>491</yloc>  
2674 - <draw>Y</draw>  
2675 - </GUI>  
2676 - </step>  
2677 -  
2678 - <step>  
2679 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>  
2680 - <type>ValueMapper</type>  
2681 - <description/>  
2682 - <distribute>Y</distribute>  
2683 - <custom_distribution/>  
2684 - <copies>1</copies>  
2685 - <partitioning>  
2686 - <method>none</method>  
2687 - <schema_name/>  
2688 - </partitioning>  
2689 - <field_to_use>bctype</field_to_use>  
2690 - <target_field>bctype_code</target_field>  
2691 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2692 - <fields>  
2693 - <field>  
2694 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2695 - <target_value>normal</target_value>  
2696 - </field>  
2697 - <field>  
2698 - <source_value>&#x51fa;&#x573a;</source_value>  
2699 - <target_value>out</target_value>  
2700 - </field>  
2701 - <field>  
2702 - <source_value>&#x8fdb;&#x573a;</source_value>  
2703 - <target_value>in</target_value>  
2704 - </field>  
2705 - <field>  
2706 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2707 - <target_value>oil</target_value>  
2708 - </field>  
2709 - <field>  
2710 - <source_value>&#x4e34;&#x52a0;</source_value>  
2711 - <target_value>temp</target_value>  
2712 - </field>  
2713 - <field>  
2714 - <source_value>&#x533a;&#x95f4;</source_value>  
2715 - <target_value>region</target_value>  
2716 - </field>  
2717 - <field>  
2718 - <source_value>&#x653e;&#x7a7a;</source_value>  
2719 - <target_value>venting</target_value>  
2720 - </field>  
2721 - <field>  
2722 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2723 - <target_value>major</target_value>  
2724 - </field>  
2725 - </fields>  
2726 - <cluster_schema/>  
2727 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2728 - <xloc>333</xloc>  
2729 - <yloc>681</yloc>  
2730 - <draw>Y</draw>  
2731 - </GUI>  
2732 - </step>  
2733 -  
2734 - <step>  
2735 - <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>  
2736 - <type>ValueMapper</type>  
2737 - <description/>  
2738 - <distribute>Y</distribute>  
2739 - <custom_distribution/>  
2740 - <copies>1</copies>  
2741 - <partitioning>  
2742 - <method>none</method>  
2743 - <schema_name/>  
2744 - </partitioning>  
2745 - <field_to_use>bctype</field_to_use>  
2746 - <target_field>bctype_code</target_field>  
2747 - <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>  
2748 - <fields>  
2749 - <field>  
2750 - <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>  
2751 - <target_value>normal</target_value>  
2752 - </field>  
2753 - <field>  
2754 - <source_value>&#x51fa;&#x573a;</source_value>  
2755 - <target_value>out</target_value>  
2756 - </field>  
2757 - <field>  
2758 - <source_value>&#x8fdb;&#x573a;</source_value>  
2759 - <target_value>in</target_value>  
2760 - </field>  
2761 - <field>  
2762 - <source_value>&#x52a0;&#x6cb9;</source_value>  
2763 - <target_value>oil</target_value>  
2764 - </field>  
2765 - <field>  
2766 - <source_value>&#x4e34;&#x52a0;</source_value>  
2767 - <target_value>temp</target_value>  
2768 - </field>  
2769 - <field>  
2770 - <source_value>&#x533a;&#x95f4;</source_value>  
2771 - <target_value>region</target_value>  
2772 - </field>  
2773 - <field>  
2774 - <source_value>&#x653e;&#x7a7a;</source_value>  
2775 - <target_value>venting</target_value>  
2776 - </field>  
2777 - <field>  
2778 - <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>  
2779 - <target_value>major</target_value>  
2780 - </field>  
2781 - </fields>  
2782 - <cluster_schema/>  
2783 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2784 - <xloc>551</xloc>  
2785 - <yloc>928</yloc>  
2786 - <draw>Y</draw>  
2787 - </GUI>  
2788 - </step>  
2789 -  
2790 - <step>  
2791 - <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</name>  
2792 - <type>SelectValues</type>  
2793 - <description/>  
2794 - <distribute>N</distribute>  
2795 - <custom_distribution/>  
2796 - <copies>1</copies>  
2797 - <partitioning>  
2798 - <method>none</method>  
2799 - <schema_name/>  
2800 - </partitioning>  
2801 - <fields> <select_unspecified>Y</select_unspecified>  
2802 - <meta> <name>zdlyversion_</name>  
2803 - <rename>version</rename>  
2804 - <type>Integer</type>  
2805 - <length>-2</length>  
2806 - <precision>-2</precision>  
2807 - <conversion_mask/>  
2808 - <date_format_lenient>false</date_format_lenient>  
2809 - <date_format_locale/>  
2810 - <date_format_timezone/>  
2811 - <lenient_string_to_number>false</lenient_string_to_number>  
2812 - <encoding/>  
2813 - <decimal_symbol/>  
2814 - <grouping_symbol/>  
2815 - <currency_symbol/>  
2816 - <storage_type/>  
2817 - </meta> </fields> <cluster_schema/>  
2818 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2819 - <xloc>1016</xloc>  
2820 - <yloc>305</yloc>  
2821 - <draw>Y</draw>  
2822 - </GUI>  
2823 - </step>  
2824 -  
2825 - <step>  
2826 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>  
2827 - <type>SelectValues</type>  
2828 - <description/>  
2829 - <distribute>Y</distribute>  
2830 - <custom_distribution/>  
2831 - <copies>1</copies>  
2832 - <partitioning>  
2833 - <method>none</method>  
2834 - <schema_name/>  
2835 - </partitioning>  
2836 - <fields> <select_unspecified>N</select_unspecified>  
2837 - <meta> <name>jhlc</name>  
2838 - <rename>jhlc</rename>  
2839 - <type>Number</type>  
2840 - <length>-2</length>  
2841 - <precision>-2</precision>  
2842 - <conversion_mask/>  
2843 - <date_format_lenient>false</date_format_lenient>  
2844 - <date_format_locale/>  
2845 - <date_format_timezone/>  
2846 - <lenient_string_to_number>false</lenient_string_to_number>  
2847 - <encoding/>  
2848 - <decimal_symbol/>  
2849 - <grouping_symbol/>  
2850 - <currency_symbol/>  
2851 - <storage_type/>  
2852 - </meta> <meta> <name>bcsj</name>  
2853 - <rename>bcsj</rename>  
2854 - <type>Integer</type>  
2855 - <length>-2</length>  
2856 - <precision>-2</precision>  
2857 - <conversion_mask/>  
2858 - <date_format_lenient>false</date_format_lenient>  
2859 - <date_format_locale/>  
2860 - <date_format_timezone/>  
2861 - <lenient_string_to_number>false</lenient_string_to_number>  
2862 - <encoding/>  
2863 - <decimal_symbol/>  
2864 - <grouping_symbol/>  
2865 - <currency_symbol/>  
2866 - <storage_type/>  
2867 - </meta> </fields> <cluster_schema/>  
2868 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2869 - <xloc>146</xloc>  
2870 - <yloc>768</yloc>  
2871 - <draw>Y</draw>  
2872 - </GUI>  
2873 - </step>  
2874 -  
2875 - <step>  
2876 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>  
2877 - <type>SelectValues</type>  
2878 - <description/>  
2879 - <distribute>Y</distribute>  
2880 - <custom_distribution/>  
2881 - <copies>1</copies>  
2882 - <partitioning>  
2883 - <method>none</method>  
2884 - <schema_name/>  
2885 - </partitioning>  
2886 - <fields> <select_unspecified>N</select_unspecified>  
2887 - <meta> <name>out_mileage</name>  
2888 - <rename>out_mileage</rename>  
2889 - <type>Number</type>  
2890 - <length>-2</length>  
2891 - <precision>-2</precision>  
2892 - <conversion_mask/>  
2893 - <date_format_lenient>false</date_format_lenient>  
2894 - <date_format_locale/>  
2895 - <date_format_timezone/>  
2896 - <lenient_string_to_number>false</lenient_string_to_number>  
2897 - <encoding/>  
2898 - <decimal_symbol/>  
2899 - <grouping_symbol/>  
2900 - <currency_symbol/>  
2901 - <storage_type/>  
2902 - </meta> <meta> <name>out_time</name>  
2903 - <rename>out_time</rename>  
2904 - <type>Integer</type>  
2905 - <length>-2</length>  
2906 - <precision>-2</precision>  
2907 - <conversion_mask/>  
2908 - <date_format_lenient>false</date_format_lenient>  
2909 - <date_format_locale/>  
2910 - <date_format_timezone/>  
2911 - <lenient_string_to_number>false</lenient_string_to_number>  
2912 - <encoding/>  
2913 - <decimal_symbol/>  
2914 - <grouping_symbol/>  
2915 - <currency_symbol/>  
2916 - <storage_type/>  
2917 - </meta> <meta> <name>sxx</name>  
2918 - <rename>sxx</rename>  
2919 - <type>Integer</type>  
2920 - <length>-2</length>  
2921 - <precision>-2</precision>  
2922 - <conversion_mask/>  
2923 - <date_format_lenient>false</date_format_lenient>  
2924 - <date_format_locale/>  
2925 - <date_format_timezone/>  
2926 - <lenient_string_to_number>false</lenient_string_to_number>  
2927 - <encoding/>  
2928 - <decimal_symbol/>  
2929 - <grouping_symbol/>  
2930 - <currency_symbol/>  
2931 - <storage_type/>  
2932 - </meta> </fields> <cluster_schema/>  
2933 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2934 - <xloc>338</xloc>  
2935 - <yloc>1008</yloc>  
2936 - <draw>Y</draw>  
2937 - </GUI>  
2938 - </step>  
2939 -  
2940 - <step>  
2941 - <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>  
2942 - <type>SelectValues</type>  
2943 - <description/>  
2944 - <distribute>Y</distribute>  
2945 - <custom_distribution/>  
2946 - <copies>1</copies>  
2947 - <partitioning>  
2948 - <method>none</method>  
2949 - <schema_name/>  
2950 - </partitioning>  
2951 - <fields> <select_unspecified>N</select_unspecified>  
2952 - <meta> <name>parade_mileage</name>  
2953 - <rename>parade_mileage</rename>  
2954 - <type>Number</type>  
2955 - <length>-2</length>  
2956 - <precision>-2</precision>  
2957 - <conversion_mask/>  
2958 - <date_format_lenient>false</date_format_lenient>  
2959 - <date_format_locale/>  
2960 - <date_format_timezone/>  
2961 - <lenient_string_to_number>false</lenient_string_to_number>  
2962 - <encoding/>  
2963 - <decimal_symbol/>  
2964 - <grouping_symbol/>  
2965 - <currency_symbol/>  
2966 - <storage_type/>  
2967 - </meta> <meta> <name>parade_time</name>  
2968 - <rename>parade_time</rename>  
2969 - <type>Integer</type>  
2970 - <length>-2</length>  
2971 - <precision>-2</precision>  
2972 - <conversion_mask/>  
2973 - <date_format_lenient>false</date_format_lenient>  
2974 - <date_format_locale/>  
2975 - <date_format_timezone/>  
2976 - <lenient_string_to_number>false</lenient_string_to_number>  
2977 - <encoding/>  
2978 - <decimal_symbol/>  
2979 - <grouping_symbol/>  
2980 - <currency_symbol/>  
2981 - <storage_type/>  
2982 - </meta> <meta> <name>sxx2</name>  
2983 - <rename>sxx2</rename>  
2984 - <type>Integer</type>  
2985 - <length>-2</length>  
2986 - <precision>-2</precision>  
2987 - <conversion_mask/>  
2988 - <date_format_lenient>false</date_format_lenient>  
2989 - <date_format_locale/>  
2990 - <date_format_timezone/>  
2991 - <lenient_string_to_number>false</lenient_string_to_number>  
2992 - <encoding/>  
2993 - <decimal_symbol/>  
2994 - <grouping_symbol/>  
2995 - <currency_symbol/>  
2996 - <storage_type/>  
2997 - </meta> </fields> <cluster_schema/>  
2998 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
2999 - <xloc>847</xloc>  
3000 - <yloc>1003</yloc>  
3001 - <draw>Y</draw>  
3002 - </GUI>  
3003 - </step>  
3004 -  
3005 - <step>  
3006 - <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>  
3007 - <type>ValueMapper</type>  
3008 - <description/>  
3009 - <distribute>Y</distribute>  
3010 - <custom_distribution/>  
3011 - <copies>1</copies>  
3012 - <partitioning>  
3013 - <method>none</method>  
3014 - <schema_name/>  
3015 - </partitioning>  
3016 - <field_to_use>qdzname</field_to_use>  
3017 - <target_field>bctype</target_field>  
3018 - <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>  
3019 - <fields>  
3020 - <field>  
3021 - <source_value>&#x51fa;&#x573a;</source_value>  
3022 - <target_value>&#x51fa;&#x573a;</target_value>  
3023 - </field>  
3024 - <field>  
3025 - <source_value>&#x8fdb;&#x573a;</source_value>  
3026 - <target_value>&#x8fdb;&#x573a;</target_value>  
3027 - </field>  
3028 - </fields>  
3029 - <cluster_schema/>  
3030 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3031 - <xloc>1014</xloc>  
3032 - <yloc>401</yloc>  
3033 - <draw>Y</draw>  
3034 - </GUI>  
3035 - </step>  
3036 -  
3037 - <step>  
3038 - <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>  
3039 - <type>JoinRows</type>  
3040 - <description/>  
3041 - <distribute>Y</distribute>  
3042 - <custom_distribution/>  
3043 - <copies>1</copies>  
3044 - <partitioning>  
3045 - <method>none</method>  
3046 - <schema_name/>  
3047 - </partitioning>  
3048 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
3049 - <prefix>out</prefix>  
3050 - <cache_size>500</cache_size>  
3051 - <main/>  
3052 - <compare>  
3053 -<condition>  
3054 - <negated>N</negated>  
3055 - <leftvalue/>  
3056 - <function>&#x3d;</function>  
3057 - <rightvalue/>  
3058 - </condition>  
3059 - </compare>  
3060 - <cluster_schema/>  
3061 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3062 - <xloc>310</xloc>  
3063 - <yloc>133</yloc>  
3064 - <draw>Y</draw>  
3065 - </GUI>  
3066 - </step>  
3067 -  
3068 - <step>  
3069 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>  
3070 - <type>FilterRows</type>  
3071 - <description/>  
3072 - <distribute>Y</distribute>  
3073 - <custom_distribution/>  
3074 - <copies>1</copies>  
3075 - <partitioning>  
3076 - <method>none</method>  
3077 - <schema_name/>  
3078 - </partitioning>  
3079 -<send_true_to/>  
3080 -<send_false_to/>  
3081 - <compare>  
3082 -<condition>  
3083 - <negated>N</negated>  
3084 - <leftvalue>sendtime</leftvalue>  
3085 - <function>IS NOT NULL</function>  
3086 - <rightvalue/>  
3087 - </condition>  
3088 - </compare>  
3089 - <cluster_schema/>  
3090 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3091 - <xloc>571</xloc>  
3092 - <yloc>44</yloc>  
3093 - <draw>Y</draw>  
3094 - </GUI>  
3095 - </step>  
3096 -  
3097 - <step>  
3098 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>  
3099 - <type>ScriptValueMod</type>  
3100 - <description/>  
3101 - <distribute>Y</distribute>  
3102 - <custom_distribution/>  
3103 - <copies>1</copies>  
3104 - <partitioning>  
3105 - <method>none</method>  
3106 - <schema_name/>  
3107 - </partitioning>  
3108 - <compatible>N</compatible>  
3109 - <optimizationLevel>9</optimizationLevel>  
3110 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
3111 - <jsScript_name>Script 1</jsScript_name>  
3112 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>  
3113 - </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>  
3114 - <rename>qdzname_calcu</rename>  
3115 - <type>String</type>  
3116 - <length>-1</length>  
3117 - <precision>-1</precision>  
3118 - <replace>N</replace>  
3119 - </field> <field> <name>startZdtype_calcu</name>  
3120 - <rename>startZdtype_calcu</rename>  
3121 - <type>String</type>  
3122 - <length>-1</length>  
3123 - <precision>-1</precision>  
3124 - <replace>N</replace>  
3125 - </field> <field> <name>endZdtype_calcu</name>  
3126 - <rename>endZdtype_calcu</rename>  
3127 - <type>String</type>  
3128 - <length>-1</length>  
3129 - <precision>-1</precision>  
3130 - <replace>N</replace>  
3131 - </field> <field> <name>destory</name>  
3132 - <rename>destory</rename>  
3133 - <type>Integer</type>  
3134 - <length>-1</length>  
3135 - <precision>-1</precision>  
3136 - <replace>N</replace>  
3137 - </field> </fields> <cluster_schema/>  
3138 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3139 - <xloc>754</xloc>  
3140 - <yloc>610</yloc>  
3141 - <draw>Y</draw>  
3142 - </GUI>  
3143 - </step>  
3144 -  
3145 - <step>  
3146 - <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>  
3147 - <type>Dummy</type>  
3148 - <description/>  
3149 - <distribute>Y</distribute>  
3150 - <custom_distribution/>  
3151 - <copies>1</copies>  
3152 - <partitioning>  
3153 - <method>none</method>  
3154 - <schema_name/>  
3155 - </partitioning>  
3156 - <cluster_schema/>  
3157 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3158 - <xloc>997</xloc>  
3159 - <yloc>606</yloc>  
3160 - <draw>Y</draw>  
3161 - </GUI>  
3162 - </step>  
3163 -  
3164 - <step_error_handling>  
3165 - <error>  
3166 - <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>  
3167 - <target_step/>  
3168 - <is_enabled>Y</is_enabled>  
3169 - <nr_valuename>c1</nr_valuename>  
3170 - <descriptions_valuename>c2</descriptions_valuename>  
3171 - <fields_valuename>c3</fields_valuename>  
3172 - <codes_valuename>c4</codes_valuename>  
3173 - <max_errors/>  
3174 - <max_pct_errors/>  
3175 - <min_pct_rows/>  
3176 - </error>  
3177 - </step_error_handling>  
3178 - <slave-step-copy-partition-distribution>  
3179 -</slave-step-copy-partition-distribution>  
3180 - <slave_transformation>N</slave_transformation>  
3181 -  
3182 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;-&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</name>
  5 + <description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</description>
  6 + <extended_description>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<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>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<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>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<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>
  32 +<step-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<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>
  37 +<metrics-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>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>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;06&#x2f;30 12&#x3a;21&#x3a;57.536</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <note>&#x5b57;&#x5178;&#x8868;&#x5bf9;&#x5e94;&#xff08;&#x4ee5;&#x540e;&#x76f4;&#x63a5;&#x67e5;&#x627e;&#x8868; bsth_c_sys_dictionary&#xff09;&#xa;&#x7c7b;&#x578b; &#x4ee3;&#x7801; &#x540d;&#x79f0;&#xa;LineTrend 0 &#x4e0a;&#x884c;&#xa;LineTrend 1 &#x4e0b;&#x884c;&#xa;ScheduleType normal &#x6b63;&#x5e38;&#x73ed;&#x6b21;&#xa;ScheduleType out &#x51fa;&#x573a;&#xa;ScheduleType in &#x8fdb;&#x573a;&#xa;ScheduleType temp &#x4e34;&#x52a0;&#xa;ScheduleType region &#x533a;&#x95f4;&#xa;ScheduleType venting &#x653e;&#x7a7a;&#xa;ScheduleType major &#x653e;&#x5927;&#x7ad9;</note>
  79 + <xloc>606</xloc>
  80 + <yloc>129</yloc>
  81 + <width>332</width>
  82 + <heigth>186</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + <notepad>
  99 + <note>&#x56e0;&#x4e3a;&#x65f6;&#x523b;&#x8868;&#x8f93;&#x5165;&#x683c;&#x5f0f;&#x4e0d;&#x786e;&#x5b9a;&#x6027;&#xff0c;&#x4e3b;&#x8981;&#x56e0;&#x4e3a;&#x8868;&#x7ed3;&#x6784;&#x662f;&#x53cd;&#x8303;&#x5f0f;&#x5316;&#x7684;&#xff0c;&#xa;&#x6240;&#x4ee5;&#x9700;&#x8981;&#x5916;&#x90e8;&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xff0c;&#x5934;&#x4e09;&#x4e2a;step&#x52a8;&#x6001;&#x6307;&#x5b9a;&#x613f;&#x6570;&#x636e;&#xa;&#xa;</note>
  100 + <xloc>79</xloc>
  101 + <yloc>206</yloc>
  102 + <width>346</width>
  103 + <heigth>74</heigth>
  104 + <fontname>YaHei Consolas Hybrid</fontname>
  105 + <fontsize>12</fontsize>
  106 + <fontbold>N</fontbold>
  107 + <fontitalic>N</fontitalic>
  108 + <fontcolorred>0</fontcolorred>
  109 + <fontcolorgreen>0</fontcolorgreen>
  110 + <fontcolorblue>0</fontcolorblue>
  111 + <backgroundcolorred>255</backgroundcolorred>
  112 + <backgroundcolorgreen>205</backgroundcolorgreen>
  113 + <backgroundcolorblue>112</backgroundcolorblue>
  114 + <bordercolorred>100</bordercolorred>
  115 + <bordercolorgreen>100</bordercolorgreen>
  116 + <bordercolorblue>100</bordercolorblue>
  117 + <drawshadow>Y</drawshadow>
  118 + </notepad>
  119 + <notepad>
  120 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  121 + <xloc>721</xloc>
  122 + <yloc>762</yloc>
  123 + <width>333</width>
  124 + <heigth>90</heigth>
  125 + <fontname>YaHei Consolas Hybrid</fontname>
  126 + <fontsize>12</fontsize>
  127 + <fontbold>N</fontbold>
  128 + <fontitalic>N</fontitalic>
  129 + <fontcolorred>0</fontcolorred>
  130 + <fontcolorgreen>0</fontcolorgreen>
  131 + <fontcolorblue>0</fontcolorblue>
  132 + <backgroundcolorred>255</backgroundcolorred>
  133 + <backgroundcolorgreen>205</backgroundcolorgreen>
  134 + <backgroundcolorblue>112</backgroundcolorblue>
  135 + <bordercolorred>100</bordercolorred>
  136 + <bordercolorgreen>100</bordercolorgreen>
  137 + <bordercolorblue>100</bordercolorblue>
  138 + <drawshadow>Y</drawshadow>
  139 + </notepad>
  140 + <notepad>
  141 + <note>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  142 + <xloc>104</xloc>
  143 + <yloc>939</yloc>
  144 + <width>178</width>
  145 + <heigth>42</heigth>
  146 + <fontname>YaHei Consolas Hybrid</fontname>
  147 + <fontsize>12</fontsize>
  148 + <fontbold>N</fontbold>
  149 + <fontitalic>N</fontitalic>
  150 + <fontcolorred>0</fontcolorred>
  151 + <fontcolorgreen>0</fontcolorgreen>
  152 + <fontcolorblue>0</fontcolorblue>
  153 + <backgroundcolorred>255</backgroundcolorred>
  154 + <backgroundcolorgreen>205</backgroundcolorgreen>
  155 + <backgroundcolorblue>112</backgroundcolorblue>
  156 + <bordercolorred>100</bordercolorred>
  157 + <bordercolorgreen>100</bordercolorgreen>
  158 + <bordercolorblue>100</bordercolorblue>
  159 + <drawshadow>Y</drawshadow>
  160 + </notepad>
  161 + <notepad>
  162 + <note>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#xff0c;&#x65b9;&#x5411;&#x6709;&#x65f6;&#x786e;&#x5b9a;&#x4e0d;&#x51c6;&#xff0c;&#xa;&#x7a7a;&#x7684;&#x60c5;&#x51b5;&#x4e0b;&#x8bbe;&#x5b9a;&#x4e3a;0&#xff08;&#x4e0a;&#x884c;&#xff09;</note>
  163 + <xloc>578</xloc>
  164 + <yloc>1084</yloc>
  165 + <width>178</width>
  166 + <heigth>42</heigth>
  167 + <fontname>YaHei Consolas Hybrid</fontname>
  168 + <fontsize>12</fontsize>
  169 + <fontbold>N</fontbold>
  170 + <fontitalic>N</fontitalic>
  171 + <fontcolorred>0</fontcolorred>
  172 + <fontcolorgreen>0</fontcolorgreen>
  173 + <fontcolorblue>0</fontcolorblue>
  174 + <backgroundcolorred>255</backgroundcolorred>
  175 + <backgroundcolorgreen>205</backgroundcolorgreen>
  176 + <backgroundcolorblue>112</backgroundcolorblue>
  177 + <bordercolorred>100</bordercolorred>
  178 + <bordercolorgreen>100</bordercolorgreen>
  179 + <bordercolorblue>100</bordercolorblue>
  180 + <drawshadow>Y</drawshadow>
  181 + </notepad>
  182 + </notepads>
  183 + <connection>
  184 + <name>192.168.168.1_jwgl_dw</name>
  185 + <server>192.168.168.1</server>
  186 + <type>ORACLE</type>
  187 + <access>Native</access>
  188 + <database>orcl</database>
  189 + <port>1521</port>
  190 + <username>jwgl_dw</username>
  191 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  192 + <servername/>
  193 + <data_tablespace/>
  194 + <index_tablespace/>
  195 + <attributes>
  196 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  197 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  199 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  200 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  201 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  202 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  203 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  204 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  205 + </attributes>
  206 + </connection>
  207 + <connection>
  208 + <name>bus_control_variable</name>
  209 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  210 + <type>MYSQL</type>
  211 + <access>Native</access>
  212 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  213 + <port>3306</port>
  214 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  215 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  216 + <servername/>
  217 + <data_tablespace/>
  218 + <index_tablespace/>
  219 + <attributes>
  220 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  221 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  222 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  223 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  224 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  226 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  227 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  229 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  230 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  231 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  232 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  233 + </attributes>
  234 + </connection>
  235 + <connection>
  236 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  237 + <server>localhost</server>
  238 + <type>MYSQL</type>
  239 + <access>Native</access>
  240 + <database>control</database>
  241 + <port>3306</port>
  242 + <username>root</username>
  243 + <password>Encrypted </password>
  244 + <servername/>
  245 + <data_tablespace/>
  246 + <index_tablespace/>
  247 + <attributes>
  248 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  249 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  250 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  251 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  253 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  254 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  256 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  257 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  258 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  259 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  260 + </attributes>
  261 + </connection>
  262 + <connection>
  263 + <name>bus_control_&#x672c;&#x673a;</name>
  264 + <server>localhost</server>
  265 + <type>MYSQL</type>
  266 + <access>Native</access>
  267 + <database>control</database>
  268 + <port>3306</port>
  269 + <username>root</username>
  270 + <password>Encrypted </password>
  271 + <servername/>
  272 + <data_tablespace/>
  273 + <index_tablespace/>
  274 + <attributes>
  275 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  276 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>3306</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>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  284 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  285 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  286 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  287 + </attributes>
  288 + </connection>
  289 + <connection>
  290 + <name>xlab_mysql_youle</name>
  291 + <server>101.231.124.8</server>
  292 + <type>MYSQL</type>
  293 + <access>Native</access>
  294 + <database>xlab_youle</database>
  295 + <port>45687</port>
  296 + <username>xlab-youle</username>
  297 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  298 + <servername/>
  299 + <data_tablespace/>
  300 + <index_tablespace/>
  301 + <attributes>
  302 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  303 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  304 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  307 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  308 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  310 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  318 + <server>localhost</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>3306</port>
  323 + <username>root</username>
  324 + <password>Encrypted </password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_youle</name>
  345 + <server/>
  346 + <type>MYSQL</type>
  347 + <access>JNDI</access>
  348 + <database>xlab_youle</database>
  349 + <port>1521</port>
  350 + <username/>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  357 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  358 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  359 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  360 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  361 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  362 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  363 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  364 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  366 + </attributes>
  367 + </connection>
  368 + <order>
  369 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</from><to>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</to><enabled>Y</enabled> </hop>
  370 + <hop> <from>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</to><enabled>Y</enabled> </hop>
  371 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</from><to>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</to><enabled>Y</enabled> </hop>
  372 + <hop> <from>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</from><to>&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  373 + <hop> <from>&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</to><enabled>Y</enabled> </hop>
  374 + <hop> <from>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  375 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</from><to>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  376 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  377 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  378 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</from><to>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  379 + <hop> <from>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</to><enabled>Y</enabled> </hop>
  380 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</to><enabled>Y</enabled> </hop>
  381 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  382 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  383 + <hop> <from>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  384 + <hop> <from>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  385 + <hop> <from>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</to><enabled>Y</enabled> </hop>
  386 + <hop> <from>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  387 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  388 + <hop> <from>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  389 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</from><to>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  390 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  391 + <hop> <from>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  392 + <hop> <from>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</from><to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</to><enabled>Y</enabled> </hop>
  393 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</to><enabled>Y</enabled> </hop>
  394 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</from><to>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  395 + <hop> <from>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  396 + <hop> <from>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</to><enabled>Y</enabled> </hop>
  397 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</from><to>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</to><enabled>Y</enabled> </hop>
  398 + <hop> <from>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</from><to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  399 + <hop> <from>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</to><enabled>Y</enabled> </hop>
  400 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</to><enabled>Y</enabled> </hop>
  401 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</to><enabled>Y</enabled> </hop>
  402 + <hop> <from>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</to><enabled>Y</enabled> </hop>
  403 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  404 + <hop> <from>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</from><to>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</to><enabled>Y</enabled> </hop>
  405 + <hop> <from>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  406 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</to><enabled>Y</enabled> </hop>
  407 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</from><to>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</to><enabled>Y</enabled> </hop>
  408 + <hop> <from>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</to><enabled>Y</enabled> </hop>
  409 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  410 + <hop> <from>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</to><enabled>Y</enabled> </hop>
  411 + <hop> <from>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</to><enabled>Y</enabled> </hop>
  412 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</to><enabled>Y</enabled> </hop>
  413 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</to><enabled>Y</enabled> </hop>
  414 + <hop> <from>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</from><to>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</to><enabled>Y</enabled> </hop>
  415 + <hop> <from>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</from><to>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</to><enabled>Y</enabled> </hop>
  416 + <hop> <from>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</from><to>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</to><enabled>Y</enabled> </hop>
  417 + <hop> <from>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  418 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</to><enabled>Y</enabled> </hop>
  419 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</from><to>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>
  420 + </order>
  421 + <step>
  422 + <name>&#x4e0a;&#x4e0b;&#x884c;NULL&#x5224;&#x5b9a;</name>
  423 + <type>IfNull</type>
  424 + <description/>
  425 + <distribute>Y</distribute>
  426 + <custom_distribution/>
  427 + <copies>1</copies>
  428 + <partitioning>
  429 + <method>none</method>
  430 + <schema_name/>
  431 + </partitioning>
  432 + <replaceAllByValue/>
  433 + <replaceAllMask/>
  434 + <selectFields>Y</selectFields>
  435 + <selectValuesType>N</selectValuesType>
  436 + <setEmptyStringAll>N</setEmptyStringAll>
  437 + <valuetypes>
  438 + </valuetypes>
  439 + <fields>
  440 + <field>
  441 + <name>sxx</name>
  442 + <value>0</value>
  443 + <mask/>
  444 + <set_empty_string>N</set_empty_string>
  445 + </field>
  446 + </fields>
  447 + <cluster_schema/>
  448 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  449 + <xloc>335</xloc>
  450 + <yloc>938</yloc>
  451 + <draw>Y</draw>
  452 + </GUI>
  453 + </step>
  454 +
  455 + <step>
  456 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5224;&#x5b9a; 2</name>
  457 + <type>IfNull</type>
  458 + <description/>
  459 + <distribute>Y</distribute>
  460 + <custom_distribution/>
  461 + <copies>1</copies>
  462 + <partitioning>
  463 + <method>none</method>
  464 + <schema_name/>
  465 + </partitioning>
  466 + <replaceAllByValue/>
  467 + <replaceAllMask/>
  468 + <selectFields>Y</selectFields>
  469 + <selectValuesType>N</selectValuesType>
  470 + <setEmptyStringAll>N</setEmptyStringAll>
  471 + <valuetypes>
  472 + </valuetypes>
  473 + <fields>
  474 + <field>
  475 + <name>sxx2</name>
  476 + <value>0</value>
  477 + <mask/>
  478 + <set_empty_string>N</set_empty_string>
  479 + </field>
  480 + </fields>
  481 + <cluster_schema/>
  482 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  483 + <xloc>804</xloc>
  484 + <yloc>1081</yloc>
  485 + <draw>Y</draw>
  486 + </GUI>
  487 + </step>
  488 +
  489 + <step>
  490 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178;</name>
  491 + <type>ValueMapper</type>
  492 + <description/>
  493 + <distribute>Y</distribute>
  494 + <custom_distribution/>
  495 + <copies>1</copies>
  496 + <partitioning>
  497 + <method>none</method>
  498 + <schema_name/>
  499 + </partitioning>
  500 + <field_to_use>sxx</field_to_use>
  501 + <target_field>sxx_desc</target_field>
  502 + <non_match_default/>
  503 + <fields>
  504 + <field>
  505 + <source_value>0</source_value>
  506 + <target_value>&#x4e0a;&#x884c;</target_value>
  507 + </field>
  508 + <field>
  509 + <source_value>1</source_value>
  510 + <target_value>&#x4e0b;&#x884c;</target_value>
  511 + </field>
  512 + </fields>
  513 + <cluster_schema/>
  514 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  515 + <xloc>147</xloc>
  516 + <yloc>403</yloc>
  517 + <draw>Y</draw>
  518 + </GUI>
  519 + </step>
  520 +
  521 + <step>
  522 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 2</name>
  523 + <type>ValueMapper</type>
  524 + <description/>
  525 + <distribute>Y</distribute>
  526 + <custom_distribution/>
  527 + <copies>1</copies>
  528 + <partitioning>
  529 + <method>none</method>
  530 + <schema_name/>
  531 + </partitioning>
  532 + <field_to_use>sxx</field_to_use>
  533 + <target_field>sxx_desc</target_field>
  534 + <non_match_default/>
  535 + <fields>
  536 + <field>
  537 + <source_value>0</source_value>
  538 + <target_value>&#x4e0a;&#x884c;</target_value>
  539 + </field>
  540 + <field>
  541 + <source_value>1</source_value>
  542 + <target_value>&#x4e0b;&#x884c;</target_value>
  543 + </field>
  544 + </fields>
  545 + <cluster_schema/>
  546 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  547 + <xloc>331</xloc>
  548 + <yloc>598</yloc>
  549 + <draw>Y</draw>
  550 + </GUI>
  551 + </step>
  552 +
  553 + <step>
  554 + <name>&#x4e0a;&#x4e0b;&#x884c;&#x5b57;&#x5178; 3</name>
  555 + <type>ValueMapper</type>
  556 + <description/>
  557 + <distribute>Y</distribute>
  558 + <custom_distribution/>
  559 + <copies>1</copies>
  560 + <partitioning>
  561 + <method>none</method>
  562 + <schema_name/>
  563 + </partitioning>
  564 + <field_to_use>sxx</field_to_use>
  565 + <target_field>sxx_desc</target_field>
  566 + <non_match_default/>
  567 + <fields>
  568 + <field>
  569 + <source_value>0</source_value>
  570 + <target_value>&#x4e0a;&#x884c;</target_value>
  571 + </field>
  572 + <field>
  573 + <source_value>1</source_value>
  574 + <target_value>&#x4e0b;&#x884c;</target_value>
  575 + </field>
  576 + </fields>
  577 + <cluster_schema/>
  578 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  579 + <xloc>553</xloc>
  580 + <yloc>859</yloc>
  581 + <draw>Y</draw>
  582 + </GUI>
  583 + </step>
  584 +
  585 + <step>
  586 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x7ec8;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  587 + <type>ScriptValueMod</type>
  588 + <description/>
  589 + <distribute>Y</distribute>
  590 + <custom_distribution/>
  591 + <copies>1</copies>
  592 + <partitioning>
  593 + <method>none</method>
  594 + <schema_name/>
  595 + </partitioning>
  596 + <compatible>N</compatible>
  597 + <optimizationLevel>9</optimizationLevel>
  598 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  599 + <jsScript_name>Script 1</jsScript_name>
  600 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var zdzname &#x3d; cc_groups&#x5b;gno&#x5d;&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#x662f;&#x4e0b;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x59cb;&#x7ad9;&#xa;var endZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;&#x2f;&#x2f; var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  601 + </jsScript> </jsScripts> <fields> <field> <name>zdzname</name>
  602 + <rename>zdzname</rename>
  603 + <type>String</type>
  604 + <length>-1</length>
  605 + <precision>-1</precision>
  606 + <replace>N</replace>
  607 + </field> <field> <name>endZdtype</name>
  608 + <rename>endZdtype</rename>
  609 + <type>String</type>
  610 + <length>-1</length>
  611 + <precision>-1</precision>
  612 + <replace>N</replace>
  613 + </field> <field> <name>destory</name>
  614 + <rename>destory</rename>
  615 + <type>Integer</type>
  616 + <length>-1</length>
  617 + <precision>-1</precision>
  618 + <replace>N</replace>
  619 + </field> </fields> <cluster_schema/>
  620 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  621 + <xloc>575</xloc>
  622 + <yloc>502</yloc>
  623 + <draw>Y</draw>
  624 + </GUI>
  625 + </step>
  626 +
  627 + <step>
  628 + <name>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  629 + <type>Dummy</type>
  630 + <description/>
  631 + <distribute>Y</distribute>
  632 + <custom_distribution/>
  633 + <copies>1</copies>
  634 + <partitioning>
  635 + <method>none</method>
  636 + <schema_name/>
  637 + </partitioning>
  638 + <cluster_schema/>
  639 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  640 + <xloc>869</xloc>
  641 + <yloc>504</yloc>
  642 + <draw>Y</draw>
  643 + </GUI>
  644 + </step>
  645 +
  646 + <step>
  647 + <name>&#x5206;&#x7ec4;&#x5404;&#x4e2a;&#x8def;&#x724c;&#x7684;&#x7ad9;</name>
  648 + <type>GroupBy</type>
  649 + <description/>
  650 + <distribute>Y</distribute>
  651 + <custom_distribution/>
  652 + <copies>1</copies>
  653 + <partitioning>
  654 + <method>none</method>
  655 + <schema_name/>
  656 + </partitioning>
  657 + <all_rows>Y</all_rows>
  658 + <ignore_aggregate>N</ignore_aggregate>
  659 + <field_ignore/>
  660 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  661 + <prefix>grp</prefix>
  662 + <add_linenr>Y</add_linenr>
  663 + <linenr_fieldname>gno</linenr_fieldname>
  664 + <give_back_row>N</give_back_row>
  665 + <group>
  666 + <field>
  667 + <name>lp</name>
  668 + </field>
  669 + </group>
  670 + <fields>
  671 + <field>
  672 + <aggregate>qdzgroups</aggregate>
  673 + <subject>qdzname</subject>
  674 + <type>CONCAT_STRING</type>
  675 + <valuefield>,</valuefield>
  676 + </field>
  677 + </fields>
  678 + <cluster_schema/>
  679 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  680 + <xloc>892</xloc>
  681 + <yloc>44</yloc>
  682 + <draw>Y</draw>
  683 + </GUI>
  684 + </step>
  685 +
  686 + <step>
  687 + <name>&#x5339;&#x914d;&#x4e0a;&#x4e0b;&#x884c;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  688 + <type>ScriptValueMod</type>
  689 + <description/>
  690 + <distribute>Y</distribute>
  691 + <custom_distribution/>
  692 + <copies>1</copies>
  693 + <partitioning>
  694 + <method>none</method>
  695 + <schema_name/>
  696 + </partitioning>
  697 + <compatible>N</compatible>
  698 + <optimizationLevel>9</optimizationLevel>
  699 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  700 + <jsScript_name>Script 1</jsScript_name>
  701 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var jhlc&#x3b; &#x2f;&#x2f; &#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var bcsj&#x3b; &#x2f;&#x2f; &#x73ed;&#x6b21;&#x65f6;&#x95f4;&#xa;&#xa;&#x2f;&#x2f; &#x65f6;&#x95f4;&#x8303;&#x56f4;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#xa;var timeRex &#x3d; &#x2f;&#x5e;&#x28;&#x5b;01&#x5d;&#x3f;&#x5b;0-9&#x5d;&#x7c;2&#x5b;0-3&#x5d;&#x29;&#x3a;&#x5b;0-5&#x5d;&#x5b;0-9&#x5d;&#x24;&#x2f;&#x3b;&#xa;&#x2f;&#x2f; &#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x8f6c;&#x6362;&#x6210;&#x65e5;&#x671f;&#xa;var fcsj_hour &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_min &#x3d; str2num&#x28;sendtime_calcu.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa;var fcsj_date &#x3d; new Date&#x28;2000,1,1,fcsj_hour,fcsj_min,0&#x29;&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x65e9;&#x9ad8;&#x5cf0;&#xa;var isZgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;early_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;early_end_time&#x29; &#x26;&#x26; early_up_time &#x21;&#x3d; null &#x26;&#x26; early_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var early_s_hour &#x3d; str2num&#x28;early_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_min &#x3d; str2num&#x28;early_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_s_date &#x3d; new Date&#x28;2000,1,1,early_s_hour,early_s_min,0&#x29;&#x3b;&#xa;&#xa; var early_e_hour &#x3d; str2num&#x28;early_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_min &#x3d; str2num&#x28;early_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var early_e_date &#x3d; new Date&#x28;2000,1,1,early_e_hour,early_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; early_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; early_e_date&#x29; &#x7b;&#xa; isZgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;var isWgf &#x3d; false&#x3b;&#xa;if &#x28;timeRex.test&#x28;late_start_time&#x29; &#x26;&#x26; timeRex.test&#x28;late_end_time&#x29; &#x26;&#x26; late_up_time &#x21;&#x3d; null &#x26;&#x26; late_down_time &#x21;&#x3d; null&#x29; &#x7b;&#xa; var late_s_hour &#x3d; str2num&#x28;late_start_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_min &#x3d; str2num&#x28;late_start_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_s_date &#x3d; new Date&#x28;2000,1,1,late_s_hour,late_s_min,0&#x29;&#x3b;&#xa;&#xa; var late_e_hour &#x3d; str2num&#x28;late_end_time.substr&#x28;0, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_min &#x3d; str2num&#x28;late_end_time.substr&#x28;3, 2&#x29;, &#x22;&#x23;&#x22;&#x29;&#x3b;&#xa; var late_e_date &#x3d; new Date&#x28;2000,1,1,late_e_hour,late_e_min,0&#x29;&#x3b;&#xa;&#xa; if &#x28;fcsj_date &#x3e;&#x3d; late_s_date &#x26;&#x26; fcsj_date &#x3c;&#x3d; late_e_date&#x29; &#x7b;&#xa; isWgf &#x3d; true&#x3b;&#xa; &#x7d;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5224;&#x5b9a;&#x662f;&#x5426;&#x665a;&#x9ad8;&#x5cf0;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; early_up_time &#x21;&#x3d; 0 &#x3f; early_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; late_up_time &#x21;&#x3d; 0 &#x3f; late_up_time &#x3a; up_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; up_mileage&#x3b;&#xa; bcsj &#x3d; up_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; if &#x28;isZgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; early_down_time &#x21;&#x3d; 0 &#x3f; early_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else if &#x28;isWgf&#x29; &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; late_down_time &#x21;&#x3d; 0 &#x3f; late_down_time &#x3a; down_travel_time&#x3b;&#xa; &#x7d; else &#x7b;&#xa; jhlc &#x3d; down_mileage&#x3b;&#xa; bcsj &#x3d; down_travel_time&#x3b;&#xa; &#x7d;&#xa;&#x7d;</jsScript_script>
  702 + </jsScript> </jsScripts> <fields> <field> <name>jhlc</name>
  703 + <rename>jhlc</rename>
  704 + <type>String</type>
  705 + <length>-1</length>
  706 + <precision>-1</precision>
  707 + <replace>N</replace>
  708 + </field> <field> <name>bcsj</name>
  709 + <rename>bcsj</rename>
  710 + <type>String</type>
  711 + <length>-1</length>
  712 + <precision>-1</precision>
  713 + <replace>N</replace>
  714 + </field> </fields> <cluster_schema/>
  715 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  716 + <xloc>148</xloc>
  717 + <yloc>674</yloc>
  718 + <draw>Y</draw>
  719 + </GUI>
  720 + </step>
  721 +
  722 + <step>
  723 + <name>&#x5339;&#x914d;&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  724 + <type>ScriptValueMod</type>
  725 + <description/>
  726 + <distribute>Y</distribute>
  727 + <custom_distribution/>
  728 + <copies>1</copies>
  729 + <partitioning>
  730 + <method>none</method>
  731 + <schema_name/>
  732 + </partitioning>
  733 + <compatible>N</compatible>
  734 + <optimizationLevel>9</optimizationLevel>
  735 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  736 + <jsScript_name>Script 1</jsScript_name>
  737 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var out_mileage&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var out_time&#x3b; &#x2f;&#x2f; &#x51fa;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; out_mileage &#x3d; up_out_mileage&#x3b;&#xa; out_time &#x3d; up_out_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; out_mileage &#x3d; down_out_mileage&#x3b;&#xa; out_time &#x3d; down_out_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  738 + </jsScript> </jsScripts> <fields> <field> <name>out_mileage</name>
  739 + <rename>out_mileage</rename>
  740 + <type>String</type>
  741 + <length>-1</length>
  742 + <precision>-1</precision>
  743 + <replace>N</replace>
  744 + </field> <field> <name>out_time</name>
  745 + <rename>out_time</rename>
  746 + <type>String</type>
  747 + <length>-1</length>
  748 + <precision>-1</precision>
  749 + <replace>N</replace>
  750 + </field> </fields> <cluster_schema/>
  751 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  752 + <xloc>336</xloc>
  753 + <yloc>862</yloc>
  754 + <draw>Y</draw>
  755 + </GUI>
  756 + </step>
  757 +
  758 + <step>
  759 + <name>&#x5339;&#x914d;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  760 + <type>ScriptValueMod</type>
  761 + <description/>
  762 + <distribute>Y</distribute>
  763 + <custom_distribution/>
  764 + <copies>1</copies>
  765 + <partitioning>
  766 + <method>none</method>
  767 + <schema_name/>
  768 + </partitioning>
  769 + <compatible>N</compatible>
  770 + <optimizationLevel>9</optimizationLevel>
  771 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  772 + <jsScript_name>Script 1</jsScript_name>
  773 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var parade_mileage&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x91cc;&#x7a0b;&#xa;var parade_time&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x8ba1;&#x5212;&#x65f6;&#x95f4;&#xa;&#xa;if &#x28;sxx2 &#x3d;&#x3d; 0&#x29; &#x7b; &#x2f;&#x2f; &#x4e0a;&#x884c;&#xa; parade_mileage &#x3d; up_in_mileage&#x3b;&#xa; parade_time &#x3d; up_in_timer&#x3b;&#xa;&#x7d; else &#x7b; &#x2f;&#x2f; sxx &#x3d;&#x3d; 1 &#x4e0b;&#x884c;&#xa; parade_mileage &#x3d; down_in_mileage&#x3b;&#xa; parade_time &#x3d; down_in_timer&#x3b;&#xa;&#x7d;&#xa;&#xa;&#xa;&#xa;</jsScript_script>
  774 + </jsScript> </jsScripts> <fields> <field> <name>parade_mileage</name>
  775 + <rename>parade_mileage</rename>
  776 + <type>String</type>
  777 + <length>-1</length>
  778 + <precision>-1</precision>
  779 + <replace>N</replace>
  780 + </field> <field> <name>parade_time</name>
  781 + <rename>parade_time</rename>
  782 + <type>String</type>
  783 + <length>-1</length>
  784 + <precision>-1</precision>
  785 + <replace>N</replace>
  786 + </field> </fields> <cluster_schema/>
  787 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  788 + <xloc>726</xloc>
  789 + <yloc>1005</yloc>
  790 + <draw>Y</draw>
  791 + </GUI>
  792 + </step>
  793 +
  794 + <step>
  795 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</name>
  796 + <type>DataGrid</type>
  797 + <description/>
  798 + <distribute>Y</distribute>
  799 + <custom_distribution/>
  800 + <copies>1</copies>
  801 + <partitioning>
  802 + <method>none</method>
  803 + <schema_name/>
  804 + </partitioning>
  805 + <fields>
  806 + </fields>
  807 + <data>
  808 + <line> </line>
  809 + </data>
  810 + <cluster_schema/>
  811 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  812 + <xloc>110</xloc>
  813 + <yloc>133</yloc>
  814 + <draw>Y</draw>
  815 + </GUI>
  816 + </step>
  817 +
  818 + <step>
  819 + <name>&#x5904;&#x7406;&#x6570;&#x636e;</name>
  820 + <type>ScriptValueMod</type>
  821 + <description/>
  822 + <distribute>Y</distribute>
  823 + <custom_distribution/>
  824 + <copies>1</copies>
  825 + <partitioning>
  826 + <method>none</method>
  827 + <schema_name/>
  828 + </partitioning>
  829 + <compatible>N</compatible>
  830 + <optimizationLevel>9</optimizationLevel>
  831 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  832 + <jsScript_name>Script 1</jsScript_name>
  833 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x5982;&#x679c;&#x7ad9;&#x540d;&#x4e2d;&#x6709;&#x7c7b;&#x4f3c;-&#x3e;&#x7b;&#x6570;&#x5b57;&#x7d;&#xff0c;&#x4f7f;&#x7528;&#x6b63;&#x5219;&#x8868;&#x8fbe;&#x5f0f;&#x8fc7;&#x6ee4;&#x6389;&#xa;qdzname &#x3d; qdzname.replace&#x28;&#x2f;-&#x3e;&#x5c;d&#x2b;&#x2f;g,&#x27;&#x27;&#x29;&#x3b;&#xa;if &#x28;qdzname &#x21;&#x3d; &#x22;&#x51fa;&#x573a;&#x22; &#x26;&#x26; qdzname &#x21;&#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x29; &#x7b;&#xa; qdzname &#x3d; qdzname &#x2b; &#x22;&#x25;&#x22;&#x3b; &#x2f;&#x2f; &#x6a21;&#x7cca;&#x5339;&#x914d;&#x6807;&#x8bc6;&#x7b26;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; sendtime&#x5904;&#x7406;&#xff0c;hhmm&#xff0c;hh&#x3a;mm&#xff0c;hh,mm&#xa;var sendtime_calcu &#x3d; sendtime.replace&#x28;&#x2f;&#x5c;s&#x2f;g, &#x22;&#x22;&#x29;&#x3b;&#xa;if &#x28;sendtime.length &#x3d;&#x3d; 5&#x29; &#x7b; &#x2f;&#x2f; &#x6700;&#x957f;&#x683c;&#x5f0f;&#xff0c;&#x5305;&#x62ec;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x7edf;&#x4e00;&#x628a;&#x5206;&#x9694;&#x7b26;&#x66ff;&#x6362;&#x6210;&#x5192;&#x53f7;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;3, 2&#x29;&#x3b;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 4&#x29; &#x7b;&#xa; if &#x28;sendtime.indexOf&#x28;&#x22;&#x3a;&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x5192;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x65e0;&#x9700;&#x4fee;&#x6539;&#xa; sendtime_calcu &#x3d; sendtime&#x3b;&#xa; &#x7d; else if &#x28;sendtime.indexOf&#x28;&#x22;,&#x22;&#x29; &#x3e; 0&#x29; &#x7b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d; else &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 2&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;2, 2&#x29;&#x3b;&#xa; &#x7d;&#xa;&#x7d; else if &#x28;sendtime.length &#x3d;&#x3d; 3&#x29; &#x7b; &#x2f;&#x2f; &#x65e0;&#x5206;&#x9694;&#x7b26;&#xff0c;&#x6539;&#x6210;&#x5192;&#x53f7;&#x5206;&#x9694;&#xa; sendtime_calcu &#x3d; sendtime.substr&#x28;0, 1&#x29; &#x2b; &#x22;&#x3a;&#x22; &#x2b; sendtime.substr&#x28;1, 2&#x29;&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x5168;&#x90e8;&#x4fee;&#x6b63;&#x5b8c;&#x6bd5;&#x540e;&#xff0c;&#x5982;&#x679c;&#x957f;&#x5ea6;&#x4e0d;&#x662f;5&#xff0c;&#x524d;&#x9762;&#x8865;0&#xa;if &#x28;sendtime_calcu.length &#x21;&#x3d; 5&#x29; &#x7b;&#xa; sendtime_calcu &#x3d; &#x22;0&#x22; &#x2b; sendtime_calcu&#x3b;&#xa;&#x7d;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x5206;&#x73ed;&#xa;var isfb &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;&#x505c;&#x9a76;&#xa;var ists &#x3d; 0&#x3b;&#xa;&#xa;&#x2f;&#x2f; &#x8bbe;&#x7f6e;isCanceled&#xa;var iscanceled &#x3d; 0&#x3b;</jsScript_script>
  834 + </jsScript> </jsScripts> <fields> <field> <name>qdzname</name>
  835 + <rename>qdzname</rename>
  836 + <type>String</type>
  837 + <length>-1</length>
  838 + <precision>-1</precision>
  839 + <replace>Y</replace>
  840 + </field> <field> <name>isfb</name>
  841 + <rename>isfb</rename>
  842 + <type>Integer</type>
  843 + <length>-1</length>
  844 + <precision>-1</precision>
  845 + <replace>N</replace>
  846 + </field> <field> <name>iscanceled</name>
  847 + <rename>iscanceled</rename>
  848 + <type>Integer</type>
  849 + <length>-1</length>
  850 + <precision>-1</precision>
  851 + <replace>N</replace>
  852 + </field> <field> <name>sendtime_calcu</name>
  853 + <rename>sendtime_calcu</rename>
  854 + <type>String</type>
  855 + <length>-1</length>
  856 + <precision>-1</precision>
  857 + <replace>N</replace>
  858 + </field> <field> <name>ists</name>
  859 + <rename>ists</rename>
  860 + <type>Integer</type>
  861 + <length>-1</length>
  862 + <precision>-1</precision>
  863 + <replace>N</replace>
  864 + </field> </fields> <cluster_schema/>
  865 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  866 + <xloc>788</xloc>
  867 + <yloc>44</yloc>
  868 + <draw>Y</draw>
  869 + </GUI>
  870 + </step>
  871 +
  872 + <step>
  873 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  874 + <type>SelectValues</type>
  875 + <description/>
  876 + <distribute>Y</distribute>
  877 + <custom_distribution/>
  878 + <copies>1</copies>
  879 + <partitioning>
  880 + <method>none</method>
  881 + <schema_name/>
  882 + </partitioning>
  883 + <fields> <field> <name>&#x8def;&#x724c;</name>
  884 + <rename>lp</rename>
  885 + <length>-2</length>
  886 + <precision>-2</precision>
  887 + </field> <field> <name>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</name>
  888 + <rename>qdzname</rename>
  889 + <length>-2</length>
  890 + <precision>-2</precision>
  891 + </field> <field> <name>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</name>
  892 + <rename>sendtime</rename>
  893 + <length>-2</length>
  894 + <precision>-2</precision>
  895 + </field> <select_unspecified>Y</select_unspecified>
  896 + </fields> <cluster_schema/>
  897 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  898 + <xloc>444</xloc>
  899 + <yloc>131</yloc>
  900 + <draw>Y</draw>
  901 + </GUI>
  902 + </step>
  903 +
  904 + <step>
  905 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;1</name>
  906 + <type>FilterRows</type>
  907 + <description/>
  908 + <distribute>Y</distribute>
  909 + <custom_distribution/>
  910 + <copies>1</copies>
  911 + <partitioning>
  912 + <method>none</method>
  913 + <schema_name/>
  914 + </partitioning>
  915 +<send_true_to>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  916 +<send_false_to>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</send_false_to>
  917 + <compare>
  918 +<condition>
  919 + <negated>N</negated>
  920 + <leftvalue>bctype</leftvalue>
  921 + <function>&#x3d;</function>
  922 + <rightvalue/>
  923 + <value><name>constant</name><type>String</type><text>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  924 + </compare>
  925 + <cluster_schema/>
  926 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  927 + <xloc>860</xloc>
  928 + <yloc>401</yloc>
  929 + <draw>Y</draw>
  930 + </GUI>
  931 + </step>
  932 +
  933 + <step>
  934 + <name>&#x6309;&#x7167;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x8fc7;&#x6ee4;&#x6570;&#x636e;2</name>
  935 + <type>FilterRows</type>
  936 + <description/>
  937 + <distribute>Y</distribute>
  938 + <custom_distribution/>
  939 + <copies>1</copies>
  940 + <partitioning>
  941 + <method>none</method>
  942 + <schema_name/>
  943 + </partitioning>
  944 +<send_true_to>&#x51fa;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_true_to>
  945 +<send_false_to>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</send_false_to>
  946 + <compare>
  947 +<condition>
  948 + <negated>N</negated>
  949 + <leftvalue>bctype</leftvalue>
  950 + <function>&#x3d;</function>
  951 + <rightvalue/>
  952 + <value><name>constant</name><type>String</type><text>&#x51fa;&#x573a;</text><length>-1</length><precision>-1</precision><isnull>N</isnull><mask/></value> </condition>
  953 + </compare>
  954 + <cluster_schema/>
  955 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  956 + <xloc>995</xloc>
  957 + <yloc>503</yloc>
  958 + <draw>Y</draw>
  959 + </GUI>
  960 + </step>
  961 +
  962 + <step>
  963 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</name>
  964 + <type>InsertUpdate</type>
  965 + <description/>
  966 + <distribute>Y</distribute>
  967 + <custom_distribution/>
  968 + <copies>1</copies>
  969 + <partitioning>
  970 + <method>none</method>
  971 + <schema_name/>
  972 + </partitioning>
  973 + <connection>bus_control_variable</connection>
  974 + <commit>100</commit>
  975 + <update_bypassed>N</update_bypassed>
  976 + <lookup>
  977 + <schema/>
  978 + <table>bsth_c_s_ttinfo_detail</table>
  979 + <key>
  980 + <name>xlid</name>
  981 + <field>xl</field>
  982 + <condition>&#x3d;</condition>
  983 + <name2/>
  984 + </key>
  985 + <key>
  986 + <name>ttid</name>
  987 + <field>ttinfo</field>
  988 + <condition>&#x3d;</condition>
  989 + <name2/>
  990 + </key>
  991 + <key>
  992 + <name>lpid</name>
  993 + <field>lp</field>
  994 + <condition>&#x3d;</condition>
  995 + <name2/>
  996 + </key>
  997 + <key>
  998 + <name>fcno</name>
  999 + <field>fcno</field>
  1000 + <condition>&#x3d;</condition>
  1001 + <name2/>
  1002 + </key>
  1003 + <key>
  1004 + <name>bcs</name>
  1005 + <field>bcs</field>
  1006 + <condition>&#x3d;</condition>
  1007 + <name2/>
  1008 + </key>
  1009 + <value>
  1010 + <name>lp</name>
  1011 + <rename>lpid</rename>
  1012 + <update>Y</update>
  1013 + </value>
  1014 + <value>
  1015 + <name>bc_type</name>
  1016 + <rename>bctype_code</rename>
  1017 + <update>Y</update>
  1018 + </value>
  1019 + <value>
  1020 + <name>bcs</name>
  1021 + <rename>bcs</rename>
  1022 + <update>Y</update>
  1023 + </value>
  1024 + <value>
  1025 + <name>bcsj</name>
  1026 + <rename>bcsj</rename>
  1027 + <update>Y</update>
  1028 + </value>
  1029 + <value>
  1030 + <name>fcno</name>
  1031 + <rename>fcno</rename>
  1032 + <update>Y</update>
  1033 + </value>
  1034 + <value>
  1035 + <name>jhlc</name>
  1036 + <rename>jhlc</rename>
  1037 + <update>Y</update>
  1038 + </value>
  1039 + <value>
  1040 + <name>fcsj</name>
  1041 + <rename>sendtime_calcu</rename>
  1042 + <update>Y</update>
  1043 + </value>
  1044 + <value>
  1045 + <name>ttinfo</name>
  1046 + <rename>ttid</rename>
  1047 + <update>Y</update>
  1048 + </value>
  1049 + <value>
  1050 + <name>xl</name>
  1051 + <rename>xlid</rename>
  1052 + <update>Y</update>
  1053 + </value>
  1054 + <value>
  1055 + <name>qdz</name>
  1056 + <rename>qdzid</rename>
  1057 + <update>Y</update>
  1058 + </value>
  1059 + <value>
  1060 + <name>zdz</name>
  1061 + <rename>zdzid</rename>
  1062 + <update>Y</update>
  1063 + </value>
  1064 + <value>
  1065 + <name>xl_dir</name>
  1066 + <rename>sxx</rename>
  1067 + <update>Y</update>
  1068 + </value>
  1069 + <value>
  1070 + <name>isfb</name>
  1071 + <rename>isfb</rename>
  1072 + <update>Y</update>
  1073 + </value>
  1074 + <value>
  1075 + <name>qdz_code</name>
  1076 + <rename>qdzcode</rename>
  1077 + <update>Y</update>
  1078 + </value>
  1079 + <value>
  1080 + <name>qdz_name</name>
  1081 + <rename>qdzname_</rename>
  1082 + <update>Y</update>
  1083 + </value>
  1084 + <value>
  1085 + <name>zdz_code</name>
  1086 + <rename>zdzcode</rename>
  1087 + <update>Y</update>
  1088 + </value>
  1089 + <value>
  1090 + <name>zdz_name</name>
  1091 + <rename>zdzname</rename>
  1092 + <update>Y</update>
  1093 + </value>
  1094 + <value>
  1095 + <name>ists</name>
  1096 + <rename>ists</rename>
  1097 + <update>Y</update>
  1098 + </value>
  1099 + <value>
  1100 + <name>line_version</name>
  1101 + <rename>version</rename>
  1102 + <update>Y</update>
  1103 + </value>
  1104 + </lookup>
  1105 + <cluster_schema/>
  1106 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1107 + <xloc>143</xloc>
  1108 + <yloc>860</yloc>
  1109 + <draw>Y</draw>
  1110 + </GUI>
  1111 + </step>
  1112 +
  1113 + <step>
  1114 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 2</name>
  1115 + <type>InsertUpdate</type>
  1116 + <description/>
  1117 + <distribute>Y</distribute>
  1118 + <custom_distribution/>
  1119 + <copies>1</copies>
  1120 + <partitioning>
  1121 + <method>none</method>
  1122 + <schema_name/>
  1123 + </partitioning>
  1124 + <connection>bus_control_variable</connection>
  1125 + <commit>100</commit>
  1126 + <update_bypassed>N</update_bypassed>
  1127 + <lookup>
  1128 + <schema/>
  1129 + <table>bsth_c_s_ttinfo_detail</table>
  1130 + <key>
  1131 + <name>xlid</name>
  1132 + <field>xl</field>
  1133 + <condition>&#x3d;</condition>
  1134 + <name2/>
  1135 + </key>
  1136 + <key>
  1137 + <name>ttid</name>
  1138 + <field>ttinfo</field>
  1139 + <condition>&#x3d;</condition>
  1140 + <name2/>
  1141 + </key>
  1142 + <key>
  1143 + <name>lpid</name>
  1144 + <field>lp</field>
  1145 + <condition>&#x3d;</condition>
  1146 + <name2/>
  1147 + </key>
  1148 + <key>
  1149 + <name>fcno</name>
  1150 + <field>fcno</field>
  1151 + <condition>&#x3d;</condition>
  1152 + <name2/>
  1153 + </key>
  1154 + <key>
  1155 + <name>bcs</name>
  1156 + <field>bcs</field>
  1157 + <condition>&#x3d;</condition>
  1158 + <name2/>
  1159 + </key>
  1160 + <value>
  1161 + <name>tcc</name>
  1162 + <rename>qdzid</rename>
  1163 + <update>Y</update>
  1164 + </value>
  1165 + <value>
  1166 + <name>zdz</name>
  1167 + <rename>zdzid</rename>
  1168 + <update>Y</update>
  1169 + </value>
  1170 + <value>
  1171 + <name>xl</name>
  1172 + <rename>xlid</rename>
  1173 + <update>Y</update>
  1174 + </value>
  1175 + <value>
  1176 + <name>ttinfo</name>
  1177 + <rename>ttid</rename>
  1178 + <update>Y</update>
  1179 + </value>
  1180 + <value>
  1181 + <name>xl_dir</name>
  1182 + <rename>sxx</rename>
  1183 + <update>Y</update>
  1184 + </value>
  1185 + <value>
  1186 + <name>lp</name>
  1187 + <rename>lpid</rename>
  1188 + <update>Y</update>
  1189 + </value>
  1190 + <value>
  1191 + <name>jhlc</name>
  1192 + <rename>out_mileage</rename>
  1193 + <update>Y</update>
  1194 + </value>
  1195 + <value>
  1196 + <name>fcsj</name>
  1197 + <rename>sendtime_calcu</rename>
  1198 + <update>Y</update>
  1199 + </value>
  1200 + <value>
  1201 + <name>bcsj</name>
  1202 + <rename>out_time</rename>
  1203 + <update>Y</update>
  1204 + </value>
  1205 + <value>
  1206 + <name>bcs</name>
  1207 + <rename>bcs</rename>
  1208 + <update>Y</update>
  1209 + </value>
  1210 + <value>
  1211 + <name>fcno</name>
  1212 + <rename>fcno</rename>
  1213 + <update>Y</update>
  1214 + </value>
  1215 + <value>
  1216 + <name>bc_type</name>
  1217 + <rename>bctype_code</rename>
  1218 + <update>Y</update>
  1219 + </value>
  1220 + <value>
  1221 + <name>isfb</name>
  1222 + <rename>isfb</rename>
  1223 + <update>Y</update>
  1224 + </value>
  1225 + <value>
  1226 + <name>qdz_code</name>
  1227 + <rename>qdzcode</rename>
  1228 + <update>Y</update>
  1229 + </value>
  1230 + <value>
  1231 + <name>qdz_name</name>
  1232 + <rename>tn</rename>
  1233 + <update>Y</update>
  1234 + </value>
  1235 + <value>
  1236 + <name>zdz_code</name>
  1237 + <rename>zdzcode</rename>
  1238 + <update>Y</update>
  1239 + </value>
  1240 + <value>
  1241 + <name>zdz_name</name>
  1242 + <rename>zdzname_</rename>
  1243 + <update>Y</update>
  1244 + </value>
  1245 + <value>
  1246 + <name>ists</name>
  1247 + <rename>ists</rename>
  1248 + <update>Y</update>
  1249 + </value>
  1250 + <value>
  1251 + <name>line_version</name>
  1252 + <rename>version</rename>
  1253 + <update>Y</update>
  1254 + </value>
  1255 + </lookup>
  1256 + <cluster_schema/>
  1257 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1258 + <xloc>340</xloc>
  1259 + <yloc>1087</yloc>
  1260 + <draw>Y</draw>
  1261 + </GUI>
  1262 + </step>
  1263 +
  1264 + <step>
  1265 + <name>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail 3</name>
  1266 + <type>InsertUpdate</type>
  1267 + <description/>
  1268 + <distribute>Y</distribute>
  1269 + <custom_distribution/>
  1270 + <copies>1</copies>
  1271 + <partitioning>
  1272 + <method>none</method>
  1273 + <schema_name/>
  1274 + </partitioning>
  1275 + <connection>bus_control_variable</connection>
  1276 + <commit>100</commit>
  1277 + <update_bypassed>N</update_bypassed>
  1278 + <lookup>
  1279 + <schema/>
  1280 + <table>bsth_c_s_ttinfo_detail</table>
  1281 + <key>
  1282 + <name>xlid</name>
  1283 + <field>xl</field>
  1284 + <condition>&#x3d;</condition>
  1285 + <name2/>
  1286 + </key>
  1287 + <key>
  1288 + <name>ttid</name>
  1289 + <field>ttinfo</field>
  1290 + <condition>&#x3d;</condition>
  1291 + <name2/>
  1292 + </key>
  1293 + <key>
  1294 + <name>lpid</name>
  1295 + <field>lp</field>
  1296 + <condition>&#x3d;</condition>
  1297 + <name2/>
  1298 + </key>
  1299 + <key>
  1300 + <name>fcno</name>
  1301 + <field>fcno</field>
  1302 + <condition>&#x3d;</condition>
  1303 + <name2/>
  1304 + </key>
  1305 + <key>
  1306 + <name>bcs</name>
  1307 + <field>bcs</field>
  1308 + <condition>&#x3d;</condition>
  1309 + <name2/>
  1310 + </key>
  1311 + <value>
  1312 + <name>fcno</name>
  1313 + <rename>fcno</rename>
  1314 + <update>Y</update>
  1315 + </value>
  1316 + <value>
  1317 + <name>bcs</name>
  1318 + <rename>bcs</rename>
  1319 + <update>Y</update>
  1320 + </value>
  1321 + <value>
  1322 + <name>xl</name>
  1323 + <rename>xlid</rename>
  1324 + <update>Y</update>
  1325 + </value>
  1326 + <value>
  1327 + <name>ttinfo</name>
  1328 + <rename>ttid</rename>
  1329 + <update>Y</update>
  1330 + </value>
  1331 + <value>
  1332 + <name>lp</name>
  1333 + <rename>lpid</rename>
  1334 + <update>Y</update>
  1335 + </value>
  1336 + <value>
  1337 + <name>bc_type</name>
  1338 + <rename>bctype_code</rename>
  1339 + <update>Y</update>
  1340 + </value>
  1341 + <value>
  1342 + <name>bcsj</name>
  1343 + <rename>parade_time</rename>
  1344 + <update>Y</update>
  1345 + </value>
  1346 + <value>
  1347 + <name>jhlc</name>
  1348 + <rename>parade_mileage</rename>
  1349 + <update>Y</update>
  1350 + </value>
  1351 + <value>
  1352 + <name>fcsj</name>
  1353 + <rename>sendtime_calcu</rename>
  1354 + <update>Y</update>
  1355 + </value>
  1356 + <value>
  1357 + <name>xl_dir</name>
  1358 + <rename>sxx2</rename>
  1359 + <update>Y</update>
  1360 + </value>
  1361 + <value>
  1362 + <name>qdz</name>
  1363 + <rename>qdzid</rename>
  1364 + <update>Y</update>
  1365 + </value>
  1366 + <value>
  1367 + <name>tcc</name>
  1368 + <rename>zdzid</rename>
  1369 + <update>Y</update>
  1370 + </value>
  1371 + <value>
  1372 + <name>isfb</name>
  1373 + <rename>isfb</rename>
  1374 + <update>Y</update>
  1375 + </value>
  1376 + <value>
  1377 + <name>qdz_code</name>
  1378 + <rename>qdzcode</rename>
  1379 + <update>Y</update>
  1380 + </value>
  1381 + <value>
  1382 + <name>qdz_name</name>
  1383 + <rename>qname</rename>
  1384 + <update>Y</update>
  1385 + </value>
  1386 + <value>
  1387 + <name>zdz_code</name>
  1388 + <rename>zdzcode</rename>
  1389 + <update>Y</update>
  1390 + </value>
  1391 + <value>
  1392 + <name>zdz_name</name>
  1393 + <rename>tn</rename>
  1394 + <update>Y</update>
  1395 + </value>
  1396 + <value>
  1397 + <name>ists</name>
  1398 + <rename>ists</rename>
  1399 + <update>Y</update>
  1400 + </value>
  1401 + <value>
  1402 + <name>line_version</name>
  1403 + <rename>version</rename>
  1404 + <update>Y</update>
  1405 + </value>
  1406 + </lookup>
  1407 + <cluster_schema/>
  1408 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1409 + <xloc>845</xloc>
  1410 + <yloc>899</yloc>
  1411 + <draw>Y</draw>
  1412 + </GUI>
  1413 + </step>
  1414 +
  1415 + <step>
  1416 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</name>
  1417 + <type>ExcelInput</type>
  1418 + <description/>
  1419 + <distribute>N</distribute>
  1420 + <custom_distribution/>
  1421 + <copies>1</copies>
  1422 + <partitioning>
  1423 + <method>none</method>
  1424 + <schema_name/>
  1425 + </partitioning>
  1426 + <header>Y</header>
  1427 + <noempty>Y</noempty>
  1428 + <stoponempty>N</stoponempty>
  1429 + <filefield/>
  1430 + <sheetfield/>
  1431 + <sheetrownumfield/>
  1432 + <rownumfield/>
  1433 + <sheetfield/>
  1434 + <filefield/>
  1435 + <limit>0</limit>
  1436 + <encoding/>
  1437 + <add_to_result_filenames>Y</add_to_result_filenames>
  1438 + <accept_filenames>N</accept_filenames>
  1439 + <accept_field/>
  1440 + <accept_stepname/>
  1441 + <file>
  1442 + <name/>
  1443 + <filemask/>
  1444 + <exclude_filemask/>
  1445 + <file_required>N</file_required>
  1446 + <include_subfolders>N</include_subfolders>
  1447 + </file>
  1448 + <fields>
  1449 + </fields>
  1450 + <sheets>
  1451 + <sheet>
  1452 + <name/>
  1453 + <startrow>0</startrow>
  1454 + <startcol>0</startcol>
  1455 + </sheet>
  1456 + </sheets>
  1457 + <strict_types>N</strict_types>
  1458 + <error_ignored>N</error_ignored>
  1459 + <error_line_skipped>N</error_line_skipped>
  1460 + <bad_line_files_destination_directory/>
  1461 + <bad_line_files_extension>warning</bad_line_files_extension>
  1462 + <error_line_files_destination_directory/>
  1463 + <error_line_files_extension>error</error_line_files_extension>
  1464 + <line_number_files_destination_directory/>
  1465 + <line_number_files_extension>line</line_number_files_extension>
  1466 + <shortFileFieldName/>
  1467 + <pathFieldName/>
  1468 + <hiddenFieldName/>
  1469 + <lastModificationTimeFieldName/>
  1470 + <uriNameFieldName/>
  1471 + <rootUriNameFieldName/>
  1472 + <extensionFieldName/>
  1473 + <sizeFieldName/>
  1474 + <spreadsheet_type>JXL</spreadsheet_type>
  1475 + <cluster_schema/>
  1476 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1477 + <xloc>112</xloc>
  1478 + <yloc>44</yloc>
  1479 + <draw>Y</draw>
  1480 + </GUI>
  1481 + </step>
  1482 +
  1483 + <step>
  1484 + <name>&#x66f4;&#x65b0;&#x65f6;&#x523b;&#x8868;&#x4e3b;&#x8868;&#x7248;&#x672c;</name>
  1485 + <type>Update</type>
  1486 + <description/>
  1487 + <distribute>Y</distribute>
  1488 + <custom_distribution/>
  1489 + <copies>1</copies>
  1490 + <partitioning>
  1491 + <method>none</method>
  1492 + <schema_name/>
  1493 + </partitioning>
  1494 + <connection>bus_control_variable</connection>
  1495 + <skip_lookup>N</skip_lookup>
  1496 + <commit>100</commit>
  1497 + <use_batch>N</use_batch>
  1498 + <error_ignored>N</error_ignored>
  1499 + <ignore_flag_field/>
  1500 + <lookup>
  1501 + <schema/>
  1502 + <table>bsth_c_s_ttinfo</table>
  1503 + <key>
  1504 + <name>ttid</name>
  1505 + <field>id</field>
  1506 + <condition>&#x3d;</condition>
  1507 + <name2/>
  1508 + </key>
  1509 + <value>
  1510 + <name>line_version</name>
  1511 + <rename>version</rename>
  1512 + </value>
  1513 + </lookup>
  1514 + <cluster_schema/>
  1515 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1516 + <xloc>863</xloc>
  1517 + <yloc>338</yloc>
  1518 + <draw>Y</draw>
  1519 + </GUI>
  1520 + </step>
  1521 +
  1522 + <step>
  1523 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;1</name>
  1524 + <type>DBLookup</type>
  1525 + <description/>
  1526 + <distribute>Y</distribute>
  1527 + <custom_distribution/>
  1528 + <copies>1</copies>
  1529 + <partitioning>
  1530 + <method>none</method>
  1531 + <schema_name/>
  1532 + </partitioning>
  1533 + <connection>bus_control_variable</connection>
  1534 + <cache>N</cache>
  1535 + <cache_load_all>N</cache_load_all>
  1536 + <cache_size>0</cache_size>
  1537 + <lookup>
  1538 + <schema/>
  1539 + <table>bsth_c_car_park</table>
  1540 + <orderby/>
  1541 + <fail_on_multiple>N</fail_on_multiple>
  1542 + <eat_row_on_failure>N</eat_row_on_failure>
  1543 + <key>
  1544 + <name>tccname_</name>
  1545 + <field>park_name</field>
  1546 + <condition>&#x3d;</condition>
  1547 + <name2/>
  1548 + </key>
  1549 + <value>
  1550 + <name>id</name>
  1551 + <rename>qdzid</rename>
  1552 + <default/>
  1553 + <type>Integer</type>
  1554 + </value>
  1555 + <value>
  1556 + <name>park_code</name>
  1557 + <rename>qdzcode</rename>
  1558 + <default/>
  1559 + <type>String</type>
  1560 + </value>
  1561 + <value>
  1562 + <name>park_name</name>
  1563 + <rename>tn</rename>
  1564 + <default/>
  1565 + <type>String</type>
  1566 + </value>
  1567 + </lookup>
  1568 + <cluster_schema/>
  1569 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1570 + <xloc>755</xloc>
  1571 + <yloc>504</yloc>
  1572 + <draw>Y</draw>
  1573 + </GUI>
  1574 + </step>
  1575 +
  1576 + <step>
  1577 + <name>&#x67e5;&#x627e;&#x505c;&#x8f66;&#x573a;2</name>
  1578 + <type>DBLookup</type>
  1579 + <description/>
  1580 + <distribute>Y</distribute>
  1581 + <custom_distribution/>
  1582 + <copies>1</copies>
  1583 + <partitioning>
  1584 + <method>none</method>
  1585 + <schema_name/>
  1586 + </partitioning>
  1587 + <connection>bus_control_variable</connection>
  1588 + <cache>N</cache>
  1589 + <cache_load_all>N</cache_load_all>
  1590 + <cache_size>0</cache_size>
  1591 + <lookup>
  1592 + <schema/>
  1593 + <table>bsth_c_car_park</table>
  1594 + <orderby/>
  1595 + <fail_on_multiple>N</fail_on_multiple>
  1596 + <eat_row_on_failure>N</eat_row_on_failure>
  1597 + <key>
  1598 + <name>tccname_</name>
  1599 + <field>park_name</field>
  1600 + <condition>&#x3d;</condition>
  1601 + <name2/>
  1602 + </key>
  1603 + <value>
  1604 + <name>id</name>
  1605 + <rename>zdzid</rename>
  1606 + <default/>
  1607 + <type>Integer</type>
  1608 + </value>
  1609 + <value>
  1610 + <name>park_code</name>
  1611 + <rename>zdzcode</rename>
  1612 + <default/>
  1613 + <type>String</type>
  1614 + </value>
  1615 + <value>
  1616 + <name>park_name</name>
  1617 + <rename>tn</rename>
  1618 + <default/>
  1619 + <type>String</type>
  1620 + </value>
  1621 + </lookup>
  1622 + <cluster_schema/>
  1623 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1624 + <xloc>887</xloc>
  1625 + <yloc>608</yloc>
  1626 + <draw>Y</draw>
  1627 + </GUI>
  1628 + </step>
  1629 +
  1630 + <step>
  1631 + <name>&#x67e5;&#x627e;&#x51fa;&#x573a;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  1632 + <type>DBLookup</type>
  1633 + <description/>
  1634 + <distribute>Y</distribute>
  1635 + <custom_distribution/>
  1636 + <copies>1</copies>
  1637 + <partitioning>
  1638 + <method>none</method>
  1639 + <schema_name/>
  1640 + </partitioning>
  1641 + <connection>bus_control_variable</connection>
  1642 + <cache>N</cache>
  1643 + <cache_load_all>N</cache_load_all>
  1644 + <cache_size>0</cache_size>
  1645 + <lookup>
  1646 + <schema/>
  1647 + <table>bsth_c_ls_stationroute</table>
  1648 + <orderby/>
  1649 + <fail_on_multiple>N</fail_on_multiple>
  1650 + <eat_row_on_failure>N</eat_row_on_failure>
  1651 + <key>
  1652 + <name>xlid</name>
  1653 + <field>line</field>
  1654 + <condition>&#x3d;</condition>
  1655 + <name2/>
  1656 + </key>
  1657 + <key>
  1658 + <name>version</name>
  1659 + <field>versions</field>
  1660 + <condition>&#x3d;</condition>
  1661 + <name2/>
  1662 + </key>
  1663 + <key>
  1664 + <name>zdzname</name>
  1665 + <field>station_name</field>
  1666 + <condition>LIKE</condition>
  1667 + <name2/>
  1668 + </key>
  1669 + <key>
  1670 + <name>endZdtype</name>
  1671 + <field>station_mark</field>
  1672 + <condition>&#x3d;</condition>
  1673 + <name2/>
  1674 + </key>
  1675 + <key>
  1676 + <name>destory</name>
  1677 + <field>destroy</field>
  1678 + <condition>&#x3d;</condition>
  1679 + <name2/>
  1680 + </key>
  1681 + <value>
  1682 + <name>station</name>
  1683 + <rename>zdzid</rename>
  1684 + <default/>
  1685 + <type>Integer</type>
  1686 + </value>
  1687 + <value>
  1688 + <name>directions</name>
  1689 + <rename>sxx</rename>
  1690 + <default/>
  1691 + <type>Integer</type>
  1692 + </value>
  1693 + <value>
  1694 + <name>station_code</name>
  1695 + <rename>zdzcode</rename>
  1696 + <default/>
  1697 + <type>String</type>
  1698 + </value>
  1699 + <value>
  1700 + <name>station_name</name>
  1701 + <rename>zdzname_</rename>
  1702 + <default/>
  1703 + <type>String</type>
  1704 + </value>
  1705 + </lookup>
  1706 + <cluster_schema/>
  1707 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1708 + <xloc>329</xloc>
  1709 + <yloc>505</yloc>
  1710 + <draw>Y</draw>
  1711 + </GUI>
  1712 + </step>
  1713 +
  1714 + <step>
  1715 + <name>&#x67e5;&#x627e;&#x6240;&#x6709;&#x7ebf;&#x8def;&#x4e0a;&#x4e0b;&#x884c;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1716 + <type>DBLookup</type>
  1717 + <description/>
  1718 + <distribute>Y</distribute>
  1719 + <custom_distribution/>
  1720 + <copies>1</copies>
  1721 + <partitioning>
  1722 + <method>none</method>
  1723 + <schema_name/>
  1724 + </partitioning>
  1725 + <connection>bus_control_variable</connection>
  1726 + <cache>N</cache>
  1727 + <cache_load_all>N</cache_load_all>
  1728 + <cache_size>0</cache_size>
  1729 + <lookup>
  1730 + <schema/>
  1731 + <table>bsth_c_line_information</table>
  1732 + <orderby/>
  1733 + <fail_on_multiple>N</fail_on_multiple>
  1734 + <eat_row_on_failure>N</eat_row_on_failure>
  1735 + <key>
  1736 + <name>xlid</name>
  1737 + <field>line</field>
  1738 + <condition>&#x3d;</condition>
  1739 + <name2/>
  1740 + </key>
  1741 + <value>
  1742 + <name>up_mileage</name>
  1743 + <rename>up_mileage</rename>
  1744 + <default/>
  1745 + <type>Number</type>
  1746 + </value>
  1747 + <value>
  1748 + <name>down_mileage</name>
  1749 + <rename>down_mileage</rename>
  1750 + <default/>
  1751 + <type>Number</type>
  1752 + </value>
  1753 + <value>
  1754 + <name>up_travel_time</name>
  1755 + <rename>up_travel_time</rename>
  1756 + <default/>
  1757 + <type>Number</type>
  1758 + </value>
  1759 + <value>
  1760 + <name>down_travel_time</name>
  1761 + <rename>down_travel_time</rename>
  1762 + <default/>
  1763 + <type>Number</type>
  1764 + </value>
  1765 + <value>
  1766 + <name>early_start_time</name>
  1767 + <rename>early_start_time</rename>
  1768 + <default/>
  1769 + <type>String</type>
  1770 + </value>
  1771 + <value>
  1772 + <name>early_end_time</name>
  1773 + <rename>early_end_time</rename>
  1774 + <default/>
  1775 + <type>String</type>
  1776 + </value>
  1777 + <value>
  1778 + <name>early_up_time</name>
  1779 + <rename>early_up_time</rename>
  1780 + <default/>
  1781 + <type>Number</type>
  1782 + </value>
  1783 + <value>
  1784 + <name>early_down_time</name>
  1785 + <rename>early_down_time</rename>
  1786 + <default/>
  1787 + <type>Number</type>
  1788 + </value>
  1789 + <value>
  1790 + <name>late_start_time</name>
  1791 + <rename>late_start_time</rename>
  1792 + <default/>
  1793 + <type>String</type>
  1794 + </value>
  1795 + <value>
  1796 + <name>late_end_time</name>
  1797 + <rename>late_end_time</rename>
  1798 + <default/>
  1799 + <type>String</type>
  1800 + </value>
  1801 + <value>
  1802 + <name>late_up_time</name>
  1803 + <rename>late_up_time</rename>
  1804 + <default/>
  1805 + <type>Number</type>
  1806 + </value>
  1807 + <value>
  1808 + <name>late_down_time</name>
  1809 + <rename>late_down_time</rename>
  1810 + <default/>
  1811 + <type>Number</type>
  1812 + </value>
  1813 + </lookup>
  1814 + <cluster_schema/>
  1815 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1816 + <xloc>149</xloc>
  1817 + <yloc>581</yloc>
  1818 + <draw>Y</draw>
  1819 + </GUI>
  1820 + </step>
  1821 +
  1822 + <step>
  1823 + <name>&#x67e5;&#x627e;&#x65f6;&#x523b;&#x8868;&#x57fa;&#x7840;&#x4fe1;&#x606f;&#x5173;&#x8054;</name>
  1824 + <type>DBLookup</type>
  1825 + <description/>
  1826 + <distribute>Y</distribute>
  1827 + <custom_distribution/>
  1828 + <copies>1</copies>
  1829 + <partitioning>
  1830 + <method>none</method>
  1831 + <schema_name/>
  1832 + </partitioning>
  1833 + <connection>bus_control_variable</connection>
  1834 + <cache>N</cache>
  1835 + <cache_load_all>N</cache_load_all>
  1836 + <cache_size>0</cache_size>
  1837 + <lookup>
  1838 + <schema/>
  1839 + <table>bsth_c_s_ttinfo</table>
  1840 + <orderby/>
  1841 + <fail_on_multiple>N</fail_on_multiple>
  1842 + <eat_row_on_failure>N</eat_row_on_failure>
  1843 + <key>
  1844 + <name>xlid</name>
  1845 + <field>xl</field>
  1846 + <condition>&#x3d;</condition>
  1847 + <name2/>
  1848 + </key>
  1849 + <key>
  1850 + <name>ttinfoname_</name>
  1851 + <field>name</field>
  1852 + <condition>&#x3d;</condition>
  1853 + <name2/>
  1854 + </key>
  1855 + <key>
  1856 + <name>iscanceled</name>
  1857 + <field>is_cancel</field>
  1858 + <condition>&#x3d;</condition>
  1859 + <name2/>
  1860 + </key>
  1861 + <value>
  1862 + <name>id</name>
  1863 + <rename>ttid</rename>
  1864 + <default/>
  1865 + <type>Integer</type>
  1866 + </value>
  1867 + </lookup>
  1868 + <cluster_schema/>
  1869 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1870 + <xloc>1011</xloc>
  1871 + <yloc>134</yloc>
  1872 + <draw>Y</draw>
  1873 + </GUI>
  1874 + </step>
  1875 +
  1876 + <step>
  1877 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x5173;&#x8054;</name>
  1878 + <type>DBLookup</type>
  1879 + <description/>
  1880 + <distribute>Y</distribute>
  1881 + <custom_distribution/>
  1882 + <copies>1</copies>
  1883 + <partitioning>
  1884 + <method>none</method>
  1885 + <schema_name/>
  1886 + </partitioning>
  1887 + <connection>bus_control_variable</connection>
  1888 + <cache>N</cache>
  1889 + <cache_load_all>N</cache_load_all>
  1890 + <cache_size>0</cache_size>
  1891 + <lookup>
  1892 + <schema/>
  1893 + <table>bsth_c_line</table>
  1894 + <orderby/>
  1895 + <fail_on_multiple>N</fail_on_multiple>
  1896 + <eat_row_on_failure>N</eat_row_on_failure>
  1897 + <key>
  1898 + <name>xlname_</name>
  1899 + <field>name</field>
  1900 + <condition>&#x3d;</condition>
  1901 + <name2/>
  1902 + </key>
  1903 + <key>
  1904 + <name>iscanceled</name>
  1905 + <field>destroy</field>
  1906 + <condition>&#x3d;</condition>
  1907 + <name2/>
  1908 + </key>
  1909 + <value>
  1910 + <name>id</name>
  1911 + <rename>xlid</rename>
  1912 + <default/>
  1913 + <type>Integer</type>
  1914 + </value>
  1915 + </lookup>
  1916 + <cluster_schema/>
  1917 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1918 + <xloc>1007</xloc>
  1919 + <yloc>43</yloc>
  1920 + <draw>Y</draw>
  1921 + </GUI>
  1922 + </step>
  1923 +
  1924 + <step>
  1925 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x51fa;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1926 + <type>DBLookup</type>
  1927 + <description/>
  1928 + <distribute>Y</distribute>
  1929 + <custom_distribution/>
  1930 + <copies>1</copies>
  1931 + <partitioning>
  1932 + <method>none</method>
  1933 + <schema_name/>
  1934 + </partitioning>
  1935 + <connection>bus_control_variable</connection>
  1936 + <cache>N</cache>
  1937 + <cache_load_all>N</cache_load_all>
  1938 + <cache_size>0</cache_size>
  1939 + <lookup>
  1940 + <schema/>
  1941 + <table>bsth_c_line_information</table>
  1942 + <orderby/>
  1943 + <fail_on_multiple>N</fail_on_multiple>
  1944 + <eat_row_on_failure>N</eat_row_on_failure>
  1945 + <key>
  1946 + <name>xlid</name>
  1947 + <field>line</field>
  1948 + <condition>&#x3d;</condition>
  1949 + <name2/>
  1950 + </key>
  1951 + <value>
  1952 + <name>up_out_timer</name>
  1953 + <rename>up_out_timer</rename>
  1954 + <default/>
  1955 + <type>Number</type>
  1956 + </value>
  1957 + <value>
  1958 + <name>up_out_mileage</name>
  1959 + <rename>up_out_mileage</rename>
  1960 + <default/>
  1961 + <type>Number</type>
  1962 + </value>
  1963 + <value>
  1964 + <name>down_out_timer</name>
  1965 + <rename>down_out_timer</rename>
  1966 + <default/>
  1967 + <type>Number</type>
  1968 + </value>
  1969 + <value>
  1970 + <name>down_out_mileage</name>
  1971 + <rename>down_out_mileage</rename>
  1972 + <default/>
  1973 + <type>Number</type>
  1974 + </value>
  1975 + </lookup>
  1976 + <cluster_schema/>
  1977 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1978 + <xloc>335</xloc>
  1979 + <yloc>763</yloc>
  1980 + <draw>Y</draw>
  1981 + </GUI>
  1982 + </step>
  1983 +
  1984 + <step>
  1985 + <name>&#x67e5;&#x627e;&#x7ebf;&#x8def;&#x8fdb;&#x573a;&#x91cc;&#x7a0b;&#x65f6;&#x95f4;</name>
  1986 + <type>DBLookup</type>
  1987 + <description/>
  1988 + <distribute>Y</distribute>
  1989 + <custom_distribution/>
  1990 + <copies>1</copies>
  1991 + <partitioning>
  1992 + <method>none</method>
  1993 + <schema_name/>
  1994 + </partitioning>
  1995 + <connection>bus_control_variable</connection>
  1996 + <cache>N</cache>
  1997 + <cache_load_all>N</cache_load_all>
  1998 + <cache_size>0</cache_size>
  1999 + <lookup>
  2000 + <schema/>
  2001 + <table>bsth_c_line_information</table>
  2002 + <orderby/>
  2003 + <fail_on_multiple>N</fail_on_multiple>
  2004 + <eat_row_on_failure>N</eat_row_on_failure>
  2005 + <key>
  2006 + <name>xlid</name>
  2007 + <field>line</field>
  2008 + <condition>&#x3d;</condition>
  2009 + <name2/>
  2010 + </key>
  2011 + <value>
  2012 + <name>up_in_mileage</name>
  2013 + <rename>up_in_mileage</rename>
  2014 + <default/>
  2015 + <type>Number</type>
  2016 + </value>
  2017 + <value>
  2018 + <name>up_in_timer</name>
  2019 + <rename>up_in_timer</rename>
  2020 + <default/>
  2021 + <type>Number</type>
  2022 + </value>
  2023 + <value>
  2024 + <name>down_in_mileage</name>
  2025 + <rename>down_in_mileage</rename>
  2026 + <default/>
  2027 + <type>Number</type>
  2028 + </value>
  2029 + <value>
  2030 + <name>down_in_timer</name>
  2031 + <rename>down_in_timer</rename>
  2032 + <default/>
  2033 + <type>Number</type>
  2034 + </value>
  2035 + </lookup>
  2036 + <cluster_schema/>
  2037 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2038 + <xloc>553</xloc>
  2039 + <yloc>1004</yloc>
  2040 + <draw>Y</draw>
  2041 + </GUI>
  2042 + </step>
  2043 +
  2044 + <step>
  2045 + <name>&#x67e5;&#x627e;&#x7ec8;&#x70b9;&#x7ad9;&#x5173;&#x8054;</name>
  2046 + <type>DBLookup</type>
  2047 + <description/>
  2048 + <distribute>Y</distribute>
  2049 + <custom_distribution/>
  2050 + <copies>1</copies>
  2051 + <partitioning>
  2052 + <method>none</method>
  2053 + <schema_name/>
  2054 + </partitioning>
  2055 + <connection>bus_control_variable</connection>
  2056 + <cache>N</cache>
  2057 + <cache_load_all>N</cache_load_all>
  2058 + <cache_size>0</cache_size>
  2059 + <lookup>
  2060 + <schema/>
  2061 + <table>bsth_c_ls_stationroute</table>
  2062 + <orderby/>
  2063 + <fail_on_multiple>N</fail_on_multiple>
  2064 + <eat_row_on_failure>N</eat_row_on_failure>
  2065 + <key>
  2066 + <name>xlid</name>
  2067 + <field>line</field>
  2068 + <condition>&#x3d;</condition>
  2069 + <name2/>
  2070 + </key>
  2071 + <key>
  2072 + <name>version</name>
  2073 + <field>versions</field>
  2074 + <condition>&#x3d;</condition>
  2075 + <name2/>
  2076 + </key>
  2077 + <key>
  2078 + <name>sxx</name>
  2079 + <field>directions</field>
  2080 + <condition>&#x3d;</condition>
  2081 + <name2/>
  2082 + </key>
  2083 + <key>
  2084 + <name>endZdtype</name>
  2085 + <field>station_mark</field>
  2086 + <condition>&#x3d;</condition>
  2087 + <name2/>
  2088 + </key>
  2089 + <key>
  2090 + <name>destory</name>
  2091 + <field>destroy</field>
  2092 + <condition>&#x3d;</condition>
  2093 + <name2/>
  2094 + </key>
  2095 + <value>
  2096 + <name>station_name</name>
  2097 + <rename>zdzname</rename>
  2098 + <default/>
  2099 + <type>String</type>
  2100 + </value>
  2101 + <value>
  2102 + <name>station</name>
  2103 + <rename>zdzid</rename>
  2104 + <default/>
  2105 + <type>Integer</type>
  2106 + </value>
  2107 + <value>
  2108 + <name>station_code</name>
  2109 + <rename>zdzcode</rename>
  2110 + <default/>
  2111 + <type>String</type>
  2112 + </value>
  2113 + </lookup>
  2114 + <cluster_schema/>
  2115 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2116 + <xloc>280</xloc>
  2117 + <yloc>404</yloc>
  2118 + <draw>Y</draw>
  2119 + </GUI>
  2120 + </step>
  2121 +
  2122 + <step>
  2123 + <name>&#x67e5;&#x627e;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x5e76;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2124 + <type>DBLookup</type>
  2125 + <description/>
  2126 + <distribute>Y</distribute>
  2127 + <custom_distribution/>
  2128 + <copies>1</copies>
  2129 + <partitioning>
  2130 + <method>none</method>
  2131 + <schema_name/>
  2132 + </partitioning>
  2133 + <connection>bus_control_variable</connection>
  2134 + <cache>N</cache>
  2135 + <cache_load_all>N</cache_load_all>
  2136 + <cache_size>0</cache_size>
  2137 + <lookup>
  2138 + <schema/>
  2139 + <table>bsth_c_ls_stationroute</table>
  2140 + <orderby/>
  2141 + <fail_on_multiple>N</fail_on_multiple>
  2142 + <eat_row_on_failure>N</eat_row_on_failure>
  2143 + <key>
  2144 + <name>xlid</name>
  2145 + <field>line</field>
  2146 + <condition>&#x3d;</condition>
  2147 + <name2/>
  2148 + </key>
  2149 + <key>
  2150 + <name>version</name>
  2151 + <field>versions</field>
  2152 + <condition>&#x3d;</condition>
  2153 + <name2/>
  2154 + </key>
  2155 + <key>
  2156 + <name>qdzname</name>
  2157 + <field>station_name</field>
  2158 + <condition>LIKE</condition>
  2159 + <name2/>
  2160 + </key>
  2161 + <key>
  2162 + <name>sendZdtype</name>
  2163 + <field>station_mark</field>
  2164 + <condition>&#x3d;</condition>
  2165 + <name2/>
  2166 + </key>
  2167 + <key>
  2168 + <name>destory</name>
  2169 + <field>destroy</field>
  2170 + <condition>&#x3d;</condition>
  2171 + <name2/>
  2172 + </key>
  2173 + <value>
  2174 + <name>station</name>
  2175 + <rename>qdzid</rename>
  2176 + <default/>
  2177 + <type>Integer</type>
  2178 + </value>
  2179 + <value>
  2180 + <name>directions</name>
  2181 + <rename>sxx</rename>
  2182 + <default/>
  2183 + <type>Integer</type>
  2184 + </value>
  2185 + <value>
  2186 + <name>station_code</name>
  2187 + <rename>qdzcode</rename>
  2188 + <default/>
  2189 + <type>String</type>
  2190 + </value>
  2191 + <value>
  2192 + <name>station_name</name>
  2193 + <rename>qdzname_</rename>
  2194 + <default/>
  2195 + <type>String</type>
  2196 + </value>
  2197 + </lookup>
  2198 + <cluster_schema/>
  2199 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2200 + <xloc>430</xloc>
  2201 + <yloc>403</yloc>
  2202 + <draw>Y</draw>
  2203 + </GUI>
  2204 + </step>
  2205 +
  2206 + <step>
  2207 + <name>&#x67e5;&#x627e;&#x8def;&#x724c;&#x5173;&#x8054;</name>
  2208 + <type>DBLookup</type>
  2209 + <description/>
  2210 + <distribute>Y</distribute>
  2211 + <custom_distribution/>
  2212 + <copies>1</copies>
  2213 + <partitioning>
  2214 + <method>none</method>
  2215 + <schema_name/>
  2216 + </partitioning>
  2217 + <connection>bus_control_variable</connection>
  2218 + <cache>N</cache>
  2219 + <cache_load_all>N</cache_load_all>
  2220 + <cache_size>0</cache_size>
  2221 + <lookup>
  2222 + <schema/>
  2223 + <table>bsth_c_s_gbi</table>
  2224 + <orderby/>
  2225 + <fail_on_multiple>N</fail_on_multiple>
  2226 + <eat_row_on_failure>N</eat_row_on_failure>
  2227 + <key>
  2228 + <name>xlid</name>
  2229 + <field>xl</field>
  2230 + <condition>&#x3d;</condition>
  2231 + <name2/>
  2232 + </key>
  2233 + <key>
  2234 + <name>lp</name>
  2235 + <field>lp_name</field>
  2236 + <condition>&#x3d;</condition>
  2237 + <name2/>
  2238 + </key>
  2239 + <key>
  2240 + <name>iscanceled</name>
  2241 + <field>is_cancel</field>
  2242 + <condition>&#x3d;</condition>
  2243 + <name2/>
  2244 + </key>
  2245 + <value>
  2246 + <name>id</name>
  2247 + <rename>lpid</rename>
  2248 + <default/>
  2249 + <type>Integer</type>
  2250 + </value>
  2251 + </lookup>
  2252 + <cluster_schema/>
  2253 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2254 + <xloc>1013</xloc>
  2255 + <yloc>221</yloc>
  2256 + <draw>Y</draw>
  2257 + </GUI>
  2258 + </step>
  2259 +
  2260 + <step>
  2261 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ebf;&#x8def;&#x65b9;&#x5411;</name>
  2262 + <type>DBLookup</type>
  2263 + <description/>
  2264 + <distribute>Y</distribute>
  2265 + <custom_distribution/>
  2266 + <copies>1</copies>
  2267 + <partitioning>
  2268 + <method>none</method>
  2269 + <schema_name/>
  2270 + </partitioning>
  2271 + <connection>bus_control_variable</connection>
  2272 + <cache>N</cache>
  2273 + <cache_load_all>N</cache_load_all>
  2274 + <cache_size>0</cache_size>
  2275 + <lookup>
  2276 + <schema/>
  2277 + <table>bsth_c_ls_stationroute</table>
  2278 + <orderby/>
  2279 + <fail_on_multiple>N</fail_on_multiple>
  2280 + <eat_row_on_failure>N</eat_row_on_failure>
  2281 + <key>
  2282 + <name>xlid</name>
  2283 + <field>line</field>
  2284 + <condition>&#x3d;</condition>
  2285 + <name2/>
  2286 + </key>
  2287 + <key>
  2288 + <name>version</name>
  2289 + <field>versions</field>
  2290 + <condition>&#x3d;</condition>
  2291 + <name2/>
  2292 + </key>
  2293 + <key>
  2294 + <name>startZdtype_calcu</name>
  2295 + <field>station_mark</field>
  2296 + <condition>&#x3d;</condition>
  2297 + <name2/>
  2298 + </key>
  2299 + <key>
  2300 + <name>qdzname_calcu</name>
  2301 + <field>station_name</field>
  2302 + <condition>LIKE</condition>
  2303 + <name2/>
  2304 + </key>
  2305 + <key>
  2306 + <name>destory</name>
  2307 + <field>destroy</field>
  2308 + <condition>&#x3d;</condition>
  2309 + <name2/>
  2310 + </key>
  2311 + <value>
  2312 + <name>directions</name>
  2313 + <rename>sxx</rename>
  2314 + <default/>
  2315 + <type>String</type>
  2316 + </value>
  2317 + </lookup>
  2318 + <cluster_schema/>
  2319 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2320 + <xloc>548</xloc>
  2321 + <yloc>610</yloc>
  2322 + <draw>Y</draw>
  2323 + </GUI>
  2324 + </step>
  2325 +
  2326 + <step>
  2327 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x5e76;&#x4f5c;&#x4e3a;&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;</name>
  2328 + <type>DBLookup</type>
  2329 + <description/>
  2330 + <distribute>Y</distribute>
  2331 + <custom_distribution/>
  2332 + <copies>1</copies>
  2333 + <partitioning>
  2334 + <method>none</method>
  2335 + <schema_name/>
  2336 + </partitioning>
  2337 + <connection>bus_control_variable</connection>
  2338 + <cache>N</cache>
  2339 + <cache_load_all>Y</cache_load_all>
  2340 + <cache_size>0</cache_size>
  2341 + <lookup>
  2342 + <schema/>
  2343 + <table>bsth_c_ls_stationroute</table>
  2344 + <orderby/>
  2345 + <fail_on_multiple>N</fail_on_multiple>
  2346 + <eat_row_on_failure>N</eat_row_on_failure>
  2347 + <key>
  2348 + <name>xlid</name>
  2349 + <field>line</field>
  2350 + <condition>&#x3d;</condition>
  2351 + <name2/>
  2352 + </key>
  2353 + <key>
  2354 + <name>version</name>
  2355 + <field>versions</field>
  2356 + <condition>&#x3d;</condition>
  2357 + <name2/>
  2358 + </key>
  2359 + <key>
  2360 + <name>endZdtype_calcu</name>
  2361 + <field>station_mark</field>
  2362 + <condition>&#x3d;</condition>
  2363 + <name2/>
  2364 + </key>
  2365 + <key>
  2366 + <name>sxx</name>
  2367 + <field>directions</field>
  2368 + <condition>&#x3d;</condition>
  2369 + <name2/>
  2370 + </key>
  2371 + <key>
  2372 + <name>destory</name>
  2373 + <field>destroy</field>
  2374 + <condition>&#x3d;</condition>
  2375 + <name2/>
  2376 + </key>
  2377 + <value>
  2378 + <name>station_name</name>
  2379 + <rename>zdzname_calcu</rename>
  2380 + <default/>
  2381 + <type>Integer</type>
  2382 + </value>
  2383 + </lookup>
  2384 + <cluster_schema/>
  2385 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2386 + <xloc>550</xloc>
  2387 + <yloc>701</yloc>
  2388 + <draw>Y</draw>
  2389 + </GUI>
  2390 + </step>
  2391 +
  2392 + <step>
  2393 + <name>&#x67e5;&#x627e;&#x8fdb;&#x573a;&#x8d77;&#x70b9;&#x7ad9;&#x5173;&#x8054;&#x786e;&#x5b9a;&#x4e0a;&#x4e0b;&#x884c;</name>
  2394 + <type>DBLookup</type>
  2395 + <description/>
  2396 + <distribute>Y</distribute>
  2397 + <custom_distribution/>
  2398 + <copies>1</copies>
  2399 + <partitioning>
  2400 + <method>none</method>
  2401 + <schema_name/>
  2402 + </partitioning>
  2403 + <connection>bus_control_variable</connection>
  2404 + <cache>N</cache>
  2405 + <cache_load_all>N</cache_load_all>
  2406 + <cache_size>0</cache_size>
  2407 + <lookup>
  2408 + <schema/>
  2409 + <table>bsth_c_ls_stationroute</table>
  2410 + <orderby/>
  2411 + <fail_on_multiple>N</fail_on_multiple>
  2412 + <eat_row_on_failure>N</eat_row_on_failure>
  2413 + <key>
  2414 + <name>xlid</name>
  2415 + <field>line</field>
  2416 + <condition>&#x3d;</condition>
  2417 + <name2/>
  2418 + </key>
  2419 + <key>
  2420 + <name>version</name>
  2421 + <field>versions</field>
  2422 + <condition>&#x3d;</condition>
  2423 + <name2/>
  2424 + </key>
  2425 + <key>
  2426 + <name>zdzname_calcu</name>
  2427 + <field>station_name</field>
  2428 + <condition>&#x3d;</condition>
  2429 + <name2/>
  2430 + </key>
  2431 + <key>
  2432 + <name>startZdtype_calcu</name>
  2433 + <field>station_mark</field>
  2434 + <condition>&#x3d;</condition>
  2435 + <name2/>
  2436 + </key>
  2437 + <key>
  2438 + <name>destory</name>
  2439 + <field>destroy</field>
  2440 + <condition>&#x3d;</condition>
  2441 + <name2/>
  2442 + </key>
  2443 + <value>
  2444 + <name>directions</name>
  2445 + <rename>sxx2</rename>
  2446 + <default/>
  2447 + <type>Integer</type>
  2448 + </value>
  2449 + <value>
  2450 + <name>station</name>
  2451 + <rename>qdzid</rename>
  2452 + <default/>
  2453 + <type>Integer</type>
  2454 + </value>
  2455 + <value>
  2456 + <name>station_code</name>
  2457 + <rename>qdzcode</rename>
  2458 + <default/>
  2459 + <type>String</type>
  2460 + </value>
  2461 + <value>
  2462 + <name>station_name</name>
  2463 + <rename>qname</rename>
  2464 + <default/>
  2465 + <type>String</type>
  2466 + </value>
  2467 + </lookup>
  2468 + <cluster_schema/>
  2469 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2470 + <xloc>551</xloc>
  2471 + <yloc>782</yloc>
  2472 + <draw>Y</draw>
  2473 + </GUI>
  2474 + </step>
  2475 +
  2476 + <step>
  2477 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;_&#x5904;&#x7406;&#x6570;&#x636e;</name>
  2478 + <type>ScriptValueMod</type>
  2479 + <description/>
  2480 + <distribute>Y</distribute>
  2481 + <custom_distribution/>
  2482 + <copies>1</copies>
  2483 + <partitioning>
  2484 + <method>none</method>
  2485 + <schema_name/>
  2486 + </partitioning>
  2487 + <compatible>N</compatible>
  2488 + <optimizationLevel>9</optimizationLevel>
  2489 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  2490 + <jsScript_name>Script 1</jsScript_name>
  2491 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var sendZdtype &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  2492 + </jsScript> </jsScripts> <fields> <field> <name>sendZdtype</name>
  2493 + <rename>sendZdtype</rename>
  2494 + <type>String</type>
  2495 + <length>-1</length>
  2496 + <precision>-1</precision>
  2497 + <replace>N</replace>
  2498 + </field> <field> <name>endZdtype</name>
  2499 + <rename>endZdtype</rename>
  2500 + <type>String</type>
  2501 + <length>-1</length>
  2502 + <precision>-1</precision>
  2503 + <replace>N</replace>
  2504 + </field> <field> <name>destory</name>
  2505 + <rename>destory</rename>
  2506 + <type>Integer</type>
  2507 + <length>-1</length>
  2508 + <precision>-1</precision>
  2509 + <replace>N</replace>
  2510 + </field> </fields> <cluster_schema/>
  2511 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2512 + <xloc>588</xloc>
  2513 + <yloc>403</yloc>
  2514 + <draw>Y</draw>
  2515 + </GUI>
  2516 + </step>
  2517 +
  2518 + <step>
  2519 + <name>&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  2520 + <type>Dummy</type>
  2521 + <description/>
  2522 + <distribute>Y</distribute>
  2523 + <custom_distribution/>
  2524 + <copies>1</copies>
  2525 + <partitioning>
  2526 + <method>none</method>
  2527 + <schema_name/>
  2528 + </partitioning>
  2529 + <cluster_schema/>
  2530 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2531 + <xloc>725</xloc>
  2532 + <yloc>404</yloc>
  2533 + <draw>Y</draw>
  2534 + </GUI>
  2535 + </step>
  2536 +
  2537 + <step>
  2538 + <name>&#x6dfb;&#x52a0;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;</name>
  2539 + <type>GroupBy</type>
  2540 + <description/>
  2541 + <distribute>Y</distribute>
  2542 + <custom_distribution/>
  2543 + <copies>1</copies>
  2544 + <partitioning>
  2545 + <method>none</method>
  2546 + <schema_name/>
  2547 + </partitioning>
  2548 + <all_rows>Y</all_rows>
  2549 + <ignore_aggregate>N</ignore_aggregate>
  2550 + <field_ignore/>
  2551 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2552 + <prefix>grp</prefix>
  2553 + <add_linenr>Y</add_linenr>
  2554 + <linenr_fieldname>fcno</linenr_fieldname>
  2555 + <give_back_row>N</give_back_row>
  2556 + <group>
  2557 + <field>
  2558 + <name>lp</name>
  2559 + </field>
  2560 + </group>
  2561 + <fields>
  2562 + </fields>
  2563 + <cluster_schema/>
  2564 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2565 + <xloc>442</xloc>
  2566 + <yloc>44</yloc>
  2567 + <draw>Y</draw>
  2568 + </GUI>
  2569 + </step>
  2570 +
  2571 + <step>
  2572 + <name>&#x6dfb;&#x52a0;&#x5bf9;&#x5e94;&#x73ed;&#x6b21;&#x6570;</name>
  2573 + <type>GroupBy</type>
  2574 + <description/>
  2575 + <distribute>Y</distribute>
  2576 + <custom_distribution/>
  2577 + <copies>1</copies>
  2578 + <partitioning>
  2579 + <method>none</method>
  2580 + <schema_name/>
  2581 + </partitioning>
  2582 + <all_rows>Y</all_rows>
  2583 + <ignore_aggregate>N</ignore_aggregate>
  2584 + <field_ignore/>
  2585 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  2586 + <prefix>grp</prefix>
  2587 + <add_linenr>Y</add_linenr>
  2588 + <linenr_fieldname>bcs</linenr_fieldname>
  2589 + <give_back_row>N</give_back_row>
  2590 + <group>
  2591 + </group>
  2592 + <fields>
  2593 + </fields>
  2594 + <cluster_schema/>
  2595 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2596 + <xloc>692</xloc>
  2597 + <yloc>44</yloc>
  2598 + <draw>Y</draw>
  2599 + </GUI>
  2600 + </step>
  2601 +
  2602 + <step>
  2603 + <name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</name>
  2604 + <type>Normaliser</type>
  2605 + <description/>
  2606 + <distribute>Y</distribute>
  2607 + <custom_distribution/>
  2608 + <copies>1</copies>
  2609 + <partitioning>
  2610 + <method>none</method>
  2611 + <schema_name/>
  2612 + </partitioning>
  2613 + <typefield>&#x7ad9;&#x70b9;&#x540d;&#x79f0;</typefield>
  2614 + <fields> </fields> <cluster_schema/>
  2615 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2616 + <xloc>248</xloc>
  2617 + <yloc>44</yloc>
  2618 + <draw>Y</draw>
  2619 + </GUI>
  2620 + </step>
  2621 +
  2622 + <step>
  2623 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178;</name>
  2624 + <type>ValueMapper</type>
  2625 + <description/>
  2626 + <distribute>Y</distribute>
  2627 + <custom_distribution/>
  2628 + <copies>1</copies>
  2629 + <partitioning>
  2630 + <method>none</method>
  2631 + <schema_name/>
  2632 + </partitioning>
  2633 + <field_to_use>bctype</field_to_use>
  2634 + <target_field>bctype_code</target_field>
  2635 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2636 + <fields>
  2637 + <field>
  2638 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2639 + <target_value>normal</target_value>
  2640 + </field>
  2641 + <field>
  2642 + <source_value>&#x51fa;&#x573a;</source_value>
  2643 + <target_value>out</target_value>
  2644 + </field>
  2645 + <field>
  2646 + <source_value>&#x8fdb;&#x573a;</source_value>
  2647 + <target_value>in</target_value>
  2648 + </field>
  2649 + <field>
  2650 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2651 + <target_value>oil</target_value>
  2652 + </field>
  2653 + <field>
  2654 + <source_value>&#x4e34;&#x52a0;</source_value>
  2655 + <target_value>temp</target_value>
  2656 + </field>
  2657 + <field>
  2658 + <source_value>&#x533a;&#x95f4;</source_value>
  2659 + <target_value>region</target_value>
  2660 + </field>
  2661 + <field>
  2662 + <source_value>&#x653e;&#x7a7a;</source_value>
  2663 + <target_value>venting</target_value>
  2664 + </field>
  2665 + <field>
  2666 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2667 + <target_value>major</target_value>
  2668 + </field>
  2669 + </fields>
  2670 + <cluster_schema/>
  2671 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2672 + <xloc>149</xloc>
  2673 + <yloc>491</yloc>
  2674 + <draw>Y</draw>
  2675 + </GUI>
  2676 + </step>
  2677 +
  2678 + <step>
  2679 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 2</name>
  2680 + <type>ValueMapper</type>
  2681 + <description/>
  2682 + <distribute>Y</distribute>
  2683 + <custom_distribution/>
  2684 + <copies>1</copies>
  2685 + <partitioning>
  2686 + <method>none</method>
  2687 + <schema_name/>
  2688 + </partitioning>
  2689 + <field_to_use>bctype</field_to_use>
  2690 + <target_field>bctype_code</target_field>
  2691 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2692 + <fields>
  2693 + <field>
  2694 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2695 + <target_value>normal</target_value>
  2696 + </field>
  2697 + <field>
  2698 + <source_value>&#x51fa;&#x573a;</source_value>
  2699 + <target_value>out</target_value>
  2700 + </field>
  2701 + <field>
  2702 + <source_value>&#x8fdb;&#x573a;</source_value>
  2703 + <target_value>in</target_value>
  2704 + </field>
  2705 + <field>
  2706 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2707 + <target_value>oil</target_value>
  2708 + </field>
  2709 + <field>
  2710 + <source_value>&#x4e34;&#x52a0;</source_value>
  2711 + <target_value>temp</target_value>
  2712 + </field>
  2713 + <field>
  2714 + <source_value>&#x533a;&#x95f4;</source_value>
  2715 + <target_value>region</target_value>
  2716 + </field>
  2717 + <field>
  2718 + <source_value>&#x653e;&#x7a7a;</source_value>
  2719 + <target_value>venting</target_value>
  2720 + </field>
  2721 + <field>
  2722 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2723 + <target_value>major</target_value>
  2724 + </field>
  2725 + </fields>
  2726 + <cluster_schema/>
  2727 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2728 + <xloc>333</xloc>
  2729 + <yloc>681</yloc>
  2730 + <draw>Y</draw>
  2731 + </GUI>
  2732 + </step>
  2733 +
  2734 + <step>
  2735 + <name>&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5b57;&#x5178; 3</name>
  2736 + <type>ValueMapper</type>
  2737 + <description/>
  2738 + <distribute>Y</distribute>
  2739 + <custom_distribution/>
  2740 + <copies>1</copies>
  2741 + <partitioning>
  2742 + <method>none</method>
  2743 + <schema_name/>
  2744 + </partitioning>
  2745 + <field_to_use>bctype</field_to_use>
  2746 + <target_field>bctype_code</target_field>
  2747 + <non_match_default>&#x672a;&#x77e5;&#x7c7b;&#x578b;</non_match_default>
  2748 + <fields>
  2749 + <field>
  2750 + <source_value>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</source_value>
  2751 + <target_value>normal</target_value>
  2752 + </field>
  2753 + <field>
  2754 + <source_value>&#x51fa;&#x573a;</source_value>
  2755 + <target_value>out</target_value>
  2756 + </field>
  2757 + <field>
  2758 + <source_value>&#x8fdb;&#x573a;</source_value>
  2759 + <target_value>in</target_value>
  2760 + </field>
  2761 + <field>
  2762 + <source_value>&#x52a0;&#x6cb9;</source_value>
  2763 + <target_value>oil</target_value>
  2764 + </field>
  2765 + <field>
  2766 + <source_value>&#x4e34;&#x52a0;</source_value>
  2767 + <target_value>temp</target_value>
  2768 + </field>
  2769 + <field>
  2770 + <source_value>&#x533a;&#x95f4;</source_value>
  2771 + <target_value>region</target_value>
  2772 + </field>
  2773 + <field>
  2774 + <source_value>&#x653e;&#x7a7a;</source_value>
  2775 + <target_value>venting</target_value>
  2776 + </field>
  2777 + <field>
  2778 + <source_value>&#x653e;&#x5927;&#x7ad9;</source_value>
  2779 + <target_value>major</target_value>
  2780 + </field>
  2781 + </fields>
  2782 + <cluster_schema/>
  2783 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2784 + <xloc>551</xloc>
  2785 + <yloc>928</yloc>
  2786 + <draw>Y</draw>
  2787 + </GUI>
  2788 + </step>
  2789 +
  2790 + <step>
  2791 + <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;&#x7c7b;&#x578b;</name>
  2792 + <type>SelectValues</type>
  2793 + <description/>
  2794 + <distribute>N</distribute>
  2795 + <custom_distribution/>
  2796 + <copies>1</copies>
  2797 + <partitioning>
  2798 + <method>none</method>
  2799 + <schema_name/>
  2800 + </partitioning>
  2801 + <fields> <select_unspecified>Y</select_unspecified>
  2802 + <meta> <name>zdlyversion_</name>
  2803 + <rename>version</rename>
  2804 + <type>Integer</type>
  2805 + <length>-2</length>
  2806 + <precision>-2</precision>
  2807 + <conversion_mask/>
  2808 + <date_format_lenient>false</date_format_lenient>
  2809 + <date_format_locale/>
  2810 + <date_format_timezone/>
  2811 + <lenient_string_to_number>false</lenient_string_to_number>
  2812 + <encoding/>
  2813 + <decimal_symbol/>
  2814 + <grouping_symbol/>
  2815 + <currency_symbol/>
  2816 + <storage_type/>
  2817 + </meta> </fields> <cluster_schema/>
  2818 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2819 + <xloc>1016</xloc>
  2820 + <yloc>305</yloc>
  2821 + <draw>Y</draw>
  2822 + </GUI>
  2823 + </step>
  2824 +
  2825 + <step>
  2826 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63;</name>
  2827 + <type>SelectValues</type>
  2828 + <description/>
  2829 + <distribute>Y</distribute>
  2830 + <custom_distribution/>
  2831 + <copies>1</copies>
  2832 + <partitioning>
  2833 + <method>none</method>
  2834 + <schema_name/>
  2835 + </partitioning>
  2836 + <fields> <select_unspecified>N</select_unspecified>
  2837 + <meta> <name>jhlc</name>
  2838 + <rename>jhlc</rename>
  2839 + <type>Number</type>
  2840 + <length>-2</length>
  2841 + <precision>-2</precision>
  2842 + <conversion_mask/>
  2843 + <date_format_lenient>false</date_format_lenient>
  2844 + <date_format_locale/>
  2845 + <date_format_timezone/>
  2846 + <lenient_string_to_number>false</lenient_string_to_number>
  2847 + <encoding/>
  2848 + <decimal_symbol/>
  2849 + <grouping_symbol/>
  2850 + <currency_symbol/>
  2851 + <storage_type/>
  2852 + </meta> <meta> <name>bcsj</name>
  2853 + <rename>bcsj</rename>
  2854 + <type>Integer</type>
  2855 + <length>-2</length>
  2856 + <precision>-2</precision>
  2857 + <conversion_mask/>
  2858 + <date_format_lenient>false</date_format_lenient>
  2859 + <date_format_locale/>
  2860 + <date_format_timezone/>
  2861 + <lenient_string_to_number>false</lenient_string_to_number>
  2862 + <encoding/>
  2863 + <decimal_symbol/>
  2864 + <grouping_symbol/>
  2865 + <currency_symbol/>
  2866 + <storage_type/>
  2867 + </meta> </fields> <cluster_schema/>
  2868 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2869 + <xloc>146</xloc>
  2870 + <yloc>768</yloc>
  2871 + <draw>Y</draw>
  2872 + </GUI>
  2873 + </step>
  2874 +
  2875 + <step>
  2876 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 2</name>
  2877 + <type>SelectValues</type>
  2878 + <description/>
  2879 + <distribute>Y</distribute>
  2880 + <custom_distribution/>
  2881 + <copies>1</copies>
  2882 + <partitioning>
  2883 + <method>none</method>
  2884 + <schema_name/>
  2885 + </partitioning>
  2886 + <fields> <select_unspecified>N</select_unspecified>
  2887 + <meta> <name>out_mileage</name>
  2888 + <rename>out_mileage</rename>
  2889 + <type>Number</type>
  2890 + <length>-2</length>
  2891 + <precision>-2</precision>
  2892 + <conversion_mask/>
  2893 + <date_format_lenient>false</date_format_lenient>
  2894 + <date_format_locale/>
  2895 + <date_format_timezone/>
  2896 + <lenient_string_to_number>false</lenient_string_to_number>
  2897 + <encoding/>
  2898 + <decimal_symbol/>
  2899 + <grouping_symbol/>
  2900 + <currency_symbol/>
  2901 + <storage_type/>
  2902 + </meta> <meta> <name>out_time</name>
  2903 + <rename>out_time</rename>
  2904 + <type>Integer</type>
  2905 + <length>-2</length>
  2906 + <precision>-2</precision>
  2907 + <conversion_mask/>
  2908 + <date_format_lenient>false</date_format_lenient>
  2909 + <date_format_locale/>
  2910 + <date_format_timezone/>
  2911 + <lenient_string_to_number>false</lenient_string_to_number>
  2912 + <encoding/>
  2913 + <decimal_symbol/>
  2914 + <grouping_symbol/>
  2915 + <currency_symbol/>
  2916 + <storage_type/>
  2917 + </meta> <meta> <name>sxx</name>
  2918 + <rename>sxx</rename>
  2919 + <type>Integer</type>
  2920 + <length>-2</length>
  2921 + <precision>-2</precision>
  2922 + <conversion_mask/>
  2923 + <date_format_lenient>false</date_format_lenient>
  2924 + <date_format_locale/>
  2925 + <date_format_timezone/>
  2926 + <lenient_string_to_number>false</lenient_string_to_number>
  2927 + <encoding/>
  2928 + <decimal_symbol/>
  2929 + <grouping_symbol/>
  2930 + <currency_symbol/>
  2931 + <storage_type/>
  2932 + </meta> </fields> <cluster_schema/>
  2933 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2934 + <xloc>338</xloc>
  2935 + <yloc>1008</yloc>
  2936 + <draw>Y</draw>
  2937 + </GUI>
  2938 + </step>
  2939 +
  2940 + <step>
  2941 + <name>&#x7c7b;&#x578b;&#x4fee;&#x6b63; 3</name>
  2942 + <type>SelectValues</type>
  2943 + <description/>
  2944 + <distribute>Y</distribute>
  2945 + <custom_distribution/>
  2946 + <copies>1</copies>
  2947 + <partitioning>
  2948 + <method>none</method>
  2949 + <schema_name/>
  2950 + </partitioning>
  2951 + <fields> <select_unspecified>N</select_unspecified>
  2952 + <meta> <name>parade_mileage</name>
  2953 + <rename>parade_mileage</rename>
  2954 + <type>Number</type>
  2955 + <length>-2</length>
  2956 + <precision>-2</precision>
  2957 + <conversion_mask/>
  2958 + <date_format_lenient>false</date_format_lenient>
  2959 + <date_format_locale/>
  2960 + <date_format_timezone/>
  2961 + <lenient_string_to_number>false</lenient_string_to_number>
  2962 + <encoding/>
  2963 + <decimal_symbol/>
  2964 + <grouping_symbol/>
  2965 + <currency_symbol/>
  2966 + <storage_type/>
  2967 + </meta> <meta> <name>parade_time</name>
  2968 + <rename>parade_time</rename>
  2969 + <type>Integer</type>
  2970 + <length>-2</length>
  2971 + <precision>-2</precision>
  2972 + <conversion_mask/>
  2973 + <date_format_lenient>false</date_format_lenient>
  2974 + <date_format_locale/>
  2975 + <date_format_timezone/>
  2976 + <lenient_string_to_number>false</lenient_string_to_number>
  2977 + <encoding/>
  2978 + <decimal_symbol/>
  2979 + <grouping_symbol/>
  2980 + <currency_symbol/>
  2981 + <storage_type/>
  2982 + </meta> <meta> <name>sxx2</name>
  2983 + <rename>sxx2</rename>
  2984 + <type>Integer</type>
  2985 + <length>-2</length>
  2986 + <precision>-2</precision>
  2987 + <conversion_mask/>
  2988 + <date_format_lenient>false</date_format_lenient>
  2989 + <date_format_locale/>
  2990 + <date_format_timezone/>
  2991 + <lenient_string_to_number>false</lenient_string_to_number>
  2992 + <encoding/>
  2993 + <decimal_symbol/>
  2994 + <grouping_symbol/>
  2995 + <currency_symbol/>
  2996 + <storage_type/>
  2997 + </meta> </fields> <cluster_schema/>
  2998 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  2999 + <xloc>847</xloc>
  3000 + <yloc>1003</yloc>
  3001 + <draw>Y</draw>
  3002 + </GUI>
  3003 + </step>
  3004 +
  3005 + <step>
  3006 + <name>&#x8ba1;&#x7b97;&#x73ed;&#x6b21;&#x7c7b;&#x578b;</name>
  3007 + <type>ValueMapper</type>
  3008 + <description/>
  3009 + <distribute>Y</distribute>
  3010 + <custom_distribution/>
  3011 + <copies>1</copies>
  3012 + <partitioning>
  3013 + <method>none</method>
  3014 + <schema_name/>
  3015 + </partitioning>
  3016 + <field_to_use>qdzname</field_to_use>
  3017 + <target_field>bctype</target_field>
  3018 + <non_match_default>&#x6b63;&#x5e38;&#x73ed;&#x6b21;</non_match_default>
  3019 + <fields>
  3020 + <field>
  3021 + <source_value>&#x51fa;&#x573a;</source_value>
  3022 + <target_value>&#x51fa;&#x573a;</target_value>
  3023 + </field>
  3024 + <field>
  3025 + <source_value>&#x8fdb;&#x573a;</source_value>
  3026 + <target_value>&#x8fdb;&#x573a;</target_value>
  3027 + </field>
  3028 + </fields>
  3029 + <cluster_schema/>
  3030 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3031 + <xloc>1014</xloc>
  3032 + <yloc>401</yloc>
  3033 + <draw>Y</draw>
  3034 + </GUI>
  3035 + </step>
  3036 +
  3037 + <step>
  3038 + <name>&#x8bb0;&#x5f55;&#x5173;&#x8054; &#x28;&#x7b1b;&#x5361;&#x5c14;&#x8f93;&#x51fa;&#x29;</name>
  3039 + <type>JoinRows</type>
  3040 + <description/>
  3041 + <distribute>Y</distribute>
  3042 + <custom_distribution/>
  3043 + <copies>1</copies>
  3044 + <partitioning>
  3045 + <method>none</method>
  3046 + <schema_name/>
  3047 + </partitioning>
  3048 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  3049 + <prefix>out</prefix>
  3050 + <cache_size>500</cache_size>
  3051 + <main/>
  3052 + <compare>
  3053 +<condition>
  3054 + <negated>N</negated>
  3055 + <leftvalue/>
  3056 + <function>&#x3d;</function>
  3057 + <rightvalue/>
  3058 + </condition>
  3059 + </compare>
  3060 + <cluster_schema/>
  3061 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3062 + <xloc>310</xloc>
  3063 + <yloc>133</yloc>
  3064 + <draw>Y</draw>
  3065 + </GUI>
  3066 + </step>
  3067 +
  3068 + <step>
  3069 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;&#xff08;&#x53d1;&#x8f66;&#x65f6;&#x95f4;&#x4e3a;&#x7a7a;&#xff09;</name>
  3070 + <type>FilterRows</type>
  3071 + <description/>
  3072 + <distribute>Y</distribute>
  3073 + <custom_distribution/>
  3074 + <copies>1</copies>
  3075 + <partitioning>
  3076 + <method>none</method>
  3077 + <schema_name/>
  3078 + </partitioning>
  3079 +<send_true_to/>
  3080 +<send_false_to/>
  3081 + <compare>
  3082 +<condition>
  3083 + <negated>N</negated>
  3084 + <leftvalue>sendtime</leftvalue>
  3085 + <function>IS NOT NULL</function>
  3086 + <rightvalue/>
  3087 + </condition>
  3088 + </compare>
  3089 + <cluster_schema/>
  3090 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3091 + <xloc>571</xloc>
  3092 + <yloc>44</yloc>
  3093 + <draw>Y</draw>
  3094 + </GUI>
  3095 + </step>
  3096 +
  3097 + <step>
  3098 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;_&#x786e;&#x5b9a;&#x8d77;&#x70b9;&#x7ad9;&#x540d;&#x5b57;</name>
  3099 + <type>ScriptValueMod</type>
  3100 + <description/>
  3101 + <distribute>Y</distribute>
  3102 + <custom_distribution/>
  3103 + <copies>1</copies>
  3104 + <partitioning>
  3105 + <method>none</method>
  3106 + <schema_name/>
  3107 + </partitioning>
  3108 + <compatible>N</compatible>
  3109 + <optimizationLevel>9</optimizationLevel>
  3110 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  3111 + <jsScript_name>Script 1</jsScript_name>
  3112 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x6dfb;&#x52a0;&#x7ad9;&#x70b9;&#x6807;&#x8bc6;&#xa;var cc_groups &#x3d; qdzgroups.split&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x6240;&#x6709;&#x73ed;&#x6b21;&#x8d77;&#x70b9;&#x7ad9;&#x6570;&#x7ec4;&#xa;var qdzname_calcu &#x3d; cc_groups&#x5b;gno - 2&#x5d;&#x3b; &#x2f;&#x2f; &#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#x662f;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x7ec8;&#x70b9;&#x7ad9;&#xff0c;&#x8fd9;&#x91cc;&#x53ea;&#x6709;&#x4e0a;&#x4e00;&#x4e2a;&#x73ed;&#x6b21;&#x7684;&#x8d77;&#x70b9;&#x7ad9;&#xff0c;&#x8fd8;&#x9700;&#x8981;&#x8ba1;&#x7b97;&#xa;var startZdtype_calcu &#x3d; &#x27;B&#x27;&#x3b;&#xa;var endZdtype_calcu &#x3d; &#x27;E&#x27;&#x3b;&#xa;&#xa;var destory &#x3d; 0&#x3b; &#x2f;&#x2f; &#x672a;&#x64a4;&#x9500;flag</jsScript_script>
  3113 + </jsScript> </jsScripts> <fields> <field> <name>qdzname_calcu</name>
  3114 + <rename>qdzname_calcu</rename>
  3115 + <type>String</type>
  3116 + <length>-1</length>
  3117 + <precision>-1</precision>
  3118 + <replace>N</replace>
  3119 + </field> <field> <name>startZdtype_calcu</name>
  3120 + <rename>startZdtype_calcu</rename>
  3121 + <type>String</type>
  3122 + <length>-1</length>
  3123 + <precision>-1</precision>
  3124 + <replace>N</replace>
  3125 + </field> <field> <name>endZdtype_calcu</name>
  3126 + <rename>endZdtype_calcu</rename>
  3127 + <type>String</type>
  3128 + <length>-1</length>
  3129 + <precision>-1</precision>
  3130 + <replace>N</replace>
  3131 + </field> <field> <name>destory</name>
  3132 + <rename>destory</rename>
  3133 + <type>Integer</type>
  3134 + <length>-1</length>
  3135 + <precision>-1</precision>
  3136 + <replace>N</replace>
  3137 + </field> </fields> <cluster_schema/>
  3138 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3139 + <xloc>754</xloc>
  3140 + <yloc>610</yloc>
  3141 + <draw>Y</draw>
  3142 + </GUI>
  3143 + </step>
  3144 +
  3145 + <step>
  3146 + <name>&#x8fdb;&#x573a;&#x73ed;&#x6b21;&#x6570;&#x636e;</name>
  3147 + <type>Dummy</type>
  3148 + <description/>
  3149 + <distribute>Y</distribute>
  3150 + <custom_distribution/>
  3151 + <copies>1</copies>
  3152 + <partitioning>
  3153 + <method>none</method>
  3154 + <schema_name/>
  3155 + </partitioning>
  3156 + <cluster_schema/>
  3157 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3158 + <xloc>997</xloc>
  3159 + <yloc>606</yloc>
  3160 + <draw>Y</draw>
  3161 + </GUI>
  3162 + </step>
  3163 +
  3164 + <step_error_handling>
  3165 + <error>
  3166 + <source_step>&#x63d2;&#x5165;&#x2f;&#x66f4;&#x65b0;bsth_c_s_ttinfo_detail</source_step>
  3167 + <target_step/>
  3168 + <is_enabled>Y</is_enabled>
  3169 + <nr_valuename>c1</nr_valuename>
  3170 + <descriptions_valuename>c2</descriptions_valuename>
  3171 + <fields_valuename>c3</fields_valuename>
  3172 + <codes_valuename>c4</codes_valuename>
  3173 + <max_errors/>
  3174 + <max_pct_errors/>
  3175 + <min_pct_rows/>
  3176 + </error>
  3177 + </step_error_handling>
  3178 + <slave-step-copy-partition-distribution>
  3179 +</slave-step-copy-partition-distribution>
  3180 + <slave_transformation>N</slave_transformation>
  3181 +
  3182 +</transformation>
src/main/resources/datatools/ktrs/ttinfodetailDataInputMetaData.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;&#x5143;&#x6570;&#x636e;</name>  
5 - <description/>  
6 - <extended_description/>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>erroroutputdir</name>  
14 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;erroroutput</default_value>  
15 - <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>excelfieldnames</name>  
19 - <default_value>&#x8def;&#x724c;,&#x51fa;&#x573a;,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;1,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;1,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;2,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;2,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;3,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;3,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;4,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;4,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;5,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;5,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;6,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;6,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;7,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;7,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;8,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;8,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;9,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;9,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;10,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;10,&#x8fdb;&#x573a;</default_value>  
20 - <description>&#x65f6;&#x523b;&#x8868;excel&#x8f93;&#x5165;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>  
21 - </parameter>  
22 - <parameter>  
23 - <name>filepath</name>  
24 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_etl&#x2f;&#x95f5;&#x884c;&#x516c;&#x4ea4;&#x2f;&#x95f5;&#x884c;26&#x8def;&#x65f6;&#x523b;&#x8868;160630&#x65f6;&#x523b;&#x8868;.xls</default_value>  
25 - <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>  
26 - </parameter>  
27 - <parameter>  
28 - <name>injectktrfile</name>  
29 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_parent&#x2f;bsth_control&#x2f;src&#x2f;main&#x2f;resources&#x2f;datatools&#x2f;ktrs&#x2f;ttinfodetailDataInput.ktr</default_value>  
30 - <description>&#x6ce8;&#x5165;&#x5143;&#x6570;&#x636e;&#x7684;ktr&#x6587;&#x4ef6;</description>  
31 - </parameter>  
32 - <parameter>  
33 - <name>lineinfoid</name>  
34 - <default_value>1000</default_value>  
35 - <description>&#x7ebf;&#x8def;&#x6807;&#x51c6;id</description>  
36 - </parameter>  
37 - <parameter>  
38 - <name>lineversion</name>  
39 - <default_value>-1</default_value>  
40 - <description>&#x7ebf;&#x8def;&#x7248;&#x672c;</description>  
41 - </parameter>  
42 - <parameter>  
43 - <name>normalizefieldnames</name>  
44 - <default_value>&#x51fa;&#x573a;,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;1,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;1,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;2,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;2,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;3,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;3,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;4,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;4,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;5,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;5,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;6,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;6,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;7,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;7,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;8,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;8,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;9,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;9,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;10,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;10,&#x8fdb;&#x573a;</default_value>  
45 - <description>&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>  
46 - </parameter>  
47 - <parameter>  
48 - <name>sheetname</name>  
49 - <default_value>&#x5de5;&#x4f5c;&#x8868;1</default_value>  
50 - <description>xls sheet&#x540d;&#x5b57;</description>  
51 - </parameter>  
52 - <parameter>  
53 - <name>tccname</name>  
54 - <default_value>&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;&#x505c;&#x8f66;&#x573a;</default_value>  
55 - <description>&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</description>  
56 - </parameter>  
57 - <parameter>  
58 - <name>ttid</name>  
59 - <default_value>1</default_value>  
60 - <description>&#x65f6;&#x523b;&#x8868;id</description>  
61 - </parameter>  
62 - <parameter>  
63 - <name>ttinfoname</name>  
64 - <default_value>&#x8868;2</default_value>  
65 - <description>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</description>  
66 - </parameter>  
67 - <parameter>  
68 - <name>xlid</name>  
69 - <default_value>-999</default_value>  
70 - <description>&#x7ebf;&#x8def;id</description>  
71 - </parameter>  
72 - <parameter>  
73 - <name>xlname</name>  
74 - <default_value>&#x95f5;&#x884c;26&#x8def;</default_value>  
75 - <description>&#x7ebf;&#x8def;&#x540d;&#x79f0;</description>  
76 - </parameter>  
77 - </parameters>  
78 - <log>  
79 -<trans-log-table><connection/>  
80 -<schema/>  
81 -<table/>  
82 -<size_limit_lines/>  
83 -<interval/>  
84 -<timeout_days/>  
85 -<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>  
86 -<perf-log-table><connection/>  
87 -<schema/>  
88 -<table/>  
89 -<interval/>  
90 -<timeout_days/>  
91 -<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>  
92 -<channel-log-table><connection/>  
93 -<schema/>  
94 -<table/>  
95 -<timeout_days/>  
96 -<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>  
97 -<step-log-table><connection/>  
98 -<schema/>  
99 -<table/>  
100 -<timeout_days/>  
101 -<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>  
102 -<metrics-log-table><connection/>  
103 -<schema/>  
104 -<table/>  
105 -<timeout_days/>  
106 -<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>  
107 - </log>  
108 - <maxdate>  
109 - <connection/>  
110 - <table/>  
111 - <field/>  
112 - <offset>0.0</offset>  
113 - <maxdiff>0.0</maxdiff>  
114 - </maxdate>  
115 - <size_rowset>10000</size_rowset>  
116 - <sleep_time_empty>50</sleep_time_empty>  
117 - <sleep_time_full>50</sleep_time_full>  
118 - <unique_connections>N</unique_connections>  
119 - <feedback_shown>Y</feedback_shown>  
120 - <feedback_size>50000</feedback_size>  
121 - <using_thread_priorities>Y</using_thread_priorities>  
122 - <shared_objects_file/>  
123 - <capture_step_performance>N</capture_step_performance>  
124 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
125 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
126 - <dependencies>  
127 - </dependencies>  
128 - <partitionschemas>  
129 - </partitionschemas>  
130 - <slaveservers>  
131 - </slaveservers>  
132 - <clusterschemas>  
133 - </clusterschemas>  
134 - <created_user>-</created_user>  
135 - <created_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</created_date>  
136 - <modified_user>-</modified_user>  
137 - <modified_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</modified_date>  
138 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
139 - <is_key_private>N</is_key_private>  
140 - </info>  
141 - <notepads>  
142 - </notepads>  
143 - <connection>  
144 - <name>192.168.168.1_jwgl_dw</name>  
145 - <server>192.168.168.1</server>  
146 - <type>ORACLE</type>  
147 - <access>Native</access>  
148 - <database>orcl</database>  
149 - <port>1521</port>  
150 - <username>jwgl_dw</username>  
151 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
152 - <servername/>  
153 - <data_tablespace/>  
154 - <index_tablespace/>  
155 - <attributes>  
156 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
157 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
158 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
159 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
160 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
161 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
162 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
163 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
164 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
165 - </attributes>  
166 - </connection>  
167 - <connection>  
168 - <name>bus_control_variable</name>  
169 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
170 - <type>MYSQL</type>  
171 - <access>Native</access>  
172 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
173 - <port>3306</port>  
174 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
175 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
176 - <servername/>  
177 - <data_tablespace/>  
178 - <index_tablespace/>  
179 - <attributes>  
180 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
181 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
182 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
183 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
184 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
185 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
186 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
187 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
188 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
189 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
190 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
191 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
192 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
193 - </attributes>  
194 - </connection>  
195 - <connection>  
196 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
197 - <server>localhost</server>  
198 - <type>MYSQL</type>  
199 - <access>Native</access>  
200 - <database>control</database>  
201 - <port>3306</port>  
202 - <username>root</username>  
203 - <password>Encrypted </password>  
204 - <servername/>  
205 - <data_tablespace/>  
206 - <index_tablespace/>  
207 - <attributes>  
208 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
209 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
210 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
211 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
212 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
213 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
214 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
215 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
216 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
217 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
218 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
219 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
220 - </attributes>  
221 - </connection>  
222 - <connection>  
223 - <name>bus_control_&#x672c;&#x673a;</name>  
224 - <server>localhost</server>  
225 - <type>MYSQL</type>  
226 - <access>Native</access>  
227 - <database>control</database>  
228 - <port>3306</port>  
229 - <username>root</username>  
230 - <password>Encrypted </password>  
231 - <servername/>  
232 - <data_tablespace/>  
233 - <index_tablespace/>  
234 - <attributes>  
235 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
236 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
237 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
238 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
239 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
240 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
241 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
242 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
243 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
244 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
245 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
246 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
247 - </attributes>  
248 - </connection>  
249 - <connection>  
250 - <name>xlab_mysql_youle</name>  
251 - <server>101.231.124.8</server>  
252 - <type>MYSQL</type>  
253 - <access>Native</access>  
254 - <database>xlab_youle</database>  
255 - <port>45687</port>  
256 - <username>xlab-youle</username>  
257 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
258 - <servername/>  
259 - <data_tablespace/>  
260 - <index_tablespace/>  
261 - <attributes>  
262 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
263 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
264 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
265 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
266 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
267 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
268 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
269 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
270 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
271 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
272 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
273 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
274 - </attributes>  
275 - </connection>  
276 - <connection>  
277 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
278 - <server>localhost</server>  
279 - <type>MYSQL</type>  
280 - <access>Native</access>  
281 - <database>xlab_youle</database>  
282 - <port>3306</port>  
283 - <username>root</username>  
284 - <password>Encrypted </password>  
285 - <servername/>  
286 - <data_tablespace/>  
287 - <index_tablespace/>  
288 - <attributes>  
289 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
290 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
291 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
292 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
293 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
294 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
295 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
296 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
297 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
298 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
299 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
300 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
301 - </attributes>  
302 - </connection>  
303 - <connection>  
304 - <name>xlab_youle</name>  
305 - <server/>  
306 - <type>MYSQL</type>  
307 - <access>JNDI</access>  
308 - <database>xlab_youle</database>  
309 - <port>1521</port>  
310 - <username/>  
311 - <password>Encrypted </password>  
312 - <servername/>  
313 - <data_tablespace/>  
314 - <index_tablespace/>  
315 - <attributes>  
316 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
317 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
318 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
319 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
320 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
321 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
322 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
323 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
324 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
325 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
326 - </attributes>  
327 - </connection>  
328 - <order>  
329 - <hop> <from>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
330 - <hop> <from>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</from><to>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</to><enabled>Y</enabled> </hop>  
331 - <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</from><to>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
332 - <hop> <from>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
333 - <hop> <from>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</from><to>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</to><enabled>Y</enabled> </hop>  
334 - <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</from><to>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
335 - <hop> <from>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
336 - <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>  
337 - <hop> <from>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
338 - <hop> <from>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
339 - <hop> <from>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </to><enabled>Y</enabled> </hop>  
340 - <hop> <from>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
341 - <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>  
342 - <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>  
343 - <hop> <from>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</from><to>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
344 - <hop> <from>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>  
345 - <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>  
346 - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>  
347 - <hop> <from>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
348 - <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</from><to>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>  
349 - <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</from><to>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>  
350 - <hop> <from>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>  
351 - <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>  
352 - <hop> <from>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</from><to>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>  
353 - <hop> <from>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
354 - <hop> <from>&#x83b7;&#x53d6;&#x7ad9;&#x70b9;&#x8def;&#x7531;version</from><to>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</to><enabled>Y</enabled> </hop>  
355 - <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>  
356 - </order>  
357 - <step>  
358 - <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>  
359 - <type>MetaInject</type>  
360 - <description/>  
361 - <distribute>Y</distribute>  
362 - <custom_distribution/>  
363 - <copies>1</copies>  
364 - <partitioning>  
365 - <method>none</method>  
366 - <schema_name/>  
367 - </partitioning>  
368 - <specification_method>filename</specification_method>  
369 - <trans_object_id/>  
370 - <trans_name/>  
371 - <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>  
372 - <directory_path/>  
373 - <source_step/>  
374 - <source_output_fields> </source_output_fields> <target_file/>  
375 - <no_execution>N</no_execution>  
376 - <stream_source_step/>  
377 - <stream_target_step/>  
378 - <mappings> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
379 - <target_attribute_key>FORMAT</target_attribute_key>  
380 - <target_detail>Y</target_detail>  
381 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
382 - <source_field>format</source_field>  
383 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
384 - <target_attribute_key>REPEAT</target_attribute_key>  
385 - <target_detail>Y</target_detail>  
386 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
387 - <source_field>repeat</source_field>  
388 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
389 - <target_attribute_key>TRIM_TYPE</target_attribute_key>  
390 - <target_detail>Y</target_detail>  
391 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
392 - <source_field>trim_type</source_field>  
393 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
394 - <target_attribute_key>FILENAME</target_attribute_key>  
395 - <target_detail>Y</target_detail>  
396 - <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>  
397 - <source_field>filepath_</source_field>  
398 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
399 - <target_attribute_key>PRECISION</target_attribute_key>  
400 - <target_detail>Y</target_detail>  
401 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
402 - <source_field>precision</source_field>  
403 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
404 - <target_attribute_key>TYPE</target_attribute_key>  
405 - <target_detail>Y</target_detail>  
406 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
407 - <source_field>type</source_field>  
408 - </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>  
409 - <target_attribute_key>DATA_VALUE</target_attribute_key>  
410 - <target_detail>Y</target_detail>  
411 - <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>  
412 - <source_field>col_value</source_field>  
413 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
414 - <target_attribute_key>LENGTH</target_attribute_key>  
415 - <target_detail>Y</target_detail>  
416 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
417 - <source_field>length</source_field>  
418 - </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>  
419 - <target_attribute_key>TYPE</target_attribute_key>  
420 - <target_detail>Y</target_detail>  
421 - <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>  
422 - <source_field>col_type</source_field>  
423 - </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>  
424 - <target_attribute_key>NAME</target_attribute_key>  
425 - <target_detail>Y</target_detail>  
426 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>  
427 - <source_field>fieldName</source_field>  
428 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
429 - <target_attribute_key>NAME</target_attribute_key>  
430 - <target_detail>Y</target_detail>  
431 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
432 - <source_field>fieldname</source_field>  
433 - </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>  
434 - <target_attribute_key>NAME</target_attribute_key>  
435 - <target_detail>Y</target_detail>  
436 - <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>  
437 - <source_field>nfieldname</source_field>  
438 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
439 - <target_attribute_key>SHEET_NAME</target_attribute_key>  
440 - <target_detail>Y</target_detail>  
441 - <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>  
442 - <source_field>sheetname_</source_field>  
443 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
444 - <target_attribute_key>LENGTH</target_attribute_key>  
445 - <target_detail>Y</target_detail>  
446 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
447 - <source_field>length</source_field>  
448 - </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>  
449 - <target_attribute_key>NAME</target_attribute_key>  
450 - <target_detail>Y</target_detail>  
451 - <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>  
452 - <source_field>col_name</source_field>  
453 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
454 - <target_attribute_key>TYPE</target_attribute_key>  
455 - <target_detail>Y</target_detail>  
456 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
457 - <source_field>fieldtype</source_field>  
458 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
459 - <target_attribute_key>NAME</target_attribute_key>  
460 - <target_detail>Y</target_detail>  
461 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
462 - <source_field>fieldName</source_field>  
463 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
464 - <target_attribute_key>TRIM_TYPE</target_attribute_key>  
465 - <target_detail>Y</target_detail>  
466 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
467 - <source_field>trim_type</source_field>  
468 - </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>  
469 - <target_attribute_key>VALUE</target_attribute_key>  
470 - <target_detail>Y</target_detail>  
471 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>  
472 - <source_field>fieldName</source_field>  
473 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
474 - <target_attribute_key>REPEAT</target_attribute_key>  
475 - <target_detail>Y</target_detail>  
476 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
477 - <source_field>repeat</source_field>  
478 - </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>  
479 - <target_attribute_key>NORMALISED</target_attribute_key>  
480 - <target_detail>Y</target_detail>  
481 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>  
482 - <source_field>value</source_field>  
483 - </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>  
484 - <target_attribute_key>NORMALISED</target_attribute_key>  
485 - <target_detail>Y</target_detail>  
486 - <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>  
487 - <source_field>valuefield</source_field>  
488 - </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>  
489 - <target_attribute_key>FORMAT</target_attribute_key>  
490 - <target_detail>Y</target_detail>  
491 - <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>  
492 - <source_field>format</source_field>  
493 - </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>  
494 - <target_attribute_key>VALUE</target_attribute_key>  
495 - <target_detail>Y</target_detail>  
496 - <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>  
497 - <source_field>nfieldname</source_field>  
498 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>  
499 - <target_attribute_key>PRECISION</target_attribute_key>  
500 - <target_detail>Y</target_detail>  
501 - <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>  
502 - <source_field>precision</source_field>  
503 - </mapping> </mappings> <cluster_schema/>  
504 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
505 - <xloc>876</xloc>  
506 - <yloc>167</yloc>  
507 - <draw>Y</draw>  
508 - </GUI>  
509 - </step>  
510 -  
511 - <step>  
512 - <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</name>  
513 - <type>DBLookup</type>  
514 - <description/>  
515 - <distribute>Y</distribute>  
516 - <custom_distribution/>  
517 - <copies>1</copies>  
518 - <partitioning>  
519 - <method>none</method>  
520 - <schema_name/>  
521 - </partitioning>  
522 - <connection>bus_control_variable</connection>  
523 - <cache>N</cache>  
524 - <cache_load_all>N</cache_load_all>  
525 - <cache_size>0</cache_size>  
526 - <lookup>  
527 - <schema/>  
528 - <table>bsth_c_car_park</table>  
529 - <orderby/>  
530 - <fail_on_multiple>N</fail_on_multiple>  
531 - <eat_row_on_failure>N</eat_row_on_failure>  
532 - <key>  
533 - <name>car_park</name>  
534 - <field>park_code</field>  
535 - <condition>&#x3d;</condition>  
536 - <name2/>  
537 - </key>  
538 - <value>  
539 - <name>park_name</name>  
540 - <rename>tccname_</rename>  
541 - <default/>  
542 - <type>String</type>  
543 - </value>  
544 - </lookup>  
545 - <cluster_schema/>  
546 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
547 - <xloc>319</xloc>  
548 - <yloc>468</yloc>  
549 - <draw>Y</draw>  
550 - </GUI>  
551 - </step>  
552 -  
553 - <step>  
554 - <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>  
555 - <type>SelectValues</type>  
556 - <description/>  
557 - <distribute>Y</distribute>  
558 - <custom_distribution/>  
559 - <copies>1</copies>  
560 - <partitioning>  
561 - <method>none</method>  
562 - <schema_name/>  
563 - </partitioning>  
564 - <fields> <field> <name>col_name</name>  
565 - <rename/>  
566 - <length>-2</length>  
567 - <precision>-2</precision>  
568 - </field> <field> <name>col_type</name>  
569 - <rename/>  
570 - <length>-2</length>  
571 - <precision>-2</precision>  
572 - </field> <field> <name>col_value</name>  
573 - <rename/>  
574 - <length>-2</length>  
575 - <precision>-2</precision>  
576 - </field> <select_unspecified>N</select_unspecified>  
577 - </fields> <cluster_schema/>  
578 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
579 - <xloc>743</xloc>  
580 - <yloc>470</yloc>  
581 - <draw>Y</draw>  
582 - </GUI>  
583 - </step>  
584 -  
585 - <step>  
586 - <name>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</name>  
587 - <type>DBLookup</type>  
588 - <description/>  
589 - <distribute>Y</distribute>  
590 - <custom_distribution/>  
591 - <copies>1</copies>  
592 - <partitioning>  
593 - <method>none</method>  
594 - <schema_name/>  
595 - </partitioning>  
596 - <connection>bus_control_variable</connection>  
597 - <cache>N</cache>  
598 - <cache_load_all>N</cache_load_all>  
599 - <cache_size>0</cache_size>  
600 - <lookup>  
601 - <schema/>  
602 - <table>bsth_c_line_information</table>  
603 - <orderby/>  
604 - <fail_on_multiple>N</fail_on_multiple>  
605 - <eat_row_on_failure>N</eat_row_on_failure>  
606 - <key>  
607 - <name>lineinfoid_</name>  
608 - <field>id</field>  
609 - <condition>&#x3d;</condition>  
610 - <name2/>  
611 - </key>  
612 - <value>  
613 - <name>car_park</name>  
614 - <rename>car_park</rename>  
615 - <default/>  
616 - <type>String</type>  
617 - </value>  
618 - </lookup>  
619 - <cluster_schema/>  
620 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
621 - <xloc>182</xloc>  
622 - <yloc>467</yloc>  
623 - <draw>Y</draw>  
624 - </GUI>  
625 - </step>  
626 -  
627 - <step>  
628 - <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</name>  
629 - <type>ExecSQL</type>  
630 - <description/>  
631 - <distribute>Y</distribute>  
632 - <custom_distribution/>  
633 - <copies>1</copies>  
634 - <partitioning>  
635 - <method>none</method>  
636 - <schema_name/>  
637 - </partitioning>  
638 - <connection>bus_control_variable</connection>  
639 - <execute_each_row>Y</execute_each_row>  
640 - <single_statement>N</single_statement>  
641 - <replace_variables>N</replace_variables>  
642 - <quoteString>N</quoteString>  
643 - <sql>delete from bsth_c_s_ttinfo_detail where ttinfo &#x3d; &#x3f;</sql>  
644 - <set_params>N</set_params>  
645 - <insert_field/>  
646 - <update_field/>  
647 - <delete_field/>  
648 - <read_field/>  
649 - <arguments>  
650 - <argument><name>ttid_</name></argument>  
651 - </arguments>  
652 - <cluster_schema/>  
653 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
654 - <xloc>808</xloc>  
655 - <yloc>16</yloc>  
656 - <draw>Y</draw>  
657 - </GUI>  
658 - </step>  
659 -  
660 - <step>  
661 - <name>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</name>  
662 - <type>Dummy</type>  
663 - <description/>  
664 - <distribute>Y</distribute>  
665 - <custom_distribution/>  
666 - <copies>1</copies>  
667 - <partitioning>  
668 - <method>none</method>  
669 - <schema_name/>  
670 - </partitioning>  
671 - <cluster_schema/>  
672 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
673 - <xloc>883</xloc>  
674 - <yloc>373</yloc>  
675 - <draw>Y</draw>  
676 - </GUI>  
677 - </step>  
678 -  
679 - <step>  
680 - <name>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</name>  
681 - <type>Constant</type>  
682 - <description/>  
683 - <distribute>Y</distribute>  
684 - <custom_distribution/>  
685 - <copies>1</copies>  
686 - <partitioning>  
687 - <method>none</method>  
688 - <schema_name/>  
689 - </partitioning>  
690 - <fields>  
691 - <field>  
692 - <name>fieldtype</name>  
693 - <type>String</type>  
694 - <format/>  
695 - <currency/>  
696 - <decimal/>  
697 - <group/>  
698 - <nullif>String</nullif>  
699 - <length>-1</length>  
700 - <precision>-1</precision>  
701 - <set_empty_string>N</set_empty_string>  
702 - </field>  
703 - <field>  
704 - <name>length</name>  
705 - <type>String</type>  
706 - <format/>  
707 - <currency/>  
708 - <decimal/>  
709 - <group/>  
710 - <nullif>-1</nullif>  
711 - <length>-1</length>  
712 - <precision>-1</precision>  
713 - <set_empty_string>N</set_empty_string>  
714 - </field>  
715 - <field>  
716 - <name>precision</name>  
717 - <type>String</type>  
718 - <format/>  
719 - <currency/>  
720 - <decimal/>  
721 - <group/>  
722 - <nullif>-1</nullif>  
723 - <length>-1</length>  
724 - <precision>-1</precision>  
725 - <set_empty_string>N</set_empty_string>  
726 - </field>  
727 - <field>  
728 - <name>trim_type</name>  
729 - <type>String</type>  
730 - <format/>  
731 - <currency/>  
732 - <decimal/>  
733 - <group/>  
734 - <nullif>none</nullif>  
735 - <length>-1</length>  
736 - <precision>-1</precision>  
737 - <set_empty_string>N</set_empty_string>  
738 - </field>  
739 - <field>  
740 - <name>repeat</name>  
741 - <type>String</type>  
742 - <format/>  
743 - <currency/>  
744 - <decimal/>  
745 - <group/>  
746 - <nullif>N</nullif>  
747 - <length>-1</length>  
748 - <precision>-1</precision>  
749 - <set_empty_string>N</set_empty_string>  
750 - </field>  
751 - <field>  
752 - <name>format</name>  
753 - <type>String</type>  
754 - <format/>  
755 - <currency/>  
756 - <decimal/>  
757 - <group/>  
758 - <nullif>&#x23;</nullif>  
759 - <length>-1</length>  
760 - <precision>-1</precision>  
761 - <set_empty_string>N</set_empty_string>  
762 - </field>  
763 - </fields>  
764 - <cluster_schema/>  
765 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
766 - <xloc>622</xloc>  
767 - <yloc>162</yloc>  
768 - <draw>Y</draw>  
769 - </GUI>  
770 - </step>  
771 -  
772 - <step>  
773 - <name>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</name>  
774 - <type>Constant</type>  
775 - <description/>  
776 - <distribute>Y</distribute>  
777 - <custom_distribution/>  
778 - <copies>1</copies>  
779 - <partitioning>  
780 - <method>none</method>  
781 - <schema_name/>  
782 - </partitioning>  
783 - <fields>  
784 - <field>  
785 - <name>valuefield</name>  
786 - <type>String</type>  
787 - <format/>  
788 - <currency/>  
789 - <decimal/>  
790 - <group/>  
791 - <nullif>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</nullif>  
792 - <length>-1</length>  
793 - <precision>-1</precision>  
794 - <set_empty_string>N</set_empty_string>  
795 - </field>  
796 - </fields>  
797 - <cluster_schema/>  
798 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
799 - <xloc>628</xloc>  
800 - <yloc>247</yloc>  
801 - <draw>Y</draw>  
802 - </GUI>  
803 - </step>  
804 -  
805 - <step>  
806 - <name>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</name>  
807 - <type>Constant</type>  
808 - <description/>  
809 - <distribute>Y</distribute>  
810 - <custom_distribution/>  
811 - <copies>1</copies>  
812 - <partitioning>  
813 - <method>none</method>  
814 - <schema_name/>  
815 - </partitioning>  
816 - <fields>  
817 - <field>  
818 - <name>col_name</name>  
819 - <type>String</type>  
820 - <format/>  
821 - <currency/>  
822 - <decimal/>  
823 - <group/>  
824 - <nullif>tccname_</nullif>  
825 - <length>-1</length>  
826 - <precision>-1</precision>  
827 - <set_empty_string>N</set_empty_string>  
828 - </field>  
829 - <field>  
830 - <name>col_type</name>  
831 - <type>String</type>  
832 - <format/>  
833 - <currency/>  
834 - <decimal/>  
835 - <group/>  
836 - <nullif>String</nullif>  
837 - <length>-1</length>  
838 - <precision>-1</precision>  
839 - <set_empty_string>N</set_empty_string>  
840 - </field>  
841 - <field>  
842 - <name>col_value</name>  
843 - <type>String</type>  
844 - <format/>  
845 - <currency/>  
846 - <decimal/>  
847 - <group/>  
848 - <nullif>replace</nullif>  
849 - <length>-1</length>  
850 - <precision>-1</precision>  
851 - <set_empty_string>N</set_empty_string>  
852 - </field>  
853 - </fields>  
854 - <cluster_schema/>  
855 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
856 - <xloc>461</xloc>  
857 - <yloc>469</yloc>  
858 - <draw>Y</draw>  
859 - </GUI>  
860 - </step>  
861 -  
862 - <step>  
863 - <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</name>  
864 - <type>Constant</type>  
865 - <description/>  
866 - <distribute>Y</distribute>  
867 - <custom_distribution/>  
868 - <copies>1</copies>  
869 - <partitioning>  
870 - <method>none</method>  
871 - <schema_name/>  
872 - </partitioning>  
873 - <fields>  
874 - <field>  
875 - <name>col_name</name>  
876 - <type>String</type>  
877 - <format/>  
878 - <currency/>  
879 - <decimal/>  
880 - <group/>  
881 - <nullif>ttinfoname_</nullif>  
882 - <length>-1</length>  
883 - <precision>-1</precision>  
884 - <set_empty_string>N</set_empty_string>  
885 - </field>  
886 - <field>  
887 - <name>col_type</name>  
888 - <type>String</type>  
889 - <format/>  
890 - <currency/>  
891 - <decimal/>  
892 - <group/>  
893 - <nullif>String</nullif>  
894 - <length>-1</length>  
895 - <precision>-1</precision>  
896 - <set_empty_string>N</set_empty_string>  
897 - </field>  
898 - <field>  
899 - <name>col_value</name>  
900 - <type>String</type>  
901 - <format/>  
902 - <currency/>  
903 - <decimal/>  
904 - <group/>  
905 - <nullif>replace</nullif>  
906 - <length>-1</length>  
907 - <precision>-1</precision>  
908 - <set_empty_string>N</set_empty_string>  
909 - </field>  
910 - </fields>  
911 - <cluster_schema/>  
912 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
913 - <xloc>608</xloc>  
914 - <yloc>601</yloc>  
915 - <draw>Y</draw>  
916 - </GUI>  
917 - </step>  
918 -  
919 - <step>  
920 - <name>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</name>  
921 - <type>Constant</type>  
922 - <description/>  
923 - <distribute>Y</distribute>  
924 - <custom_distribution/>  
925 - <copies>1</copies>  
926 - <partitioning>  
927 - <method>none</method>  
928 - <schema_name/>  
929 - </partitioning>  
930 - <fields>  
931 - <field>  
932 - <name>col_name</name>  
933 - <type>String</type>  
934 - <format/>  
935 - <currency/>  
936 - <decimal/>  
937 - <group/>  
938 - <nullif>zdlyversion_</nullif>  
939 - <length>-1</length>  
940 - <precision>-1</precision>  
941 - <set_empty_string>N</set_empty_string>  
942 - </field>  
943 - <field>  
944 - <name>col_type</name>  
945 - <type>String</type>  
946 - <format/>  
947 - <currency/>  
948 - <decimal/>  
949 - <group/>  
950 - <nullif>String</nullif>  
951 - <length>-1</length>  
952 - <precision>-1</precision>  
953 - <set_empty_string>N</set_empty_string>  
954 - </field>  
955 - <field>  
956 - <name>col_value</name>  
957 - <type>String</type>  
958 - <format/>  
959 - <currency/>  
960 - <decimal/>  
961 - <group/>  
962 - <nullif>replace</nullif>  
963 - <length>-1</length>  
964 - <precision>-1</precision>  
965 - <set_empty_string>N</set_empty_string>  
966 - </field>  
967 - </fields>  
968 - <cluster_schema/>  
969 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
970 - <xloc>390</xloc>  
971 - <yloc>532</yloc>  
972 - <draw>Y</draw>  
973 - </GUI>  
974 - </step>  
975 -  
976 - <step>  
977 - <name>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</name>  
978 - <type>Constant</type>  
979 - <description/>  
980 - <distribute>Y</distribute>  
981 - <custom_distribution/>  
982 - <copies>1</copies>  
983 - <partitioning>  
984 - <method>none</method>  
985 - <schema_name/>  
986 - </partitioning>  
987 - <fields>  
988 - <field>  
989 - <name>col_name</name>  
990 - <type>String</type>  
991 - <format/>  
992 - <currency/>  
993 - <decimal/>  
994 - <group/>  
995 - <nullif>xlname_</nullif>  
996 - <length>-1</length>  
997 - <precision>-1</precision>  
998 - <set_empty_string>N</set_empty_string>  
999 - </field>  
1000 - <field>  
1001 - <name>col_type</name>  
1002 - <type>String</type>  
1003 - <format/>  
1004 - <currency/>  
1005 - <decimal/>  
1006 - <group/>  
1007 - <nullif>String</nullif>  
1008 - <length>-1</length>  
1009 - <precision>-1</precision>  
1010 - <set_empty_string>N</set_empty_string>  
1011 - </field>  
1012 - <field>  
1013 - <name>col_value</name>  
1014 - <type>String</type>  
1015 - <format/>  
1016 - <currency/>  
1017 - <decimal/>  
1018 - <group/>  
1019 - <nullif>replace</nullif>  
1020 - <length>-1</length>  
1021 - <precision>-1</precision>  
1022 - <set_empty_string>N</set_empty_string>  
1023 - </field>  
1024 - </fields>  
1025 - <cluster_schema/>  
1026 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1027 - <xloc>383</xloc>  
1028 - <yloc>341</yloc>  
1029 - <draw>Y</draw>  
1030 - </GUI>  
1031 - </step>  
1032 -  
1033 - <step>  
1034 - <name>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>  
1035 - <type>SelectValues</type>  
1036 - <description/>  
1037 - <distribute>Y</distribute>  
1038 - <custom_distribution/>  
1039 - <copies>1</copies>  
1040 - <partitioning>  
1041 - <method>none</method>  
1042 - <schema_name/>  
1043 - </partitioning>  
1044 - <fields> <field> <name>col_name</name>  
1045 - <rename/>  
1046 - <length>-2</length>  
1047 - <precision>-2</precision>  
1048 - </field> <field> <name>col_type</name>  
1049 - <rename/>  
1050 - <length>-2</length>  
1051 - <precision>-2</precision>  
1052 - </field> <field> <name>col_value</name>  
1053 - <rename/>  
1054 - <length>-2</length>  
1055 - <precision>-2</precision>  
1056 - </field> <select_unspecified>N</select_unspecified>  
1057 - </fields> <cluster_schema/>  
1058 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1059 - <xloc>888</xloc>  
1060 - <yloc>601</yloc>  
1061 - <draw>Y</draw>  
1062 - </GUI>  
1063 - </step>  
1064 -  
1065 - <step>  
1066 - <name>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </name>  
1067 - <type>SetValueField</type>  
1068 - <description/>  
1069 - <distribute>Y</distribute>  
1070 - <custom_distribution/>  
1071 - <copies>1</copies>  
1072 - <partitioning>  
1073 - <method>none</method>  
1074 - <schema_name/>  
1075 - </partitioning>  
1076 - <fields>  
1077 - <field>  
1078 - <name>col_value</name>  
1079 - <replaceby>tccname_</replaceby>  
1080 - </field>  
1081 - </fields>  
1082 - <cluster_schema/>  
1083 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1084 - <xloc>598</xloc>  
1085 - <yloc>471</yloc>  
1086 - <draw>Y</draw>  
1087 - </GUI>  
1088 - </step>  
1089 -  
1090 - <step>  
1091 - <name>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</name>  
1092 - <type>SetValueField</type>  
1093 - <description/>  
1094 - <distribute>Y</distribute>  
1095 - <custom_distribution/>  
1096 - <copies>1</copies>  
1097 - <partitioning>  
1098 - <method>none</method>  
1099 - <schema_name/>  
1100 - </partitioning>  
1101 - <fields>  
1102 - <field>  
1103 - <name>col_value</name>  
1104 - <replaceby>ttinfoname_</replaceby>  
1105 - </field>  
1106 - </fields>  
1107 - <cluster_schema/>  
1108 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1109 - <xloc>746</xloc>  
1110 - <yloc>602</yloc>  
1111 - <draw>Y</draw>  
1112 - </GUI>  
1113 - </step>  
1114 -  
1115 - <step>  
1116 - <name>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</name>  
1117 - <type>SetValueField</type>  
1118 - <description/>  
1119 - <distribute>Y</distribute>  
1120 - <custom_distribution/>  
1121 - <copies>1</copies>  
1122 - <partitioning>  
1123 - <method>none</method>  
1124 - <schema_name/>  
1125 - </partitioning>  
1126 - <fields>  
1127 - <field>  
1128 - <name>col_value</name>  
1129 - <replaceby>zdlyversion_</replaceby>  
1130 - </field>  
1131 - </fields>  
1132 - <cluster_schema/>  
1133 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1134 - <xloc>594</xloc>  
1135 - <yloc>532</yloc>  
1136 - <draw>Y</draw>  
1137 - </GUI>  
1138 - </step>  
1139 -  
1140 - <step>  
1141 - <name>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>  
1142 - <type>SetValueField</type>  
1143 - <description/>  
1144 - <distribute>Y</distribute>  
1145 - <custom_distribution/>  
1146 - <copies>1</copies>  
1147 - <partitioning>  
1148 - <method>none</method>  
1149 - <schema_name/>  
1150 - </partitioning>  
1151 - <fields>  
1152 - <field>  
1153 - <name>col_value</name>  
1154 - <replaceby>xlname_</replaceby>  
1155 - </field>  
1156 - </fields>  
1157 - <cluster_schema/>  
1158 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1159 - <xloc>521</xloc>  
1160 - <yloc>342</yloc>  
1161 - <draw>Y</draw>  
1162 - </GUI>  
1163 - </step>  
1164 -  
1165 - <step>  
1166 - <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</name>  
1167 - <type>SelectValues</type>  
1168 - <description/>  
1169 - <distribute>Y</distribute>  
1170 - <custom_distribution/>  
1171 - <copies>1</copies>  
1172 - <partitioning>  
1173 - <method>none</method>  
1174 - <schema_name/>  
1175 - </partitioning>  
1176 - <fields> <field> <name>col_name</name>  
1177 - <rename/>  
1178 - <length>-2</length>  
1179 - <precision>-2</precision>  
1180 - </field> <field> <name>col_type</name>  
1181 - <rename/>  
1182 - <length>-2</length>  
1183 - <precision>-2</precision>  
1184 - </field> <field> <name>col_value</name>  
1185 - <rename/>  
1186 - <length>-2</length>  
1187 - <precision>-2</precision>  
1188 - </field> <select_unspecified>N</select_unspecified>  
1189 - </fields> <cluster_schema/>  
1190 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1191 - <xloc>741</xloc>  
1192 - <yloc>533</yloc>  
1193 - <draw>Y</draw>  
1194 - </GUI>  
1195 - </step>  
1196 -  
1197 - <step>  
1198 - <name>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>  
1199 - <type>SelectValues</type>  
1200 - <description/>  
1201 - <distribute>Y</distribute>  
1202 - <custom_distribution/>  
1203 - <copies>1</copies>  
1204 - <partitioning>  
1205 - <method>none</method>  
1206 - <schema_name/>  
1207 - </partitioning>  
1208 - <fields> <field> <name>col_name</name>  
1209 - <rename/>  
1210 - <length>-2</length>  
1211 - <precision>-2</precision>  
1212 - </field> <field> <name>col_type</name>  
1213 - <rename/>  
1214 - <length>-2</length>  
1215 - <precision>-2</precision>  
1216 - </field> <field> <name>col_value</name>  
1217 - <rename/>  
1218 - <length>-2</length>  
1219 - <precision>-2</precision>  
1220 - </field> <select_unspecified>N</select_unspecified>  
1221 - </fields> <cluster_schema/>  
1222 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1223 - <xloc>668</xloc>  
1224 - <yloc>343</yloc>  
1225 - <draw>Y</draw>  
1226 - </GUI>  
1227 - </step>  
1228 -  
1229 - <step>  
1230 - <name>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>  
1231 - <type>GetVariable</type>  
1232 - <description/>  
1233 - <distribute>Y</distribute>  
1234 - <custom_distribution/>  
1235 - <copies>1</copies>  
1236 - <partitioning>  
1237 - <method>none</method>  
1238 - <schema_name/>  
1239 - </partitioning>  
1240 - <fields>  
1241 - <field>  
1242 - <name>fieldnames</name>  
1243 - <variable>&#x24;&#x7b;excelfieldnames&#x7d;</variable>  
1244 - <type>String</type>  
1245 - <format/>  
1246 - <currency/>  
1247 - <decimal/>  
1248 - <group/>  
1249 - <length>-1</length>  
1250 - <precision>-1</precision>  
1251 - <trim_type>none</trim_type>  
1252 - </field>  
1253 - </fields>  
1254 - <cluster_schema/>  
1255 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1256 - <xloc>252</xloc>  
1257 - <yloc>153</yloc>  
1258 - <draw>Y</draw>  
1259 - </GUI>  
1260 - </step>  
1261 -  
1262 - <step>  
1263 - <name>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</name>  
1264 - <type>GetVariable</type>  
1265 - <description/>  
1266 - <distribute>Y</distribute>  
1267 - <custom_distribution/>  
1268 - <copies>1</copies>  
1269 - <partitioning>  
1270 - <method>none</method>  
1271 - <schema_name/>  
1272 - </partitioning>  
1273 - <fields>  
1274 - <field>  
1275 - <name>filepath_</name>  
1276 - <variable>&#x24;&#x7b;filepath&#x7d;</variable>  
1277 - <type>String</type>  
1278 - <format/>  
1279 - <currency/>  
1280 - <decimal/>  
1281 - <group/>  
1282 - <length>-1</length>  
1283 - <precision>-1</precision>  
1284 - <trim_type>none</trim_type>  
1285 - </field>  
1286 - <field>  
1287 - <name>erroroutputdir_</name>  
1288 - <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>  
1289 - <type>String</type>  
1290 - <format/>  
1291 - <currency/>  
1292 - <decimal/>  
1293 - <group/>  
1294 - <length>-1</length>  
1295 - <precision>-1</precision>  
1296 - <trim_type>none</trim_type>  
1297 - </field>  
1298 - <field>  
1299 - <name>sheetname_</name>  
1300 - <variable>&#x24;&#x7b;sheetname&#x7d;</variable>  
1301 - <type>String</type>  
1302 - <format/>  
1303 - <currency/>  
1304 - <decimal/>  
1305 - <group/>  
1306 - <length>-1</length>  
1307 - <precision>-1</precision>  
1308 - <trim_type>none</trim_type>  
1309 - </field>  
1310 - </fields>  
1311 - <cluster_schema/>  
1312 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1313 - <xloc>301</xloc>  
1314 - <yloc>52</yloc>  
1315 - <draw>Y</draw>  
1316 - </GUI>  
1317 - </step>  
1318 -  
1319 - <step>  
1320 - <name>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>  
1321 - <type>GetVariable</type>  
1322 - <description/>  
1323 - <distribute>Y</distribute>  
1324 - <custom_distribution/>  
1325 - <copies>1</copies>  
1326 - <partitioning>  
1327 - <method>none</method>  
1328 - <schema_name/>  
1329 - </partitioning>  
1330 - <fields>  
1331 - <field>  
1332 - <name>normalizefieldnames_</name>  
1333 - <variable>&#x24;&#x7b;normalizefieldnames&#x7d;</variable>  
1334 - <type>String</type>  
1335 - <format/>  
1336 - <currency/>  
1337 - <decimal/>  
1338 - <group/>  
1339 - <length>-1</length>  
1340 - <precision>-1</precision>  
1341 - <trim_type>none</trim_type>  
1342 - </field>  
1343 - </fields>  
1344 - <cluster_schema/>  
1345 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1346 - <xloc>261</xloc>  
1347 - <yloc>251</yloc>  
1348 - <draw>Y</draw>  
1349 - </GUI>  
1350 - </step>  
1351 -  
1352 - <step>  
1353 - <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</name>  
1354 - <type>GetVariable</type>  
1355 - <description/>  
1356 - <distribute>Y</distribute>  
1357 - <custom_distribution/>  
1358 - <copies>1</copies>  
1359 - <partitioning>  
1360 - <method>none</method>  
1361 - <schema_name/>  
1362 - </partitioning>  
1363 - <fields>  
1364 - <field>  
1365 - <name>ttid_</name>  
1366 - <variable>&#x24;&#x7b;ttid&#x7d;</variable>  
1367 - <type>Integer</type>  
1368 - <format/>  
1369 - <currency/>  
1370 - <decimal/>  
1371 - <group/>  
1372 - <length>-1</length>  
1373 - <precision>-1</precision>  
1374 - <trim_type>none</trim_type>  
1375 - </field>  
1376 - </fields>  
1377 - <cluster_schema/>  
1378 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1379 - <xloc>608</xloc>  
1380 - <yloc>16</yloc>  
1381 - <draw>Y</draw>  
1382 - </GUI>  
1383 - </step>  
1384 -  
1385 - <step>  
1386 - <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</name>  
1387 - <type>GetVariable</type>  
1388 - <description/>  
1389 - <distribute>Y</distribute>  
1390 - <custom_distribution/>  
1391 - <copies>1</copies>  
1392 - <partitioning>  
1393 - <method>none</method>  
1394 - <schema_name/>  
1395 - </partitioning>  
1396 - <fields>  
1397 - <field>  
1398 - <name>ttinfoname_</name>  
1399 - <variable>&#x24;&#x7b;ttinfoname&#x7d;</variable>  
1400 - <type>String</type>  
1401 - <format/>  
1402 - <currency/>  
1403 - <decimal/>  
1404 - <group/>  
1405 - <length>-1</length>  
1406 - <precision>-1</precision>  
1407 - <trim_type>none</trim_type>  
1408 - </field>  
1409 - </fields>  
1410 - <cluster_schema/>  
1411 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1412 - <xloc>474</xloc>  
1413 - <yloc>601</yloc>  
1414 - <draw>Y</draw>  
1415 - </GUI>  
1416 - </step>  
1417 -  
1418 - <step>  
1419 - <name>&#x83b7;&#x53d6;&#x7ad9;&#x70b9;&#x8def;&#x7531;version</name>  
1420 - <type>GetVariable</type>  
1421 - <description/>  
1422 - <distribute>Y</distribute>  
1423 - <custom_distribution/>  
1424 - <copies>1</copies>  
1425 - <partitioning>  
1426 - <method>none</method>  
1427 - <schema_name/>  
1428 - </partitioning>  
1429 - <fields>  
1430 - <field>  
1431 - <name>zdlyversion_</name>  
1432 - <variable>&#x24;&#x7b;lineversion&#x7d;</variable>  
1433 - <type>String</type>  
1434 - <format/>  
1435 - <currency/>  
1436 - <decimal/>  
1437 - <group/>  
1438 - <length>-1</length>  
1439 - <precision>-1</precision>  
1440 - <trim_type>none</trim_type>  
1441 - </field>  
1442 - </fields>  
1443 - <cluster_schema/>  
1444 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1445 - <xloc>187</xloc>  
1446 - <yloc>534</yloc>  
1447 - <draw>Y</draw>  
1448 - </GUI>  
1449 - </step>  
1450 -  
1451 - <step>  
1452 - <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>  
1453 - <type>GetVariable</type>  
1454 - <description/>  
1455 - <distribute>Y</distribute>  
1456 - <custom_distribution/>  
1457 - <copies>1</copies>  
1458 - <partitioning>  
1459 - <method>none</method>  
1460 - <schema_name/>  
1461 - </partitioning>  
1462 - <fields>  
1463 - <field>  
1464 - <name>xlname_</name>  
1465 - <variable>&#x24;&#x7b;xlname&#x7d;</variable>  
1466 - <type>String</type>  
1467 - <format/>  
1468 - <currency/>  
1469 - <decimal/>  
1470 - <group/>  
1471 - <length>-1</length>  
1472 - <precision>-1</precision>  
1473 - <trim_type>none</trim_type>  
1474 - </field>  
1475 - </fields>  
1476 - <cluster_schema/>  
1477 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1478 - <xloc>184</xloc>  
1479 - <yloc>342</yloc>  
1480 - <draw>Y</draw>  
1481 - </GUI>  
1482 - </step>  
1483 -  
1484 - <step>  
1485 - <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</name>  
1486 - <type>GetVariable</type>  
1487 - <description/>  
1488 - <distribute>Y</distribute>  
1489 - <custom_distribution/>  
1490 - <copies>1</copies>  
1491 - <partitioning>  
1492 - <method>none</method>  
1493 - <schema_name/>  
1494 - </partitioning>  
1495 - <fields>  
1496 - <field>  
1497 - <name>lineinfoid_</name>  
1498 - <variable>&#x24;&#x7b;lineinfoid&#x7d;</variable>  
1499 - <type>Integer</type>  
1500 - <format/>  
1501 - <currency/>  
1502 - <decimal/>  
1503 - <group/>  
1504 - <length>-1</length>  
1505 - <precision>-1</precision>  
1506 - <trim_type>none</trim_type>  
1507 - </field>  
1508 - </fields>  
1509 - <cluster_schema/>  
1510 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1511 - <xloc>74</xloc>  
1512 - <yloc>468</yloc>  
1513 - <draw>Y</draw>  
1514 - </GUI>  
1515 - </step>  
1516 -  
1517 - <step>  
1518 - <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</name>  
1519 - <type>SplitFieldToRows3</type>  
1520 - <description/>  
1521 - <distribute>Y</distribute>  
1522 - <custom_distribution/>  
1523 - <copies>1</copies>  
1524 - <partitioning>  
1525 - <method>none</method>  
1526 - <schema_name/>  
1527 - </partitioning>  
1528 - <splitfield>fieldnames</splitfield>  
1529 - <delimiter>,</delimiter>  
1530 - <newfield>fieldname</newfield>  
1531 - <rownum>N</rownum>  
1532 - <rownum_field/>  
1533 - <resetrownumber>Y</resetrownumber>  
1534 - <delimiter_is_regex>N</delimiter_is_regex>  
1535 - <cluster_schema/>  
1536 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1537 - <xloc>442</xloc>  
1538 - <yloc>153</yloc>  
1539 - <draw>Y</draw>  
1540 - </GUI>  
1541 - </step>  
1542 -  
1543 - <step>  
1544 - <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</name>  
1545 - <type>SplitFieldToRows3</type>  
1546 - <description/>  
1547 - <distribute>Y</distribute>  
1548 - <custom_distribution/>  
1549 - <copies>1</copies>  
1550 - <partitioning>  
1551 - <method>none</method>  
1552 - <schema_name/>  
1553 - </partitioning>  
1554 - <splitfield>normalizefieldnames_</splitfield>  
1555 - <delimiter>,</delimiter>  
1556 - <newfield>nfieldname</newfield>  
1557 - <rownum>N</rownum>  
1558 - <rownum_field/>  
1559 - <resetrownumber>Y</resetrownumber>  
1560 - <delimiter_is_regex>N</delimiter_is_regex>  
1561 - <cluster_schema/>  
1562 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1563 - <xloc>444</xloc>  
1564 - <yloc>247</yloc>  
1565 - <draw>Y</draw>  
1566 - </GUI>  
1567 - </step>  
1568 -  
1569 - <step_error_handling>  
1570 - </step_error_handling>  
1571 - <slave-step-copy-partition-distribution>  
1572 -</slave-step-copy-partition-distribution>  
1573 - <slave_transformation>N</slave_transformation>  
1574 -  
1575 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x5165;&#x5143;&#x6570;&#x636e;</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>erroroutputdir</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;erroroutput</default_value>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>excelfieldnames</name>
  19 + <default_value>&#x8def;&#x724c;,&#x51fa;&#x573a;,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;1,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;1,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;2,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;2,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;3,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;3,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;4,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;4,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;5,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;5,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;6,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;6,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;7,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;7,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;8,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;8,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;9,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;9,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;10,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;10,&#x8fdb;&#x573a;</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;excel&#x8f93;&#x5165;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>filepath</name>
  24 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_etl&#x2f;&#x95f5;&#x884c;&#x516c;&#x4ea4;&#x2f;&#x95f5;&#x884c;26&#x8def;&#x65f6;&#x523b;&#x8868;160630&#x65f6;&#x523b;&#x8868;.xls</default_value>
  25 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</description>
  26 + </parameter>
  27 + <parameter>
  28 + <name>injectktrfile</name>
  29 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_parent&#x2f;bsth_control&#x2f;src&#x2f;main&#x2f;resources&#x2f;datatools&#x2f;ktrs&#x2f;ttinfodetailDataInput.ktr</default_value>
  30 + <description>&#x6ce8;&#x5165;&#x5143;&#x6570;&#x636e;&#x7684;ktr&#x6587;&#x4ef6;</description>
  31 + </parameter>
  32 + <parameter>
  33 + <name>lineinfoid</name>
  34 + <default_value>1000</default_value>
  35 + <description>&#x7ebf;&#x8def;&#x6807;&#x51c6;id</description>
  36 + </parameter>
  37 + <parameter>
  38 + <name>lineversion</name>
  39 + <default_value>-1</default_value>
  40 + <description>&#x7ebf;&#x8def;&#x7248;&#x672c;</description>
  41 + </parameter>
  42 + <parameter>
  43 + <name>normalizefieldnames</name>
  44 + <default_value>&#x51fa;&#x573a;,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;1,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;1,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;2,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;2,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;3,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;3,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;4,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;4,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;5,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;5,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;6,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;6,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;7,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;7,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;8,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;8,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;9,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;9,&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;10,&#x5858;&#x6cfe;&#x8def;&#x5c1a;&#x4e49;&#x8def;10,&#x8fdb;&#x573a;</default_value>
  45 + <description>&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;&#x5b57;&#x6bb5;&#x540d;&#xff0c;&#x4ee5;&#x9017;&#x53f7;&#x8fde;&#x63a5;</description>
  46 + </parameter>
  47 + <parameter>
  48 + <name>sheetname</name>
  49 + <default_value>&#x5de5;&#x4f5c;&#x8868;1</default_value>
  50 + <description>xls sheet&#x540d;&#x5b57;</description>
  51 + </parameter>
  52 + <parameter>
  53 + <name>tccname</name>
  54 + <default_value>&#x4e1c;&#x5ddd;&#x8def;&#x5730;&#x94c1;&#x7ad9;&#x505c;&#x8f66;&#x573a;</default_value>
  55 + <description>&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</description>
  56 + </parameter>
  57 + <parameter>
  58 + <name>ttid</name>
  59 + <default_value>1</default_value>
  60 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  61 + </parameter>
  62 + <parameter>
  63 + <name>ttinfoname</name>
  64 + <default_value>&#x8868;2</default_value>
  65 + <description>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</description>
  66 + </parameter>
  67 + <parameter>
  68 + <name>xlid</name>
  69 + <default_value>-999</default_value>
  70 + <description>&#x7ebf;&#x8def;id</description>
  71 + </parameter>
  72 + <parameter>
  73 + <name>xlname</name>
  74 + <default_value>&#x95f5;&#x884c;26&#x8def;</default_value>
  75 + <description>&#x7ebf;&#x8def;&#x540d;&#x79f0;</description>
  76 + </parameter>
  77 + </parameters>
  78 + <log>
  79 +<trans-log-table><connection/>
  80 +<schema/>
  81 +<table/>
  82 +<size_limit_lines/>
  83 +<interval/>
  84 +<timeout_days/>
  85 +<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>
  86 +<perf-log-table><connection/>
  87 +<schema/>
  88 +<table/>
  89 +<interval/>
  90 +<timeout_days/>
  91 +<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>
  92 +<channel-log-table><connection/>
  93 +<schema/>
  94 +<table/>
  95 +<timeout_days/>
  96 +<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>
  97 +<step-log-table><connection/>
  98 +<schema/>
  99 +<table/>
  100 +<timeout_days/>
  101 +<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>
  102 +<metrics-log-table><connection/>
  103 +<schema/>
  104 +<table/>
  105 +<timeout_days/>
  106 +<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>
  107 + </log>
  108 + <maxdate>
  109 + <connection/>
  110 + <table/>
  111 + <field/>
  112 + <offset>0.0</offset>
  113 + <maxdiff>0.0</maxdiff>
  114 + </maxdate>
  115 + <size_rowset>10000</size_rowset>
  116 + <sleep_time_empty>50</sleep_time_empty>
  117 + <sleep_time_full>50</sleep_time_full>
  118 + <unique_connections>N</unique_connections>
  119 + <feedback_shown>Y</feedback_shown>
  120 + <feedback_size>50000</feedback_size>
  121 + <using_thread_priorities>Y</using_thread_priorities>
  122 + <shared_objects_file/>
  123 + <capture_step_performance>N</capture_step_performance>
  124 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  125 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  126 + <dependencies>
  127 + </dependencies>
  128 + <partitionschemas>
  129 + </partitionschemas>
  130 + <slaveservers>
  131 + </slaveservers>
  132 + <clusterschemas>
  133 + </clusterschemas>
  134 + <created_user>-</created_user>
  135 + <created_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</created_date>
  136 + <modified_user>-</modified_user>
  137 + <modified_date>2016&#x2f;07&#x2f;01 09&#x3a;55&#x3a;32.649</modified_date>
  138 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  139 + <is_key_private>N</is_key_private>
  140 + </info>
  141 + <notepads>
  142 + </notepads>
  143 + <connection>
  144 + <name>192.168.168.1_jwgl_dw</name>
  145 + <server>192.168.168.1</server>
  146 + <type>ORACLE</type>
  147 + <access>Native</access>
  148 + <database>orcl</database>
  149 + <port>1521</port>
  150 + <username>jwgl_dw</username>
  151 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  152 + <servername/>
  153 + <data_tablespace/>
  154 + <index_tablespace/>
  155 + <attributes>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  158 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  159 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  160 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  161 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_variable</name>
  169 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  173 + <port>3306</port>
  174 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  175 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  182 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  185 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  186 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  187 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  188 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  189 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  190 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  192 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  193 + </attributes>
  194 + </connection>
  195 + <connection>
  196 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  197 + <server>localhost</server>
  198 + <type>MYSQL</type>
  199 + <access>Native</access>
  200 + <database>control</database>
  201 + <port>3306</port>
  202 + <username>root</username>
  203 + <password>Encrypted </password>
  204 + <servername/>
  205 + <data_tablespace/>
  206 + <index_tablespace/>
  207 + <attributes>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  209 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  212 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  213 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  214 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  215 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  216 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  218 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  219 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  220 + </attributes>
  221 + </connection>
  222 + <connection>
  223 + <name>bus_control_&#x672c;&#x673a;</name>
  224 + <server>localhost</server>
  225 + <type>MYSQL</type>
  226 + <access>Native</access>
  227 + <database>control</database>
  228 + <port>3306</port>
  229 + <username>root</username>
  230 + <password>Encrypted </password>
  231 + <servername/>
  232 + <data_tablespace/>
  233 + <index_tablespace/>
  234 + <attributes>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  236 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  239 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  240 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  241 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  242 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  243 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  244 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  245 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  246 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  247 + </attributes>
  248 + </connection>
  249 + <connection>
  250 + <name>xlab_mysql_youle</name>
  251 + <server>101.231.124.8</server>
  252 + <type>MYSQL</type>
  253 + <access>Native</access>
  254 + <database>xlab_youle</database>
  255 + <port>45687</port>
  256 + <username>xlab-youle</username>
  257 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  258 + <servername/>
  259 + <data_tablespace/>
  260 + <index_tablespace/>
  261 + <attributes>
  262 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  263 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  264 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  265 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  267 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  268 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  269 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  270 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  271 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  272 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  273 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  274 + </attributes>
  275 + </connection>
  276 + <connection>
  277 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  278 + <server>localhost</server>
  279 + <type>MYSQL</type>
  280 + <access>Native</access>
  281 + <database>xlab_youle</database>
  282 + <port>3306</port>
  283 + <username>root</username>
  284 + <password>Encrypted </password>
  285 + <servername/>
  286 + <data_tablespace/>
  287 + <index_tablespace/>
  288 + <attributes>
  289 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  290 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  291 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  292 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  293 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  294 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  295 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  296 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  297 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  298 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  299 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  300 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  301 + </attributes>
  302 + </connection>
  303 + <connection>
  304 + <name>xlab_youle</name>
  305 + <server/>
  306 + <type>MYSQL</type>
  307 + <access>JNDI</access>
  308 + <database>xlab_youle</database>
  309 + <port>1521</port>
  310 + <username/>
  311 + <password>Encrypted </password>
  312 + <servername/>
  313 + <data_tablespace/>
  314 + <index_tablespace/>
  315 + <attributes>
  316 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  317 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  318 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  319 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  320 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  321 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  322 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  323 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  324 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  325 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  326 + </attributes>
  327 + </connection>
  328 + <order>
  329 + <hop> <from>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  330 + <hop> <from>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</from><to>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</to><enabled>Y</enabled> </hop>
  331 + <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</from><to>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  332 + <hop> <from>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  333 + <hop> <from>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</from><to>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</to><enabled>Y</enabled> </hop>
  334 + <hop> <from>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</from><to>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  335 + <hop> <from>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  336 + <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  337 + <hop> <from>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  338 + <hop> <from>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</from><to>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  339 + <hop> <from>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </to><enabled>Y</enabled> </hop>
  340 + <hop> <from>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  341 + <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  342 + <hop> <from>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</from><to>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</to><enabled>Y</enabled> </hop>
  343 + <hop> <from>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</from><to>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  344 + <hop> <from>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  345 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  346 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  347 + <hop> <from>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  348 + <hop> <from>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</from><to>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</to><enabled>Y</enabled> </hop>
  349 + <hop> <from>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</from><to>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</to><enabled>Y</enabled> </hop>
  350 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</from><to>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</to><enabled>Y</enabled> </hop>
  351 + <hop> <from>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</from><to>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</to><enabled>Y</enabled> </hop>
  352 + <hop> <from>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</from><to>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</to><enabled>Y</enabled> </hop>
  353 + <hop> <from>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</from><to>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  354 + <hop> <from>&#x83b7;&#x53d6;&#x7ad9;&#x70b9;&#x8def;&#x7531;version</from><to>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</to><enabled>Y</enabled> </hop>
  355 + <hop> <from>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</from><to>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</to><enabled>Y</enabled> </hop>
  356 + </order>
  357 + <step>
  358 + <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>
  359 + <type>MetaInject</type>
  360 + <description/>
  361 + <distribute>Y</distribute>
  362 + <custom_distribution/>
  363 + <copies>1</copies>
  364 + <partitioning>
  365 + <method>none</method>
  366 + <schema_name/>
  367 + </partitioning>
  368 + <specification_method>filename</specification_method>
  369 + <trans_object_id/>
  370 + <trans_name/>
  371 + <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>
  372 + <directory_path/>
  373 + <source_step/>
  374 + <source_output_fields> </source_output_fields> <target_file/>
  375 + <no_execution>N</no_execution>
  376 + <stream_source_step/>
  377 + <stream_target_step/>
  378 + <mappings> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  379 + <target_attribute_key>FORMAT</target_attribute_key>
  380 + <target_detail>Y</target_detail>
  381 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  382 + <source_field>format</source_field>
  383 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  384 + <target_attribute_key>REPEAT</target_attribute_key>
  385 + <target_detail>Y</target_detail>
  386 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  387 + <source_field>repeat</source_field>
  388 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  389 + <target_attribute_key>TRIM_TYPE</target_attribute_key>
  390 + <target_detail>Y</target_detail>
  391 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  392 + <source_field>trim_type</source_field>
  393 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  394 + <target_attribute_key>FILENAME</target_attribute_key>
  395 + <target_detail>Y</target_detail>
  396 + <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>
  397 + <source_field>filepath_</source_field>
  398 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  399 + <target_attribute_key>PRECISION</target_attribute_key>
  400 + <target_detail>Y</target_detail>
  401 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  402 + <source_field>precision</source_field>
  403 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  404 + <target_attribute_key>TYPE</target_attribute_key>
  405 + <target_detail>Y</target_detail>
  406 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  407 + <source_field>type</source_field>
  408 + </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>
  409 + <target_attribute_key>DATA_VALUE</target_attribute_key>
  410 + <target_detail>Y</target_detail>
  411 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  412 + <source_field>col_value</source_field>
  413 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  414 + <target_attribute_key>LENGTH</target_attribute_key>
  415 + <target_detail>Y</target_detail>
  416 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  417 + <source_field>length</source_field>
  418 + </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>
  419 + <target_attribute_key>TYPE</target_attribute_key>
  420 + <target_detail>Y</target_detail>
  421 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  422 + <source_field>col_type</source_field>
  423 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  424 + <target_attribute_key>NAME</target_attribute_key>
  425 + <target_detail>Y</target_detail>
  426 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  427 + <source_field>fieldName</source_field>
  428 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  429 + <target_attribute_key>NAME</target_attribute_key>
  430 + <target_detail>Y</target_detail>
  431 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  432 + <source_field>fieldname</source_field>
  433 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  434 + <target_attribute_key>NAME</target_attribute_key>
  435 + <target_detail>Y</target_detail>
  436 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  437 + <source_field>nfieldname</source_field>
  438 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  439 + <target_attribute_key>SHEET_NAME</target_attribute_key>
  440 + <target_detail>Y</target_detail>
  441 + <source_step>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</source_step>
  442 + <source_field>sheetname_</source_field>
  443 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  444 + <target_attribute_key>LENGTH</target_attribute_key>
  445 + <target_detail>Y</target_detail>
  446 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  447 + <source_field>length</source_field>
  448 + </mapping> <mapping> <target_step_name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;&#xff0c;&#x7ebf;&#x8def;&#x540d;&#x5b57;&#xff0c;&#x505c;&#x8f66;&#x573a;&#x540d;&#x5b57;</target_step_name>
  449 + <target_attribute_key>NAME</target_attribute_key>
  450 + <target_detail>Y</target_detail>
  451 + <source_step>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</source_step>
  452 + <source_field>col_name</source_field>
  453 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  454 + <target_attribute_key>TYPE</target_attribute_key>
  455 + <target_detail>Y</target_detail>
  456 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  457 + <source_field>fieldtype</source_field>
  458 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  459 + <target_attribute_key>NAME</target_attribute_key>
  460 + <target_detail>Y</target_detail>
  461 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  462 + <source_field>fieldName</source_field>
  463 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  464 + <target_attribute_key>TRIM_TYPE</target_attribute_key>
  465 + <target_detail>Y</target_detail>
  466 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  467 + <source_field>trim_type</source_field>
  468 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  469 + <target_attribute_key>VALUE</target_attribute_key>
  470 + <target_detail>Y</target_detail>
  471 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  472 + <source_field>fieldName</source_field>
  473 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  474 + <target_attribute_key>REPEAT</target_attribute_key>
  475 + <target_detail>Y</target_detail>
  476 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  477 + <source_field>repeat</source_field>
  478 + </mapping> <mapping> <target_step_name>&#x884c;&#x8f6c;&#x5217;</target_step_name>
  479 + <target_attribute_key>NORMALISED</target_attribute_key>
  480 + <target_detail>Y</target_detail>
  481 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c; 2</source_step>
  482 + <source_field>value</source_field>
  483 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  484 + <target_attribute_key>NORMALISED</target_attribute_key>
  485 + <target_detail>Y</target_detail>
  486 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  487 + <source_field>valuefield</source_field>
  488 + </mapping> <mapping> <target_step_name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x4fe1;&#x606f;Excel&#x8f93;&#x5165;</target_step_name>
  489 + <target_attribute_key>FORMAT</target_attribute_key>
  490 + <target_detail>Y</target_detail>
  491 + <source_step>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</source_step>
  492 + <source_field>format</source_field>
  493 + </mapping> <mapping> <target_step_name>&#x73ed;&#x6b21;&#x6570;&#x636e;&#x8303;&#x5f0f;&#x5316;</target_step_name>
  494 + <target_attribute_key>VALUE</target_attribute_key>
  495 + <target_detail>Y</target_detail>
  496 + <source_step>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</source_step>
  497 + <source_field>nfieldname</source_field>
  498 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x5165;</target_step_name>
  499 + <target_attribute_key>PRECISION</target_attribute_key>
  500 + <target_detail>Y</target_detail>
  501 + <source_step>&#x5217;&#x62c6;&#x5206;&#x4e3a;&#x591a;&#x884c;</source_step>
  502 + <source_field>precision</source_field>
  503 + </mapping> </mappings> <cluster_schema/>
  504 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  505 + <xloc>876</xloc>
  506 + <yloc>167</yloc>
  507 + <draw>Y</draw>
  508 + </GUI>
  509 + </step>
  510 +
  511 + <step>
  512 + <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;</name>
  513 + <type>DBLookup</type>
  514 + <description/>
  515 + <distribute>Y</distribute>
  516 + <custom_distribution/>
  517 + <copies>1</copies>
  518 + <partitioning>
  519 + <method>none</method>
  520 + <schema_name/>
  521 + </partitioning>
  522 + <connection>bus_control_variable</connection>
  523 + <cache>N</cache>
  524 + <cache_load_all>N</cache_load_all>
  525 + <cache_size>0</cache_size>
  526 + <lookup>
  527 + <schema/>
  528 + <table>bsth_c_car_park</table>
  529 + <orderby/>
  530 + <fail_on_multiple>N</fail_on_multiple>
  531 + <eat_row_on_failure>N</eat_row_on_failure>
  532 + <key>
  533 + <name>car_park</name>
  534 + <field>park_code</field>
  535 + <condition>&#x3d;</condition>
  536 + <name2/>
  537 + </key>
  538 + <value>
  539 + <name>park_name</name>
  540 + <rename>tccname_</rename>
  541 + <default/>
  542 + <type>String</type>
  543 + </value>
  544 + </lookup>
  545 + <cluster_schema/>
  546 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  547 + <xloc>319</xloc>
  548 + <yloc>468</yloc>
  549 + <draw>Y</draw>
  550 + </GUI>
  551 + </step>
  552 +
  553 + <step>
  554 + <name>&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  555 + <type>SelectValues</type>
  556 + <description/>
  557 + <distribute>Y</distribute>
  558 + <custom_distribution/>
  559 + <copies>1</copies>
  560 + <partitioning>
  561 + <method>none</method>
  562 + <schema_name/>
  563 + </partitioning>
  564 + <fields> <field> <name>col_name</name>
  565 + <rename/>
  566 + <length>-2</length>
  567 + <precision>-2</precision>
  568 + </field> <field> <name>col_type</name>
  569 + <rename/>
  570 + <length>-2</length>
  571 + <precision>-2</precision>
  572 + </field> <field> <name>col_value</name>
  573 + <rename/>
  574 + <length>-2</length>
  575 + <precision>-2</precision>
  576 + </field> <select_unspecified>N</select_unspecified>
  577 + </fields> <cluster_schema/>
  578 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  579 + <xloc>743</xloc>
  580 + <yloc>470</yloc>
  581 + <draw>Y</draw>
  582 + </GUI>
  583 + </step>
  584 +
  585 + <step>
  586 + <name>&#x505c;&#x8f66;&#x573a;&#x7f16;&#x7801;</name>
  587 + <type>DBLookup</type>
  588 + <description/>
  589 + <distribute>Y</distribute>
  590 + <custom_distribution/>
  591 + <copies>1</copies>
  592 + <partitioning>
  593 + <method>none</method>
  594 + <schema_name/>
  595 + </partitioning>
  596 + <connection>bus_control_variable</connection>
  597 + <cache>N</cache>
  598 + <cache_load_all>N</cache_load_all>
  599 + <cache_size>0</cache_size>
  600 + <lookup>
  601 + <schema/>
  602 + <table>bsth_c_line_information</table>
  603 + <orderby/>
  604 + <fail_on_multiple>N</fail_on_multiple>
  605 + <eat_row_on_failure>N</eat_row_on_failure>
  606 + <key>
  607 + <name>lineinfoid_</name>
  608 + <field>id</field>
  609 + <condition>&#x3d;</condition>
  610 + <name2/>
  611 + </key>
  612 + <value>
  613 + <name>car_park</name>
  614 + <rename>car_park</rename>
  615 + <default/>
  616 + <type>String</type>
  617 + </value>
  618 + </lookup>
  619 + <cluster_schema/>
  620 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  621 + <xloc>182</xloc>
  622 + <yloc>467</yloc>
  623 + <draw>Y</draw>
  624 + </GUI>
  625 + </step>
  626 +
  627 + <step>
  628 + <name>&#x5220;&#x9664;&#x4e4b;&#x524d;&#x7684;&#x660e;&#x7ec6;&#x4fe1;&#x606f;</name>
  629 + <type>ExecSQL</type>
  630 + <description/>
  631 + <distribute>Y</distribute>
  632 + <custom_distribution/>
  633 + <copies>1</copies>
  634 + <partitioning>
  635 + <method>none</method>
  636 + <schema_name/>
  637 + </partitioning>
  638 + <connection>bus_control_variable</connection>
  639 + <execute_each_row>Y</execute_each_row>
  640 + <single_statement>N</single_statement>
  641 + <replace_variables>N</replace_variables>
  642 + <quoteString>N</quoteString>
  643 + <sql>delete from bsth_c_s_ttinfo_detail where ttinfo &#x3d; &#x3f;</sql>
  644 + <set_params>N</set_params>
  645 + <insert_field/>
  646 + <update_field/>
  647 + <delete_field/>
  648 + <read_field/>
  649 + <arguments>
  650 + <argument><name>ttid_</name></argument>
  651 + </arguments>
  652 + <cluster_schema/>
  653 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  654 + <xloc>808</xloc>
  655 + <yloc>16</yloc>
  656 + <draw>Y</draw>
  657 + </GUI>
  658 + </step>
  659 +
  660 + <step>
  661 + <name>&#x5408;&#x5e76;&#x589e;&#x52a0;&#x5e38;&#x91cf;&#x6570;&#x636e;metadata</name>
  662 + <type>Dummy</type>
  663 + <description/>
  664 + <distribute>Y</distribute>
  665 + <custom_distribution/>
  666 + <copies>1</copies>
  667 + <partitioning>
  668 + <method>none</method>
  669 + <schema_name/>
  670 + </partitioning>
  671 + <cluster_schema/>
  672 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  673 + <xloc>883</xloc>
  674 + <yloc>373</yloc>
  675 + <draw>Y</draw>
  676 + </GUI>
  677 + </step>
  678 +
  679 + <step>
  680 + <name>&#x589e;&#x52a0;excel&#x5b57;&#x6bb5;&#x5176;&#x4ed6;&#x5143;&#x6570;&#x636e;</name>
  681 + <type>Constant</type>
  682 + <description/>
  683 + <distribute>Y</distribute>
  684 + <custom_distribution/>
  685 + <copies>1</copies>
  686 + <partitioning>
  687 + <method>none</method>
  688 + <schema_name/>
  689 + </partitioning>
  690 + <fields>
  691 + <field>
  692 + <name>fieldtype</name>
  693 + <type>String</type>
  694 + <format/>
  695 + <currency/>
  696 + <decimal/>
  697 + <group/>
  698 + <nullif>String</nullif>
  699 + <length>-1</length>
  700 + <precision>-1</precision>
  701 + <set_empty_string>N</set_empty_string>
  702 + </field>
  703 + <field>
  704 + <name>length</name>
  705 + <type>String</type>
  706 + <format/>
  707 + <currency/>
  708 + <decimal/>
  709 + <group/>
  710 + <nullif>-1</nullif>
  711 + <length>-1</length>
  712 + <precision>-1</precision>
  713 + <set_empty_string>N</set_empty_string>
  714 + </field>
  715 + <field>
  716 + <name>precision</name>
  717 + <type>String</type>
  718 + <format/>
  719 + <currency/>
  720 + <decimal/>
  721 + <group/>
  722 + <nullif>-1</nullif>
  723 + <length>-1</length>
  724 + <precision>-1</precision>
  725 + <set_empty_string>N</set_empty_string>
  726 + </field>
  727 + <field>
  728 + <name>trim_type</name>
  729 + <type>String</type>
  730 + <format/>
  731 + <currency/>
  732 + <decimal/>
  733 + <group/>
  734 + <nullif>none</nullif>
  735 + <length>-1</length>
  736 + <precision>-1</precision>
  737 + <set_empty_string>N</set_empty_string>
  738 + </field>
  739 + <field>
  740 + <name>repeat</name>
  741 + <type>String</type>
  742 + <format/>
  743 + <currency/>
  744 + <decimal/>
  745 + <group/>
  746 + <nullif>N</nullif>
  747 + <length>-1</length>
  748 + <precision>-1</precision>
  749 + <set_empty_string>N</set_empty_string>
  750 + </field>
  751 + <field>
  752 + <name>format</name>
  753 + <type>String</type>
  754 + <format/>
  755 + <currency/>
  756 + <decimal/>
  757 + <group/>
  758 + <nullif>&#x23;</nullif>
  759 + <length>-1</length>
  760 + <precision>-1</precision>
  761 + <set_empty_string>N</set_empty_string>
  762 + </field>
  763 + </fields>
  764 + <cluster_schema/>
  765 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  766 + <xloc>622</xloc>
  767 + <yloc>162</yloc>
  768 + <draw>Y</draw>
  769 + </GUI>
  770 + </step>
  771 +
  772 + <step>
  773 + <name>&#x589e;&#x52a0;normalize&#x5143;&#x6570;&#x636e;</name>
  774 + <type>Constant</type>
  775 + <description/>
  776 + <distribute>Y</distribute>
  777 + <custom_distribution/>
  778 + <copies>1</copies>
  779 + <partitioning>
  780 + <method>none</method>
  781 + <schema_name/>
  782 + </partitioning>
  783 + <fields>
  784 + <field>
  785 + <name>valuefield</name>
  786 + <type>String</type>
  787 + <format/>
  788 + <currency/>
  789 + <decimal/>
  790 + <group/>
  791 + <nullif>&#x53d1;&#x8f66;&#x65f6;&#x95f4;</nullif>
  792 + <length>-1</length>
  793 + <precision>-1</precision>
  794 + <set_empty_string>N</set_empty_string>
  795 + </field>
  796 + </fields>
  797 + <cluster_schema/>
  798 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  799 + <xloc>628</xloc>
  800 + <yloc>247</yloc>
  801 + <draw>Y</draw>
  802 + </GUI>
  803 + </step>
  804 +
  805 + <step>
  806 + <name>&#x589e;&#x52a0;&#x505c;&#x8f66;&#x573a;&#x540d;&#x79f0;metadata</name>
  807 + <type>Constant</type>
  808 + <description/>
  809 + <distribute>Y</distribute>
  810 + <custom_distribution/>
  811 + <copies>1</copies>
  812 + <partitioning>
  813 + <method>none</method>
  814 + <schema_name/>
  815 + </partitioning>
  816 + <fields>
  817 + <field>
  818 + <name>col_name</name>
  819 + <type>String</type>
  820 + <format/>
  821 + <currency/>
  822 + <decimal/>
  823 + <group/>
  824 + <nullif>tccname_</nullif>
  825 + <length>-1</length>
  826 + <precision>-1</precision>
  827 + <set_empty_string>N</set_empty_string>
  828 + </field>
  829 + <field>
  830 + <name>col_type</name>
  831 + <type>String</type>
  832 + <format/>
  833 + <currency/>
  834 + <decimal/>
  835 + <group/>
  836 + <nullif>String</nullif>
  837 + <length>-1</length>
  838 + <precision>-1</precision>
  839 + <set_empty_string>N</set_empty_string>
  840 + </field>
  841 + <field>
  842 + <name>col_value</name>
  843 + <type>String</type>
  844 + <format/>
  845 + <currency/>
  846 + <decimal/>
  847 + <group/>
  848 + <nullif>replace</nullif>
  849 + <length>-1</length>
  850 + <precision>-1</precision>
  851 + <set_empty_string>N</set_empty_string>
  852 + </field>
  853 + </fields>
  854 + <cluster_schema/>
  855 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  856 + <xloc>461</xloc>
  857 + <yloc>469</yloc>
  858 + <draw>Y</draw>
  859 + </GUI>
  860 + </step>
  861 +
  862 + <step>
  863 + <name>&#x589e;&#x52a0;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata</name>
  864 + <type>Constant</type>
  865 + <description/>
  866 + <distribute>Y</distribute>
  867 + <custom_distribution/>
  868 + <copies>1</copies>
  869 + <partitioning>
  870 + <method>none</method>
  871 + <schema_name/>
  872 + </partitioning>
  873 + <fields>
  874 + <field>
  875 + <name>col_name</name>
  876 + <type>String</type>
  877 + <format/>
  878 + <currency/>
  879 + <decimal/>
  880 + <group/>
  881 + <nullif>ttinfoname_</nullif>
  882 + <length>-1</length>
  883 + <precision>-1</precision>
  884 + <set_empty_string>N</set_empty_string>
  885 + </field>
  886 + <field>
  887 + <name>col_type</name>
  888 + <type>String</type>
  889 + <format/>
  890 + <currency/>
  891 + <decimal/>
  892 + <group/>
  893 + <nullif>String</nullif>
  894 + <length>-1</length>
  895 + <precision>-1</precision>
  896 + <set_empty_string>N</set_empty_string>
  897 + </field>
  898 + <field>
  899 + <name>col_value</name>
  900 + <type>String</type>
  901 + <format/>
  902 + <currency/>
  903 + <decimal/>
  904 + <group/>
  905 + <nullif>replace</nullif>
  906 + <length>-1</length>
  907 + <precision>-1</precision>
  908 + <set_empty_string>N</set_empty_string>
  909 + </field>
  910 + </fields>
  911 + <cluster_schema/>
  912 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  913 + <xloc>608</xloc>
  914 + <yloc>601</yloc>
  915 + <draw>Y</draw>
  916 + </GUI>
  917 + </step>
  918 +
  919 + <step>
  920 + <name>&#x589e;&#x52a0;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c; metadata</name>
  921 + <type>Constant</type>
  922 + <description/>
  923 + <distribute>Y</distribute>
  924 + <custom_distribution/>
  925 + <copies>1</copies>
  926 + <partitioning>
  927 + <method>none</method>
  928 + <schema_name/>
  929 + </partitioning>
  930 + <fields>
  931 + <field>
  932 + <name>col_name</name>
  933 + <type>String</type>
  934 + <format/>
  935 + <currency/>
  936 + <decimal/>
  937 + <group/>
  938 + <nullif>zdlyversion_</nullif>
  939 + <length>-1</length>
  940 + <precision>-1</precision>
  941 + <set_empty_string>N</set_empty_string>
  942 + </field>
  943 + <field>
  944 + <name>col_type</name>
  945 + <type>String</type>
  946 + <format/>
  947 + <currency/>
  948 + <decimal/>
  949 + <group/>
  950 + <nullif>String</nullif>
  951 + <length>-1</length>
  952 + <precision>-1</precision>
  953 + <set_empty_string>N</set_empty_string>
  954 + </field>
  955 + <field>
  956 + <name>col_value</name>
  957 + <type>String</type>
  958 + <format/>
  959 + <currency/>
  960 + <decimal/>
  961 + <group/>
  962 + <nullif>replace</nullif>
  963 + <length>-1</length>
  964 + <precision>-1</precision>
  965 + <set_empty_string>N</set_empty_string>
  966 + </field>
  967 + </fields>
  968 + <cluster_schema/>
  969 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  970 + <xloc>390</xloc>
  971 + <yloc>532</yloc>
  972 + <draw>Y</draw>
  973 + </GUI>
  974 + </step>
  975 +
  976 + <step>
  977 + <name>&#x589e;&#x52a0;&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata</name>
  978 + <type>Constant</type>
  979 + <description/>
  980 + <distribute>Y</distribute>
  981 + <custom_distribution/>
  982 + <copies>1</copies>
  983 + <partitioning>
  984 + <method>none</method>
  985 + <schema_name/>
  986 + </partitioning>
  987 + <fields>
  988 + <field>
  989 + <name>col_name</name>
  990 + <type>String</type>
  991 + <format/>
  992 + <currency/>
  993 + <decimal/>
  994 + <group/>
  995 + <nullif>xlname_</nullif>
  996 + <length>-1</length>
  997 + <precision>-1</precision>
  998 + <set_empty_string>N</set_empty_string>
  999 + </field>
  1000 + <field>
  1001 + <name>col_type</name>
  1002 + <type>String</type>
  1003 + <format/>
  1004 + <currency/>
  1005 + <decimal/>
  1006 + <group/>
  1007 + <nullif>String</nullif>
  1008 + <length>-1</length>
  1009 + <precision>-1</precision>
  1010 + <set_empty_string>N</set_empty_string>
  1011 + </field>
  1012 + <field>
  1013 + <name>col_value</name>
  1014 + <type>String</type>
  1015 + <format/>
  1016 + <currency/>
  1017 + <decimal/>
  1018 + <group/>
  1019 + <nullif>replace</nullif>
  1020 + <length>-1</length>
  1021 + <precision>-1</precision>
  1022 + <set_empty_string>N</set_empty_string>
  1023 + </field>
  1024 + </fields>
  1025 + <cluster_schema/>
  1026 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1027 + <xloc>383</xloc>
  1028 + <yloc>341</yloc>
  1029 + <draw>Y</draw>
  1030 + </GUI>
  1031 + </step>
  1032 +
  1033 + <step>
  1034 + <name>&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  1035 + <type>SelectValues</type>
  1036 + <description/>
  1037 + <distribute>Y</distribute>
  1038 + <custom_distribution/>
  1039 + <copies>1</copies>
  1040 + <partitioning>
  1041 + <method>none</method>
  1042 + <schema_name/>
  1043 + </partitioning>
  1044 + <fields> <field> <name>col_name</name>
  1045 + <rename/>
  1046 + <length>-2</length>
  1047 + <precision>-2</precision>
  1048 + </field> <field> <name>col_type</name>
  1049 + <rename/>
  1050 + <length>-2</length>
  1051 + <precision>-2</precision>
  1052 + </field> <field> <name>col_value</name>
  1053 + <rename/>
  1054 + <length>-2</length>
  1055 + <precision>-2</precision>
  1056 + </field> <select_unspecified>N</select_unspecified>
  1057 + </fields> <cluster_schema/>
  1058 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1059 + <xloc>888</xloc>
  1060 + <yloc>601</yloc>
  1061 + <draw>Y</draw>
  1062 + </GUI>
  1063 + </step>
  1064 +
  1065 + <step>
  1066 + <name>&#x66ff;&#x6362;&#x505c;&#x8f66;&#x5382;&#x540d;&#x5b57; </name>
  1067 + <type>SetValueField</type>
  1068 + <description/>
  1069 + <distribute>Y</distribute>
  1070 + <custom_distribution/>
  1071 + <copies>1</copies>
  1072 + <partitioning>
  1073 + <method>none</method>
  1074 + <schema_name/>
  1075 + </partitioning>
  1076 + <fields>
  1077 + <field>
  1078 + <name>col_value</name>
  1079 + <replaceby>tccname_</replaceby>
  1080 + </field>
  1081 + </fields>
  1082 + <cluster_schema/>
  1083 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1084 + <xloc>598</xloc>
  1085 + <yloc>471</yloc>
  1086 + <draw>Y</draw>
  1087 + </GUI>
  1088 + </step>
  1089 +
  1090 + <step>
  1091 + <name>&#x66ff;&#x6362;&#x65f6;&#x523b;&#x8868;&#x540d;&#x5b57;</name>
  1092 + <type>SetValueField</type>
  1093 + <description/>
  1094 + <distribute>Y</distribute>
  1095 + <custom_distribution/>
  1096 + <copies>1</copies>
  1097 + <partitioning>
  1098 + <method>none</method>
  1099 + <schema_name/>
  1100 + </partitioning>
  1101 + <fields>
  1102 + <field>
  1103 + <name>col_value</name>
  1104 + <replaceby>ttinfoname_</replaceby>
  1105 + </field>
  1106 + </fields>
  1107 + <cluster_schema/>
  1108 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1109 + <xloc>746</xloc>
  1110 + <yloc>602</yloc>
  1111 + <draw>Y</draw>
  1112 + </GUI>
  1113 + </step>
  1114 +
  1115 + <step>
  1116 + <name>&#x66ff;&#x6362;&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;</name>
  1117 + <type>SetValueField</type>
  1118 + <description/>
  1119 + <distribute>Y</distribute>
  1120 + <custom_distribution/>
  1121 + <copies>1</copies>
  1122 + <partitioning>
  1123 + <method>none</method>
  1124 + <schema_name/>
  1125 + </partitioning>
  1126 + <fields>
  1127 + <field>
  1128 + <name>col_value</name>
  1129 + <replaceby>zdlyversion_</replaceby>
  1130 + </field>
  1131 + </fields>
  1132 + <cluster_schema/>
  1133 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1134 + <xloc>594</xloc>
  1135 + <yloc>532</yloc>
  1136 + <draw>Y</draw>
  1137 + </GUI>
  1138 + </step>
  1139 +
  1140 + <step>
  1141 + <name>&#x66ff;&#x6362;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>
  1142 + <type>SetValueField</type>
  1143 + <description/>
  1144 + <distribute>Y</distribute>
  1145 + <custom_distribution/>
  1146 + <copies>1</copies>
  1147 + <partitioning>
  1148 + <method>none</method>
  1149 + <schema_name/>
  1150 + </partitioning>
  1151 + <fields>
  1152 + <field>
  1153 + <name>col_value</name>
  1154 + <replaceby>xlname_</replaceby>
  1155 + </field>
  1156 + </fields>
  1157 + <cluster_schema/>
  1158 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1159 + <xloc>521</xloc>
  1160 + <yloc>342</yloc>
  1161 + <draw>Y</draw>
  1162 + </GUI>
  1163 + </step>
  1164 +
  1165 + <step>
  1166 + <name>&#x7ad9;&#x70b9;&#x8def;&#x7531;&#x7248;&#x672c;metadata&#x5b57;&#x6bb5;</name>
  1167 + <type>SelectValues</type>
  1168 + <description/>
  1169 + <distribute>Y</distribute>
  1170 + <custom_distribution/>
  1171 + <copies>1</copies>
  1172 + <partitioning>
  1173 + <method>none</method>
  1174 + <schema_name/>
  1175 + </partitioning>
  1176 + <fields> <field> <name>col_name</name>
  1177 + <rename/>
  1178 + <length>-2</length>
  1179 + <precision>-2</precision>
  1180 + </field> <field> <name>col_type</name>
  1181 + <rename/>
  1182 + <length>-2</length>
  1183 + <precision>-2</precision>
  1184 + </field> <field> <name>col_value</name>
  1185 + <rename/>
  1186 + <length>-2</length>
  1187 + <precision>-2</precision>
  1188 + </field> <select_unspecified>N</select_unspecified>
  1189 + </fields> <cluster_schema/>
  1190 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1191 + <xloc>741</xloc>
  1192 + <yloc>533</yloc>
  1193 + <draw>Y</draw>
  1194 + </GUI>
  1195 + </step>
  1196 +
  1197 + <step>
  1198 + <name>&#x7ebf;&#x8def;&#x540d;&#x79f0;metadata&#x5b57;&#x6bb5;</name>
  1199 + <type>SelectValues</type>
  1200 + <description/>
  1201 + <distribute>Y</distribute>
  1202 + <custom_distribution/>
  1203 + <copies>1</copies>
  1204 + <partitioning>
  1205 + <method>none</method>
  1206 + <schema_name/>
  1207 + </partitioning>
  1208 + <fields> <field> <name>col_name</name>
  1209 + <rename/>
  1210 + <length>-2</length>
  1211 + <precision>-2</precision>
  1212 + </field> <field> <name>col_type</name>
  1213 + <rename/>
  1214 + <length>-2</length>
  1215 + <precision>-2</precision>
  1216 + </field> <field> <name>col_value</name>
  1217 + <rename/>
  1218 + <length>-2</length>
  1219 + <precision>-2</precision>
  1220 + </field> <select_unspecified>N</select_unspecified>
  1221 + </fields> <cluster_schema/>
  1222 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1223 + <xloc>668</xloc>
  1224 + <yloc>343</yloc>
  1225 + <draw>Y</draw>
  1226 + </GUI>
  1227 + </step>
  1228 +
  1229 + <step>
  1230 + <name>&#x83b7;&#x53d6;excel&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>
  1231 + <type>GetVariable</type>
  1232 + <description/>
  1233 + <distribute>Y</distribute>
  1234 + <custom_distribution/>
  1235 + <copies>1</copies>
  1236 + <partitioning>
  1237 + <method>none</method>
  1238 + <schema_name/>
  1239 + </partitioning>
  1240 + <fields>
  1241 + <field>
  1242 + <name>fieldnames</name>
  1243 + <variable>&#x24;&#x7b;excelfieldnames&#x7d;</variable>
  1244 + <type>String</type>
  1245 + <format/>
  1246 + <currency/>
  1247 + <decimal/>
  1248 + <group/>
  1249 + <length>-1</length>
  1250 + <precision>-1</precision>
  1251 + <trim_type>none</trim_type>
  1252 + </field>
  1253 + </fields>
  1254 + <cluster_schema/>
  1255 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1256 + <xloc>252</xloc>
  1257 + <yloc>153</yloc>
  1258 + <draw>Y</draw>
  1259 + </GUI>
  1260 + </step>
  1261 +
  1262 + <step>
  1263 + <name>&#x83b7;&#x53d6;excel&#x6587;&#x4ef6;&#x540d;</name>
  1264 + <type>GetVariable</type>
  1265 + <description/>
  1266 + <distribute>Y</distribute>
  1267 + <custom_distribution/>
  1268 + <copies>1</copies>
  1269 + <partitioning>
  1270 + <method>none</method>
  1271 + <schema_name/>
  1272 + </partitioning>
  1273 + <fields>
  1274 + <field>
  1275 + <name>filepath_</name>
  1276 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1277 + <type>String</type>
  1278 + <format/>
  1279 + <currency/>
  1280 + <decimal/>
  1281 + <group/>
  1282 + <length>-1</length>
  1283 + <precision>-1</precision>
  1284 + <trim_type>none</trim_type>
  1285 + </field>
  1286 + <field>
  1287 + <name>erroroutputdir_</name>
  1288 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1289 + <type>String</type>
  1290 + <format/>
  1291 + <currency/>
  1292 + <decimal/>
  1293 + <group/>
  1294 + <length>-1</length>
  1295 + <precision>-1</precision>
  1296 + <trim_type>none</trim_type>
  1297 + </field>
  1298 + <field>
  1299 + <name>sheetname_</name>
  1300 + <variable>&#x24;&#x7b;sheetname&#x7d;</variable>
  1301 + <type>String</type>
  1302 + <format/>
  1303 + <currency/>
  1304 + <decimal/>
  1305 + <group/>
  1306 + <length>-1</length>
  1307 + <precision>-1</precision>
  1308 + <trim_type>none</trim_type>
  1309 + </field>
  1310 + </fields>
  1311 + <cluster_schema/>
  1312 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1313 + <xloc>301</xloc>
  1314 + <yloc>52</yloc>
  1315 + <draw>Y</draw>
  1316 + </GUI>
  1317 + </step>
  1318 +
  1319 + <step>
  1320 + <name>&#x83b7;&#x53d6;normalize&#x5b57;&#x6bb5;&#x540d;&#x5b57;&#x7b26;&#x4e32;</name>
  1321 + <type>GetVariable</type>
  1322 + <description/>
  1323 + <distribute>Y</distribute>
  1324 + <custom_distribution/>
  1325 + <copies>1</copies>
  1326 + <partitioning>
  1327 + <method>none</method>
  1328 + <schema_name/>
  1329 + </partitioning>
  1330 + <fields>
  1331 + <field>
  1332 + <name>normalizefieldnames_</name>
  1333 + <variable>&#x24;&#x7b;normalizefieldnames&#x7d;</variable>
  1334 + <type>String</type>
  1335 + <format/>
  1336 + <currency/>
  1337 + <decimal/>
  1338 + <group/>
  1339 + <length>-1</length>
  1340 + <precision>-1</precision>
  1341 + <trim_type>none</trim_type>
  1342 + </field>
  1343 + </fields>
  1344 + <cluster_schema/>
  1345 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1346 + <xloc>261</xloc>
  1347 + <yloc>251</yloc>
  1348 + <draw>Y</draw>
  1349 + </GUI>
  1350 + </step>
  1351 +
  1352 + <step>
  1353 + <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;id</name>
  1354 + <type>GetVariable</type>
  1355 + <description/>
  1356 + <distribute>Y</distribute>
  1357 + <custom_distribution/>
  1358 + <copies>1</copies>
  1359 + <partitioning>
  1360 + <method>none</method>
  1361 + <schema_name/>
  1362 + </partitioning>
  1363 + <fields>
  1364 + <field>
  1365 + <name>ttid_</name>
  1366 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  1367 + <type>Integer</type>
  1368 + <format/>
  1369 + <currency/>
  1370 + <decimal/>
  1371 + <group/>
  1372 + <length>-1</length>
  1373 + <precision>-1</precision>
  1374 + <trim_type>none</trim_type>
  1375 + </field>
  1376 + </fields>
  1377 + <cluster_schema/>
  1378 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1379 + <xloc>608</xloc>
  1380 + <yloc>16</yloc>
  1381 + <draw>Y</draw>
  1382 + </GUI>
  1383 + </step>
  1384 +
  1385 + <step>
  1386 + <name>&#x83b7;&#x53d6;&#x65f6;&#x523b;&#x8868;&#x540d;&#x79f0;</name>
  1387 + <type>GetVariable</type>
  1388 + <description/>
  1389 + <distribute>Y</distribute>
  1390 + <custom_distribution/>
  1391 + <copies>1</copies>
  1392 + <partitioning>
  1393 + <method>none</method>
  1394 + <schema_name/>
  1395 + </partitioning>
  1396 + <fields>
  1397 + <field>
  1398 + <name>ttinfoname_</name>
  1399 + <variable>&#x24;&#x7b;ttinfoname&#x7d;</variable>
  1400 + <type>String</type>
  1401 + <format/>
  1402 + <currency/>
  1403 + <decimal/>
  1404 + <group/>
  1405 + <length>-1</length>
  1406 + <precision>-1</precision>
  1407 + <trim_type>none</trim_type>
  1408 + </field>
  1409 + </fields>
  1410 + <cluster_schema/>
  1411 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1412 + <xloc>474</xloc>
  1413 + <yloc>601</yloc>
  1414 + <draw>Y</draw>
  1415 + </GUI>
  1416 + </step>
  1417 +
  1418 + <step>
  1419 + <name>&#x83b7;&#x53d6;&#x7ad9;&#x70b9;&#x8def;&#x7531;version</name>
  1420 + <type>GetVariable</type>
  1421 + <description/>
  1422 + <distribute>Y</distribute>
  1423 + <custom_distribution/>
  1424 + <copies>1</copies>
  1425 + <partitioning>
  1426 + <method>none</method>
  1427 + <schema_name/>
  1428 + </partitioning>
  1429 + <fields>
  1430 + <field>
  1431 + <name>zdlyversion_</name>
  1432 + <variable>&#x24;&#x7b;lineversion&#x7d;</variable>
  1433 + <type>String</type>
  1434 + <format/>
  1435 + <currency/>
  1436 + <decimal/>
  1437 + <group/>
  1438 + <length>-1</length>
  1439 + <precision>-1</precision>
  1440 + <trim_type>none</trim_type>
  1441 + </field>
  1442 + </fields>
  1443 + <cluster_schema/>
  1444 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1445 + <xloc>187</xloc>
  1446 + <yloc>534</yloc>
  1447 + <draw>Y</draw>
  1448 + </GUI>
  1449 + </step>
  1450 +
  1451 + <step>
  1452 + <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x540d;&#x79f0;</name>
  1453 + <type>GetVariable</type>
  1454 + <description/>
  1455 + <distribute>Y</distribute>
  1456 + <custom_distribution/>
  1457 + <copies>1</copies>
  1458 + <partitioning>
  1459 + <method>none</method>
  1460 + <schema_name/>
  1461 + </partitioning>
  1462 + <fields>
  1463 + <field>
  1464 + <name>xlname_</name>
  1465 + <variable>&#x24;&#x7b;xlname&#x7d;</variable>
  1466 + <type>String</type>
  1467 + <format/>
  1468 + <currency/>
  1469 + <decimal/>
  1470 + <group/>
  1471 + <length>-1</length>
  1472 + <precision>-1</precision>
  1473 + <trim_type>none</trim_type>
  1474 + </field>
  1475 + </fields>
  1476 + <cluster_schema/>
  1477 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1478 + <xloc>184</xloc>
  1479 + <yloc>342</yloc>
  1480 + <draw>Y</draw>
  1481 + </GUI>
  1482 + </step>
  1483 +
  1484 + <step>
  1485 + <name>&#x83b7;&#x53d6;&#x7ebf;&#x8def;&#x6807;&#x51c6;id</name>
  1486 + <type>GetVariable</type>
  1487 + <description/>
  1488 + <distribute>Y</distribute>
  1489 + <custom_distribution/>
  1490 + <copies>1</copies>
  1491 + <partitioning>
  1492 + <method>none</method>
  1493 + <schema_name/>
  1494 + </partitioning>
  1495 + <fields>
  1496 + <field>
  1497 + <name>lineinfoid_</name>
  1498 + <variable>&#x24;&#x7b;lineinfoid&#x7d;</variable>
  1499 + <type>Integer</type>
  1500 + <format/>
  1501 + <currency/>
  1502 + <decimal/>
  1503 + <group/>
  1504 + <length>-1</length>
  1505 + <precision>-1</precision>
  1506 + <trim_type>none</trim_type>
  1507 + </field>
  1508 + </fields>
  1509 + <cluster_schema/>
  1510 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1511 + <xloc>74</xloc>
  1512 + <yloc>468</yloc>
  1513 + <draw>Y</draw>
  1514 + </GUI>
  1515 + </step>
  1516 +
  1517 + <step>
  1518 + <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d;</name>
  1519 + <type>SplitFieldToRows3</type>
  1520 + <description/>
  1521 + <distribute>Y</distribute>
  1522 + <custom_distribution/>
  1523 + <copies>1</copies>
  1524 + <partitioning>
  1525 + <method>none</method>
  1526 + <schema_name/>
  1527 + </partitioning>
  1528 + <splitfield>fieldnames</splitfield>
  1529 + <delimiter>,</delimiter>
  1530 + <newfield>fieldname</newfield>
  1531 + <rownum>N</rownum>
  1532 + <rownum_field/>
  1533 + <resetrownumber>Y</resetrownumber>
  1534 + <delimiter_is_regex>N</delimiter_is_regex>
  1535 + <cluster_schema/>
  1536 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1537 + <xloc>442</xloc>
  1538 + <yloc>153</yloc>
  1539 + <draw>Y</draw>
  1540 + </GUI>
  1541 + </step>
  1542 +
  1543 + <step>
  1544 + <name>&#x9017;&#x53f7;&#x5207;&#x5206;&#x6210;&#x5b57;&#x6bb5;&#x540d; 2</name>
  1545 + <type>SplitFieldToRows3</type>
  1546 + <description/>
  1547 + <distribute>Y</distribute>
  1548 + <custom_distribution/>
  1549 + <copies>1</copies>
  1550 + <partitioning>
  1551 + <method>none</method>
  1552 + <schema_name/>
  1553 + </partitioning>
  1554 + <splitfield>normalizefieldnames_</splitfield>
  1555 + <delimiter>,</delimiter>
  1556 + <newfield>nfieldname</newfield>
  1557 + <rownum>N</rownum>
  1558 + <rownum_field/>
  1559 + <resetrownumber>Y</resetrownumber>
  1560 + <delimiter_is_regex>N</delimiter_is_regex>
  1561 + <cluster_schema/>
  1562 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1563 + <xloc>444</xloc>
  1564 + <yloc>247</yloc>
  1565 + <draw>Y</draw>
  1566 + </GUI>
  1567 + </step>
  1568 +
  1569 + <step_error_handling>
  1570 + </step_error_handling>
  1571 + <slave-step-copy-partition-distribution>
  1572 +</slave-step-copy-partition-distribution>
  1573 + <slave_transformation>N</slave_transformation>
  1574 +
  1575 +</transformation>
src/main/resources/datatools/ktrs/ttinfodetailDataOutputMetaData.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;&#x5143;&#x6570;&#x636e;</name>  
5 - <description/>  
6 - <extended_description/>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>filepath</name>  
14 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;ttinfodetail_test.xls</default_value>  
15 - <description>&#x65f6;&#x523b;&#x8868;excel&#x5bfc;&#x51fa;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>injectktrfile</name>  
19 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_parent&#x2f;bsth_control&#x2f;src&#x2f;main&#x2f;resources&#x2f;datatools&#x2f;ktrs&#x2f;ttinfodetailDataOutput.ktr</default_value>  
20 - <description>&#x6ce8;&#x5165;&#x5143;&#x6570;&#x636e;&#x7684;ktr&#x6587;&#x4ef6;</description>  
21 - </parameter>  
22 - <parameter>  
23 - <name>ttinfoid</name>  
24 - <default_value>56</default_value>  
25 - <description>&#x65f6;&#x523b;&#x8868;id</description>  
26 - </parameter>  
27 - </parameters>  
28 - <log>  
29 -<trans-log-table><connection/>  
30 -<schema/>  
31 -<table/>  
32 -<size_limit_lines/>  
33 -<interval/>  
34 -<timeout_days/>  
35 -<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>  
36 -<perf-log-table><connection/>  
37 -<schema/>  
38 -<table/>  
39 -<interval/>  
40 -<timeout_days/>  
41 -<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>  
42 -<channel-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>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>  
47 -<step-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>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>  
52 -<metrics-log-table><connection/>  
53 -<schema/>  
54 -<table/>  
55 -<timeout_days/>  
56 -<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>  
57 - </log>  
58 - <maxdate>  
59 - <connection/>  
60 - <table/>  
61 - <field/>  
62 - <offset>0.0</offset>  
63 - <maxdiff>0.0</maxdiff>  
64 - </maxdate>  
65 - <size_rowset>10000</size_rowset>  
66 - <sleep_time_empty>50</sleep_time_empty>  
67 - <sleep_time_full>50</sleep_time_full>  
68 - <unique_connections>N</unique_connections>  
69 - <feedback_shown>Y</feedback_shown>  
70 - <feedback_size>50000</feedback_size>  
71 - <using_thread_priorities>Y</using_thread_priorities>  
72 - <shared_objects_file/>  
73 - <capture_step_performance>N</capture_step_performance>  
74 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
75 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
76 - <dependencies>  
77 - </dependencies>  
78 - <partitionschemas>  
79 - </partitionschemas>  
80 - <slaveservers>  
81 - </slaveservers>  
82 - <clusterschemas>  
83 - </clusterschemas>  
84 - <created_user>-</created_user>  
85 - <created_date>2016&#x2f;11&#x2f;15 15&#x3a;02&#x3a;41.624</created_date>  
86 - <modified_user>-</modified_user>  
87 - <modified_date>2016&#x2f;11&#x2f;15 15&#x3a;02&#x3a;41.624</modified_date>  
88 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
89 - <is_key_private>N</is_key_private>  
90 - </info>  
91 - <notepads>  
92 - <notepad>  
93 - <note>TODO&#xff1a;&#x5982;&#x679c;groupby &#x52a0;&#x5165;bctype&#xff0c;&#xa;&#x5219;&#x4ee5;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#xff0c;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5206;&#x7ec4;&#x7684;&#x6570;&#x636e;&#x53ef;&#x80fd;&#x91cd;&#x590d;&#xff0c;&#xa;&#x5e94;&#x4e3a;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x53ef;&#x80fd;&#x4e0d;&#x4e00;&#x6837;&#xff08;&#x5bfc;&#x5165;&#x4e4b;&#x540e;&#x4eba;&#x4e3a;&#x4fee;&#x6539;&#x7684;&#xff0c;&#x5982;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6539;&#x6210;&#x533a;&#x95f4;&#xff09;&#xff0c;&#xa;&#x56e0;&#x4e3a;&#x5bfc;&#x51fa;&#x65f6;&#x5fc5;&#x987b;&#x6570;&#x636e;&#x4e0d;&#x91cd;&#x590d;&#xff0c;&#x8fd9;&#x91cc;&#x7684;&#x89e3;&#x51b3;&#x65b9;&#x6cd5;&#xff0c;&#x53ea;&#x4f7f;&#x7528;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#x5206;&#x7ec4;&#xff0c;&#xa;&#x4ee5;&#x540e;&#x5efa;&#x8bae;&#xff0c;&#x8fd8;&#x662f;&#x539f;&#x6765;&#x7684;&#x65b9;&#x5f0f;&#x5206;&#x7ec4;&#xff0c;&#x7136;&#x540e;&#x628a;&#x66f4;&#x65b0;&#x65f6;&#x95f4;&#x665a;&#x7684;&#x53bb;&#x9664;&#xa;&#xa;&#x4ee5;&#x540e;&#x6539;&#x6210;&#x53bb;&#x9664;&#x91cd;&#x590d;&#x7eaa;&#x5f55;</note>  
94 - <xloc>46</xloc>  
95 - <yloc>400</yloc>  
96 - <width>406</width>  
97 - <heigth>122</heigth>  
98 - <fontname>YaHei Consolas Hybrid</fontname>  
99 - <fontsize>12</fontsize>  
100 - <fontbold>N</fontbold>  
101 - <fontitalic>N</fontitalic>  
102 - <fontcolorred>0</fontcolorred>  
103 - <fontcolorgreen>0</fontcolorgreen>  
104 - <fontcolorblue>0</fontcolorblue>  
105 - <backgroundcolorred>255</backgroundcolorred>  
106 - <backgroundcolorgreen>205</backgroundcolorgreen>  
107 - <backgroundcolorblue>112</backgroundcolorblue>  
108 - <bordercolorred>100</bordercolorred>  
109 - <bordercolorgreen>100</bordercolorgreen>  
110 - <bordercolorblue>100</bordercolorblue>  
111 - <drawshadow>Y</drawshadow>  
112 - </notepad>  
113 - </notepads>  
114 - <connection>  
115 - <name>192.168.168.1_jwgl_dw</name>  
116 - <server>192.168.168.1</server>  
117 - <type>ORACLE</type>  
118 - <access>Native</access>  
119 - <database>orcl</database>  
120 - <port>1521</port>  
121 - <username>jwgl_dw</username>  
122 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
123 - <servername/>  
124 - <data_tablespace/>  
125 - <index_tablespace/>  
126 - <attributes>  
127 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
128 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
129 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
130 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
131 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
132 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
133 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
134 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
135 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
136 - </attributes>  
137 - </connection>  
138 - <connection>  
139 - <name>bus_control_variable</name>  
140 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
141 - <type>MYSQL</type>  
142 - <access>Native</access>  
143 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
144 - <port>3306</port>  
145 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
146 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
147 - <servername/>  
148 - <data_tablespace/>  
149 - <index_tablespace/>  
150 - <attributes>  
151 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
152 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
153 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
154 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
155 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
156 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
157 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
158 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
159 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
160 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
161 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
162 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
163 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
164 - </attributes>  
165 - </connection>  
166 - <connection>  
167 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
168 - <server>localhost</server>  
169 - <type>MYSQL</type>  
170 - <access>Native</access>  
171 - <database>control</database>  
172 - <port>3306</port>  
173 - <username>root</username>  
174 - <password>Encrypted </password>  
175 - <servername/>  
176 - <data_tablespace/>  
177 - <index_tablespace/>  
178 - <attributes>  
179 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
180 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
181 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
182 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
183 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
184 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
185 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
186 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
187 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
188 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
189 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
190 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
191 - </attributes>  
192 - </connection>  
193 - <connection>  
194 - <name>bus_control_&#x672c;&#x673a;</name>  
195 - <server>localhost</server>  
196 - <type>MYSQL</type>  
197 - <access>Native</access>  
198 - <database>control</database>  
199 - <port>3306</port>  
200 - <username>root</username>  
201 - <password>Encrypted </password>  
202 - <servername/>  
203 - <data_tablespace/>  
204 - <index_tablespace/>  
205 - <attributes>  
206 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
207 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
208 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
209 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
210 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
211 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
212 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
213 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
214 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
215 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
216 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
217 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
218 - </attributes>  
219 - </connection>  
220 - <connection>  
221 - <name>xlab_mysql_youle</name>  
222 - <server>101.231.124.8</server>  
223 - <type>MYSQL</type>  
224 - <access>Native</access>  
225 - <database>xlab_youle</database>  
226 - <port>45687</port>  
227 - <username>xlab-youle</username>  
228 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
229 - <servername/>  
230 - <data_tablespace/>  
231 - <index_tablespace/>  
232 - <attributes>  
233 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
234 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
235 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
236 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
238 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
239 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
241 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
242 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
243 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
244 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
245 - </attributes>  
246 - </connection>  
247 - <connection>  
248 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
249 - <server>localhost</server>  
250 - <type>MYSQL</type>  
251 - <access>Native</access>  
252 - <database>xlab_youle</database>  
253 - <port>3306</port>  
254 - <username>root</username>  
255 - <password>Encrypted </password>  
256 - <servername/>  
257 - <data_tablespace/>  
258 - <index_tablespace/>  
259 - <attributes>  
260 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
261 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
262 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
264 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
265 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
266 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
267 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
268 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
269 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
270 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
271 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
272 - </attributes>  
273 - </connection>  
274 - <connection>  
275 - <name>xlab_youle</name>  
276 - <server/>  
277 - <type>MYSQL</type>  
278 - <access>JNDI</access>  
279 - <database>xlab_youle</database>  
280 - <port>1521</port>  
281 - <username/>  
282 - <password>Encrypted </password>  
283 - <servername/>  
284 - <data_tablespace/>  
285 - <index_tablespace/>  
286 - <attributes>  
287 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
288 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
289 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
290 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
291 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
292 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
293 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
294 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
295 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
296 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
297 - </attributes>  
298 - </connection>  
299 - <order>  
300 - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5206;&#x7ec4;&#x6570;&#x636e;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
301 - <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</to><enabled>Y</enabled> </hop>  
302 - <hop> <from>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</from><to>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</to><enabled>Y</enabled> </hop>  
303 - <hop> <from>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</from><to>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>  
304 - <hop> <from>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</from><to>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
305 - <hop> <from>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
306 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
307 - <hop> <from>&#x751f;&#x6210;&#x8def;&#x724c;&#x5b57;&#x6bb5;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
308 - <hop> <from>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
309 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>  
310 - </order>  
311 - <step>  
312 - <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>  
313 - <type>MetaInject</type>  
314 - <description/>  
315 - <distribute>Y</distribute>  
316 - <custom_distribution/>  
317 - <copies>1</copies>  
318 - <partitioning>  
319 - <method>none</method>  
320 - <schema_name/>  
321 - </partitioning>  
322 - <specification_method>filename</specification_method>  
323 - <trans_object_id/>  
324 - <trans_name/>  
325 - <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>  
326 - <directory_path/>  
327 - <source_step/>  
328 - <source_output_fields> </source_output_fields> <target_file/>  
329 - <no_execution>N</no_execution>  
330 - <stream_source_step/>  
331 - <stream_target_step/>  
332 - <mappings> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>  
333 - <target_attribute_key>TARGET_TYPE</target_attribute_key>  
334 - <target_detail>Y</target_detail>  
335 - <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>  
336 - <source_field>targettype</source_field>  
337 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x51fa;</target_step_name>  
338 - <target_attribute_key>TYPE</target_attribute_key>  
339 - <target_detail>Y</target_detail>  
340 - <source_step>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</source_step>  
341 - <source_field>fieldtype</source_field>  
342 - </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>  
343 - <target_attribute_key>NAME</target_attribute_key>  
344 - <target_detail>Y</target_detail>  
345 - <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>  
346 - <source_field>valuefieldname</source_field>  
347 - </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x51fa;</target_step_name>  
348 - <target_attribute_key>NAME</target_attribute_key>  
349 - <target_detail>Y</target_detail>  
350 - <source_step>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</source_step>  
351 - <source_field>fieldname</source_field>  
352 - </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>  
353 - <target_attribute_key>TARGET_NAME</target_attribute_key>  
354 - <target_detail>Y</target_detail>  
355 - <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>  
356 - <source_field>targetfieldname</source_field>  
357 - </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>  
358 - <target_attribute_key>KEY_VALUE</target_attribute_key>  
359 - <target_detail>Y</target_detail>  
360 - <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>  
361 - <source_field>keyvalue</source_field>  
362 - </mapping> </mappings> <cluster_schema/>  
363 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
364 - <xloc>640</xloc>  
365 - <yloc>64</yloc>  
366 - <draw>Y</draw>  
367 - </GUI>  
368 - </step>  
369 -  
370 - <step>  
371 - <name>&#x53bb;&#x9664;&#x91cd;&#x590d;&#x8bb0;&#x5f55;</name>  
372 - <type>Unique</type>  
373 - <description/>  
374 - <distribute>Y</distribute>  
375 - <custom_distribution/>  
376 - <copies>1</copies>  
377 - <partitioning>  
378 - <method>none</method>  
379 - <schema_name/>  
380 - </partitioning>  
381 - <count_rows>N</count_rows>  
382 - <count_field/>  
383 - <reject_duplicate_row>N</reject_duplicate_row>  
384 - <error_description/>  
385 - <fields> </fields> <cluster_schema/>  
386 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
387 - <xloc>842</xloc>  
388 - <yloc>592</yloc>  
389 - <draw>Y</draw>  
390 - </GUI>  
391 - </step>  
392 -  
393 - <step>  
394 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
395 - <type>SelectValues</type>  
396 - <description/>  
397 - <distribute>Y</distribute>  
398 - <custom_distribution/>  
399 - <copies>1</copies>  
400 - <partitioning>  
401 - <method>none</method>  
402 - <schema_name/>  
403 - </partitioning>  
404 - <fields> <field> <name>fieldname</name>  
405 - <rename/>  
406 - <length>-2</length>  
407 - <precision>-2</precision>  
408 - </field> <field> <name>fieldtype</name>  
409 - <rename/>  
410 - <length>-2</length>  
411 - <precision>-2</precision>  
412 - </field> <field> <name>fcno</name>  
413 - <rename/>  
414 - <length>-2</length>  
415 - <precision>-2</precision>  
416 - </field> <select_unspecified>N</select_unspecified>  
417 - </fields> <cluster_schema/>  
418 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
419 - <xloc>533</xloc>  
420 - <yloc>325</yloc>  
421 - <draw>Y</draw>  
422 - </GUI>  
423 - </step>  
424 -  
425 - <step>  
426 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
427 - <type>SortRows</type>  
428 - <description/>  
429 - <distribute>Y</distribute>  
430 - <custom_distribution/>  
431 - <copies>1</copies>  
432 - <partitioning>  
433 - <method>none</method>  
434 - <schema_name/>  
435 - </partitioning>  
436 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
437 - <prefix>out</prefix>  
438 - <sort_size>1000000</sort_size>  
439 - <free_memory/>  
440 - <compress>N</compress>  
441 - <compress_variable/>  
442 - <unique_rows>N</unique_rows>  
443 - <fields>  
444 - <field>  
445 - <name>fcno</name>  
446 - <ascending>Y</ascending>  
447 - <case_sensitive>N</case_sensitive>  
448 - <presorted>N</presorted>  
449 - </field>  
450 - </fields>  
451 - <cluster_schema/>  
452 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
453 - <xloc>642</xloc>  
454 - <yloc>325</yloc>  
455 - <draw>Y</draw>  
456 - </GUI>  
457 - </step>  
458 -  
459 - <step>  
460 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5206;&#x7ec4;&#x6570;&#x636e;</name>  
461 - <type>TableInput</type>  
462 - <description/>  
463 - <distribute>Y</distribute>  
464 - <custom_distribution/>  
465 - <copies>1</copies>  
466 - <partitioning>  
467 - <method>none</method>  
468 - <schema_name/>  
469 - </partitioning>  
470 - <connection>bus_control_variable</connection>  
471 - <sql>select &#xa;fcno&#xa;, min&#x28;xl&#x29; xl &#xa;, min&#x28;xl_dir&#x29; xl_dir&#xa;, min&#x28;qdz_code&#x29; qdz&#xa;, min&#x28;zdz_code&#x29; zdz&#xa;, min&#x28;bc_type&#x29; bc_type &#xa;from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;&#xa;group by fcno</sql>  
472 - <limit>0</limit>  
473 - <lookup/>  
474 - <execute_each_row>N</execute_each_row>  
475 - <variables_active>Y</variables_active>  
476 - <lazy_conversion_active>N</lazy_conversion_active>  
477 - <cluster_schema/>  
478 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
479 - <xloc>56</xloc>  
480 - <yloc>185</yloc>  
481 - <draw>Y</draw>  
482 - </GUI>  
483 - </step>  
484 -  
485 - <step>  
486 - <name>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</name>  
487 - <type>DBLookup</type>  
488 - <description/>  
489 - <distribute>N</distribute>  
490 - <custom_distribution/>  
491 - <copies>1</copies>  
492 - <partitioning>  
493 - <method>none</method>  
494 - <schema_name/>  
495 - </partitioning>  
496 - <connection>bus_control_variable</connection>  
497 - <cache>N</cache>  
498 - <cache_load_all>Y</cache_load_all>  
499 - <cache_size>0</cache_size>  
500 - <lookup>  
501 - <schema/>  
502 - <table>bsth_c_stationroute</table>  
503 - <orderby/>  
504 - <fail_on_multiple>N</fail_on_multiple>  
505 - <eat_row_on_failure>N</eat_row_on_failure>  
506 - <key>  
507 - <name>xl</name>  
508 - <field>line</field>  
509 - <condition>&#x3d;</condition>  
510 - <name2/>  
511 - </key>  
512 - <key>  
513 - <name>xl_dir</name>  
514 - <field>directions</field>  
515 - <condition>&#x3d;</condition>  
516 - <name2/>  
517 - </key>  
518 - <key>  
519 - <name>zd</name>  
520 - <field>station_code</field>  
521 - <condition>&#x3d;</condition>  
522 - <name2/>  
523 - </key>  
524 - <value>  
525 - <name>station_name</name>  
526 - <rename>zdname</rename>  
527 - <default/>  
528 - <type>String</type>  
529 - </value>  
530 - </lookup>  
531 - <cluster_schema/>  
532 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
533 - <xloc>410</xloc>  
534 - <yloc>191</yloc>  
535 - <draw>Y</draw>  
536 - </GUI>  
537 - </step>  
538 -  
539 - <step>  
540 - <name>&#x751f;&#x6210;&#x8def;&#x724c;&#x5b57;&#x6bb5;</name>  
541 - <type>RowGenerator</type>  
542 - <description/>  
543 - <distribute>Y</distribute>  
544 - <custom_distribution/>  
545 - <copies>1</copies>  
546 - <partitioning>  
547 - <method>none</method>  
548 - <schema_name/>  
549 - </partitioning>  
550 - <fields>  
551 - <field>  
552 - <name>fieldname</name>  
553 - <type>String</type>  
554 - <format/>  
555 - <currency/>  
556 - <decimal/>  
557 - <group/>  
558 - <nullif>&#x8def;&#x724c;</nullif>  
559 - <length>-1</length>  
560 - <precision>-1</precision>  
561 - <set_empty_string>N</set_empty_string>  
562 - </field>  
563 - <field>  
564 - <name>fieldtype</name>  
565 - <type>String</type>  
566 - <format/>  
567 - <currency/>  
568 - <decimal/>  
569 - <group/>  
570 - <nullif>String</nullif>  
571 - <length>-1</length>  
572 - <precision>-1</precision>  
573 - <set_empty_string>N</set_empty_string>  
574 - </field>  
575 - <field>  
576 - <name>fcno</name>  
577 - <type>Integer</type>  
578 - <format/>  
579 - <currency/>  
580 - <decimal/>  
581 - <group/>  
582 - <nullif>0</nullif>  
583 - <length>-1</length>  
584 - <precision>-1</precision>  
585 - <set_empty_string>N</set_empty_string>  
586 - </field>  
587 - </fields>  
588 - <limit>1</limit>  
589 - <never_ending>N</never_ending>  
590 - <interval_in_ms>5000</interval_in_ms>  
591 - <row_time_field>now</row_time_field>  
592 - <last_time_field>FiveSecondsAgo</last_time_field>  
593 - <cluster_schema/>  
594 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
595 - <xloc>530</xloc>  
596 - <yloc>194</yloc>  
597 - <draw>Y</draw>  
598 - </GUI>  
599 - </step>  
600 -  
601 - <step>  
602 - <name>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</name>  
603 - <type>ScriptValueMod</type>  
604 - <description/>  
605 - <distribute>Y</distribute>  
606 - <custom_distribution/>  
607 - <copies>1</copies>  
608 - <partitioning>  
609 - <method>none</method>  
610 - <schema_name/>  
611 - </partitioning>  
612 - <compatible>N</compatible>  
613 - <optimizationLevel>9</optimizationLevel>  
614 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
615 - <jsScript_name>Script 1</jsScript_name>  
616 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fieldname&#x3b; &#x2f;&#x2f; &#x5b57;&#x6bb5;&#x540d;&#xa;var fieldtype&#x3b; &#x2f;&#x2f; &#x5b57;&#x6bb5;&#x7c7b;&#x578b;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; &#x27;&#x8fdb;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; &#x27;&#x51fa;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; &#xa;&#xa;fieldtype &#x3d; &#x27;String&#x27;&#x3b;&#xa;</jsScript_script>  
617 - </jsScript> </jsScripts> <fields> <field> <name>fieldname</name>  
618 - <rename>fieldname</rename>  
619 - <type>String</type>  
620 - <length>-1</length>  
621 - <precision>-1</precision>  
622 - <replace>N</replace>  
623 - </field> <field> <name>fieldtype</name>  
624 - <rename>fieldtype</rename>  
625 - <type>String</type>  
626 - <length>-1</length>  
627 - <precision>-1</precision>  
628 - <replace>N</replace>  
629 - </field> </fields> <cluster_schema/>  
630 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
631 - <xloc>410</xloc>  
632 - <yloc>326</yloc>  
633 - <draw>Y</draw>  
634 - </GUI>  
635 - </step>  
636 -  
637 - <step>  
638 - <name>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</name>  
639 - <type>ScriptValueMod</type>  
640 - <description/>  
641 - <distribute>Y</distribute>  
642 - <custom_distribution/>  
643 - <copies>1</copies>  
644 - <partitioning>  
645 - <method>none</method>  
646 - <schema_name/>  
647 - </partitioning>  
648 - <compatible>N</compatible>  
649 - <optimizationLevel>9</optimizationLevel>  
650 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
651 - <jsScript_name>Script 1</jsScript_name>  
652 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var targetfieldname&#x3b; &#x2f;&#x2f; &#x76ee;&#x6807;&#x5b57;&#x6bb5;&#x540d;&#xa;var targettype&#x3b; &#x2f;&#x2f; &#x76ee;&#x6807;&#x7c7b;&#x578b;&#xa;var valuefieldname&#x3b; &#x2f;&#x2f; &#x503c;&#x5b57;&#x6bb5;&#x540d;&#xa;var keyvalue&#x3b; &#x2f;&#x2f; &#x5173;&#x952e;&#x5b57;&#x503c;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; &#x27;&#x8fdb;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; &#x27;&#x51fa;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else &#x7b;&#xa; targetfieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; &#xa;&#xa;targettype &#x3d; &#x27;String&#x27;&#x3b;&#xa;valuefieldname &#x3d; &#x27;fcsj&#x27;&#x3b;&#xa;keyvalue &#x3d; fcno&#x3b;&#xa;</jsScript_script>  
653 - </jsScript> </jsScripts> <fields> <field> <name>targetfieldname</name>  
654 - <rename>targetfieldname</rename>  
655 - <type>String</type>  
656 - <length>-1</length>  
657 - <precision>-1</precision>  
658 - <replace>N</replace>  
659 - </field> <field> <name>targettype</name>  
660 - <rename>targettype</rename>  
661 - <type>String</type>  
662 - <length>-1</length>  
663 - <precision>-1</precision>  
664 - <replace>N</replace>  
665 - </field> <field> <name>valuefieldname</name>  
666 - <rename>valuefieldname</rename>  
667 - <type>String</type>  
668 - <length>-1</length>  
669 - <precision>-1</precision>  
670 - <replace>N</replace>  
671 - </field> <field> <name>keyvalue</name>  
672 - <rename>keyvalue</rename>  
673 - <type>String</type>  
674 - <length>-1</length>  
675 - <precision>-1</precision>  
676 - <replace>N</replace>  
677 - </field> </fields> <cluster_schema/>  
678 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
679 - <xloc>410</xloc>  
680 - <yloc>64</yloc>  
681 - <draw>Y</draw>  
682 - </GUI>  
683 - </step>  
684 -  
685 - <step>  
686 - <name>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</name>  
687 - <type>ScriptValueMod</type>  
688 - <description/>  
689 - <distribute>Y</distribute>  
690 - <custom_distribution/>  
691 - <copies>1</copies>  
692 - <partitioning>  
693 - <method>none</method>  
694 - <schema_name/>  
695 - </partitioning>  
696 - <compatible>N</compatible>  
697 - <optimizationLevel>9</optimizationLevel>  
698 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
699 - <jsScript_name>Script 1</jsScript_name>  
700 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var zd&#x3b;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; zd &#x3d; zdz&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d; else &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d;&#xa;</jsScript_script>  
701 - </jsScript> </jsScripts> <fields> <field> <name>zd</name>  
702 - <rename>zd</rename>  
703 - <type>String</type>  
704 - <length>-1</length>  
705 - <precision>-1</precision>  
706 - <replace>N</replace>  
707 - </field> </fields> <cluster_schema/>  
708 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
709 - <xloc>300</xloc>  
710 - <yloc>190</yloc>  
711 - <draw>Y</draw>  
712 - </GUI>  
713 - </step>  
714 -  
715 - <step>  
716 - <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>  
717 - <type>FilterRows</type>  
718 - <description/>  
719 - <distribute>Y</distribute>  
720 - <custom_distribution/>  
721 - <copies>1</copies>  
722 - <partitioning>  
723 - <method>none</method>  
724 - <schema_name/>  
725 - </partitioning>  
726 -<send_true_to/>  
727 -<send_false_to/>  
728 - <compare>  
729 -<condition>  
730 - <negated>N</negated>  
731 - <leftvalue>bc_type</leftvalue>  
732 - <function>IS NOT NULL</function>  
733 - <rightvalue/>  
734 - </condition>  
735 - </compare>  
736 - <cluster_schema/>  
737 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
738 - <xloc>182</xloc>  
739 - <yloc>189</yloc>  
740 - <draw>Y</draw>  
741 - </GUI>  
742 - </step>  
743 -  
744 - <step_error_handling>  
745 - </step_error_handling>  
746 - <slave-step-copy-partition-distribution>  
747 -</slave-step-copy-partition-distribution>  
748 - <slave_transformation>N</slave_transformation>  
749 -  
750 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5bfc;&#x51fa;&#x5143;&#x6570;&#x636e;</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;ttinfodetail_test.xls</default_value>
  15 + <description>&#x65f6;&#x523b;&#x8868;excel&#x5bfc;&#x51fa;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>injectktrfile</name>
  19 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_parent&#x2f;bsth_control&#x2f;src&#x2f;main&#x2f;resources&#x2f;datatools&#x2f;ktrs&#x2f;ttinfodetailDataOutput.ktr</default_value>
  20 + <description>&#x6ce8;&#x5165;&#x5143;&#x6570;&#x636e;&#x7684;ktr&#x6587;&#x4ef6;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>ttinfoid</name>
  24 + <default_value>56</default_value>
  25 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<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>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<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>
  42 +<channel-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>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>
  47 +<step-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>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>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<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>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2016&#x2f;11&#x2f;15 15&#x3a;02&#x3a;41.624</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;11&#x2f;15 15&#x3a;02&#x3a;41.624</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  92 + <notepad>
  93 + <note>TODO&#xff1a;&#x5982;&#x679c;groupby &#x52a0;&#x5165;bctype&#xff0c;&#xa;&#x5219;&#x4ee5;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#xff0c;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x5206;&#x7ec4;&#x7684;&#x6570;&#x636e;&#x53ef;&#x80fd;&#x91cd;&#x590d;&#xff0c;&#xa;&#x5e94;&#x4e3a;&#x73ed;&#x6b21;&#x7c7b;&#x578b;&#x53ef;&#x80fd;&#x4e0d;&#x4e00;&#x6837;&#xff08;&#x5bfc;&#x5165;&#x4e4b;&#x540e;&#x4eba;&#x4e3a;&#x4fee;&#x6539;&#x7684;&#xff0c;&#x5982;&#x6b63;&#x5e38;&#x73ed;&#x6b21;&#x6539;&#x6210;&#x533a;&#x95f4;&#xff09;&#xff0c;&#xa;&#x56e0;&#x4e3a;&#x5bfc;&#x51fa;&#x65f6;&#x5fc5;&#x987b;&#x6570;&#x636e;&#x4e0d;&#x91cd;&#x590d;&#xff0c;&#x8fd9;&#x91cc;&#x7684;&#x89e3;&#x51b3;&#x65b9;&#x6cd5;&#xff0c;&#x53ea;&#x4f7f;&#x7528;&#x53d1;&#x8f66;&#x987a;&#x5e8f;&#x53f7;&#x5206;&#x7ec4;&#xff0c;&#xa;&#x4ee5;&#x540e;&#x5efa;&#x8bae;&#xff0c;&#x8fd8;&#x662f;&#x539f;&#x6765;&#x7684;&#x65b9;&#x5f0f;&#x5206;&#x7ec4;&#xff0c;&#x7136;&#x540e;&#x628a;&#x66f4;&#x65b0;&#x65f6;&#x95f4;&#x665a;&#x7684;&#x53bb;&#x9664;&#xa;&#xa;&#x4ee5;&#x540e;&#x6539;&#x6210;&#x53bb;&#x9664;&#x91cd;&#x590d;&#x7eaa;&#x5f55;</note>
  94 + <xloc>46</xloc>
  95 + <yloc>400</yloc>
  96 + <width>406</width>
  97 + <heigth>122</heigth>
  98 + <fontname>YaHei Consolas Hybrid</fontname>
  99 + <fontsize>12</fontsize>
  100 + <fontbold>N</fontbold>
  101 + <fontitalic>N</fontitalic>
  102 + <fontcolorred>0</fontcolorred>
  103 + <fontcolorgreen>0</fontcolorgreen>
  104 + <fontcolorblue>0</fontcolorblue>
  105 + <backgroundcolorred>255</backgroundcolorred>
  106 + <backgroundcolorgreen>205</backgroundcolorgreen>
  107 + <backgroundcolorblue>112</backgroundcolorblue>
  108 + <bordercolorred>100</bordercolorred>
  109 + <bordercolorgreen>100</bordercolorgreen>
  110 + <bordercolorblue>100</bordercolorblue>
  111 + <drawshadow>Y</drawshadow>
  112 + </notepad>
  113 + </notepads>
  114 + <connection>
  115 + <name>192.168.168.1_jwgl_dw</name>
  116 + <server>192.168.168.1</server>
  117 + <type>ORACLE</type>
  118 + <access>Native</access>
  119 + <database>orcl</database>
  120 + <port>1521</port>
  121 + <username>jwgl_dw</username>
  122 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  123 + <servername/>
  124 + <data_tablespace/>
  125 + <index_tablespace/>
  126 + <attributes>
  127 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  130 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  131 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  132 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  133 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  134 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  135 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  136 + </attributes>
  137 + </connection>
  138 + <connection>
  139 + <name>bus_control_variable</name>
  140 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  141 + <type>MYSQL</type>
  142 + <access>Native</access>
  143 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  144 + <port>3306</port>
  145 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  146 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  147 + <servername/>
  148 + <data_tablespace/>
  149 + <index_tablespace/>
  150 + <attributes>
  151 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  152 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  154 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  157 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  158 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  159 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  160 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  162 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  164 + </attributes>
  165 + </connection>
  166 + <connection>
  167 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  168 + <server>localhost</server>
  169 + <type>MYSQL</type>
  170 + <access>Native</access>
  171 + <database>control</database>
  172 + <port>3306</port>
  173 + <username>root</username>
  174 + <password>Encrypted </password>
  175 + <servername/>
  176 + <data_tablespace/>
  177 + <index_tablespace/>
  178 + <attributes>
  179 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  181 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  184 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  185 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  186 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  187 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  191 + </attributes>
  192 + </connection>
  193 + <connection>
  194 + <name>bus_control_&#x672c;&#x673a;</name>
  195 + <server>localhost</server>
  196 + <type>MYSQL</type>
  197 + <access>Native</access>
  198 + <database>control</database>
  199 + <port>3306</port>
  200 + <username>root</username>
  201 + <password>Encrypted </password>
  202 + <servername/>
  203 + <data_tablespace/>
  204 + <index_tablespace/>
  205 + <attributes>
  206 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  208 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  211 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  212 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  213 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  214 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  215 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  217 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  218 + </attributes>
  219 + </connection>
  220 + <connection>
  221 + <name>xlab_mysql_youle</name>
  222 + <server>101.231.124.8</server>
  223 + <type>MYSQL</type>
  224 + <access>Native</access>
  225 + <database>xlab_youle</database>
  226 + <port>45687</port>
  227 + <username>xlab-youle</username>
  228 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  229 + <servername/>
  230 + <data_tablespace/>
  231 + <index_tablespace/>
  232 + <attributes>
  233 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  235 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  238 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  239 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  240 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  241 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  242 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  243 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  245 + </attributes>
  246 + </connection>
  247 + <connection>
  248 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  249 + <server>localhost</server>
  250 + <type>MYSQL</type>
  251 + <access>Native</access>
  252 + <database>xlab_youle</database>
  253 + <port>3306</port>
  254 + <username>root</username>
  255 + <password>Encrypted </password>
  256 + <servername/>
  257 + <data_tablespace/>
  258 + <index_tablespace/>
  259 + <attributes>
  260 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  261 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  264 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  265 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  266 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  267 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  268 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  270 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  271 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  272 + </attributes>
  273 + </connection>
  274 + <connection>
  275 + <name>xlab_youle</name>
  276 + <server/>
  277 + <type>MYSQL</type>
  278 + <access>JNDI</access>
  279 + <database>xlab_youle</database>
  280 + <port>1521</port>
  281 + <username/>
  282 + <password>Encrypted </password>
  283 + <servername/>
  284 + <data_tablespace/>
  285 + <index_tablespace/>
  286 + <attributes>
  287 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  288 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  290 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  291 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  292 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  293 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  294 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  295 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  296 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  297 + </attributes>
  298 + </connection>
  299 + <order>
  300 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5206;&#x7ec4;&#x6570;&#x636e;</from><to>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  301 + <hop> <from>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</from><to>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</to><enabled>Y</enabled> </hop>
  302 + <hop> <from>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</from><to>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</to><enabled>Y</enabled> </hop>
  303 + <hop> <from>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</from><to>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</to><enabled>Y</enabled> </hop>
  304 + <hop> <from>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</from><to>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  305 + <hop> <from>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  306 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  307 + <hop> <from>&#x751f;&#x6210;&#x8def;&#x724c;&#x5b57;&#x6bb5;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  308 + <hop> <from>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  309 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</to><enabled>Y</enabled> </hop>
  310 + </order>
  311 + <step>
  312 + <name>ETL&#x5143;&#x6570;&#x636e;&#x6ce8;&#x5165;</name>
  313 + <type>MetaInject</type>
  314 + <description/>
  315 + <distribute>Y</distribute>
  316 + <custom_distribution/>
  317 + <copies>1</copies>
  318 + <partitioning>
  319 + <method>none</method>
  320 + <schema_name/>
  321 + </partitioning>
  322 + <specification_method>filename</specification_method>
  323 + <trans_object_id/>
  324 + <trans_name/>
  325 + <filename>&#x24;&#x7b;injectktrfile&#x7d;</filename>
  326 + <directory_path/>
  327 + <source_step/>
  328 + <source_output_fields> </source_output_fields> <target_file/>
  329 + <no_execution>N</no_execution>
  330 + <stream_source_step/>
  331 + <stream_target_step/>
  332 + <mappings> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  333 + <target_attribute_key>TARGET_TYPE</target_attribute_key>
  334 + <target_detail>Y</target_detail>
  335 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  336 + <source_field>targettype</source_field>
  337 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x51fa;</target_step_name>
  338 + <target_attribute_key>TYPE</target_attribute_key>
  339 + <target_detail>Y</target_detail>
  340 + <source_step>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</source_step>
  341 + <source_field>fieldtype</source_field>
  342 + </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  343 + <target_attribute_key>NAME</target_attribute_key>
  344 + <target_detail>Y</target_detail>
  345 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  346 + <source_field>valuefieldname</source_field>
  347 + </mapping> <mapping> <target_step_name>Excel&#x8f93;&#x51fa;</target_step_name>
  348 + <target_attribute_key>NAME</target_attribute_key>
  349 + <target_detail>Y</target_detail>
  350 + <source_step>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</source_step>
  351 + <source_field>fieldname</source_field>
  352 + </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  353 + <target_attribute_key>TARGET_NAME</target_attribute_key>
  354 + <target_detail>Y</target_detail>
  355 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  356 + <source_field>targetfieldname</source_field>
  357 + </mapping> <mapping> <target_step_name>&#x5217;&#x8f6c;&#x884c;</target_step_name>
  358 + <target_attribute_key>KEY_VALUE</target_attribute_key>
  359 + <target_detail>Y</target_detail>
  360 + <source_step>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</source_step>
  361 + <source_field>keyvalue</source_field>
  362 + </mapping> </mappings> <cluster_schema/>
  363 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  364 + <xloc>640</xloc>
  365 + <yloc>64</yloc>
  366 + <draw>Y</draw>
  367 + </GUI>
  368 + </step>
  369 +
  370 + <step>
  371 + <name>&#x53bb;&#x9664;&#x91cd;&#x590d;&#x8bb0;&#x5f55;</name>
  372 + <type>Unique</type>
  373 + <description/>
  374 + <distribute>Y</distribute>
  375 + <custom_distribution/>
  376 + <copies>1</copies>
  377 + <partitioning>
  378 + <method>none</method>
  379 + <schema_name/>
  380 + </partitioning>
  381 + <count_rows>N</count_rows>
  382 + <count_field/>
  383 + <reject_duplicate_row>N</reject_duplicate_row>
  384 + <error_description/>
  385 + <fields> </fields> <cluster_schema/>
  386 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  387 + <xloc>842</xloc>
  388 + <yloc>592</yloc>
  389 + <draw>Y</draw>
  390 + </GUI>
  391 + </step>
  392 +
  393 + <step>
  394 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  395 + <type>SelectValues</type>
  396 + <description/>
  397 + <distribute>Y</distribute>
  398 + <custom_distribution/>
  399 + <copies>1</copies>
  400 + <partitioning>
  401 + <method>none</method>
  402 + <schema_name/>
  403 + </partitioning>
  404 + <fields> <field> <name>fieldname</name>
  405 + <rename/>
  406 + <length>-2</length>
  407 + <precision>-2</precision>
  408 + </field> <field> <name>fieldtype</name>
  409 + <rename/>
  410 + <length>-2</length>
  411 + <precision>-2</precision>
  412 + </field> <field> <name>fcno</name>
  413 + <rename/>
  414 + <length>-2</length>
  415 + <precision>-2</precision>
  416 + </field> <select_unspecified>N</select_unspecified>
  417 + </fields> <cluster_schema/>
  418 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  419 + <xloc>533</xloc>
  420 + <yloc>325</yloc>
  421 + <draw>Y</draw>
  422 + </GUI>
  423 + </step>
  424 +
  425 + <step>
  426 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  427 + <type>SortRows</type>
  428 + <description/>
  429 + <distribute>Y</distribute>
  430 + <custom_distribution/>
  431 + <copies>1</copies>
  432 + <partitioning>
  433 + <method>none</method>
  434 + <schema_name/>
  435 + </partitioning>
  436 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  437 + <prefix>out</prefix>
  438 + <sort_size>1000000</sort_size>
  439 + <free_memory/>
  440 + <compress>N</compress>
  441 + <compress_variable/>
  442 + <unique_rows>N</unique_rows>
  443 + <fields>
  444 + <field>
  445 + <name>fcno</name>
  446 + <ascending>Y</ascending>
  447 + <case_sensitive>N</case_sensitive>
  448 + <presorted>N</presorted>
  449 + </field>
  450 + </fields>
  451 + <cluster_schema/>
  452 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  453 + <xloc>642</xloc>
  454 + <yloc>325</yloc>
  455 + <draw>Y</draw>
  456 + </GUI>
  457 + </step>
  458 +
  459 + <step>
  460 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x5206;&#x7ec4;&#x6570;&#x636e;</name>
  461 + <type>TableInput</type>
  462 + <description/>
  463 + <distribute>Y</distribute>
  464 + <custom_distribution/>
  465 + <copies>1</copies>
  466 + <partitioning>
  467 + <method>none</method>
  468 + <schema_name/>
  469 + </partitioning>
  470 + <connection>bus_control_variable</connection>
  471 + <sql>select &#xa;fcno&#xa;, min&#x28;xl&#x29; xl &#xa;, min&#x28;xl_dir&#x29; xl_dir&#xa;, min&#x28;qdz_code&#x29; qdz&#xa;, min&#x28;zdz_code&#x29; zdz&#xa;, min&#x28;bc_type&#x29; bc_type &#xa;from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;&#xa;group by fcno</sql>
  472 + <limit>0</limit>
  473 + <lookup/>
  474 + <execute_each_row>N</execute_each_row>
  475 + <variables_active>Y</variables_active>
  476 + <lazy_conversion_active>N</lazy_conversion_active>
  477 + <cluster_schema/>
  478 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  479 + <xloc>56</xloc>
  480 + <yloc>185</yloc>
  481 + <draw>Y</draw>
  482 + </GUI>
  483 + </step>
  484 +
  485 + <step>
  486 + <name>&#x67e5;&#x627e;&#x7ad9;&#x70b9;&#x540d;</name>
  487 + <type>DBLookup</type>
  488 + <description/>
  489 + <distribute>N</distribute>
  490 + <custom_distribution/>
  491 + <copies>1</copies>
  492 + <partitioning>
  493 + <method>none</method>
  494 + <schema_name/>
  495 + </partitioning>
  496 + <connection>bus_control_variable</connection>
  497 + <cache>N</cache>
  498 + <cache_load_all>Y</cache_load_all>
  499 + <cache_size>0</cache_size>
  500 + <lookup>
  501 + <schema/>
  502 + <table>bsth_c_stationroute</table>
  503 + <orderby/>
  504 + <fail_on_multiple>N</fail_on_multiple>
  505 + <eat_row_on_failure>N</eat_row_on_failure>
  506 + <key>
  507 + <name>xl</name>
  508 + <field>line</field>
  509 + <condition>&#x3d;</condition>
  510 + <name2/>
  511 + </key>
  512 + <key>
  513 + <name>xl_dir</name>
  514 + <field>directions</field>
  515 + <condition>&#x3d;</condition>
  516 + <name2/>
  517 + </key>
  518 + <key>
  519 + <name>zd</name>
  520 + <field>station_code</field>
  521 + <condition>&#x3d;</condition>
  522 + <name2/>
  523 + </key>
  524 + <value>
  525 + <name>station_name</name>
  526 + <rename>zdname</rename>
  527 + <default/>
  528 + <type>String</type>
  529 + </value>
  530 + </lookup>
  531 + <cluster_schema/>
  532 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  533 + <xloc>410</xloc>
  534 + <yloc>191</yloc>
  535 + <draw>Y</draw>
  536 + </GUI>
  537 + </step>
  538 +
  539 + <step>
  540 + <name>&#x751f;&#x6210;&#x8def;&#x724c;&#x5b57;&#x6bb5;</name>
  541 + <type>RowGenerator</type>
  542 + <description/>
  543 + <distribute>Y</distribute>
  544 + <custom_distribution/>
  545 + <copies>1</copies>
  546 + <partitioning>
  547 + <method>none</method>
  548 + <schema_name/>
  549 + </partitioning>
  550 + <fields>
  551 + <field>
  552 + <name>fieldname</name>
  553 + <type>String</type>
  554 + <format/>
  555 + <currency/>
  556 + <decimal/>
  557 + <group/>
  558 + <nullif>&#x8def;&#x724c;</nullif>
  559 + <length>-1</length>
  560 + <precision>-1</precision>
  561 + <set_empty_string>N</set_empty_string>
  562 + </field>
  563 + <field>
  564 + <name>fieldtype</name>
  565 + <type>String</type>
  566 + <format/>
  567 + <currency/>
  568 + <decimal/>
  569 + <group/>
  570 + <nullif>String</nullif>
  571 + <length>-1</length>
  572 + <precision>-1</precision>
  573 + <set_empty_string>N</set_empty_string>
  574 + </field>
  575 + <field>
  576 + <name>fcno</name>
  577 + <type>Integer</type>
  578 + <format/>
  579 + <currency/>
  580 + <decimal/>
  581 + <group/>
  582 + <nullif>0</nullif>
  583 + <length>-1</length>
  584 + <precision>-1</precision>
  585 + <set_empty_string>N</set_empty_string>
  586 + </field>
  587 + </fields>
  588 + <limit>1</limit>
  589 + <never_ending>N</never_ending>
  590 + <interval_in_ms>5000</interval_in_ms>
  591 + <row_time_field>now</row_time_field>
  592 + <last_time_field>FiveSecondsAgo</last_time_field>
  593 + <cluster_schema/>
  594 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  595 + <xloc>530</xloc>
  596 + <yloc>194</yloc>
  597 + <draw>Y</draw>
  598 + </GUI>
  599 + </step>
  600 +
  601 + <step>
  602 + <name>&#x8ba1;&#x7b97;excel&#x8f93;&#x51fa;&#x5b57;&#x6bb5;</name>
  603 + <type>ScriptValueMod</type>
  604 + <description/>
  605 + <distribute>Y</distribute>
  606 + <custom_distribution/>
  607 + <copies>1</copies>
  608 + <partitioning>
  609 + <method>none</method>
  610 + <schema_name/>
  611 + </partitioning>
  612 + <compatible>N</compatible>
  613 + <optimizationLevel>9</optimizationLevel>
  614 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  615 + <jsScript_name>Script 1</jsScript_name>
  616 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fieldname&#x3b; &#x2f;&#x2f; &#x5b57;&#x6bb5;&#x540d;&#xa;var fieldtype&#x3b; &#x2f;&#x2f; &#x5b57;&#x6bb5;&#x7c7b;&#x578b;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; &#x27;&#x8fdb;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; &#x27;&#x51fa;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; fieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; &#xa;&#xa;fieldtype &#x3d; &#x27;String&#x27;&#x3b;&#xa;</jsScript_script>
  617 + </jsScript> </jsScripts> <fields> <field> <name>fieldname</name>
  618 + <rename>fieldname</rename>
  619 + <type>String</type>
  620 + <length>-1</length>
  621 + <precision>-1</precision>
  622 + <replace>N</replace>
  623 + </field> <field> <name>fieldtype</name>
  624 + <rename>fieldtype</rename>
  625 + <type>String</type>
  626 + <length>-1</length>
  627 + <precision>-1</precision>
  628 + <replace>N</replace>
  629 + </field> </fields> <cluster_schema/>
  630 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  631 + <xloc>410</xloc>
  632 + <yloc>326</yloc>
  633 + <draw>Y</draw>
  634 + </GUI>
  635 + </step>
  636 +
  637 + <step>
  638 + <name>&#x8ba1;&#x7b97;&#x53cd;&#x8303;&#x5f0f;&#x5143;&#x6570;&#x636e;</name>
  639 + <type>ScriptValueMod</type>
  640 + <description/>
  641 + <distribute>Y</distribute>
  642 + <custom_distribution/>
  643 + <copies>1</copies>
  644 + <partitioning>
  645 + <method>none</method>
  646 + <schema_name/>
  647 + </partitioning>
  648 + <compatible>N</compatible>
  649 + <optimizationLevel>9</optimizationLevel>
  650 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  651 + <jsScript_name>Script 1</jsScript_name>
  652 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var targetfieldname&#x3b; &#x2f;&#x2f; &#x76ee;&#x6807;&#x5b57;&#x6bb5;&#x540d;&#xa;var targettype&#x3b; &#x2f;&#x2f; &#x76ee;&#x6807;&#x7c7b;&#x578b;&#xa;var valuefieldname&#x3b; &#x2f;&#x2f; &#x503c;&#x5b57;&#x6bb5;&#x540d;&#xa;var keyvalue&#x3b; &#x2f;&#x2f; &#x5173;&#x952e;&#x5b57;&#x503c;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; &#x27;&#x8fdb;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; &#x27;&#x51fa;&#x573a;&#x27; &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; targetfieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; else &#x7b;&#xa; targetfieldname &#x3d; zdname &#x2b; &#x22;-&#x3e;&#x22; &#x2b; fcno&#x3b;&#xa;&#x7d; &#xa;&#xa;targettype &#x3d; &#x27;String&#x27;&#x3b;&#xa;valuefieldname &#x3d; &#x27;fcsj&#x27;&#x3b;&#xa;keyvalue &#x3d; fcno&#x3b;&#xa;</jsScript_script>
  653 + </jsScript> </jsScripts> <fields> <field> <name>targetfieldname</name>
  654 + <rename>targetfieldname</rename>
  655 + <type>String</type>
  656 + <length>-1</length>
  657 + <precision>-1</precision>
  658 + <replace>N</replace>
  659 + </field> <field> <name>targettype</name>
  660 + <rename>targettype</rename>
  661 + <type>String</type>
  662 + <length>-1</length>
  663 + <precision>-1</precision>
  664 + <replace>N</replace>
  665 + </field> <field> <name>valuefieldname</name>
  666 + <rename>valuefieldname</rename>
  667 + <type>String</type>
  668 + <length>-1</length>
  669 + <precision>-1</precision>
  670 + <replace>N</replace>
  671 + </field> <field> <name>keyvalue</name>
  672 + <rename>keyvalue</rename>
  673 + <type>String</type>
  674 + <length>-1</length>
  675 + <precision>-1</precision>
  676 + <replace>N</replace>
  677 + </field> </fields> <cluster_schema/>
  678 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  679 + <xloc>410</xloc>
  680 + <yloc>64</yloc>
  681 + <draw>Y</draw>
  682 + </GUI>
  683 + </step>
  684 +
  685 + <step>
  686 + <name>&#x8ba1;&#x7b97;&#x7ad9;&#x70b9;</name>
  687 + <type>ScriptValueMod</type>
  688 + <description/>
  689 + <distribute>Y</distribute>
  690 + <custom_distribution/>
  691 + <copies>1</copies>
  692 + <partitioning>
  693 + <method>none</method>
  694 + <schema_name/>
  695 + </partitioning>
  696 + <compatible>N</compatible>
  697 + <optimizationLevel>9</optimizationLevel>
  698 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  699 + <jsScript_name>Script 1</jsScript_name>
  700 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var zd&#x3b;&#xa;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x27;in&#x27;&#x29; &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;out&#x27;&#x29; &#x7b;&#xa; zd &#x3d; zdz&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x27;normal&#x27;&#x29; &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d; else &#x7b;&#xa; zd &#x3d; qdz&#x3b;&#xa;&#x7d;&#xa;</jsScript_script>
  701 + </jsScript> </jsScripts> <fields> <field> <name>zd</name>
  702 + <rename>zd</rename>
  703 + <type>String</type>
  704 + <length>-1</length>
  705 + <precision>-1</precision>
  706 + <replace>N</replace>
  707 + </field> </fields> <cluster_schema/>
  708 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  709 + <xloc>300</xloc>
  710 + <yloc>190</yloc>
  711 + <draw>Y</draw>
  712 + </GUI>
  713 + </step>
  714 +
  715 + <step>
  716 + <name>&#x8fc7;&#x6ee4;&#x8bb0;&#x5f55;</name>
  717 + <type>FilterRows</type>
  718 + <description/>
  719 + <distribute>Y</distribute>
  720 + <custom_distribution/>
  721 + <copies>1</copies>
  722 + <partitioning>
  723 + <method>none</method>
  724 + <schema_name/>
  725 + </partitioning>
  726 +<send_true_to/>
  727 +<send_false_to/>
  728 + <compare>
  729 +<condition>
  730 + <negated>N</negated>
  731 + <leftvalue>bc_type</leftvalue>
  732 + <function>IS NOT NULL</function>
  733 + <rightvalue/>
  734 + </condition>
  735 + </compare>
  736 + <cluster_schema/>
  737 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  738 + <xloc>182</xloc>
  739 + <yloc>189</yloc>
  740 + <draw>Y</draw>
  741 + </GUI>
  742 + </step>
  743 +
  744 + <step_error_handling>
  745 + </step_error_handling>
  746 + <slave-step-copy-partition-distribution>
  747 +</slave-step-copy-partition-distribution>
  748 + <slave_transformation>N</slave_transformation>
  749 +
  750 +</transformation>
src/main/resources/static/pages/electricity/list/add.html
@@ -387,22 +387,35 @@ @@ -387,22 +387,35 @@
387 var date=$("#date").val(); 387 var date=$("#date").val();
388 var jsy=$("#jsy").val(); 388 var jsy=$("#jsy").val();
389 var xlbm=$("#xlbm").val(); 389 var xlbm=$("#xlbm").val();
  390 + var gsdm=$("#ssgsdm").val();
390 var map={}; 391 var map={};
391 map["nbbm"]=nbbm; 392 map["nbbm"]=nbbm;
392 map["date"]=date; 393 map["date"]=date;
393 map["jsy"]=jsy; 394 map["jsy"]=jsy;
394 map["xlbm"]=xlbm; 395 map["xlbm"]=xlbm;
  396 + map["rq"]=date;
  397 + map["ssgsdm_like"]=gsdm;
395 //检查一下用户是否存在 398 //检查一下用户是否存在
396 - $get('/dlb/checkJsy', map, function(fage){  
397 - if(fage=="0"){  
398 - layer.msg('该驾驶员当天已存在.'); 399 + var i = layer.load(2);
  400 + $get('/ylb/checkDate', map, function(fage){
  401 + if(fage=="2"){
  402 + layer.msg('只能操作三天内数据.');
  403 + layer.close(i);
399 }else{ 404 }else{
400 - $post('/dlb/saveDlb', params, function(){  
401 - layer.msg('添加信息成功.');  
402 - loadPage('list.html'); 405 + $get('/dlb/checkJsy', map, function(fage){
  406 + if(fage=="0"){
  407 + layer.msg('该驾驶员当天已存在.');
  408 + layer.close(i);
  409 + }else{
  410 + $post('/dlb/saveDlb', params, function(){
  411 + layer.close(i);
  412 + layer.msg('添加信息成功.');
  413 + loadPage('list.html');
  414 + });
  415 + }
403 }); 416 });
404 } 417 }
405 - }); 418 + })
406 } 419 }
407 }); 420 });
408 }); 421 });
src/main/resources/static/pages/electricity/list/list.html
@@ -271,12 +271,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -271,12 +271,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
271 271
272 $("#checkDl").on('click', function () { 272 $("#checkDl").on('click', function () {
273 if ($("#rq").val() != "") { 273 if ($("#rq").val() != "") {
274 - var params=getParamsList();  
275 - var i = layer.load(2);  
276 - $get('/dlb/checkDl', params, function () {  
277 - layer.close(i);  
278 - jsDoQuery(params, true);  
279 - }); 274 + var params=getParamsList();
  275 + $get('/ylb/checkDate',params,function(status){
  276 + if(status=='2'){
  277 + layer.msg('只能操作三天内数据.');
  278 + }else{
  279 + var i = layer.load(2);
  280 + $get('/dlb/checkDl', params, function () {
  281 + layer.close(i);
  282 + jsDoQuery(params, true);
  283 + });
  284 + }
  285 + })
280 } else { 286 } else {
281 layer.msg('请选择日期.'); 287 layer.msg('请选择日期.');
282 } 288 }
@@ -286,12 +292,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -286,12 +292,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
286 $("#outAndIn").on('click', function () { 292 $("#outAndIn").on('click', function () {
287 console.log("进场油量等于出场油量"); 293 console.log("进场油量等于出场油量");
288 if ($("#rq").val() != "") { 294 if ($("#rq").val() != "") {
289 - var params=getParamsList();  
290 - var i = layer.load(2);  
291 - $get('/ylb/outAndIn', params, function () {  
292 - layer.close(i);  
293 - jsDoQuery(params, true);  
294 - }); 295 + var params=getParamsList();
  296 + $get('/ylb/checkDate',params,function(status){
  297 + if(status=='2'){
  298 + layer.msg('只能操作三天内数据.');
  299 + }else{
  300 + var i = layer.load(2);
  301 + $get('/ylb/outAndIn', params, function () {
  302 + layer.close(i);
  303 + jsDoQuery(params, true);
  304 + });
  305 + }
  306 + })
295 } else { 307 } else {
296 layer.msg('请选择日期.'); 308 layer.msg('请选择日期.');
297 } 309 }
@@ -300,56 +312,63 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -300,56 +312,63 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
300 312
301 //保存 313 //保存
302 $("#saveButton").on('click',function(){ 314 $("#saveButton").on('click',function(){
303 - var ylArray = [];  
304 - $('input.icheck').each(function(){  
305 - var map = {};  
306 - var id=$(this).data('id');  
307 - var nbbm =$('.in_carpark_nbbm[data-id='+id+']', '#dl_oil_list').html();  
308 - var cdl =$('.in_carpark_cdl[data-id='+id+']', '#dl_oil_list').html();  
309 - if(cdl=="" || cdl ==null){  
310 - cdl=0;  
311 - }  
312 - var czcd=$('.in_carpark_czcd[data-id='+id+']', '#dl_oil_list').val();  
313 - if(czcd=="" || czcd==null){  
314 - czcd=0;  
315 - }  
316 - var jzcd=$('.in_carpark_jzcd[data-id='+id+']', '#dl_oil_list').val();  
317 - if(jzcd=="" || jzcd==null){  
318 - jzcd=0;  
319 - }  
320 -  
321 - var sh = $('.in_carpark_shyl[data-id='+id+']', '#dl_oil_list').val();  
322 - if(sh=="" || sh==null){  
323 - sh=0;  
324 - }  
325 -  
326 - var shyy = $('.in_carpark_shyy[data-id='+id+']', '#dl_oil_list').val();  
327 - var hd = $('.in_carpark_hd[data-id='+id+']', '#dl_oil_list').val();  
328 - if(hd=="" || hd==null){  
329 - hd=0;  
330 - }  
331 - var yhlx = $('.in_carpark_yhlx[data-id='+id+']', '#dl_oil_list').val();  
332 -  
333 - map['id']=id;  
334 - map['cdl']=cdl;  
335 - map['czcd']=czcd;  
336 - map['jzcd']=jzcd;  
337 - map['sh']=sh;  
338 - map['shyy']=shyy;  
339 - map['yhlx']=yhlx;  
340 - map['nbbm']=nbbm;  
341 - map['hd']=hd;  
342 - map['rq']=$("#rq").val();  
343 - ylArray.push(map); 315 + var params_=getParamsList();
  316 + $get('/ylb/checkDate',params_,function(status){
  317 + if(status=='2'){
  318 + layer.msg('只能操作三天内数据.');
  319 + }else{
  320 + var ylArray = [];
  321 + $('input.icheck').each(function(){
  322 + var map = {};
  323 + var id=$(this).data('id');
  324 + var nbbm =$('.in_carpark_nbbm[data-id='+id+']', '#dl_oil_list').html();
  325 + var cdl =$('.in_carpark_cdl[data-id='+id+']', '#dl_oil_list').html();
  326 + if(cdl=="" || cdl ==null){
  327 + cdl=0;
  328 + }
  329 + var czcd=$('.in_carpark_czcd[data-id='+id+']', '#dl_oil_list').val();
  330 + if(czcd=="" || czcd==null){
  331 + czcd=0;
  332 + }
  333 + var jzcd=$('.in_carpark_jzcd[data-id='+id+']', '#dl_oil_list').val();
  334 + if(jzcd=="" || jzcd==null){
  335 + jzcd=0;
  336 + }
  337 +
  338 + var sh = $('.in_carpark_shyl[data-id='+id+']', '#dl_oil_list').val();
  339 + if(sh=="" || sh==null){
  340 + sh=0;
  341 + }
  342 +
  343 + var shyy = $('.in_carpark_shyy[data-id='+id+']', '#dl_oil_list').val();
  344 + var hd = $('.in_carpark_hd[data-id='+id+']', '#dl_oil_list').val();
  345 + if(hd=="" || hd==null){
  346 + hd=0;
  347 + }
  348 + var yhlx = $('.in_carpark_yhlx[data-id='+id+']', '#dl_oil_list').val();
  349 +
  350 + map['id']=id;
  351 + map['cdl']=cdl;
  352 + map['czcd']=czcd;
  353 + map['jzcd']=jzcd;
  354 + map['sh']=sh;
  355 + map['shyy']=shyy;
  356 + map['yhlx']=yhlx;
  357 + map['nbbm']=nbbm;
  358 + map['hd']=hd;
  359 + map['rq']=$("#rq").val();
  360 + ylArray.push(map);
  361 + })
  362 + var params = {};
  363 + params['dlbList']=JSON.stringify(ylArray);
  364 + var i = layer.load(2);
  365 + $post('/dlb/saveDlbList', params, function () {
  366 + layer.close(i);
  367 + var params1 =getParamsList();
  368 + jsDoQuery(params1, true);
  369 + });
  370 + }
344 }) 371 })
345 - var params = {};  
346 - params['dlbList']=JSON.stringify(ylArray);  
347 - var i = layer.load(2);  
348 - $post('/dlb/saveDlbList', params, function () {  
349 - layer.close(i);  
350 - var params1 =getParamsList();  
351 - jsDoQuery(params1, true);  
352 - });  
353 }) 372 })
354 //拆分 373 //拆分
355 $("#sortButton").on('click', function () { 374 $("#sortButton").on('click', function () {
@@ -405,13 +424,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -405,13 +424,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
405 //获取加存信息 424 //获取加存信息
406 $("#obtain").on('click', function () { 425 $("#obtain").on('click', function () {
407 if ($("#rq").val() != "") { 426 if ($("#rq").val() != "") {
408 - var params =getParamsList();  
409 -  
410 - var i = layer.load(2);  
411 - $get('/dlb/obtain', params, function () {  
412 - layer.close(i);  
413 - jsDoQuery(params, true);  
414 - }); 427 + var params=getParamsList();
  428 + $get('/ylb/checkDate',params,function(status){
  429 + if(status=='2'){
  430 + layer.msg('只能操作三天内数据.');
  431 + }else{
  432 + var i = layer.load(2);
  433 + $get('/dlb/obtain', params, function () {
  434 + layer.close(i);
  435 + jsDoQuery(params, true);
  436 + });
  437 + }
  438 + })
415 } else { 439 } else {
416 layer.msg('请选择日期.'); 440 layer.msg('请选择日期.');
417 } 441 }
@@ -563,15 +587,20 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -563,15 +587,20 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
563 } 587 }
564 588
565 function jsyUpdate(){ 589 function jsyUpdate(){
566 - var id = $(this).data('id');  
567 - var jsy=$('.in_carpark_jsy[data-id='+id+']', '#dl_oil_list').val();  
568 - $get('/dlb/updateJsy',{id:id,jsy:jsy}, function(result){  
569 - layer.msg('修改成功.');  
570 - var params = getParamsList();  
571 - page = 0;  
572 - jsDoQuery(params, true);  
573 - });  
574 - 590 + var params=getParamsList();
  591 + $get('/ylb/checkDate',params,function(status){
  592 + if(status=='2'){
  593 + layer.msg('只能操作三天内数据.');
  594 + }else{
  595 + var id = $(this).data('id');
  596 + var jsy=$('.in_carpark_jsy[data-id='+id+']', '#dl_oil_list').val();
  597 + $get('/dlb/updateJsy',{id:id,jsy:jsy}, function(result){
  598 + layer.msg('修改成功.');
  599 + page = 0;
  600 + jsDoQuery(params, true);
  601 + });
  602 + }
  603 + })
575 } 604 }
576 //页面计算防止精度丢失 605 //页面计算防止精度丢失
577 var accAdd = function (a, b) { 606 var accAdd = function (a, b) {
@@ -702,31 +731,38 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -702,31 +731,38 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
702 731
703 //删除 732 //删除
704 $('#removeButton').on('click', function () { 733 $('#removeButton').on('click', function () {
705 - var idArray = [];  
706 - var x=0;  
707 - $('input.icheck:checked').each(function(){  
708 - x++;  
709 - var map ={};  
710 - var id=$(this).data('id');  
711 - map['id']=id;  
712 - idArray.push(map);  
713 - 734 + var params_=getParamsList();
  735 + $get('/ylb/checkDate',params_,function(status){
  736 + if(status=='2'){
  737 + layer.msg('只能操作三天内数据.');
  738 + }else{
  739 + var idArray = [];
  740 + var x=0;
  741 + $('input.icheck:checked').each(function(){
  742 + x++;
  743 + var map ={};
  744 + var id=$(this).data('id');
  745 + map['id']=id;
  746 + idArray.push(map);
  747 +
  748 + })
  749 + var params = {};
  750 + params['ids']=JSON.stringify(idArray);
  751 + if (x==0) {
  752 + layer.msg("请选择要删除的数据");
  753 + }else{
  754 + if(confirm('确定要删除选中的数据?'))
  755 + {
  756 + var i = layer.load(2);
  757 + $post('/dlb/deleteIds', params, function (result) {
  758 + layer.close(i);
  759 + var params=getParamsList();
  760 + jsDoQuery(params, true);
  761 + });
  762 + }
  763 + }
  764 + }
714 }) 765 })
715 - var params = {};  
716 - params['ids']=JSON.stringify(idArray);  
717 - if (x==0) {  
718 - layer.msg("请选择要删除的数据");  
719 - }else{  
720 - if(confirm('确定要删除选中的数据?'))  
721 - {  
722 - var i = layer.load(2);  
723 - $post('/dlb/deleteIds', params, function (result) {  
724 - layer.close(i);  
725 - var params=getParamsList();  
726 - jsDoQuery(params, true);  
727 - });  
728 - }  
729 - }  
730 }); 766 });
731 767
732 768
src/main/resources/static/pages/forms/statement/js/jquery.table2excel.min.js
1 -/*  
2 - * jQuery table2excel - v1.1.1  
3 - * jQuery plugin to export an .xls file in browser from an HTML table  
4 - * https://github.com/rainabba/jquery-table2excel  
5 - *  
6 - * Made by rainabba  
7 - * Under MIT License  
8 - */ 1 +/*
  2 + * jQuery table2excel - v1.1.1
  3 + * jQuery plugin to export an .xls file in browser from an HTML table
  4 + * https://github.com/rainabba/jquery-table2excel
  5 + *
  6 + * Made by rainabba
  7 + * Under MIT License
  8 + */
9 !function(a,b,c,d){function e(b,c){this.element=b,this.settings=a.extend({},k,c),this._defaults=k,this._name=j,this.init()}function f(a){return a.filename?a.filename:"table2excel"}function g(a){var b=/(\s+alt\s*=\s*"([^"]*)"|\s+alt\s*=\s*'([^']*)')/i;return a.replace(/<img[^>]*>/gi,function(a){var c=b.exec(a);return null!==c&&c.length>=2?c[2]:""})}function h(a){return a.replace(/<a[^>]*>|<\/a>/gi,"")}function i(a){var b=/(\s+value\s*=\s*"([^"]*)"|\s+value\s*=\s*'([^']*)')/i;return a.replace(/<input[^>]*>|<\/input>/gi,function(a){var c=b.exec(a);return null!==c&&c.length>=2?c[2]:""})}var j="table2excel",k={exclude:".noExl",name:"Table2Excel",filename:"table2excel",fileext:".xls",exclude_img:!0,exclude_links:!0,exclude_inputs:!0};e.prototype={init:function(){var b=this;b.template={head:'<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"><head>\x3c!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets>',sheet:{head:"<x:ExcelWorksheet><x:Name>",tail:"</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet>"},mid:"</x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--\x3e</head><body>",table:{head:"<table>",tail:"</table>"},foot:"</body></html>"},b.tableRows=[],a(b.element).each(function(c,d){var e="";a(d).find("tr").not(b.settings.exclude).each(function(c,d){e+="<tr>",a(d).find("td,th").not(b.settings.exclude).each(function(c,d){var f={rows:a(this).attr("rowspan"),cols:a(this).attr("colspan"),flag:a(d).find(b.settings.exclude)};f.flag.length>0?e+="<td> </td>":f.rows&f.cols?e+="<td>"+a(d).html()+"</td>":(e+="<td",f.rows>0&&(e+=" rowspan='"+f.rows+"' "),f.cols>0&&(e+=" colspan='"+f.cols+"' "),e+="/>"+a(d).html()+"</td>")}),e+="</tr>",console.log(e)}),b.settings.exclude_img&&(e=g(e)),b.settings.exclude_links&&(e=h(e)),b.settings.exclude_inputs&&(e=i(e)),b.tableRows.push(e)}),b.tableToExcel(b.tableRows,b.settings.name,b.settings.sheetName)},tableToExcel:function(d,e,g){var h,i,j,k=this,l="";if(k.format=function(a,b){return a.replace(/{(\w+)}/g,function(a,c){return b[c]})},g=void 0===g?"Sheet":g,k.ctx={worksheet:e||"Worksheet",table:d,sheetName:g},l=k.template.head,a.isArray(d))for(h in d)l+=k.template.sheet.head+g+h+k.template.sheet.tail;if(l+=k.template.mid,a.isArray(d))for(h in d)l+=k.template.table.head+"{table"+h+"}"+k.template.table.tail;l+=k.template.foot;for(h in d)k.ctx["table"+h]=d[h];if(delete k.ctx.table,!c.documentMode){var m=new Blob([k.format(l,k.ctx)],{type:"application/vnd.ms-excel"});b.URL=b.URL||b.webkitURL,i=b.URL.createObjectURL(m),j=c.createElement("a"),j.download=f(k.settings),j.href=i,c.body.appendChild(j),j.click(),c.body.removeChild(j)}else if("undefined"!=typeof Blob){l=k.format(l,k.ctx),l=[l];var n=new Blob(l,{type:"text/html"});b.navigator.msSaveBlob(n,f(k.settings))}else txtArea1.document.open("text/html","replace"),txtArea1.document.write(k.format(l,k.ctx)),txtArea1.document.close(),txtArea1.focus(),sa=txtArea1.document.execCommand("SaveAs",!0,f(k.settings));return!0}},a.fn[j]=function(b){var c=this;return c.each(function(){a.data(c,"plugin_"+j)||a.data(c,"plugin_"+j,new e(this,b))}),c}}(jQuery,window,document); 9 !function(a,b,c,d){function e(b,c){this.element=b,this.settings=a.extend({},k,c),this._defaults=k,this._name=j,this.init()}function f(a){return a.filename?a.filename:"table2excel"}function g(a){var b=/(\s+alt\s*=\s*"([^"]*)"|\s+alt\s*=\s*'([^']*)')/i;return a.replace(/<img[^>]*>/gi,function(a){var c=b.exec(a);return null!==c&&c.length>=2?c[2]:""})}function h(a){return a.replace(/<a[^>]*>|<\/a>/gi,"")}function i(a){var b=/(\s+value\s*=\s*"([^"]*)"|\s+value\s*=\s*'([^']*)')/i;return a.replace(/<input[^>]*>|<\/input>/gi,function(a){var c=b.exec(a);return null!==c&&c.length>=2?c[2]:""})}var j="table2excel",k={exclude:".noExl",name:"Table2Excel",filename:"table2excel",fileext:".xls",exclude_img:!0,exclude_links:!0,exclude_inputs:!0};e.prototype={init:function(){var b=this;b.template={head:'<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"><head>\x3c!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets>',sheet:{head:"<x:ExcelWorksheet><x:Name>",tail:"</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet>"},mid:"</x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--\x3e</head><body>",table:{head:"<table>",tail:"</table>"},foot:"</body></html>"},b.tableRows=[],a(b.element).each(function(c,d){var e="";a(d).find("tr").not(b.settings.exclude).each(function(c,d){e+="<tr>",a(d).find("td,th").not(b.settings.exclude).each(function(c,d){var f={rows:a(this).attr("rowspan"),cols:a(this).attr("colspan"),flag:a(d).find(b.settings.exclude)};f.flag.length>0?e+="<td> </td>":f.rows&f.cols?e+="<td>"+a(d).html()+"</td>":(e+="<td",f.rows>0&&(e+=" rowspan='"+f.rows+"' "),f.cols>0&&(e+=" colspan='"+f.cols+"' "),e+="/>"+a(d).html()+"</td>")}),e+="</tr>",console.log(e)}),b.settings.exclude_img&&(e=g(e)),b.settings.exclude_links&&(e=h(e)),b.settings.exclude_inputs&&(e=i(e)),b.tableRows.push(e)}),b.tableToExcel(b.tableRows,b.settings.name,b.settings.sheetName)},tableToExcel:function(d,e,g){var h,i,j,k=this,l="";if(k.format=function(a,b){return a.replace(/{(\w+)}/g,function(a,c){return b[c]})},g=void 0===g?"Sheet":g,k.ctx={worksheet:e||"Worksheet",table:d,sheetName:g},l=k.template.head,a.isArray(d))for(h in d)l+=k.template.sheet.head+g+h+k.template.sheet.tail;if(l+=k.template.mid,a.isArray(d))for(h in d)l+=k.template.table.head+"{table"+h+"}"+k.template.table.tail;l+=k.template.foot;for(h in d)k.ctx["table"+h]=d[h];if(delete k.ctx.table,!c.documentMode){var m=new Blob([k.format(l,k.ctx)],{type:"application/vnd.ms-excel"});b.URL=b.URL||b.webkitURL,i=b.URL.createObjectURL(m),j=c.createElement("a"),j.download=f(k.settings),j.href=i,c.body.appendChild(j),j.click(),c.body.removeChild(j)}else if("undefined"!=typeof Blob){l=k.format(l,k.ctx),l=[l];var n=new Blob(l,{type:"text/html"});b.navigator.msSaveBlob(n,f(k.settings))}else txtArea1.document.open("text/html","replace"),txtArea1.document.write(k.format(l,k.ctx)),txtArea1.document.close(),txtArea1.focus(),sa=txtArea1.document.execCommand("SaveAs",!0,f(k.settings));return!0}},a.fn[j]=function(b){var c=this;return c.each(function(){a.data(c,"plugin_"+j)||a.data(c,"plugin_"+j,new e(this,b))}),c}}(jQuery,window,document);
10 \ No newline at end of file 10 \ No newline at end of file
src/main/resources/static/pages/mforms/singledatas/jquery.table2excel.min.js 0 → 100644
  1 +/*
  2 + * jQuery table2excel - v1.1.1
  3 + * jQuery plugin to export an .xls file in browser from an HTML table
  4 + * https://github.com/rainabba/jquery-table2excel
  5 + *
  6 + * Made by rainabba
  7 + * Under MIT License
  8 + */
  9 +!function(a,b,c,d){function e(b,c){this.element=b,this.settings=a.extend({},k,c),this._defaults=k,this._name=j,this.init()}function f(a){return a.filename?a.filename:"table2excel"}function g(a){var b=/(\s+alt\s*=\s*"([^"]*)"|\s+alt\s*=\s*'([^']*)')/i;return a.replace(/<img[^>]*>/gi,function(a){var c=b.exec(a);return null!==c&&c.length>=2?c[2]:""})}function h(a){return a.replace(/<a[^>]*>|<\/a>/gi,"")}function i(a){var b=/(\s+value\s*=\s*"([^"]*)"|\s+value\s*=\s*'([^']*)')/i;return a.replace(/<input[^>]*>|<\/input>/gi,function(a){var c=b.exec(a);return null!==c&&c.length>=2?c[2]:""})}var j="table2excel",k={exclude:".noExl",name:"Table2Excel",filename:"table2excel",fileext:".xls",exclude_img:!0,exclude_links:!0,exclude_inputs:!0};e.prototype={init:function(){var b=this;b.template={head:'<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><meta http-equiv="content-type" content="application/vnd.ms-excel; charset=UTF-8"><head>\x3c!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets>',sheet:{head:"<x:ExcelWorksheet><x:Name>",tail:"</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet>"},mid:"</x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--\x3e</head><body>",table:{head:"<table>",tail:"</table>"},foot:"</body></html>"},b.tableRows=[],a(b.element).each(function(c,d){var e="";a(d).find("tr").not(b.settings.exclude).each(function(c,d){e+="<tr>",a(d).find("td,th").not(b.settings.exclude).each(function(c,d){var f={rows:a(this).attr("rowspan"),cols:a(this).attr("colspan"),flag:a(d).find(b.settings.exclude)};f.flag.length>0?e+="<td> </td>":f.rows&f.cols?e+="<td>"+a(d).html()+"</td>":(e+="<td",f.rows>0&&(e+=" rowspan='"+f.rows+"' "),f.cols>0&&(e+=" colspan='"+f.cols+"' "),e+="/>"+a(d).html()+"</td>")}),e+="</tr>",console.log(e)}),b.settings.exclude_img&&(e=g(e)),b.settings.exclude_links&&(e=h(e)),b.settings.exclude_inputs&&(e=i(e)),b.tableRows.push(e)}),b.tableToExcel(b.tableRows,b.settings.name,b.settings.sheetName)},tableToExcel:function(d,e,g){var h,i,j,k=this,l="";if(k.format=function(a,b){return a.replace(/{(\w+)}/g,function(a,c){return b[c]})},g=void 0===g?"Sheet":g,k.ctx={worksheet:e||"Worksheet",table:d,sheetName:g},l=k.template.head,a.isArray(d))for(h in d)l+=k.template.sheet.head+g+h+k.template.sheet.tail;if(l+=k.template.mid,a.isArray(d))for(h in d)l+=k.template.table.head+"{table"+h+"}"+k.template.table.tail;l+=k.template.foot;for(h in d)k.ctx["table"+h]=d[h];if(delete k.ctx.table,!c.documentMode){var m=new Blob([k.format(l,k.ctx)],{type:"application/vnd.ms-excel"});b.URL=b.URL||b.webkitURL,i=b.URL.createObjectURL(m),j=c.createElement("a"),j.download=f(k.settings),j.href=i,c.body.appendChild(j),j.click(),c.body.removeChild(j)}else if("undefined"!=typeof Blob){l=k.format(l,k.ctx),l=[l];var n=new Blob(l,{type:"text/html"});b.navigator.msSaveBlob(n,f(k.settings))}else txtArea1.document.open("text/html","replace"),txtArea1.document.write(k.format(l,k.ctx)),txtArea1.document.close(),txtArea1.focus(),sa=txtArea1.document.execCommand("SaveAs",!0,f(k.settings));return!0}},a.fn[j]=function(b){var c=this;return c.each(function(){a.data(c,"plugin_"+j)||a.data(c,"plugin_"+j,new e(this,b))}),c}}(jQuery,window,document);
0 \ No newline at end of file 10 \ No newline at end of file
src/main/resources/static/pages/oil/add.html
@@ -392,24 +392,38 @@ @@ -392,24 +392,38 @@
392 var date=$("#date").val(); 392 var date=$("#date").val();
393 var jsy=$("#jsy").val(); 393 var jsy=$("#jsy").val();
394 var xlbm=$("#xlbm").val(); 394 var xlbm=$("#xlbm").val();
  395 + var gsdm=$("#ssgsdm").val();
395 var map={}; 396 var map={};
396 map["nbbm"]=nbbm; 397 map["nbbm"]=nbbm;
397 map["date"]=date; 398 map["date"]=date;
398 map["jsy"]=jsy; 399 map["jsy"]=jsy;
399 map["xlbm"]=xlbm; 400 map["xlbm"]=xlbm;
  401 + map["date"]=date;
  402 + map["rq"]=date;
  403 + map["ssgsdm_like"]=gsdm;
400 //检查一下用户是否存在 404 //检查一下用户是否存在
401 - $get('/ylb/checkJsy', map, function(fage){  
402 - if(fage=="0"){  
403 - layer.msg('该驾驶员当天已存在.'); 405 + var i = layer.load(2);
  406 + $get('/ylb/checkDate', map, function(fage){
  407 + if(fage=="2"){
  408 + layer.msg('只能操作三天内数据.');
  409 + layer.close(i);
404 }else{ 410 }else{
405 - $post('/ylb/saveYlb', params, function(){  
406 - layer.msg('添加信息成功.');  
407 - loadPage('list_ph.html'); 411 + $get('/ylb/checkJsy', map, function(fage){
  412 + if(fage=="0"){
  413 + layer.msg('该驾驶员当天已存在.');
  414 + layer.close(i);
  415 + }else{
  416 + $post('/ylb/saveYlb', params, function(){
  417 + layer.msg('添加信息成功.');
  418 + layer.close(i);
  419 + loadPage('list_ph.html');
  420 + });
  421 + }
408 }); 422 });
409 } 423 }
410 - }); 424 + })
411 } 425 }
412 - });  
413 }); 426 });
  427 + });
414 })(); 428 })();
415 </script> 429 </script>
416 \ No newline at end of file 430 \ No newline at end of file
src/main/resources/static/pages/oil/list_ph.html
@@ -336,16 +336,24 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -336,16 +336,24 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
336 var fage=false; 336 var fage=false;
337 //var id = 15; 337 //var id = 15;
338 //$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list') 338 //$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list')
339 - 339 +
  340 +
340 $("#checkYl").on('click', function () { 341 $("#checkYl").on('click', function () {
341 //console.log("核对加注量"); 342 //console.log("核对加注量");
342 if ($("#rq").val() != "") { 343 if ($("#rq").val() != "") {
343 - var params=getParamsList();  
344 - var i = layer.load(2);  
345 - $get('/ylb/checkYl', params, function () {  
346 - layer.close(i);  
347 - jsDoQuery(params, true);  
348 - }); 344 + var params=getParamsList();
  345 + $get('/ylb/checkDate',params,function(status){
  346 + if(status=='2'){
  347 + layer.msg('只能操作三天内数据.');
  348 + }else{
  349 + var i = layer.load(2);
  350 + $get('/ylb/checkYl', params, function () {
  351 + layer.close(i);
  352 + jsDoQuery(params, true);
  353 + });
  354 + }
  355 + })
  356 +
349 } else { 357 } else {
350 layer.msg('请选择日期.'); 358 layer.msg('请选择日期.');
351 } 359 }
@@ -355,12 +363,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -355,12 +363,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
355 $("#outAndIn").on('click', function () { 363 $("#outAndIn").on('click', function () {
356 // console.log("进场油量等于出场油量"); 364 // console.log("进场油量等于出场油量");
357 if ($("#rq").val() != "") { 365 if ($("#rq").val() != "") {
358 - var params=getParamsList();  
359 - var i = layer.load(2);  
360 - $get('/ylb/outAndIn', params, function () {  
361 - layer.close(i);  
362 - jsDoQuery(params, true);  
363 - }); 366 + var params=getParamsList();
  367 + $get('/ylb/checkDate',params,function(status){
  368 + if(status=='2'){
  369 + layer.msg('只能操作三天内数据.');
  370 + }else{
  371 + var i = layer.load(2);
  372 + $get('/ylb/outAndIn', params, function () {
  373 + layer.close(i);
  374 + jsDoQuery(params, true);
  375 + });
  376 + }
  377 + })
364 } else { 378 } else {
365 layer.msg('请选择日期.'); 379 layer.msg('请选择日期.');
366 } 380 }
@@ -368,164 +382,180 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -368,164 +382,180 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
368 382
369 //保存 383 //保存
370 $(".saveButton").on('click',function(){ 384 $(".saveButton").on('click',function(){
371 - var ylArray = [];  
372 - $('input.icheck').each(function(){  
373 - var map = {};  
374 - var id=$(this).data('id');  
375 - var nbbm =$('.in_carpark_nbbm[data-id='+id+']', '#ll_oil_list').html();  
376 - var jzl =$('.in_carpark_jzl[data-id='+id+']', '#ll_oil_list').html();  
377 - if(jzl=="" || jzl ==null){  
378 - jzl=0;  
379 - }  
380 - var czyl=$('.in_carpark_czyl[data-id='+id+']', '#ll_oil_list').val();  
381 - if(czyl=="" || czyl==null){  
382 - czyl=0;  
383 - }  
384 - var jzyl=$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list').val();  
385 - if(jzyl=="" || jzyl==null){  
386 - jzyl=0;  
387 - }  
388 -  
389 - var sh = $('.in_carpark_shyl[data-id='+id+']', '#ll_oil_list').val();  
390 - if(sh=="" || sh==null){  
391 - sh=0;  
392 - }  
393 -  
394 - var shyy = $('.in_carpark_shyy[data-id='+id+']', '#ll_oil_list').val();  
395 - var ns = $('.in_carpark_ns[data-id='+id+']', '#ll_oil_list').val();  
396 - if(ns=="" || ns==null){  
397 - ns=0; 385 +
  386 + var params_=getParamsList();
  387 + $get('/ylb/checkDate',params_,function(status){
  388 + if(status=='2'){
  389 + layer.msg('只能操作三天内数据.');
  390 + }else{
  391 + var ylArray = [];
  392 + $('input.icheck').each(function(){
  393 + var map = {};
  394 + var id=$(this).data('id');
  395 + var nbbm =$('.in_carpark_nbbm[data-id='+id+']', '#ll_oil_list').html();
  396 + var jzl =$('.in_carpark_jzl[data-id='+id+']', '#ll_oil_list').html();
  397 + if(jzl=="" || jzl ==null){
  398 + jzl=0;
  399 + }
  400 + var czyl=$('.in_carpark_czyl[data-id='+id+']', '#ll_oil_list').val();
  401 + if(czyl=="" || czyl==null){
  402 + czyl=0;
  403 + }
  404 + var jzyl=$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list').val();
  405 + if(jzyl=="" || jzyl==null){
  406 + jzyl=0;
  407 + }
  408 +
  409 + var sh = $('.in_carpark_shyl[data-id='+id+']', '#ll_oil_list').val();
  410 + if(sh=="" || sh==null){
  411 + sh=0;
  412 + }
  413 +
  414 + var shyy = $('.in_carpark_shyy[data-id='+id+']', '#ll_oil_list').val();
  415 + var ns = $('.in_carpark_ns[data-id='+id+']', '#ll_oil_list').val();
  416 + if(ns=="" || ns==null){
  417 + ns=0;
  418 + }
  419 +
  420 + var rylx= $('.in_carpark_rylx[data-id='+id+']', '#ll_oil_list').val();
  421 + var yhlx = $('.in_carpark_yhlx[data-id='+id+']', '#ll_oil_list').val();
  422 +
  423 + map['id']=id;
  424 + map['jzl']=jzl;
  425 + map['czyl']=czyl;
  426 + map['jzyl']=jzyl;
  427 + map['sh']=sh;
  428 + map['shyy']=shyy;
  429 + map['ns']=ns;
  430 + map['rylx']=rylx;
  431 + map['yhlx']=yhlx;
  432 + map['nbbm']=nbbm;
  433 + map['rq']=$("#rq").val();
  434 + ylArray.push(map);
  435 + })
  436 + var params = {};
  437 + params['ylbList']=JSON.stringify(ylArray);
  438 + var i = layer.load(2);
  439 + $post('/ylb/saveYlbList', params, function () {
  440 + layer.close(i);
  441 + var params1 =getParamsList();
  442 + jsDoQuery(params1, true);
  443 + });
398 } 444 }
399 -  
400 - var rylx= $('.in_carpark_rylx[data-id='+id+']', '#ll_oil_list').val();  
401 - var yhlx = $('.in_carpark_yhlx[data-id='+id+']', '#ll_oil_list').val();  
402 -  
403 - map['id']=id;  
404 - map['jzl']=jzl;  
405 - map['czyl']=czyl;  
406 - map['jzyl']=jzyl;  
407 - map['sh']=sh;  
408 - map['shyy']=shyy;  
409 - map['ns']=ns;  
410 - map['rylx']=rylx;  
411 - map['yhlx']=yhlx;  
412 - map['nbbm']=nbbm;  
413 - map['rq']=$("#rq").val();  
414 - ylArray.push(map);  
415 }) 445 })
416 - var params = {};  
417 - params['ylbList']=JSON.stringify(ylArray);  
418 - var i = layer.load(2);  
419 - $post('/ylb/saveYlbList', params, function () {  
420 - layer.close(i);  
421 - var params1 =getParamsList();  
422 - jsDoQuery(params1, true);  
423 - });  
424 }) 446 })
425 //拆分 447 //拆分
426 $(".sortButton").on('click', function () { 448 $(".sortButton").on('click', function () {
427 if ($("#rq").val() != "") { 449 if ($("#rq").val() != "") {
428 - //拆分前先保存全部  
429 - var ylArray = [];  
430 - $('input.icheck').each(function(){  
431 - var map = {};  
432 - var id=$(this).data('id');  
433 - var nbbm =$('.in_carpark_nbbm[data-id='+id+']', '#ll_oil_list').html();  
434 - var jzl =$('.in_carpark_jzl[data-id='+id+']', '#ll_oil_list').html();  
435 - if(jzl=="" || jzl ==null){  
436 - jzl=0;  
437 - }  
438 - var czyl=$('.in_carpark_czyl[data-id='+id+']', '#ll_oil_list').val();  
439 - if(czyl=="" || czyl==null){  
440 - czyl=0;  
441 - }  
442 - var jzyl=$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list').val();  
443 - if(jzyl=="" || jzyl==null){  
444 - jzyl=0;  
445 - }  
446 -  
447 - var sh = $('.in_carpark_shyl[data-id='+id+']', '#ll_oil_list').val();  
448 - if(sh=="" || sh==null){  
449 - sh=0;  
450 - }  
451 -  
452 - var shyy = $('.in_carpark_shyy[data-id='+id+']', '#ll_oil_list').val();  
453 - var ns = $('.in_carpark_ns[data-id='+id+']', '#ll_oil_list').val();  
454 - if(ns=="" || ns==null){  
455 - ns=0;  
456 - }  
457 -  
458 - var rylx= $('.in_carpark_rylx[data-id='+id+']', '#ll_oil_list').val();  
459 - var yhlx = $('.in_carpark_yhlx[data-id='+id+']', '#ll_oil_list').val();  
460 -  
461 - map['id']=id;  
462 - map['jzl']=jzl;  
463 - map['czyl']=czyl;  
464 - map['jzyl']=jzyl;  
465 - map['sh']=sh;  
466 - map['shyy']=shyy;  
467 - map['ns']=ns;  
468 - map['rylx']=rylx;  
469 - map['yhlx']=yhlx;  
470 - map['nbbm']=nbbm;  
471 - map['rq']=$("#rq").val();  
472 - ylArray.push(map);  
473 - })  
474 - var params = {};  
475 - params['ylbList']=JSON.stringify(ylArray);  
476 -  
477 -  
478 - //拆分操作  
479 - var ylArray2 = [];  
480 - var nbbm="";  
481 - var msg="";  
482 - $('input.icheck:checked').each(function(){  
483 - var map = {};  
484 - var id=$(this).data('id');  
485 - var clzbh =$('.in_carpark_nbbm[data-id='+id+']', '#ll_oil_list').html();  
486 - if(nbbm.indexOf(clzbh)>-1){  
487 - if(msg==""){  
488 - msg += clzbh;  
489 - }else{  
490 - msg += ","+clzbh;  
491 - }  
492 - }else{  
493 - nbbm +=clzbh;  
494 - var jzyl=$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list').val();  
495 - var sh = $('.in_carpark_shyl[data-id='+id+']', '#ll_oil_list').val();  
496 - var shyy = $('.in_carpark_shyy[data-id='+id+']', '#ll_oil_list').val();  
497 - var ns = $('.in_carpark_ns[data-id='+id+']', '#ll_oil_list').val();  
498 - var rylx= $('.in_carpark_rylx[data-id='+id+']', '#ll_oil_list').val();  
499 - map['id']=id;  
500 - map['jzyl']=jzyl;  
501 - map['sh']=sh;  
502 - map['shyy']=shyy;  
503 - map['ns']=ns;  
504 - map['rylx']=rylx;  
505 - ylArray2.push(map);  
506 - }  
507 -  
508 - }) ;  
509 - if(msg!=""){  
510 - layer.msg('内部编码为:【'+msg +'】的车辆请选择一条数据进行拆分.');  
511 - }else{  
512 - var params2 = {};  
513 - params2['ylbList']=JSON.stringify(ylArray2);  
514 - var i = layer.load(2);  
515 - //保存操作  
516 - $post('/ylb/saveYlbList', params, function () {  
517 - //拆分操作  
518 - $post('/ylb/sort', params2, function () {  
519 - layer.close(i);  
520 - var params1 =getParamsList();  
521 - jsDoQuery(params1, true);  
522 - });  
523 - });  
524 - }  
525 - 450 + var params_=getParamsList();
  451 + $get('/ylb/checkDate',params_,function(status){
  452 + if(status=='2'){
  453 + layer.msg('只能操作三天内数据.');
  454 + }else{
  455 + //拆分前先保存全部
  456 + var ylArray = [];
  457 + $('input.icheck').each(function(){
  458 + var map = {};
  459 + var id=$(this).data('id');
  460 + var nbbm =$('.in_carpark_nbbm[data-id='+id+']', '#ll_oil_list').html();
  461 + var jzl =$('.in_carpark_jzl[data-id='+id+']', '#ll_oil_list').html();
  462 + if(jzl=="" || jzl ==null){
  463 + jzl=0;
  464 + }
  465 + var czyl=$('.in_carpark_czyl[data-id='+id+']', '#ll_oil_list').val();
  466 + if(czyl=="" || czyl==null){
  467 + czyl=0;
  468 + }
  469 + var jzyl=$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list').val();
  470 + if(jzyl=="" || jzyl==null){
  471 + jzyl=0;
  472 + }
  473 +
  474 + var sh = $('.in_carpark_shyl[data-id='+id+']', '#ll_oil_list').val();
  475 + if(sh=="" || sh==null){
  476 + sh=0;
  477 + }
  478 +
  479 + var shyy = $('.in_carpark_shyy[data-id='+id+']', '#ll_oil_list').val();
  480 + var ns = $('.in_carpark_ns[data-id='+id+']', '#ll_oil_list').val();
  481 + if(ns=="" || ns==null){
  482 + ns=0;
  483 + }
  484 +
  485 + var rylx= $('.in_carpark_rylx[data-id='+id+']', '#ll_oil_list').val();
  486 + var yhlx = $('.in_carpark_yhlx[data-id='+id+']', '#ll_oil_list').val();
  487 +
  488 + map['id']=id;
  489 + map['jzl']=jzl;
  490 + map['czyl']=czyl;
  491 + map['jzyl']=jzyl;
  492 + map['sh']=sh;
  493 + map['shyy']=shyy;
  494 + map['ns']=ns;
  495 + map['rylx']=rylx;
  496 + map['yhlx']=yhlx;
  497 + map['nbbm']=nbbm;
  498 + map['rq']=$("#rq").val();
  499 + ylArray.push(map);
  500 + })
  501 + var params = {};
  502 + params['ylbList']=JSON.stringify(ylArray);
  503 +
  504 +
  505 + //拆分操作
  506 + var ylArray2 = [];
  507 + var nbbm="";
  508 + var msg="";
  509 + $('input.icheck:checked').each(function(){
  510 + var map = {};
  511 + var id=$(this).data('id');
  512 + var clzbh =$('.in_carpark_nbbm[data-id='+id+']', '#ll_oil_list').html();
  513 + if(nbbm.indexOf(clzbh)>-1){
  514 + if(msg==""){
  515 + msg += clzbh;
  516 + }else{
  517 + msg += ","+clzbh;
  518 + }
  519 + }else{
  520 + nbbm +=clzbh;
  521 + var jzyl=$('.in_carpark_jzyl[data-id='+id+']', '#ll_oil_list').val();
  522 + var sh = $('.in_carpark_shyl[data-id='+id+']', '#ll_oil_list').val();
  523 + var shyy = $('.in_carpark_shyy[data-id='+id+']', '#ll_oil_list').val();
  524 + var ns = $('.in_carpark_ns[data-id='+id+']', '#ll_oil_list').val();
  525 + var rylx= $('.in_carpark_rylx[data-id='+id+']', '#ll_oil_list').val();
  526 + map['id']=id;
  527 + map['jzyl']=jzyl;
  528 + map['sh']=sh;
  529 + map['shyy']=shyy;
  530 + map['ns']=ns;
  531 + map['rylx']=rylx;
  532 + ylArray2.push(map);
  533 + }
  534 +
  535 + }) ;
  536 + if(msg!=""){
  537 + layer.msg('内部编码为:【'+msg +'】的车辆请选择一条数据进行拆分.');
  538 + }else{
  539 + var params2 = {};
  540 + params2['ylbList']=JSON.stringify(ylArray2);
  541 + var i = layer.load(2);
  542 + //保存操作
  543 + $post('/ylb/saveYlbList', params, function () {
  544 + //拆分操作
  545 + $post('/ylb/sort', params2, function () {
  546 + layer.close(i);
  547 + var params1 =getParamsList();
  548 + jsDoQuery(params1, true);
  549 + });
  550 + });
  551 + }
  552 + }
  553 + })
526 } else { 554 } else {
527 layer.msg('请选择日期.'); 555 layer.msg('请选择日期.');
528 } 556 }
  557 +
  558 +
529 }) 559 })
530 560
531 /* //拆分 561 /* //拆分
@@ -583,13 +613,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -583,13 +613,18 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
583 $("#obtain").on('click', function () { 613 $("#obtain").on('click', function () {
584 //console.log("获取加存"); 614 //console.log("获取加存");
585 if ($("#rq").val() != "") { 615 if ($("#rq").val() != "") {
586 - var params =getParamsList();  
587 -  
588 - var i = layer.load(2);  
589 - $get('/ylb/obtain', params, function () {  
590 - layer.close(i);  
591 - jsDoQuery(params, true);  
592 - }); 616 + var params=getParamsList();
  617 + $get('/ylb/checkDate',params,function(status){
  618 + if(status=='2'){
  619 + layer.msg('只能操作三天内数据.');
  620 + }else{
  621 + var i = layer.load(2);
  622 + $get('/ylb/obtain', params, function () {
  623 + layer.close(i);
  624 + jsDoQuery(params, true);
  625 + });
  626 + }
  627 + })
593 } else { 628 } else {
594 layer.msg('请选择日期.'); 629 layer.msg('请选择日期.');
595 } 630 }
@@ -625,33 +660,8 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -625,33 +660,8 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
625 jsDoQuery(params, true); 660 jsDoQuery(params, true);
626 } 661 }
627 }); 662 });
628 -  
629 - function getParamsList(){  
630 - var cells = $('tr.filter')[0].cells  
631 - , cells1 = $('tr.filter2')[0].cells,params = {}  
632 - , name;  
633 - $.each(cells, function (i, cell) {  
634 - var items = $('input,select', cell);  
635 - for (var j = 0, item; item = items[j++];) {  
636 - name = $(item).attr('name');  
637 - if (name) {  
638 - params[name] = $(item).val();  
639 - }  
640 - }  
641 - });  
642 - $.each(cells1, function (i, cell) {  
643 - var items = $('input,select', cell);  
644 - for (var j = 0, item; item = items[j++];) {  
645 - name = $(item).attr('name');  
646 - if (name) {  
647 - params[name] = $(item).val();  
648 - }  
649 - }  
650 - });  
651 -  
652 - return params;  
653 - }  
654 663
  664 +
655 var xlList; 665 var xlList;
656 var obj=[]; 666 var obj=[];
657 $.get('/report/lineList',function(result){ 667 $.get('/report/lineList',function(result){
@@ -751,14 +761,20 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -751,14 +761,20 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
751 761
752 762
753 function jsyUpdate(){ 763 function jsyUpdate(){
754 - var id = $(this).data('id');  
755 - var jsy=$('.in_carpark_jsy[data-id='+id+']', '#ll_oil_list').val();  
756 - $get('/ylb/updateJsy',{id:id,jsy:jsy}, function(result){  
757 - layer.msg('修改成功.');  
758 - var params = getParamsList();  
759 - page = 0;  
760 - jsDoQuery(params, true);  
761 - }); 764 + var params=getParamsList();
  765 + $get('/ylb/checkDate',params,function(status){
  766 + if(status=='2'){
  767 + layer.msg('只能操作三天内数据.');
  768 + }else{
  769 + var id = $(this).data('id');
  770 + var jsy=$('.in_carpark_jsy[data-id='+id+']', '#ll_oil_list').val();
  771 + $get('/ylb/updateJsy',{id:id,jsy:jsy}, function(result){
  772 + layer.msg('修改成功.');
  773 + page = 0;
  774 + jsDoQuery(params, true);
  775 + });
  776 + }
  777 + })
762 778
763 } 779 }
764 //页面计算防止精度丢失 780 //页面计算防止精度丢失
@@ -883,32 +899,38 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -883,32 +899,38 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
883 899
884 //删除 900 //删除
885 $('.removeButton').on('click', function () { 901 $('.removeButton').on('click', function () {
886 - var idArray = [];  
887 - var x=0;  
888 - $('input.icheck:checked').each(function(){  
889 - x++;  
890 - var map ={};  
891 - var id=$(this).data('id');  
892 - map['id']=id;  
893 - idArray.push(map);  
894 - 902 + var params_=getParamsList();
  903 + $get('/ylb/checkDate',params_,function(status){
  904 + if(status=='2'){
  905 + layer.msg('只能操作三天内数据.');
  906 + }else{
  907 + var idArray = [];
  908 + var x=0;
  909 + $('input.icheck:checked').each(function(){
  910 + x++;
  911 + var map ={};
  912 + var id=$(this).data('id');
  913 + map['id']=id;
  914 + idArray.push(map);
  915 +
  916 + })
  917 + var params = {};
  918 + params['ids']=JSON.stringify(idArray);
  919 + if (x==0) {
  920 + layer.msg("请选择要删除的数据");
  921 + }else{
  922 + if(confirm('确定要删除选中的数据?'))
  923 + {
  924 + var i = layer.load(2);
  925 + $post('/ylb/deleteIds', params, function (result) {
  926 + layer.close(i);
  927 + var params=getParamsList();
  928 + jsDoQuery(params, true);
  929 + });
  930 + }
  931 + }
  932 + }
895 }) 933 })
896 - var params = {};  
897 - params['ids']=JSON.stringify(idArray);  
898 - console.log(idArray);  
899 - if (x==0) {  
900 - layer.msg("请选择要删除的数据");  
901 - }else{  
902 - if(confirm('确定要删除选中的数据?'))  
903 - {  
904 - var i = layer.load(2);  
905 - $post('/ylb/deleteIds', params, function (result) {  
906 - layer.close(i);  
907 - var params=getParamsList();  
908 - jsDoQuery(params, true);  
909 - });  
910 - }  
911 - }  
912 }); 934 });
913 935
914 $("#ylbListFgsdmId").on("change",initXl); 936 $("#ylbListFgsdmId").on("change",initXl);
@@ -1011,6 +1033,37 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep @@ -1011,6 +1033,37 @@ onkeyup=&quot;this.value=this.value.replace(/[^(\d||/.)]/g,&#39;&#39;).replace(&#39;.&#39;,&#39;$#$&#39;).rep
1011 } 1033 }
1012 }); 1034 });
1013 1035
  1036 + function checkDate(){
  1037 + var params=getParamsList();
  1038 +
  1039 + }
  1040 +
  1041 + function getParamsList(){
  1042 + var cells = $('tr.filter')[0].cells
  1043 + , cells1 = $('tr.filter2')[0].cells,params = {}
  1044 + , name;
  1045 + $.each(cells, function (i, cell) {
  1046 + var items = $('input,select', cell);
  1047 + for (var j = 0, item; item = items[j++];) {
  1048 + name = $(item).attr('name');
  1049 + if (name) {
  1050 + params[name] = $(item).val();
  1051 + }
  1052 + }
  1053 + });
  1054 + $.each(cells1, function (i, cell) {
  1055 + var items = $('input,select', cell);
  1056 + for (var j = 0, item; item = items[j++];) {
  1057 + name = $(item).attr('name');
  1058 + if (name) {
  1059 + params[name] = $(item).val();
  1060 + }
  1061 + }
  1062 + });
  1063 +
  1064 + return params;
  1065 + }
  1066 +
1014 //表格滚动条 1067 //表格滚动条
1015 var modal='#ylbtable'; 1068 var modal='#ylbtable';
1016 $('#datatable_ylb_body_div', modal).perfectScrollbar({suppressScrollX: true}); 1069 $('#datatable_ylb_body_div', modal).perfectScrollbar({suppressScrollX: true});
src/main/resources/static/pages/report/message/message.html
@@ -217,7 +217,7 @@ @@ -217,7 +217,7 @@
217 line = $("#line").val(); 217 line = $("#line").val();
218 date = $("#date").val(); 218 date = $("#date").val();
219 var obj = $(this); 219 var obj = $(this);
220 - $get('/realSchedule/historyMessage',{line:line,date:date,code:jName,type:"query"},function(result){ 220 + $get('/report/historyMessageList',{line:line,date:date,code:jName,type:"query"},function(result){
221 var list_history_msg = template('list_history_msg',{list:result}); 221 var list_history_msg = template('list_history_msg',{list:result});
222 // 把渲染好的模版html文本追加到表格中 222 // 把渲染好的模版html文本追加到表格中
223 $('#forms tbody').html(list_history_msg); 223 $('#forms tbody').html(list_history_msg);
@@ -237,7 +237,7 @@ @@ -237,7 +237,7 @@
237 }); 237 });
238 238
239 $("#export").on("click",function(){ 239 $("#export").on("click",function(){
240 - $get('/realSchedule/historyMessage',{line:line,date:date,code:jName,type:"export_msg"},function(result){ 240 + $get('/report/historyMessageList',{line:line,date:date,code:jName,type:"export_msg"},function(result){
241 window.open("/downloadFile/download?fileName=调度消息分析"+moment(date).format("YYYYMMDD")); 241 window.open("/downloadFile/download?fileName=调度消息分析"+moment(date).format("YYYYMMDD"));
242 }); 242 });
243 }); 243 });
@@ -274,12 +274,12 @@ @@ -274,12 +274,12 @@
274 {{each list as obj i}} 274 {{each list as obj i}}
275 <tr> 275 <tr>
276 <td>{{i+1}}</td> 276 <td>{{i+1}}</td>
277 - <td>{{obj[4]}}</td>  
278 - <!--<td>{{obj[6]}}</td>-->  
279 <td>{{obj[0]}}</td> 277 <td>{{obj[0]}}</td>
  278 + <!--<td>{{obj[6]}}</td>-->
280 <td>{{obj[1]}}</td> 279 <td>{{obj[1]}}</td>
281 - <td>{{obj[3]}}</td>  
282 <td>{{obj[2]}}</td> 280 <td>{{obj[2]}}</td>
  281 + <td>{{obj[3]}}</td>
  282 + <td>{{obj[4]}}</td>
283 </tr> 283 </tr>
284 {{/each}} 284 {{/each}}
285 {{if list.length == 0}} 285 {{if list.length == 0}}