Commit aa574387bc91d5988c0d5597d0a561afcd3a8724
Merge branch 'minhang' of 192.168.168.201:panzhaov5/bsth_control into minhang
Showing
15 changed files
with
1929 additions
and
1928 deletions
Too many changes to show.
To preserve performance only 15 of 1639 files are displayed.
src/main/java/com/bsth/controller/oil/DlbController.java
| @@ -143,12 +143,16 @@ public class DlbController extends BaseController<Dlb, Integer>{ | @@ -143,12 +143,16 @@ public class DlbController extends BaseController<Dlb, Integer>{ | ||
| 143 | Map<String, Object> m = new HashMap<String, Object>(); | 143 | Map<String, Object> m = new HashMap<String, Object>(); |
| 144 | m.put("rq", y.getRq()); | 144 | m.put("rq", y.getRq()); |
| 145 | m.put("gsname",y.getGsname() ); | 145 | m.put("gsname",y.getGsname() ); |
| 146 | + m.put("fgsname", y.getFgsname()); | ||
| 146 | m.put("xlname", y.getXlname()); | 147 | m.put("xlname", y.getXlname()); |
| 147 | m.put("nbbm", y.getNbbm()); | 148 | m.put("nbbm", y.getNbbm()); |
| 148 | m.put("jsy", y.getJsy()); | 149 | m.put("jsy", y.getJsy()); |
| 150 | + m.put("name", y.getName()); | ||
| 149 | m.put("cdl", y.getCdl()); | 151 | m.put("cdl", y.getCdl()); |
| 150 | m.put("czcd", y.getCzcd()+"%"); | 152 | m.put("czcd", y.getCzcd()+"%"); |
| 151 | m.put("jzcd", y.getJzcd()+"%"); | 153 | m.put("jzcd", y.getJzcd()+"%"); |
| 154 | + m.put("czlc", y.getCzlc()); | ||
| 155 | + m.put("jzlc", y.getJzlc()); | ||
| 152 | m.put("hd", y.getHd()); | 156 | m.put("hd", y.getHd()); |
| 153 | String shyy ="无"; | 157 | String shyy ="无"; |
| 154 | if(y.getShyy()!=null){ | 158 | if(y.getShyy()!=null){ |
| @@ -162,9 +166,11 @@ public class DlbController extends BaseController<Dlb, Integer>{ | @@ -162,9 +166,11 @@ public class DlbController extends BaseController<Dlb, Integer>{ | ||
| 162 | else if(shyy.equals("8")){shyy="车间(小修)";} | 166 | else if(shyy.equals("8")){shyy="车间(小修)";} |
| 163 | else{shyy ="无";} | 167 | else{shyy ="无";} |
| 164 | } | 168 | } |
| 169 | + m.put("ns", y.getNs()); | ||
| 165 | m.put("shyy", shyy); | 170 | m.put("shyy", shyy); |
| 166 | m.put("sh", y.getSh()); | 171 | m.put("sh", y.getSh()); |
| 167 | m.put("zlc", y.getZlc()); | 172 | m.put("zlc", y.getZlc()); |
| 173 | + m.put("rdlx", ""); | ||
| 168 | m.put("bglyh", y.getBglyh()); | 174 | m.put("bglyh", y.getBglyh()); |
| 169 | resList.add(m); | 175 | resList.add(m); |
| 170 | } | 176 | } |
src/main/java/com/bsth/controller/schedule/core/SchedulePlanInfoController.java
| 1 | -package com.bsth.controller.schedule.core; | ||
| 2 | - | ||
| 3 | -import com.bsth.common.ResponseCode; | ||
| 4 | -import com.bsth.controller.schedule.BController; | ||
| 5 | -import com.bsth.entity.schedule.SchedulePlanInfo; | ||
| 6 | -import com.bsth.service.schedule.SchedulePlanInfoService; | ||
| 7 | -import org.springframework.beans.factory.annotation.Autowired; | ||
| 8 | -import org.springframework.web.bind.annotation.*; | ||
| 9 | - | ||
| 10 | -import java.util.Date; | ||
| 11 | -import java.util.HashMap; | ||
| 12 | -import java.util.List; | ||
| 13 | -import java.util.Map; | ||
| 14 | - | ||
| 15 | -/** | ||
| 16 | - * Created by xu on 17/5/1. | ||
| 17 | - */ | ||
| 18 | -@RestController | ||
| 19 | -@RequestMapping("spic") | ||
| 20 | -public class SchedulePlanInfoController extends BController<SchedulePlanInfo, Long> { | ||
| 21 | - @Autowired | ||
| 22 | - private SchedulePlanInfoService schedulePlanInfoService; | ||
| 23 | - | ||
| 24 | - @RequestMapping(value = "/groupextinfos/{xlid}/{date}", method = RequestMethod.GET) | ||
| 25 | - public Map<String, Object> findGroupInfoExt( | ||
| 26 | - @PathVariable(value = "xlid") Integer xlid, | ||
| 27 | - @PathVariable(value = "date") Date scheduleDate) { | ||
| 28 | - Map<String, Object> resultMap = new HashMap<>(); | ||
| 29 | - try { | ||
| 30 | - resultMap.put("status", ResponseCode.SUCCESS); | ||
| 31 | - resultMap.put("data", schedulePlanInfoService.findSchedulePlanGroupInfo(xlid, scheduleDate)); | ||
| 32 | - | ||
| 33 | - } catch (Exception exp) { | ||
| 34 | - exp.printStackTrace(); | ||
| 35 | - resultMap.put("status", ResponseCode.ERROR); | ||
| 36 | - resultMap.put("msg", exp.getLocalizedMessage()); | ||
| 37 | - } | ||
| 38 | - | ||
| 39 | - return resultMap; | ||
| 40 | - } | ||
| 41 | - | ||
| 42 | - | ||
| 43 | -// ------------------------ 老版本 ----------------------// | ||
| 44 | - @RequestMapping(value = "/groupinfos/{xlid}/{date}", method = RequestMethod.GET) | ||
| 45 | - public List<SchedulePlanInfoService.GroupInfo> findGroupInfo( | ||
| 46 | - @PathVariable(value = "xlid") Integer xlid, | ||
| 47 | - @PathVariable(value = "date") Date scheduleDate) { | ||
| 48 | - return schedulePlanInfoService.findGroupInfo(xlid, scheduleDate); | ||
| 49 | - } | ||
| 50 | - | ||
| 51 | - @RequestMapping(value = "/groupinfos/update", method = RequestMethod.POST) | ||
| 52 | - public Map<String, Object> updateGroupInfo(@RequestBody SchedulePlanInfoService.GroupInfoUpdate groupInfoUpdate) { | ||
| 53 | - Map<String, Object> resultMap = new HashMap<>(); | ||
| 54 | - try { | ||
| 55 | - schedulePlanInfoService.updateGroupInfo(groupInfoUpdate); | ||
| 56 | - | ||
| 57 | - resultMap.put("status", ResponseCode.SUCCESS); | ||
| 58 | - resultMap.put("msg", "更新成功"); | ||
| 59 | - } catch (Exception exp) { | ||
| 60 | - exp.printStackTrace(); | ||
| 61 | - resultMap.put("status", ResponseCode.ERROR); | ||
| 62 | - resultMap.put("msg", exp.getLocalizedMessage()); | ||
| 63 | - } | ||
| 64 | - | ||
| 65 | - return resultMap; | ||
| 66 | - } | ||
| 67 | -} | 1 | +package com.bsth.controller.schedule.core; |
| 2 | + | ||
| 3 | +import com.bsth.common.ResponseCode; | ||
| 4 | +import com.bsth.controller.schedule.BController; | ||
| 5 | +import com.bsth.entity.schedule.SchedulePlanInfo; | ||
| 6 | +import com.bsth.service.schedule.SchedulePlanInfoService; | ||
| 7 | +import org.springframework.beans.factory.annotation.Autowired; | ||
| 8 | +import org.springframework.web.bind.annotation.*; | ||
| 9 | + | ||
| 10 | +import java.util.Date; | ||
| 11 | +import java.util.HashMap; | ||
| 12 | +import java.util.List; | ||
| 13 | +import java.util.Map; | ||
| 14 | + | ||
| 15 | +/** | ||
| 16 | + * Created by xu on 17/5/1. | ||
| 17 | + */ | ||
| 18 | +@RestController | ||
| 19 | +@RequestMapping("spic") | ||
| 20 | +public class SchedulePlanInfoController extends BController<SchedulePlanInfo, Long> { | ||
| 21 | + @Autowired | ||
| 22 | + private SchedulePlanInfoService schedulePlanInfoService; | ||
| 23 | + | ||
| 24 | + @RequestMapping(value = "/groupextinfos/{xlid}/{date}", method = RequestMethod.GET) | ||
| 25 | + public Map<String, Object> findGroupInfoExt( | ||
| 26 | + @PathVariable(value = "xlid") Integer xlid, | ||
| 27 | + @PathVariable(value = "date") Date scheduleDate) { | ||
| 28 | + Map<String, Object> resultMap = new HashMap<>(); | ||
| 29 | + try { | ||
| 30 | + resultMap.put("status", ResponseCode.SUCCESS); | ||
| 31 | + resultMap.put("data", schedulePlanInfoService.findSchedulePlanGroupInfo(xlid, scheduleDate)); | ||
| 32 | + | ||
| 33 | + } catch (Exception exp) { | ||
| 34 | + exp.printStackTrace(); | ||
| 35 | + resultMap.put("status", ResponseCode.ERROR); | ||
| 36 | + resultMap.put("msg", exp.getLocalizedMessage()); | ||
| 37 | + } | ||
| 38 | + | ||
| 39 | + return resultMap; | ||
| 40 | + } | ||
| 41 | + | ||
| 42 | + | ||
| 43 | +// ------------------------ 老版本 ----------------------// | ||
| 44 | + @RequestMapping(value = "/groupinfos/{xlid}/{date}", method = RequestMethod.GET) | ||
| 45 | + public List<SchedulePlanInfoService.GroupInfo> findGroupInfo( | ||
| 46 | + @PathVariable(value = "xlid") Integer xlid, | ||
| 47 | + @PathVariable(value = "date") Date scheduleDate) { | ||
| 48 | + return schedulePlanInfoService.findGroupInfo(xlid, scheduleDate); | ||
| 49 | + } | ||
| 50 | + | ||
| 51 | + @RequestMapping(value = "/groupinfos/update", method = RequestMethod.POST) | ||
| 52 | + public Map<String, Object> updateGroupInfo(@RequestBody SchedulePlanInfoService.GroupInfoUpdate groupInfoUpdate) { | ||
| 53 | + Map<String, Object> resultMap = new HashMap<>(); | ||
| 54 | + try { | ||
| 55 | + schedulePlanInfoService.updateGroupInfo(groupInfoUpdate); | ||
| 56 | + | ||
| 57 | + resultMap.put("status", ResponseCode.SUCCESS); | ||
| 58 | + resultMap.put("msg", "更新成功"); | ||
| 59 | + } catch (Exception exp) { | ||
| 60 | + exp.printStackTrace(); | ||
| 61 | + resultMap.put("status", ResponseCode.ERROR); | ||
| 62 | + resultMap.put("msg", exp.getLocalizedMessage()); | ||
| 63 | + } | ||
| 64 | + | ||
| 65 | + return resultMap; | ||
| 66 | + } | ||
| 67 | +} |
src/main/java/com/bsth/data/BasicData.java
| @@ -39,6 +39,9 @@ public class BasicData implements CommandLineRunner { | @@ -39,6 +39,9 @@ public class BasicData implements CommandLineRunner { | ||
| 39 | 39 | ||
| 40 | //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:公司代码) | 40 | //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:公司代码) |
| 41 | public static Map<String, String> nbbm2CompanyCodeMap; | 41 | public static Map<String, String> nbbm2CompanyCodeMap; |
| 42 | + | ||
| 43 | + //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:牌照号) | ||
| 44 | + public static Map<String, String> nbbmCompanyPlateMap; | ||
| 42 | 45 | ||
| 43 | //站点编码和名称对照,包括停车场 (K: lineCode_updown_stationCode ,V:站点名称) | 46 | //站点编码和名称对照,包括停车场 (K: lineCode_updown_stationCode ,V:站点名称) |
| 44 | public static Map<String, String> stationCode2NameMap; | 47 | public static Map<String, String> stationCode2NameMap; |
| @@ -195,16 +198,22 @@ public class BasicData implements CommandLineRunner { | @@ -195,16 +198,22 @@ public class BasicData implements CommandLineRunner { | ||
| 195 | BiMap<String, String> deviceId2Nbbm = HashBiMap.create(); | 198 | BiMap<String, String> deviceId2Nbbm = HashBiMap.create(); |
| 196 | //车辆和公司代码对照 | 199 | //车辆和公司代码对照 |
| 197 | Map<String, String> nbbm2CompanyCode = new HashMap<>(); | 200 | Map<String, String> nbbm2CompanyCode = new HashMap<>(); |
| 201 | + | ||
| 202 | + //车辆自编号和拍照号对照 | ||
| 203 | + Map<String, String> nbbmCompanyPlate = new HashMap<>(); | ||
| 204 | + | ||
| 198 | Iterator<Cars> carIterator = carsRepository.findAll().iterator(); | 205 | Iterator<Cars> carIterator = carsRepository.findAll().iterator(); |
| 199 | Cars car; | 206 | Cars car; |
| 200 | while (carIterator.hasNext()) { | 207 | while (carIterator.hasNext()) { |
| 201 | car = carIterator.next(); | 208 | car = carIterator.next(); |
| 202 | deviceId2Nbbm.put(car.getEquipmentCode(), car.getInsideCode()); | 209 | deviceId2Nbbm.put(car.getEquipmentCode(), car.getInsideCode()); |
| 203 | nbbm2CompanyCode.put(car.getInsideCode(), car.getBusinessCode()); | 210 | nbbm2CompanyCode.put(car.getInsideCode(), car.getBusinessCode()); |
| 211 | + nbbmCompanyPlate.put(car.getInsideCode(), car.getCarPlate()); | ||
| 204 | } | 212 | } |
| 205 | 213 | ||
| 206 | deviceId2NbbmMap = deviceId2Nbbm; | 214 | deviceId2NbbmMap = deviceId2Nbbm; |
| 207 | nbbm2CompanyCodeMap = nbbm2CompanyCode; | 215 | nbbm2CompanyCodeMap = nbbm2CompanyCode; |
| 216 | + nbbmCompanyPlateMap =nbbmCompanyPlate; | ||
| 208 | } | 217 | } |
| 209 | 218 | ||
| 210 | /** | 219 | /** |
src/main/java/com/bsth/entity/oil/Dlb.java
| @@ -57,7 +57,8 @@ public class Dlb { | @@ -57,7 +57,8 @@ public class Dlb { | ||
| 57 | private int nylx; | 57 | private int nylx; |
| 58 | //进场顺序(根据最先出场和最后进场来关联车辆的存电量) | 58 | //进场顺序(根据最先出场和最后进场来关联车辆的存电量) |
| 59 | private int jcsx; | 59 | private int jcsx; |
| 60 | - | 60 | + @Transient |
| 61 | + private String name; | ||
| 61 | @Transient | 62 | @Transient |
| 62 | private String bglyh; | 63 | private String bglyh; |
| 63 | 64 | ||
| @@ -67,6 +68,9 @@ public class Dlb { | @@ -67,6 +68,9 @@ public class Dlb { | ||
| 67 | @Transient | 68 | @Transient |
| 68 | private String gsname; | 69 | private String gsname; |
| 69 | 70 | ||
| 71 | + @Transient | ||
| 72 | + private String fgsname; | ||
| 73 | + | ||
| 70 | 74 | ||
| 71 | 75 | ||
| 72 | 76 | ||
| @@ -354,6 +358,20 @@ public class Dlb { | @@ -354,6 +358,20 @@ public class Dlb { | ||
| 354 | public void setGsname(String gsname) { | 358 | public void setGsname(String gsname) { |
| 355 | this.gsname = gsname; | 359 | this.gsname = gsname; |
| 356 | } | 360 | } |
| 361 | + | ||
| 362 | + public String getName() { | ||
| 363 | + return BasicData.allPerson.get(this.ssgsdm+"-"+this.jsy); | ||
| 364 | + } | ||
| 365 | + | ||
| 366 | + public void setName(String name) { | ||
| 367 | + this.name = name; | ||
| 368 | + } | ||
| 357 | 369 | ||
| 358 | - | 370 | + public String getFgsname() { |
| 371 | + return BasicData.businessFgsCodeNameMap.get(this.fgsdm+"_"+this.ssgsdm); | ||
| 372 | + } | ||
| 373 | + | ||
| 374 | + public void setFgsname(String fgsname) { | ||
| 375 | + this.fgsname = fgsname; | ||
| 376 | + } | ||
| 359 | } | 377 | } |
src/main/java/com/bsth/entity/oil/Ylb.java
| @@ -313,7 +313,7 @@ public class Ylb { | @@ -313,7 +313,7 @@ public class Ylb { | ||
| 313 | } | 313 | } |
| 314 | 314 | ||
| 315 | public String getName() { | 315 | public String getName() { |
| 316 | - return BasicData.allPerson.get(this.jsy); | 316 | + return BasicData.allPerson.get(this.ssgsdm+"-"+this.jsy); |
| 317 | } | 317 | } |
| 318 | 318 | ||
| 319 | public void setName(String name) { | 319 | public void setName(String name) { |
src/main/java/com/bsth/entity/schedule/SchedulePlan.java
| @@ -2,6 +2,7 @@ package com.bsth.entity.schedule; | @@ -2,6 +2,7 @@ package com.bsth.entity.schedule; | ||
| 2 | 2 | ||
| 3 | import com.bsth.entity.Line; | 3 | import com.bsth.entity.Line; |
| 4 | import com.fasterxml.jackson.annotation.JsonIgnore; | 4 | import com.fasterxml.jackson.annotation.JsonIgnore; |
| 5 | +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
| 5 | import org.apache.commons.lang3.BooleanUtils; | 6 | import org.apache.commons.lang3.BooleanUtils; |
| 6 | 7 | ||
| 7 | import javax.persistence.*; | 8 | import javax.persistence.*; |
| @@ -21,6 +22,7 @@ import java.util.List; | @@ -21,6 +22,7 @@ import java.util.List; | ||
| 21 | @NamedAttributeNode("xl"), | 22 | @NamedAttributeNode("xl"), |
| 22 | }) | 23 | }) |
| 23 | }) | 24 | }) |
| 25 | +@JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"}) | ||
| 24 | public class SchedulePlan extends BEntity { | 26 | public class SchedulePlan extends BEntity { |
| 25 | 27 | ||
| 26 | /** 主键Id */ | 28 | /** 主键Id */ |
src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
| 1 | package com.bsth.entity.schedule; | 1 | package com.bsth.entity.schedule; |
| 2 | 2 | ||
| 3 | import com.bsth.entity.Line; | 3 | import com.bsth.entity.Line; |
| 4 | -import com.bsth.entity.sys.SysUser; | ||
| 5 | import com.bsth.service.schedule.rules.rerun.RerunRule_input; | 4 | import com.bsth.service.schedule.rules.rerun.RerunRule_input; |
| 6 | import com.bsth.service.schedule.rules.shiftloop.ScheduleResult_output; | 5 | import com.bsth.service.schedule.rules.shiftloop.ScheduleResult_output; |
| 7 | import org.apache.commons.lang3.StringUtils; | 6 | import org.apache.commons.lang3.StringUtils; |
| @@ -20,7 +19,7 @@ import java.util.List; | @@ -20,7 +19,7 @@ import java.util.List; | ||
| 20 | */ | 19 | */ |
| 21 | @Entity | 20 | @Entity |
| 22 | @Table(name = "bsth_c_s_sp_info") | 21 | @Table(name = "bsth_c_s_sp_info") |
| 23 | -public class SchedulePlanInfo { | 22 | +public class SchedulePlanInfo extends BEntity { |
| 24 | 23 | ||
| 25 | /** 主键Id */ | 24 | /** 主键Id */ |
| 26 | @Id | 25 | @Id |
| @@ -138,20 +137,6 @@ public class SchedulePlanInfo { | @@ -138,20 +137,6 @@ public class SchedulePlanInfo { | ||
| 138 | private String remark; | 137 | private String remark; |
| 139 | 138 | ||
| 140 | 139 | ||
| 141 | - /** 创建人 */ | ||
| 142 | - @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | ||
| 143 | - private SysUser createBy; | ||
| 144 | - /** 修改人 */ | ||
| 145 | - @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | ||
| 146 | - private SysUser updateBy; | ||
| 147 | - /** 创建日期 */ | ||
| 148 | - @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP") | ||
| 149 | - private Date createDate; | ||
| 150 | - /** 修改日期 */ | ||
| 151 | - @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") | ||
| 152 | - private Date updateDate; | ||
| 153 | - | ||
| 154 | - | ||
| 155 | // @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) | 140 | // @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY) |
| 156 | // @JoinTable( | 141 | // @JoinTable( |
| 157 | // name = "bsth_c_s_sp_r_info", | 142 | // name = "bsth_c_s_sp_r_info", |
| @@ -468,10 +453,10 @@ public class SchedulePlanInfo { | @@ -468,10 +453,10 @@ public class SchedulePlanInfo { | ||
| 468 | if (this.ttInfoName != null) ps.setString(34, this.ttInfoName); else ps.setNull(34, Types.VARCHAR); | 453 | if (this.ttInfoName != null) ps.setString(34, this.ttInfoName); else ps.setNull(34, Types.VARCHAR); |
| 469 | if (this.remark != null) ps.setString(35, this.remark); else ps.setNull(35, Types.VARCHAR); | 454 | if (this.remark != null) ps.setString(35, this.remark); else ps.setNull(35, Types.VARCHAR); |
| 470 | if (this.schedulePlan != null) ps.setLong(36, this.schedulePlan.getId()); else ps.setNull(36, Types.BIGINT); | 455 | if (this.schedulePlan != null) ps.setLong(36, this.schedulePlan.getId()); else ps.setNull(36, Types.BIGINT); |
| 471 | - if (this.createBy != null) ps.setInt(37, this.createBy.getId()); else ps.setNull(37, Types.INTEGER); | ||
| 472 | - if (this.updateBy != null) ps.setInt(38, this.updateBy.getId()); else ps.setNull(38, Types.INTEGER); | ||
| 473 | - if (this.createDate != null) ps.setTimestamp(39, new java.sql.Timestamp(this.createDate.getTime())); else ps.setNull(39, Types.TIMESTAMP); | ||
| 474 | - if (this.updateDate != null) ps.setTimestamp(40, new java.sql.Timestamp(this.updateDate.getTime())); else ps.setNull(40, Types.TIMESTAMP); | 456 | + if (this.getCreateBy() != null) ps.setInt(37, this.getCreateBy().getId()); else ps.setNull(37, Types.INTEGER); |
| 457 | + if (this.getUpdateBy() != null) ps.setInt(38, this.getUpdateBy().getId()); else ps.setNull(38, Types.INTEGER); | ||
| 458 | + if (this.getCreateDate() != null) ps.setTimestamp(39, new java.sql.Timestamp(this.getCreateDate().getTime())); else ps.setNull(39, Types.TIMESTAMP); | ||
| 459 | + if (this.getUpdateDate() != null) ps.setTimestamp(40, new java.sql.Timestamp(this.getUpdateDate().getTime())); else ps.setNull(40, Types.TIMESTAMP); | ||
| 475 | } | 460 | } |
| 476 | 461 | ||
| 477 | public Long getId() { | 462 | public Long getId() { |
| @@ -762,38 +747,6 @@ public class SchedulePlanInfo { | @@ -762,38 +747,6 @@ public class SchedulePlanInfo { | ||
| 762 | this.remark = remark; | 747 | this.remark = remark; |
| 763 | } | 748 | } |
| 764 | 749 | ||
| 765 | - public SysUser getCreateBy() { | ||
| 766 | - return createBy; | ||
| 767 | - } | ||
| 768 | - | ||
| 769 | - public void setCreateBy(SysUser createBy) { | ||
| 770 | - this.createBy = createBy; | ||
| 771 | - } | ||
| 772 | - | ||
| 773 | - public SysUser getUpdateBy() { | ||
| 774 | - return updateBy; | ||
| 775 | - } | ||
| 776 | - | ||
| 777 | - public void setUpdateBy(SysUser updateBy) { | ||
| 778 | - this.updateBy = updateBy; | ||
| 779 | - } | ||
| 780 | - | ||
| 781 | - public Date getCreateDate() { | ||
| 782 | - return createDate; | ||
| 783 | - } | ||
| 784 | - | ||
| 785 | - public void setCreateDate(Date createDate) { | ||
| 786 | - this.createDate = createDate; | ||
| 787 | - } | ||
| 788 | - | ||
| 789 | - public Date getUpdateDate() { | ||
| 790 | - return updateDate; | ||
| 791 | - } | ||
| 792 | - | ||
| 793 | - public void setUpdateDate(Date updateDate) { | ||
| 794 | - this.updateDate = updateDate; | ||
| 795 | - } | ||
| 796 | - | ||
| 797 | public SchedulePlan getSchedulePlan() { | 750 | public SchedulePlan getSchedulePlan() { |
| 798 | return schedulePlan; | 751 | return schedulePlan; |
| 799 | } | 752 | } |
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
| @@ -22,6 +22,9 @@ public interface ScheduleRealInfoRepository extends BaseRepository<ScheduleRealI | @@ -22,6 +22,9 @@ public interface ScheduleRealInfoRepository extends BaseRepository<ScheduleRealI | ||
| 22 | List<ScheduleRealInfo> findByLines(List<String> lines); | 22 | List<ScheduleRealInfo> findByLines(List<String> lines); |
| 23 | 23 | ||
| 24 | 24 | ||
| 25 | + @Query(value="select s from ScheduleRealInfo s where s.id = ?1 ") | ||
| 26 | + ScheduleRealInfo scheduleById(Long id); | ||
| 27 | + | ||
| 25 | @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 and bc_type not in ('in','out') order by (lpName+1),clZbh,realExecDate,dfsj") | 28 | @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 and bc_type not in ('in','out') order by (lpName+1),clZbh,realExecDate,dfsj") |
| 26 | List<ScheduleRealInfo> scheduleDailyQp(String line,String date); | 29 | List<ScheduleRealInfo> scheduleDailyQp(String line,String date); |
| 27 | 30 |
src/main/java/com/bsth/service/impl/TrafficManageServiceImpl.java
| @@ -311,7 +311,7 @@ public class TrafficManageServiceImpl implements TrafficManageService{ | @@ -311,7 +311,7 @@ public class TrafficManageServiceImpl implements TrafficManageService{ | ||
| 311 | Cars car = carsRepository.findOne(new CustomerSpecs<Cars>(map)); | 311 | Cars car = carsRepository.findOne(new CustomerSpecs<Cars>(map)); |
| 312 | // 获取线路是否使用标识,如果未使用,则不查该线路数据 | 312 | // 获取线路是否使用标识,如果未使用,则不查该线路数据 |
| 313 | line = lineRepository.findByLineCode(schRealInfo.get("xlBm")+""); | 313 | line = lineRepository.findByLineCode(schRealInfo.get("xlBm")+""); |
| 314 | - if(line.getInUse() == null || line.getInUse() == 0){ | 314 | + if(line == null || line.getInUse() == null || line.getInUse() == 0){ |
| 315 | continue; | 315 | continue; |
| 316 | } | 316 | } |
| 317 | sf.append("<DLD>"); | 317 | sf.append("<DLD>"); |
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
| @@ -802,37 +802,38 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -802,37 +802,38 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 802 | DecimalFormat format = new DecimalFormat("0.00"); | 802 | DecimalFormat format = new DecimalFormat("0.00"); |
| 803 | // int cjbc = scheduleRealInfoRepository.findCjbc(jName, clZbh, lpName); | 803 | // int cjbc = scheduleRealInfoRepository.findCjbc(jName, clZbh, lpName); |
| 804 | // int ljbc = scheduleRealInfoRepository.findLjbc(jName, clZbh, lpName); | 804 | // int ljbc = scheduleRealInfoRepository.findLjbc(jName, clZbh, lpName); |
| 805 | - | ||
| 806 | - Map<String, Object> map; | 805 | + //计算里程和班次数,并放入Map里 |
| 806 | + Map<String, Object> map = this.MapById(scheduleRealInfos.get(0).getId()); | ||
| 807 | +// map=new HashMap<String,Object>(); | ||
| 808 | + Map<String, Object> maps; | ||
| 807 | for (ScheduleRealInfo scheduleRealInfo : scheduleRealInfos) { | 809 | for (ScheduleRealInfo scheduleRealInfo : scheduleRealInfos) { |
| 808 | - map = new HashMap<String, Object>(); | 810 | + maps = new HashMap<String, Object>(); |
| 809 | try { | 811 | try { |
| 810 | scheduleRealInfo.setjName(scheduleRealInfo.getjGh() + scheduleRealInfo.getjName()); | 812 | scheduleRealInfo.setjName(scheduleRealInfo.getjGh() + scheduleRealInfo.getjName()); |
| 811 | scheduleRealInfo.setsName(scheduleRealInfo.getsGh() + scheduleRealInfo.getsName()); | 813 | scheduleRealInfo.setsName(scheduleRealInfo.getsGh() + scheduleRealInfo.getsName()); |
| 812 | - map = rru.getMapValue(scheduleRealInfo); | 814 | + maps = rru.getMapValue(scheduleRealInfo); |
| 813 | String zdsj = scheduleRealInfo.getZdsj(); | 815 | String zdsj = scheduleRealInfo.getZdsj(); |
| 814 | String zdsjActual = scheduleRealInfo.getZdsjActual(); | 816 | String zdsjActual = scheduleRealInfo.getZdsjActual(); |
| 815 | if (zdsj != null && zdsjActual != null && | 817 | if (zdsj != null && zdsjActual != null && |
| 816 | !zdsj.equals(zdsjActual)) { | 818 | !zdsj.equals(zdsjActual)) { |
| 817 | if (zdsj.compareTo(zdsjActual) > 0) { | 819 | if (zdsj.compareTo(zdsjActual) > 0) { |
| 818 | - map.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual)); | ||
| 819 | - map.put("slow", ""); | 820 | + maps.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual)); |
| 821 | + maps.put("slow", ""); | ||
| 820 | } else { | 822 | } else { |
| 821 | - map.put("fast", ""); | ||
| 822 | - map.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual)); | 823 | + maps.put("fast", ""); |
| 824 | + maps.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual)); | ||
| 823 | } | 825 | } |
| 824 | } else { | 826 | } else { |
| 825 | - map.put("fast", ""); | ||
| 826 | - map.put("slow", ""); | 827 | + maps.put("fast", ""); |
| 828 | + maps.put("slow", ""); | ||
| 827 | } | 829 | } |
| 828 | - listMap.add(map); | 830 | + listMap.add(maps); |
| 829 | } catch (Exception e) { | 831 | } catch (Exception e) { |
| 830 | e.printStackTrace(); | 832 | e.printStackTrace(); |
| 831 | } | 833 | } |
| 832 | } | 834 | } |
| 833 | 835 | ||
| 834 | - //计算里程和班次数,并放入Map里 | ||
| 835 | - map = new HashMap<String, Object>(); | 836 | + |
| 836 | map.put("jhlc",Arith.add(culateMieageService.culateJhgl(scheduleRealInfos),culateMieageService.culateJhJccgl(scheduleRealInfos))); | 837 | map.put("jhlc",Arith.add(culateMieageService.culateJhgl(scheduleRealInfos),culateMieageService.culateJhJccgl(scheduleRealInfos))); |
| 837 | map.put("remMileage",culateMieageService.culateLbgl(lists)); | 838 | map.put("remMileage",culateMieageService.culateLbgl(lists)); |
| 838 | map.put("addMileage", culateMieageService.culateLjgl(lists)); | 839 | map.put("addMileage", culateMieageService.culateLjgl(lists)); |
| @@ -850,7 +851,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -850,7 +851,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 850 | String path = this.getClass().getResource("/").getPath() + "static/pages/forms/"; | 851 | String path = this.getClass().getResource("/").getPath() + "static/pages/forms/"; |
| 851 | 852 | ||
| 852 | list.add(listMap.iterator()); | 853 | list.add(listMap.iterator()); |
| 853 | - ee.excelReplace(list, new Object[]{scheduleRealInfos.get(0), map}, path + "mould/waybill_minhang.xls", | 854 | + ee.excelReplace(list, new Object[]{scheduleRealInfos.get(0),map}, path + "mould/waybill_minhang.xls", |
| 854 | path + "export/" + date + "-" + jName + "-" + clZbh + "-" + lpName + "-行车路单.xls"); | 855 | path + "export/" + date + "-" + jName + "-" + clZbh + "-" + lpName + "-行车路单.xls"); |
| 855 | return scheduleRealInfos; | 856 | return scheduleRealInfos; |
| 856 | } | 857 | } |
| @@ -3768,7 +3769,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -3768,7 +3769,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 3768 | // TODO Auto-generated method stub | 3769 | // TODO Auto-generated method stub |
| 3769 | Map<String, Object> map = new HashMap<String, Object>(); | 3770 | Map<String, Object> map = new HashMap<String, Object>(); |
| 3770 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm"); | 3771 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm"); |
| 3771 | - ScheduleRealInfo s = scheduleRealInfoRepository.findOne(id); | 3772 | + ScheduleRealInfo s = scheduleRealInfoRepository.scheduleById(id); |
| 3772 | String xlbm = s.getXlBm(); | 3773 | String xlbm = s.getXlBm(); |
| 3773 | String fcrq = s.getScheduleDateStr(); | 3774 | String fcrq = s.getScheduleDateStr(); |
| 3774 | List<Ylxxb> listYlxxb = ylxxbRepository.queryListYlxxb(s.getClZbh(), fcrq); | 3775 | List<Ylxxb> listYlxxb = ylxxbRepository.queryListYlxxb(s.getClZbh(), fcrq); |
| @@ -3794,20 +3795,28 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -3794,20 +3795,28 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 3794 | map.put("jcyl", jcyl); | 3795 | map.put("jcyl", jcyl); |
| 3795 | map.put("xlName", s.getXlName()); | 3796 | map.put("xlName", s.getXlName()); |
| 3796 | map.put("clZbh", s.getClZbh()); | 3797 | map.put("clZbh", s.getClZbh()); |
| 3798 | + map.put("plate", BasicData.nbbmCompanyPlateMap.get(s.getClZbh())); | ||
| 3797 | map.put("fcsjActual", s.getFcsjActual()); | 3799 | map.put("fcsjActual", s.getFcsjActual()); |
| 3798 | map.put("zdzName", s.getZdzName()); | 3800 | map.put("zdzName", s.getZdzName()); |
| 3799 | map.put("scheduleDate", s.getScheduleDateStr()); | 3801 | map.put("scheduleDate", s.getScheduleDateStr()); |
| 3800 | map.put("lpName", s.getLpName()); | 3802 | map.put("lpName", s.getLpName()); |
| 3801 | String zdp = "", zwdp = "", wdp = ""; | 3803 | String zdp = "", zwdp = "", wdp = ""; |
| 3802 | String zdpT = "", zwdpT = "", wdpT = ""; | 3804 | String zdpT = "", zwdpT = "", wdpT = ""; |
| 3803 | - | 3805 | + String dbdp=""; |
| 3804 | List<DutyEmployee> list = dutyEmployeeService.getDutyEmployee(xlbm, fcrq + "00:01", fcrq + "23:59"); | 3806 | List<DutyEmployee> list = dutyEmployeeService.getDutyEmployee(xlbm, fcrq + "00:01", fcrq + "23:59"); |
| 3805 | try { | 3807 | try { |
| 3806 | Long fcsj1 = sdf.parse(fcrq + " 00:01").getTime(); | 3808 | Long fcsj1 = sdf.parse(fcrq + " 00:01").getTime(); |
| 3807 | Long fcsj2 = sdf.parse(fcrq + " 11:00").getTime(); | 3809 | Long fcsj2 = sdf.parse(fcrq + " 11:00").getTime(); |
| 3808 | Long fcsj3 = sdf.parse(fcrq + " 23:59").getTime(); | 3810 | Long fcsj3 = sdf.parse(fcrq + " 23:59").getTime(); |
| 3809 | for (int i = 0; i < list.size(); i++) { | 3811 | for (int i = 0; i < list.size(); i++) { |
| 3810 | - DutyEmployee t = list.get(i); | 3812 | + DutyEmployee t = list.get(i); |
| 3813 | + if(!(dbdp.indexOf(",")>0)){ | ||
| 3814 | + if(!(dbdp.length()>0)){ | ||
| 3815 | + dbdp =t.getuName(); | ||
| 3816 | + }else{ | ||
| 3817 | + dbdp +=","+t.getuName(); | ||
| 3818 | + } | ||
| 3819 | + } | ||
| 3811 | Long ts = t.getTs(); | 3820 | Long ts = t.getTs(); |
| 3812 | if (ts > fcsj1 && ts < fcsj2) { | 3821 | if (ts > fcsj1 && ts < fcsj2) { |
| 3813 | if (zdp.indexOf(t.getuName()) == -1) { | 3822 | if (zdp.indexOf(t.getuName()) == -1) { |
| @@ -3843,6 +3852,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -3843,6 +3852,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 3843 | map.put("zdpT", zdpT); | 3852 | map.put("zdpT", zdpT); |
| 3844 | map.put("zwdpT", zwdpT); | 3853 | map.put("zwdpT", zwdpT); |
| 3845 | map.put("wdpT", wdpT); | 3854 | map.put("wdpT", wdpT); |
| 3855 | + map.put("dbdp", dbdp); | ||
| 3846 | return map; | 3856 | return map; |
| 3847 | } | 3857 | } |
| 3848 | 3858 | ||
| @@ -4140,37 +4150,36 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -4140,37 +4150,36 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 4140 | DecimalFormat format = new DecimalFormat("0.00"); | 4150 | DecimalFormat format = new DecimalFormat("0.00"); |
| 4141 | // int cjbc = scheduleRealInfoRepository.findCjbc(jName, clZbh, lpName); | 4151 | // int cjbc = scheduleRealInfoRepository.findCjbc(jName, clZbh, lpName); |
| 4142 | // int ljbc = scheduleRealInfoRepository.findLjbc(jName, clZbh, lpName); | 4152 | // int ljbc = scheduleRealInfoRepository.findLjbc(jName, clZbh, lpName); |
| 4143 | - | ||
| 4144 | - Map<String, Object> map; | 4153 | + Map<String, Object> map = this.MapById(scheduleRealInfos.get(0).getId()); |
| 4154 | + Map<String, Object> maps; | ||
| 4145 | for (ScheduleRealInfo scheduleRealInfo : scheduleRealInfos) { | 4155 | for (ScheduleRealInfo scheduleRealInfo : scheduleRealInfos) { |
| 4146 | - map = new HashMap<String, Object>(); | 4156 | + maps = new HashMap<String, Object>(); |
| 4147 | try { | 4157 | try { |
| 4148 | scheduleRealInfo.setjName(scheduleRealInfo.getjGh() + scheduleRealInfo.getjName()); | 4158 | scheduleRealInfo.setjName(scheduleRealInfo.getjGh() + scheduleRealInfo.getjName()); |
| 4149 | scheduleRealInfo.setsName(scheduleRealInfo.getsGh() + scheduleRealInfo.getsName()); | 4159 | scheduleRealInfo.setsName(scheduleRealInfo.getsGh() + scheduleRealInfo.getsName()); |
| 4150 | - map = rru.getMapValue(scheduleRealInfo); | 4160 | + maps = rru.getMapValue(scheduleRealInfo); |
| 4151 | String zdsj = scheduleRealInfo.getZdsj(); | 4161 | String zdsj = scheduleRealInfo.getZdsj(); |
| 4152 | String zdsjActual = scheduleRealInfo.getZdsjActual(); | 4162 | String zdsjActual = scheduleRealInfo.getZdsjActual(); |
| 4153 | if (zdsj != null && zdsjActual != null && | 4163 | if (zdsj != null && zdsjActual != null && |
| 4154 | !zdsj.equals(zdsjActual)) { | 4164 | !zdsj.equals(zdsjActual)) { |
| 4155 | if (zdsj.compareTo(zdsjActual) > 0) { | 4165 | if (zdsj.compareTo(zdsjActual) > 0) { |
| 4156 | - map.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual)); | ||
| 4157 | - map.put("slow", ""); | 4166 | + maps.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual)); |
| 4167 | + maps.put("slow", ""); | ||
| 4158 | } else { | 4168 | } else { |
| 4159 | - map.put("fast", ""); | ||
| 4160 | - map.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual)); | 4169 | + maps.put("fast", ""); |
| 4170 | + maps.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual)); | ||
| 4161 | } | 4171 | } |
| 4162 | } else { | 4172 | } else { |
| 4163 | - map.put("fast", ""); | ||
| 4164 | - map.put("slow", ""); | 4173 | + maps.put("fast", ""); |
| 4174 | + maps.put("slow", ""); | ||
| 4165 | } | 4175 | } |
| 4166 | - listMap.add(map); | 4176 | + listMap.add(maps); |
| 4167 | } catch (Exception e) { | 4177 | } catch (Exception e) { |
| 4168 | e.printStackTrace(); | 4178 | e.printStackTrace(); |
| 4169 | } | 4179 | } |
| 4170 | } | 4180 | } |
| 4171 | 4181 | ||
| 4172 | //计算里程和班次数,并放入Map里 | 4182 | //计算里程和班次数,并放入Map里 |
| 4173 | - map = new HashMap<String, Object>(); | ||
| 4174 | map.put("jhlc", Arith.add(culateMieageService.culateJhgl(scheduleRealInfos),culateMieageService.culateJhJccgl(scheduleRealInfos))); | 4183 | map.put("jhlc", Arith.add(culateMieageService.culateJhgl(scheduleRealInfos),culateMieageService.culateJhJccgl(scheduleRealInfos))); |
| 4175 | map.put("remMileage",culateMieageService.culateLbgl(lists)); | 4184 | map.put("remMileage",culateMieageService.culateLbgl(lists)); |
| 4176 | map.put("addMileage", culateMieageService.culateLjgl(lists)); | 4185 | map.put("addMileage", culateMieageService.culateLjgl(lists)); |
| @@ -4188,7 +4197,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -4188,7 +4197,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 4188 | String path = this.getClass().getResource("/").getPath() + "static/pages/forms/"; | 4197 | String path = this.getClass().getResource("/").getPath() + "static/pages/forms/"; |
| 4189 | 4198 | ||
| 4190 | list.add(listMap.iterator()); | 4199 | list.add(listMap.iterator()); |
| 4191 | - ee.excelReplace(list, new Object[]{scheduleRealInfos.get(0), map}, path + "mould/waybill_minhang.xls", | 4200 | + ee.excelReplace(list, new Object[]{map}, path + "mould/waybill_minhang.xls", |
| 4192 | path + "export/" + date + "-" + jName + "-" + clZbh + "-" + lpName + "-行车路单.xls"); | 4201 | path + "export/" + date + "-" + jName + "-" + clZbh + "-" + lpName + "-行车路单.xls"); |
| 4193 | return scheduleRealInfos; | 4202 | return scheduleRealInfos; |
| 4194 | } | 4203 | } |
| @@ -4220,9 +4229,10 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | @@ -4220,9 +4229,10 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl<ScheduleRealInf | ||
| 4220 | String jName = list.get(0); | 4229 | String jName = list.get(0); |
| 4221 | String clZbh = list.get(1); | 4230 | String clZbh = list.get(1); |
| 4222 | String lpName = list.get(2); | 4231 | String lpName = list.get(2); |
| 4232 | + String jGh =list.get(3); | ||
| 4223 | for (int i = 0; i < lists_line.size(); i++) { | 4233 | for (int i = 0; i < lists_line.size(); i++) { |
| 4224 | ScheduleRealInfo s=lists_line.get(i); | 4234 | ScheduleRealInfo s=lists_line.get(i); |
| 4225 | - if(s.getjName().equals(jName) && s.getClZbh().equals(clZbh) && s.getLpName().equals(lpName)){ | 4235 | + if(s.getjGh().equals(jGh) && s.getClZbh().equals(clZbh) && s.getLpName().equals(lpName)){ |
| 4226 | newList.add(s); | 4236 | newList.add(s); |
| 4227 | } | 4237 | } |
| 4228 | } | 4238 | } |
src/main/java/com/bsth/service/schedule/SchedulePlanInfoService.java
| @@ -164,7 +164,7 @@ public interface SchedulePlanInfoService extends BService<SchedulePlanInfo, Long | @@ -164,7 +164,7 @@ public interface SchedulePlanInfoService extends BService<SchedulePlanInfo, Long | ||
| 164 | this.spyGhs.addAll(Arrays.asList(spyGhs_temp.split(","))); | 164 | this.spyGhs.addAll(Arrays.asList(spyGhs_temp.split(","))); |
| 165 | } | 165 | } |
| 166 | 166 | ||
| 167 | - this.updateDate = new Date(rs.getDate("updateDate").getTime()); | 167 | + this.updateDate = new Date(rs.getTimestamp("updateDate").getTime()); |
| 168 | this.updateByName = rs.getString("updateUserName"); | 168 | this.updateByName = rs.getString("updateUserName"); |
| 169 | this.ttInfoName = rs.getString("ttInfoName"); | 169 | this.ttInfoName = rs.getString("ttInfoName"); |
| 170 | 170 |
src/main/java/com/bsth/service/schedule/rules/rerun/RerunRule_param.java
| 1 | -package com.bsth.service.schedule.rules.rerun; | ||
| 2 | - | ||
| 3 | -import java.util.Set; | ||
| 4 | - | ||
| 5 | -/** | ||
| 6 | - * Created by xu on 17/4/27. | ||
| 7 | - */ | ||
| 8 | -public class RerunRule_param { | ||
| 9 | - /** 主线路id */ | ||
| 10 | - private String mxlid; | ||
| 11 | - | ||
| 12 | - /** 对应路牌的套跑线路 */ | ||
| 13 | - private Set<String> xlIds_dylp; | ||
| 14 | - | ||
| 15 | - // TODO: | ||
| 16 | - | ||
| 17 | - | ||
| 18 | - public Set<String> getXlIds_dylp() { | ||
| 19 | - return xlIds_dylp; | ||
| 20 | - } | ||
| 21 | - | ||
| 22 | - public void setXlIds_dylp(Set<String> xlIds_dylp) { | ||
| 23 | - this.xlIds_dylp = xlIds_dylp; | ||
| 24 | - } | ||
| 25 | - | ||
| 26 | - public String getMxlid() { | ||
| 27 | - return mxlid; | ||
| 28 | - } | ||
| 29 | - | ||
| 30 | - public void setMxlid(String mxlid) { | ||
| 31 | - this.mxlid = mxlid; | ||
| 32 | - } | ||
| 33 | -} | 1 | +package com.bsth.service.schedule.rules.rerun; |
| 2 | + | ||
| 3 | +import java.util.Set; | ||
| 4 | + | ||
| 5 | +/** | ||
| 6 | + * Created by xu on 17/4/27. | ||
| 7 | + */ | ||
| 8 | +public class RerunRule_param { | ||
| 9 | + /** 主线路id */ | ||
| 10 | + private String mxlid; | ||
| 11 | + | ||
| 12 | + /** 对应路牌的套跑线路 */ | ||
| 13 | + private Set<String> xlIds_dylp; | ||
| 14 | + | ||
| 15 | + // TODO: | ||
| 16 | + | ||
| 17 | + | ||
| 18 | + public Set<String> getXlIds_dylp() { | ||
| 19 | + return xlIds_dylp; | ||
| 20 | + } | ||
| 21 | + | ||
| 22 | + public void setXlIds_dylp(Set<String> xlIds_dylp) { | ||
| 23 | + this.xlIds_dylp = xlIds_dylp; | ||
| 24 | + } | ||
| 25 | + | ||
| 26 | + public String getMxlid() { | ||
| 27 | + return mxlid; | ||
| 28 | + } | ||
| 29 | + | ||
| 30 | + public void setMxlid(String mxlid) { | ||
| 31 | + this.mxlid = mxlid; | ||
| 32 | + } | ||
| 33 | +} |
src/main/resources/datatools/ktrs/carsConfigDataOutput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | -<transformation> | ||
| 3 | - <info> | ||
| 4 | - <name>车辆配置信息导出</name> | ||
| 5 | - <description/> | ||
| 6 | - <extended_description/> | ||
| 7 | - <trans_version/> | ||
| 8 | - <trans_type>Normal</trans_type> | ||
| 9 | - <trans_status>0</trans_status> | ||
| 10 | - <directory>/</directory> | ||
| 11 | - <parameters> | ||
| 12 | - <parameter> | ||
| 13 | - <name>filepath</name> | ||
| 14 | - <default_value/> | ||
| 15 | - <description>excel文件路径</description> | ||
| 16 | - </parameter> | ||
| 17 | - <parameter> | ||
| 18 | - <name>templatepath</name> | ||
| 19 | - <default_value/> | ||
| 20 | - <description>模版文件路径</description> | ||
| 21 | - </parameter> | ||
| 22 | - <parameter> | ||
| 23 | - <name>xlid</name> | ||
| 24 | - <default_value/> | ||
| 25 | - <description>线路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>2017/01/11 14:14:13.722</created_date> | ||
| 86 | - <modified_user>-</modified_user> | ||
| 87 | - <modified_date>2017/01/11 14:14:13.722</modified_date> | ||
| 88 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 89 | - <is_key_private>N</is_key_private> | ||
| 90 | - </info> | ||
| 91 | - <notepads> | ||
| 92 | - <notepad> | ||
| 93 | - <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | ||
| 94 | - <xloc>81</xloc> | ||
| 95 | - <yloc>172</yloc> | ||
| 96 | - <width>333</width> | ||
| 97 | - <heigth>90</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>${v_db_ip}</server> | ||
| 141 | - <type>MYSQL</type> | ||
| 142 | - <access>Native</access> | ||
| 143 | - <database>${v_db_dname}</database> | ||
| 144 | - <port>3306</port> | ||
| 145 | - <username>${v_db_uname}</username> | ||
| 146 | - <password>${v_db_pwd}</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_公司_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_本机</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(本机)</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>车辆配置(没有作废)</from><to>线路查询</to><enabled>Y</enabled> </hop> | ||
| 301 | - <hop> <from>线路查询</from><to>车辆查询</to><enabled>Y</enabled> </hop> | ||
| 302 | - <hop> <from>车辆查询</from><to>格式化日期</to><enabled>Y</enabled> </hop> | ||
| 303 | - <hop> <from>格式化日期</from><to>排序记录</to><enabled>Y</enabled> </hop> | ||
| 304 | - <hop> <from>排序记录</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 305 | - <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 306 | - </order> | ||
| 307 | - <step> | ||
| 308 | - <name>Excel输出</name> | ||
| 309 | - <type>ExcelOutput</type> | ||
| 310 | - <description/> | ||
| 311 | - <distribute>Y</distribute> | ||
| 312 | - <custom_distribution/> | ||
| 313 | - <copies>1</copies> | ||
| 314 | - <partitioning> | ||
| 315 | - <method>none</method> | ||
| 316 | - <schema_name/> | ||
| 317 | - </partitioning> | ||
| 318 | - <header>Y</header> | ||
| 319 | - <footer>N</footer> | ||
| 320 | - <encoding/> | ||
| 321 | - <append>N</append> | ||
| 322 | - <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 323 | - <file> | ||
| 324 | - <name>${filepath}</name> | ||
| 325 | - <extention>xls</extention> | ||
| 326 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 327 | - <create_parent_folder>N</create_parent_folder> | ||
| 328 | - <split>N</split> | ||
| 329 | - <add_date>N</add_date> | ||
| 330 | - <add_time>N</add_time> | ||
| 331 | - <SpecifyFormat>N</SpecifyFormat> | ||
| 332 | - <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 333 | - <sheetname>工作表1</sheetname> | ||
| 334 | - <autosizecolums>N</autosizecolums> | ||
| 335 | - <nullisblank>N</nullisblank> | ||
| 336 | - <protect_sheet>N</protect_sheet> | ||
| 337 | - <password>Encrypted </password> | ||
| 338 | - <splitevery>0</splitevery> | ||
| 339 | - <usetempfiles>N</usetempfiles> | ||
| 340 | - <tempdirectory/> | ||
| 341 | - </file> | ||
| 342 | - <template> | ||
| 343 | - <enabled>N</enabled> | ||
| 344 | - <append>N</append> | ||
| 345 | - <filename>template.xls</filename> | ||
| 346 | - </template> | ||
| 347 | - <fields> | ||
| 348 | - <field> | ||
| 349 | - <name>线路</name> | ||
| 350 | - <type>String</type> | ||
| 351 | - <format/> | ||
| 352 | - </field> | ||
| 353 | - <field> | ||
| 354 | - <name>内部编码</name> | ||
| 355 | - <type>String</type> | ||
| 356 | - <format/> | ||
| 357 | - </field> | ||
| 358 | - <field> | ||
| 359 | - <name>启用日期</name> | ||
| 360 | - <type>String</type> | ||
| 361 | - <format/> | ||
| 362 | - </field> | ||
| 363 | - <field> | ||
| 364 | - <name>终结日期</name> | ||
| 365 | - <type>String</type> | ||
| 366 | - <format/> | ||
| 367 | - </field> | ||
| 368 | - <field> | ||
| 369 | - <name>停车点</name> | ||
| 370 | - <type>String</type> | ||
| 371 | - <format/> | ||
| 372 | - </field> | ||
| 373 | - </fields> | ||
| 374 | - <custom> | ||
| 375 | - <header_font_name>arial</header_font_name> | ||
| 376 | - <header_font_size>10</header_font_size> | ||
| 377 | - <header_font_bold>N</header_font_bold> | ||
| 378 | - <header_font_italic>N</header_font_italic> | ||
| 379 | - <header_font_underline>no</header_font_underline> | ||
| 380 | - <header_font_orientation>horizontal</header_font_orientation> | ||
| 381 | - <header_font_color>black</header_font_color> | ||
| 382 | - <header_background_color>none</header_background_color> | ||
| 383 | - <header_row_height>255</header_row_height> | ||
| 384 | - <header_alignment>left</header_alignment> | ||
| 385 | - <header_image/> | ||
| 386 | - <row_font_name>arial</row_font_name> | ||
| 387 | - <row_font_size>10</row_font_size> | ||
| 388 | - <row_font_color>black</row_font_color> | ||
| 389 | - <row_background_color>none</row_background_color> | ||
| 390 | - </custom> | ||
| 391 | - <cluster_schema/> | ||
| 392 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 393 | - <xloc>596</xloc> | ||
| 394 | - <yloc>265</yloc> | ||
| 395 | - <draw>Y</draw> | ||
| 396 | - </GUI> | ||
| 397 | - </step> | ||
| 398 | - | ||
| 399 | - <step> | ||
| 400 | - <name>字段选择</name> | ||
| 401 | - <type>SelectValues</type> | ||
| 402 | - <description/> | ||
| 403 | - <distribute>Y</distribute> | ||
| 404 | - <custom_distribution/> | ||
| 405 | - <copies>1</copies> | ||
| 406 | - <partitioning> | ||
| 407 | - <method>none</method> | ||
| 408 | - <schema_name/> | ||
| 409 | - </partitioning> | ||
| 410 | - <fields> <field> <name>xlmc</name> | ||
| 411 | - <rename>线路</rename> | ||
| 412 | - <length>-2</length> | ||
| 413 | - <precision>-2</precision> | ||
| 414 | - </field> <field> <name>zbh</name> | ||
| 415 | - <rename>内部编码</rename> | ||
| 416 | - <length>-2</length> | ||
| 417 | - <precision>-2</precision> | ||
| 418 | - </field> <field> <name>qyrq</name> | ||
| 419 | - <rename>启用日期</rename> | ||
| 420 | - <length>-2</length> | ||
| 421 | - <precision>-2</precision> | ||
| 422 | - </field> <field> <name>zzrq</name> | ||
| 423 | - <rename>终结日期</rename> | ||
| 424 | - <length>-2</length> | ||
| 425 | - <precision>-2</precision> | ||
| 426 | - </field> <field> <name>tcd</name> | ||
| 427 | - <rename>停车点</rename> | ||
| 428 | - <length>-2</length> | ||
| 429 | - <precision>-2</precision> | ||
| 430 | - </field> <select_unspecified>N</select_unspecified> | ||
| 431 | - </fields> <cluster_schema/> | ||
| 432 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 433 | - <xloc>595</xloc> | ||
| 434 | - <yloc>167</yloc> | ||
| 435 | - <draw>Y</draw> | ||
| 436 | - </GUI> | ||
| 437 | - </step> | ||
| 438 | - | ||
| 439 | - <step> | ||
| 440 | - <name>排序记录</name> | ||
| 441 | - <type>SortRows</type> | ||
| 442 | - <description/> | ||
| 443 | - <distribute>Y</distribute> | ||
| 444 | - <custom_distribution/> | ||
| 445 | - <copies>1</copies> | ||
| 446 | - <partitioning> | ||
| 447 | - <method>none</method> | ||
| 448 | - <schema_name/> | ||
| 449 | - </partitioning> | ||
| 450 | - <directory>%%java.io.tmpdir%%</directory> | ||
| 451 | - <prefix>out</prefix> | ||
| 452 | - <sort_size>1000000</sort_size> | ||
| 453 | - <free_memory/> | ||
| 454 | - <compress>N</compress> | ||
| 455 | - <compress_variable/> | ||
| 456 | - <unique_rows>N</unique_rows> | ||
| 457 | - <fields> | ||
| 458 | - <field> | ||
| 459 | - <name>xlmc</name> | ||
| 460 | - <ascending>Y</ascending> | ||
| 461 | - <case_sensitive>N</case_sensitive> | ||
| 462 | - <presorted>N</presorted> | ||
| 463 | - </field> | ||
| 464 | - <field> | ||
| 465 | - <name>zbh</name> | ||
| 466 | - <ascending>Y</ascending> | ||
| 467 | - <case_sensitive>N</case_sensitive> | ||
| 468 | - <presorted>N</presorted> | ||
| 469 | - </field> | ||
| 470 | - <field> | ||
| 471 | - <name>qyrq</name> | ||
| 472 | - <ascending>Y</ascending> | ||
| 473 | - <case_sensitive>N</case_sensitive> | ||
| 474 | - <presorted>N</presorted> | ||
| 475 | - </field> | ||
| 476 | - </fields> | ||
| 477 | - <cluster_schema/> | ||
| 478 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 479 | - <xloc>592</xloc> | ||
| 480 | - <yloc>66</yloc> | ||
| 481 | - <draw>Y</draw> | ||
| 482 | - </GUI> | ||
| 483 | - </step> | ||
| 484 | - | ||
| 485 | - <step> | ||
| 486 | - <name>格式化日期</name> | ||
| 487 | - <type>SelectValues</type> | ||
| 488 | - <description/> | ||
| 489 | - <distribute>Y</distribute> | ||
| 490 | - <custom_distribution/> | ||
| 491 | - <copies>1</copies> | ||
| 492 | - <partitioning> | ||
| 493 | - <method>none</method> | ||
| 494 | - <schema_name/> | ||
| 495 | - </partitioning> | ||
| 496 | - <fields> <select_unspecified>N</select_unspecified> | ||
| 497 | - <meta> <name>qyrq</name> | ||
| 498 | - <rename>qyrq</rename> | ||
| 499 | - <type>String</type> | ||
| 500 | - <length>-2</length> | ||
| 501 | - <precision>-2</precision> | ||
| 502 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 503 | - <date_format_lenient>false</date_format_lenient> | ||
| 504 | - <date_format_locale/> | ||
| 505 | - <date_format_timezone/> | ||
| 506 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 507 | - <encoding/> | ||
| 508 | - <decimal_symbol/> | ||
| 509 | - <grouping_symbol/> | ||
| 510 | - <currency_symbol/> | ||
| 511 | - <storage_type/> | ||
| 512 | - </meta> <meta> <name>zzrq</name> | ||
| 513 | - <rename>zzrq</rename> | ||
| 514 | - <type>String</type> | ||
| 515 | - <length>-2</length> | ||
| 516 | - <precision>-2</precision> | ||
| 517 | - <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 518 | - <date_format_lenient>false</date_format_lenient> | ||
| 519 | - <date_format_locale/> | ||
| 520 | - <date_format_timezone/> | ||
| 521 | - <lenient_string_to_number>false</lenient_string_to_number> | ||
| 522 | - <encoding/> | ||
| 523 | - <decimal_symbol/> | ||
| 524 | - <grouping_symbol/> | ||
| 525 | - <currency_symbol/> | ||
| 526 | - <storage_type/> | ||
| 527 | - </meta> </fields> <cluster_schema/> | ||
| 528 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 529 | - <xloc>478</xloc> | ||
| 530 | - <yloc>66</yloc> | ||
| 531 | - <draw>Y</draw> | ||
| 532 | - </GUI> | ||
| 533 | - </step> | ||
| 534 | - | ||
| 535 | - <step> | ||
| 536 | - <name>线路查询</name> | ||
| 537 | - <type>DBLookup</type> | ||
| 538 | - <description/> | ||
| 539 | - <distribute>Y</distribute> | ||
| 540 | - <custom_distribution/> | ||
| 541 | - <copies>1</copies> | ||
| 542 | - <partitioning> | ||
| 543 | - <method>none</method> | ||
| 544 | - <schema_name/> | ||
| 545 | - </partitioning> | ||
| 546 | - <connection>bus_control_variable</connection> | ||
| 547 | - <cache>Y</cache> | ||
| 548 | - <cache_load_all>Y</cache_load_all> | ||
| 549 | - <cache_size>0</cache_size> | ||
| 550 | - <lookup> | ||
| 551 | - <schema/> | ||
| 552 | - <table>bsth_c_line</table> | ||
| 553 | - <orderby/> | ||
| 554 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 555 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 556 | - <key> | ||
| 557 | - <name>xl</name> | ||
| 558 | - <field>id</field> | ||
| 559 | - <condition>=</condition> | ||
| 560 | - <name2/> | ||
| 561 | - </key> | ||
| 562 | - <value> | ||
| 563 | - <name>name</name> | ||
| 564 | - <rename>xlmc</rename> | ||
| 565 | - <default/> | ||
| 566 | - <type>String</type> | ||
| 567 | - </value> | ||
| 568 | - </lookup> | ||
| 569 | - <cluster_schema/> | ||
| 570 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 571 | - <xloc>248</xloc> | ||
| 572 | - <yloc>67</yloc> | ||
| 573 | - <draw>Y</draw> | ||
| 574 | - </GUI> | ||
| 575 | - </step> | ||
| 576 | - | ||
| 577 | - <step> | ||
| 578 | - <name>车辆查询</name> | ||
| 579 | - <type>DBLookup</type> | ||
| 580 | - <description/> | ||
| 581 | - <distribute>Y</distribute> | ||
| 582 | - <custom_distribution/> | ||
| 583 | - <copies>1</copies> | ||
| 584 | - <partitioning> | ||
| 585 | - <method>none</method> | ||
| 586 | - <schema_name/> | ||
| 587 | - </partitioning> | ||
| 588 | - <connection>bus_control_variable</connection> | ||
| 589 | - <cache>N</cache> | ||
| 590 | - <cache_load_all>N</cache_load_all> | ||
| 591 | - <cache_size>0</cache_size> | ||
| 592 | - <lookup> | ||
| 593 | - <schema/> | ||
| 594 | - <table>bsth_c_cars</table> | ||
| 595 | - <orderby/> | ||
| 596 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 597 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 598 | - <key> | ||
| 599 | - <name>cl</name> | ||
| 600 | - <field>id</field> | ||
| 601 | - <condition>=</condition> | ||
| 602 | - <name2/> | ||
| 603 | - </key> | ||
| 604 | - <value> | ||
| 605 | - <name>inside_code</name> | ||
| 606 | - <rename>zbh</rename> | ||
| 607 | - <default/> | ||
| 608 | - <type>String</type> | ||
| 609 | - </value> | ||
| 610 | - </lookup> | ||
| 611 | - <cluster_schema/> | ||
| 612 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 613 | - <xloc>361</xloc> | ||
| 614 | - <yloc>67</yloc> | ||
| 615 | - <draw>Y</draw> | ||
| 616 | - </GUI> | ||
| 617 | - </step> | ||
| 618 | - | ||
| 619 | - <step> | ||
| 620 | - <name>车辆配置(没有作废)</name> | ||
| 621 | - <type>TableInput</type> | ||
| 622 | - <description/> | ||
| 623 | - <distribute>Y</distribute> | ||
| 624 | - <custom_distribution/> | ||
| 625 | - <copies>1</copies> | ||
| 626 | - <partitioning> | ||
| 627 | - <method>none</method> | ||
| 628 | - <schema_name/> | ||
| 629 | - </partitioning> | ||
| 630 | - <connection>bus_control_variable</connection> | ||
| 631 | - <sql>select * from bsth_c_s_ccinfo where is_cancel = 0 and xl = ${xlid}</sql> | ||
| 632 | - <limit>0</limit> | ||
| 633 | - <lookup/> | ||
| 634 | - <execute_each_row>N</execute_each_row> | ||
| 635 | - <variables_active>Y</variables_active> | ||
| 636 | - <lazy_conversion_active>N</lazy_conversion_active> | ||
| 637 | - <cluster_schema/> | ||
| 638 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 639 | - <xloc>106</xloc> | ||
| 640 | - <yloc>68</yloc> | ||
| 641 | - <draw>Y</draw> | ||
| 642 | - </GUI> | ||
| 643 | - </step> | ||
| 644 | - | ||
| 645 | - <step_error_handling> | ||
| 646 | - </step_error_handling> | ||
| 647 | - <slave-step-copy-partition-distribution> | ||
| 648 | -</slave-step-copy-partition-distribution> | ||
| 649 | - <slave_transformation>N</slave_transformation> | ||
| 650 | - | ||
| 651 | -</transformation> | 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<transformation> | ||
| 3 | + <info> | ||
| 4 | + <name>车辆配置信息导出</name> | ||
| 5 | + <description/> | ||
| 6 | + <extended_description/> | ||
| 7 | + <trans_version/> | ||
| 8 | + <trans_type>Normal</trans_type> | ||
| 9 | + <trans_status>0</trans_status> | ||
| 10 | + <directory>/</directory> | ||
| 11 | + <parameters> | ||
| 12 | + <parameter> | ||
| 13 | + <name>filepath</name> | ||
| 14 | + <default_value/> | ||
| 15 | + <description>excel文件路径</description> | ||
| 16 | + </parameter> | ||
| 17 | + <parameter> | ||
| 18 | + <name>templatepath</name> | ||
| 19 | + <default_value/> | ||
| 20 | + <description>模版文件路径</description> | ||
| 21 | + </parameter> | ||
| 22 | + <parameter> | ||
| 23 | + <name>xlid</name> | ||
| 24 | + <default_value/> | ||
| 25 | + <description>线路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>2017/01/11 14:14:13.722</created_date> | ||
| 86 | + <modified_user>-</modified_user> | ||
| 87 | + <modified_date>2017/01/11 14:14:13.722</modified_date> | ||
| 88 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 89 | + <is_key_private>N</is_key_private> | ||
| 90 | + </info> | ||
| 91 | + <notepads> | ||
| 92 | + <notepad> | ||
| 93 | + <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | ||
| 94 | + <xloc>81</xloc> | ||
| 95 | + <yloc>172</yloc> | ||
| 96 | + <width>333</width> | ||
| 97 | + <heigth>90</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>${v_db_ip}</server> | ||
| 141 | + <type>MYSQL</type> | ||
| 142 | + <access>Native</access> | ||
| 143 | + <database>${v_db_dname}</database> | ||
| 144 | + <port>3306</port> | ||
| 145 | + <username>${v_db_uname}</username> | ||
| 146 | + <password>${v_db_pwd}</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_公司_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_本机</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(本机)</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>车辆配置(没有作废)</from><to>线路查询</to><enabled>Y</enabled> </hop> | ||
| 301 | + <hop> <from>线路查询</from><to>车辆查询</to><enabled>Y</enabled> </hop> | ||
| 302 | + <hop> <from>车辆查询</from><to>格式化日期</to><enabled>Y</enabled> </hop> | ||
| 303 | + <hop> <from>格式化日期</from><to>排序记录</to><enabled>Y</enabled> </hop> | ||
| 304 | + <hop> <from>排序记录</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 305 | + <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 306 | + </order> | ||
| 307 | + <step> | ||
| 308 | + <name>Excel输出</name> | ||
| 309 | + <type>ExcelOutput</type> | ||
| 310 | + <description/> | ||
| 311 | + <distribute>Y</distribute> | ||
| 312 | + <custom_distribution/> | ||
| 313 | + <copies>1</copies> | ||
| 314 | + <partitioning> | ||
| 315 | + <method>none</method> | ||
| 316 | + <schema_name/> | ||
| 317 | + </partitioning> | ||
| 318 | + <header>Y</header> | ||
| 319 | + <footer>N</footer> | ||
| 320 | + <encoding/> | ||
| 321 | + <append>N</append> | ||
| 322 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 323 | + <file> | ||
| 324 | + <name>${filepath}</name> | ||
| 325 | + <extention>xls</extention> | ||
| 326 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 327 | + <create_parent_folder>N</create_parent_folder> | ||
| 328 | + <split>N</split> | ||
| 329 | + <add_date>N</add_date> | ||
| 330 | + <add_time>N</add_time> | ||
| 331 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 332 | + <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 333 | + <sheetname>工作表1</sheetname> | ||
| 334 | + <autosizecolums>N</autosizecolums> | ||
| 335 | + <nullisblank>N</nullisblank> | ||
| 336 | + <protect_sheet>N</protect_sheet> | ||
| 337 | + <password>Encrypted </password> | ||
| 338 | + <splitevery>0</splitevery> | ||
| 339 | + <usetempfiles>N</usetempfiles> | ||
| 340 | + <tempdirectory/> | ||
| 341 | + </file> | ||
| 342 | + <template> | ||
| 343 | + <enabled>N</enabled> | ||
| 344 | + <append>N</append> | ||
| 345 | + <filename>template.xls</filename> | ||
| 346 | + </template> | ||
| 347 | + <fields> | ||
| 348 | + <field> | ||
| 349 | + <name>线路</name> | ||
| 350 | + <type>String</type> | ||
| 351 | + <format/> | ||
| 352 | + </field> | ||
| 353 | + <field> | ||
| 354 | + <name>内部编码</name> | ||
| 355 | + <type>String</type> | ||
| 356 | + <format/> | ||
| 357 | + </field> | ||
| 358 | + <field> | ||
| 359 | + <name>启用日期</name> | ||
| 360 | + <type>String</type> | ||
| 361 | + <format/> | ||
| 362 | + </field> | ||
| 363 | + <field> | ||
| 364 | + <name>终结日期</name> | ||
| 365 | + <type>String</type> | ||
| 366 | + <format/> | ||
| 367 | + </field> | ||
| 368 | + <field> | ||
| 369 | + <name>停车点</name> | ||
| 370 | + <type>String</type> | ||
| 371 | + <format/> | ||
| 372 | + </field> | ||
| 373 | + </fields> | ||
| 374 | + <custom> | ||
| 375 | + <header_font_name>arial</header_font_name> | ||
| 376 | + <header_font_size>10</header_font_size> | ||
| 377 | + <header_font_bold>N</header_font_bold> | ||
| 378 | + <header_font_italic>N</header_font_italic> | ||
| 379 | + <header_font_underline>no</header_font_underline> | ||
| 380 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 381 | + <header_font_color>black</header_font_color> | ||
| 382 | + <header_background_color>none</header_background_color> | ||
| 383 | + <header_row_height>255</header_row_height> | ||
| 384 | + <header_alignment>left</header_alignment> | ||
| 385 | + <header_image/> | ||
| 386 | + <row_font_name>arial</row_font_name> | ||
| 387 | + <row_font_size>10</row_font_size> | ||
| 388 | + <row_font_color>black</row_font_color> | ||
| 389 | + <row_background_color>none</row_background_color> | ||
| 390 | + </custom> | ||
| 391 | + <cluster_schema/> | ||
| 392 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 393 | + <xloc>596</xloc> | ||
| 394 | + <yloc>265</yloc> | ||
| 395 | + <draw>Y</draw> | ||
| 396 | + </GUI> | ||
| 397 | + </step> | ||
| 398 | + | ||
| 399 | + <step> | ||
| 400 | + <name>字段选择</name> | ||
| 401 | + <type>SelectValues</type> | ||
| 402 | + <description/> | ||
| 403 | + <distribute>Y</distribute> | ||
| 404 | + <custom_distribution/> | ||
| 405 | + <copies>1</copies> | ||
| 406 | + <partitioning> | ||
| 407 | + <method>none</method> | ||
| 408 | + <schema_name/> | ||
| 409 | + </partitioning> | ||
| 410 | + <fields> <field> <name>xlmc</name> | ||
| 411 | + <rename>线路</rename> | ||
| 412 | + <length>-2</length> | ||
| 413 | + <precision>-2</precision> | ||
| 414 | + </field> <field> <name>zbh</name> | ||
| 415 | + <rename>内部编码</rename> | ||
| 416 | + <length>-2</length> | ||
| 417 | + <precision>-2</precision> | ||
| 418 | + </field> <field> <name>qyrq</name> | ||
| 419 | + <rename>启用日期</rename> | ||
| 420 | + <length>-2</length> | ||
| 421 | + <precision>-2</precision> | ||
| 422 | + </field> <field> <name>zzrq</name> | ||
| 423 | + <rename>终结日期</rename> | ||
| 424 | + <length>-2</length> | ||
| 425 | + <precision>-2</precision> | ||
| 426 | + </field> <field> <name>tcd</name> | ||
| 427 | + <rename>停车点</rename> | ||
| 428 | + <length>-2</length> | ||
| 429 | + <precision>-2</precision> | ||
| 430 | + </field> <select_unspecified>N</select_unspecified> | ||
| 431 | + </fields> <cluster_schema/> | ||
| 432 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 433 | + <xloc>595</xloc> | ||
| 434 | + <yloc>167</yloc> | ||
| 435 | + <draw>Y</draw> | ||
| 436 | + </GUI> | ||
| 437 | + </step> | ||
| 438 | + | ||
| 439 | + <step> | ||
| 440 | + <name>排序记录</name> | ||
| 441 | + <type>SortRows</type> | ||
| 442 | + <description/> | ||
| 443 | + <distribute>Y</distribute> | ||
| 444 | + <custom_distribution/> | ||
| 445 | + <copies>1</copies> | ||
| 446 | + <partitioning> | ||
| 447 | + <method>none</method> | ||
| 448 | + <schema_name/> | ||
| 449 | + </partitioning> | ||
| 450 | + <directory>%%java.io.tmpdir%%</directory> | ||
| 451 | + <prefix>out</prefix> | ||
| 452 | + <sort_size>1000000</sort_size> | ||
| 453 | + <free_memory/> | ||
| 454 | + <compress>N</compress> | ||
| 455 | + <compress_variable/> | ||
| 456 | + <unique_rows>N</unique_rows> | ||
| 457 | + <fields> | ||
| 458 | + <field> | ||
| 459 | + <name>xlmc</name> | ||
| 460 | + <ascending>Y</ascending> | ||
| 461 | + <case_sensitive>N</case_sensitive> | ||
| 462 | + <presorted>N</presorted> | ||
| 463 | + </field> | ||
| 464 | + <field> | ||
| 465 | + <name>zbh</name> | ||
| 466 | + <ascending>Y</ascending> | ||
| 467 | + <case_sensitive>N</case_sensitive> | ||
| 468 | + <presorted>N</presorted> | ||
| 469 | + </field> | ||
| 470 | + <field> | ||
| 471 | + <name>qyrq</name> | ||
| 472 | + <ascending>Y</ascending> | ||
| 473 | + <case_sensitive>N</case_sensitive> | ||
| 474 | + <presorted>N</presorted> | ||
| 475 | + </field> | ||
| 476 | + </fields> | ||
| 477 | + <cluster_schema/> | ||
| 478 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 479 | + <xloc>592</xloc> | ||
| 480 | + <yloc>66</yloc> | ||
| 481 | + <draw>Y</draw> | ||
| 482 | + </GUI> | ||
| 483 | + </step> | ||
| 484 | + | ||
| 485 | + <step> | ||
| 486 | + <name>格式化日期</name> | ||
| 487 | + <type>SelectValues</type> | ||
| 488 | + <description/> | ||
| 489 | + <distribute>Y</distribute> | ||
| 490 | + <custom_distribution/> | ||
| 491 | + <copies>1</copies> | ||
| 492 | + <partitioning> | ||
| 493 | + <method>none</method> | ||
| 494 | + <schema_name/> | ||
| 495 | + </partitioning> | ||
| 496 | + <fields> <select_unspecified>N</select_unspecified> | ||
| 497 | + <meta> <name>qyrq</name> | ||
| 498 | + <rename>qyrq</rename> | ||
| 499 | + <type>String</type> | ||
| 500 | + <length>-2</length> | ||
| 501 | + <precision>-2</precision> | ||
| 502 | + <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 503 | + <date_format_lenient>false</date_format_lenient> | ||
| 504 | + <date_format_locale/> | ||
| 505 | + <date_format_timezone/> | ||
| 506 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 507 | + <encoding/> | ||
| 508 | + <decimal_symbol/> | ||
| 509 | + <grouping_symbol/> | ||
| 510 | + <currency_symbol/> | ||
| 511 | + <storage_type/> | ||
| 512 | + </meta> <meta> <name>zzrq</name> | ||
| 513 | + <rename>zzrq</rename> | ||
| 514 | + <type>String</type> | ||
| 515 | + <length>-2</length> | ||
| 516 | + <precision>-2</precision> | ||
| 517 | + <conversion_mask>yyyy-MM-dd</conversion_mask> | ||
| 518 | + <date_format_lenient>false</date_format_lenient> | ||
| 519 | + <date_format_locale/> | ||
| 520 | + <date_format_timezone/> | ||
| 521 | + <lenient_string_to_number>false</lenient_string_to_number> | ||
| 522 | + <encoding/> | ||
| 523 | + <decimal_symbol/> | ||
| 524 | + <grouping_symbol/> | ||
| 525 | + <currency_symbol/> | ||
| 526 | + <storage_type/> | ||
| 527 | + </meta> </fields> <cluster_schema/> | ||
| 528 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 529 | + <xloc>478</xloc> | ||
| 530 | + <yloc>66</yloc> | ||
| 531 | + <draw>Y</draw> | ||
| 532 | + </GUI> | ||
| 533 | + </step> | ||
| 534 | + | ||
| 535 | + <step> | ||
| 536 | + <name>线路查询</name> | ||
| 537 | + <type>DBLookup</type> | ||
| 538 | + <description/> | ||
| 539 | + <distribute>Y</distribute> | ||
| 540 | + <custom_distribution/> | ||
| 541 | + <copies>1</copies> | ||
| 542 | + <partitioning> | ||
| 543 | + <method>none</method> | ||
| 544 | + <schema_name/> | ||
| 545 | + </partitioning> | ||
| 546 | + <connection>bus_control_variable</connection> | ||
| 547 | + <cache>Y</cache> | ||
| 548 | + <cache_load_all>Y</cache_load_all> | ||
| 549 | + <cache_size>0</cache_size> | ||
| 550 | + <lookup> | ||
| 551 | + <schema/> | ||
| 552 | + <table>bsth_c_line</table> | ||
| 553 | + <orderby/> | ||
| 554 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 555 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 556 | + <key> | ||
| 557 | + <name>xl</name> | ||
| 558 | + <field>id</field> | ||
| 559 | + <condition>=</condition> | ||
| 560 | + <name2/> | ||
| 561 | + </key> | ||
| 562 | + <value> | ||
| 563 | + <name>name</name> | ||
| 564 | + <rename>xlmc</rename> | ||
| 565 | + <default/> | ||
| 566 | + <type>String</type> | ||
| 567 | + </value> | ||
| 568 | + </lookup> | ||
| 569 | + <cluster_schema/> | ||
| 570 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 571 | + <xloc>248</xloc> | ||
| 572 | + <yloc>67</yloc> | ||
| 573 | + <draw>Y</draw> | ||
| 574 | + </GUI> | ||
| 575 | + </step> | ||
| 576 | + | ||
| 577 | + <step> | ||
| 578 | + <name>车辆查询</name> | ||
| 579 | + <type>DBLookup</type> | ||
| 580 | + <description/> | ||
| 581 | + <distribute>Y</distribute> | ||
| 582 | + <custom_distribution/> | ||
| 583 | + <copies>1</copies> | ||
| 584 | + <partitioning> | ||
| 585 | + <method>none</method> | ||
| 586 | + <schema_name/> | ||
| 587 | + </partitioning> | ||
| 588 | + <connection>bus_control_variable</connection> | ||
| 589 | + <cache>N</cache> | ||
| 590 | + <cache_load_all>N</cache_load_all> | ||
| 591 | + <cache_size>0</cache_size> | ||
| 592 | + <lookup> | ||
| 593 | + <schema/> | ||
| 594 | + <table>bsth_c_cars</table> | ||
| 595 | + <orderby/> | ||
| 596 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 597 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 598 | + <key> | ||
| 599 | + <name>cl</name> | ||
| 600 | + <field>id</field> | ||
| 601 | + <condition>=</condition> | ||
| 602 | + <name2/> | ||
| 603 | + </key> | ||
| 604 | + <value> | ||
| 605 | + <name>inside_code</name> | ||
| 606 | + <rename>zbh</rename> | ||
| 607 | + <default/> | ||
| 608 | + <type>String</type> | ||
| 609 | + </value> | ||
| 610 | + </lookup> | ||
| 611 | + <cluster_schema/> | ||
| 612 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 613 | + <xloc>361</xloc> | ||
| 614 | + <yloc>67</yloc> | ||
| 615 | + <draw>Y</draw> | ||
| 616 | + </GUI> | ||
| 617 | + </step> | ||
| 618 | + | ||
| 619 | + <step> | ||
| 620 | + <name>车辆配置(没有作废)</name> | ||
| 621 | + <type>TableInput</type> | ||
| 622 | + <description/> | ||
| 623 | + <distribute>Y</distribute> | ||
| 624 | + <custom_distribution/> | ||
| 625 | + <copies>1</copies> | ||
| 626 | + <partitioning> | ||
| 627 | + <method>none</method> | ||
| 628 | + <schema_name/> | ||
| 629 | + </partitioning> | ||
| 630 | + <connection>bus_control_variable</connection> | ||
| 631 | + <sql>select * from bsth_c_s_ccinfo where is_cancel = 0 and xl = ${xlid}</sql> | ||
| 632 | + <limit>0</limit> | ||
| 633 | + <lookup/> | ||
| 634 | + <execute_each_row>N</execute_each_row> | ||
| 635 | + <variables_active>Y</variables_active> | ||
| 636 | + <lazy_conversion_active>N</lazy_conversion_active> | ||
| 637 | + <cluster_schema/> | ||
| 638 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 639 | + <xloc>106</xloc> | ||
| 640 | + <yloc>68</yloc> | ||
| 641 | + <draw>Y</draw> | ||
| 642 | + </GUI> | ||
| 643 | + </step> | ||
| 644 | + | ||
| 645 | + <step_error_handling> | ||
| 646 | + </step_error_handling> | ||
| 647 | + <slave-step-copy-partition-distribution> | ||
| 648 | +</slave-step-copy-partition-distribution> | ||
| 649 | + <slave_transformation>N</slave_transformation> | ||
| 650 | + | ||
| 651 | +</transformation> |
src/main/resources/datatools/ktrs/carsDataOutput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | -<transformation> | ||
| 3 | - <info> | ||
| 4 | - <name>车辆信息导出</name> | ||
| 5 | - <description>车辆信息导出</description> | ||
| 6 | - <extended_description>车辆基础信息</extended_description> | ||
| 7 | - <trans_version/> | ||
| 8 | - <trans_type>Normal</trans_type> | ||
| 9 | - <trans_status>0</trans_status> | ||
| 10 | - <directory>/</directory> | ||
| 11 | - <parameters> | ||
| 12 | - <parameter> | ||
| 13 | - <name>filepath</name> | ||
| 14 | - <default_value/> | ||
| 15 | - <description>excel文件路径</description> | ||
| 16 | - </parameter> | ||
| 17 | - </parameters> | ||
| 18 | - <log> | ||
| 19 | -<trans-log-table><connection/> | ||
| 20 | -<schema/> | ||
| 21 | -<table/> | ||
| 22 | -<size_limit_lines/> | ||
| 23 | -<interval/> | ||
| 24 | -<timeout_days/> | ||
| 25 | -<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> | ||
| 26 | -<perf-log-table><connection/> | ||
| 27 | -<schema/> | ||
| 28 | -<table/> | ||
| 29 | -<interval/> | ||
| 30 | -<timeout_days/> | ||
| 31 | -<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> | ||
| 32 | -<channel-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>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> | ||
| 37 | -<step-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>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> | ||
| 42 | -<metrics-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>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> | ||
| 47 | - </log> | ||
| 48 | - <maxdate> | ||
| 49 | - <connection/> | ||
| 50 | - <table/> | ||
| 51 | - <field/> | ||
| 52 | - <offset>0.0</offset> | ||
| 53 | - <maxdiff>0.0</maxdiff> | ||
| 54 | - </maxdate> | ||
| 55 | - <size_rowset>10000</size_rowset> | ||
| 56 | - <sleep_time_empty>50</sleep_time_empty> | ||
| 57 | - <sleep_time_full>50</sleep_time_full> | ||
| 58 | - <unique_connections>N</unique_connections> | ||
| 59 | - <feedback_shown>Y</feedback_shown> | ||
| 60 | - <feedback_size>50000</feedback_size> | ||
| 61 | - <using_thread_priorities>Y</using_thread_priorities> | ||
| 62 | - <shared_objects_file/> | ||
| 63 | - <capture_step_performance>N</capture_step_performance> | ||
| 64 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 65 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 66 | - <dependencies> | ||
| 67 | - </dependencies> | ||
| 68 | - <partitionschemas> | ||
| 69 | - </partitionschemas> | ||
| 70 | - <slaveservers> | ||
| 71 | - </slaveservers> | ||
| 72 | - <clusterschemas> | ||
| 73 | - </clusterschemas> | ||
| 74 | - <created_user>-</created_user> | ||
| 75 | - <created_date>2016/08/05 16:42:22.753</created_date> | ||
| 76 | - <modified_user>-</modified_user> | ||
| 77 | - <modified_date>2016/08/05 16:42:22.753</modified_date> | ||
| 78 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 79 | - <is_key_private>N</is_key_private> | ||
| 80 | - </info> | ||
| 81 | - <notepads> | ||
| 82 | - </notepads> | ||
| 83 | - <connection> | ||
| 84 | - <name>192.168.168.1_jwgl_dw</name> | ||
| 85 | - <server>192.168.168.1</server> | ||
| 86 | - <type>ORACLE</type> | ||
| 87 | - <access>Native</access> | ||
| 88 | - <database>orcl</database> | ||
| 89 | - <port>1521</port> | ||
| 90 | - <username>jwgl_dw</username> | ||
| 91 | - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | ||
| 92 | - <servername/> | ||
| 93 | - <data_tablespace/> | ||
| 94 | - <index_tablespace/> | ||
| 95 | - <attributes> | ||
| 96 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 97 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 98 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 99 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 100 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 101 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 102 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 103 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 104 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 105 | - </attributes> | ||
| 106 | - </connection> | ||
| 107 | - <connection> | ||
| 108 | - <name>bus_control_variable</name> | ||
| 109 | - <server>${v_db_ip}</server> | ||
| 110 | - <type>MYSQL</type> | ||
| 111 | - <access>Native</access> | ||
| 112 | - <database>${v_db_dname}</database> | ||
| 113 | - <port>3306</port> | ||
| 114 | - <username>${v_db_uname}</username> | ||
| 115 | - <password>${v_db_pwd}</password> | ||
| 116 | - <servername/> | ||
| 117 | - <data_tablespace/> | ||
| 118 | - <index_tablespace/> | ||
| 119 | - <attributes> | ||
| 120 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 121 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 122 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 123 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 124 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 125 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 126 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 127 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 128 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 129 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 130 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 131 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 132 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 133 | - </attributes> | ||
| 134 | - </connection> | ||
| 135 | - <connection> | ||
| 136 | - <name>bus_control_公司_201</name> | ||
| 137 | - <server>localhost</server> | ||
| 138 | - <type>MYSQL</type> | ||
| 139 | - <access>Native</access> | ||
| 140 | - <database>control</database> | ||
| 141 | - <port>3306</port> | ||
| 142 | - <username>root</username> | ||
| 143 | - <password>Encrypted </password> | ||
| 144 | - <servername/> | ||
| 145 | - <data_tablespace/> | ||
| 146 | - <index_tablespace/> | ||
| 147 | - <attributes> | ||
| 148 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 149 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 150 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 151 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 152 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 153 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 154 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 155 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 156 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 157 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 158 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 159 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 160 | - </attributes> | ||
| 161 | - </connection> | ||
| 162 | - <connection> | ||
| 163 | - <name>bus_control_本机</name> | ||
| 164 | - <server>localhost</server> | ||
| 165 | - <type>MYSQL</type> | ||
| 166 | - <access>Native</access> | ||
| 167 | - <database>control</database> | ||
| 168 | - <port>3306</port> | ||
| 169 | - <username>root</username> | ||
| 170 | - <password>Encrypted </password> | ||
| 171 | - <servername/> | ||
| 172 | - <data_tablespace/> | ||
| 173 | - <index_tablespace/> | ||
| 174 | - <attributes> | ||
| 175 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 176 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 177 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 178 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 179 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 180 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 181 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 182 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 183 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 184 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 185 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 186 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 187 | - </attributes> | ||
| 188 | - </connection> | ||
| 189 | - <connection> | ||
| 190 | - <name>xlab_mysql_youle</name> | ||
| 191 | - <server>101.231.124.8</server> | ||
| 192 | - <type>MYSQL</type> | ||
| 193 | - <access>Native</access> | ||
| 194 | - <database>xlab_youle</database> | ||
| 195 | - <port>45687</port> | ||
| 196 | - <username>xlab-youle</username> | ||
| 197 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 198 | - <servername/> | ||
| 199 | - <data_tablespace/> | ||
| 200 | - <index_tablespace/> | ||
| 201 | - <attributes> | ||
| 202 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 203 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 204 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 205 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 206 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 207 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 208 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 209 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 210 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 211 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 212 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 213 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 214 | - </attributes> | ||
| 215 | - </connection> | ||
| 216 | - <connection> | ||
| 217 | - <name>xlab_mysql_youle(本机)</name> | ||
| 218 | - <server>localhost</server> | ||
| 219 | - <type>MYSQL</type> | ||
| 220 | - <access>Native</access> | ||
| 221 | - <database>xlab_youle</database> | ||
| 222 | - <port>3306</port> | ||
| 223 | - <username>root</username> | ||
| 224 | - <password>Encrypted </password> | ||
| 225 | - <servername/> | ||
| 226 | - <data_tablespace/> | ||
| 227 | - <index_tablespace/> | ||
| 228 | - <attributes> | ||
| 229 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 230 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 231 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 232 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 233 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 234 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 235 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 236 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 237 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 238 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 239 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 240 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 241 | - </attributes> | ||
| 242 | - </connection> | ||
| 243 | - <connection> | ||
| 244 | - <name>xlab_youle</name> | ||
| 245 | - <server/> | ||
| 246 | - <type>MYSQL</type> | ||
| 247 | - <access>JNDI</access> | ||
| 248 | - <database>xlab_youle</database> | ||
| 249 | - <port>1521</port> | ||
| 250 | - <username/> | ||
| 251 | - <password>Encrypted </password> | ||
| 252 | - <servername/> | ||
| 253 | - <data_tablespace/> | ||
| 254 | - <index_tablespace/> | ||
| 255 | - <attributes> | ||
| 256 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 257 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 258 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 259 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 260 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 261 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 262 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 263 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 264 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 265 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 266 | - </attributes> | ||
| 267 | - </connection> | ||
| 268 | - <order> | ||
| 269 | - <hop> <from>表输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 270 | - <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 271 | - </order> | ||
| 272 | - <step> | ||
| 273 | - <name>Excel输出</name> | ||
| 274 | - <type>ExcelOutput</type> | ||
| 275 | - <description/> | ||
| 276 | - <distribute>Y</distribute> | ||
| 277 | - <custom_distribution/> | ||
| 278 | - <copies>1</copies> | ||
| 279 | - <partitioning> | ||
| 280 | - <method>none</method> | ||
| 281 | - <schema_name/> | ||
| 282 | - </partitioning> | ||
| 283 | - <header>Y</header> | ||
| 284 | - <footer>N</footer> | ||
| 285 | - <encoding/> | ||
| 286 | - <append>N</append> | ||
| 287 | - <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 288 | - <file> | ||
| 289 | - <name>${filepath}</name> | ||
| 290 | - <extention>xls</extention> | ||
| 291 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 292 | - <create_parent_folder>N</create_parent_folder> | ||
| 293 | - <split>N</split> | ||
| 294 | - <add_date>N</add_date> | ||
| 295 | - <add_time>N</add_time> | ||
| 296 | - <SpecifyFormat>N</SpecifyFormat> | ||
| 297 | - <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 298 | - <sheetname>工作表1</sheetname> | ||
| 299 | - <autosizecolums>N</autosizecolums> | ||
| 300 | - <nullisblank>N</nullisblank> | ||
| 301 | - <protect_sheet>N</protect_sheet> | ||
| 302 | - <password>Encrypted </password> | ||
| 303 | - <splitevery>0</splitevery> | ||
| 304 | - <usetempfiles>N</usetempfiles> | ||
| 305 | - <tempdirectory/> | ||
| 306 | - </file> | ||
| 307 | - <template> | ||
| 308 | - <enabled>N</enabled> | ||
| 309 | - <append>N</append> | ||
| 310 | - <filename>template.xls</filename> | ||
| 311 | - </template> | ||
| 312 | - <fields> | ||
| 313 | - <field> | ||
| 314 | - <name>车牌号</name> | ||
| 315 | - <type>String</type> | ||
| 316 | - <format/> | ||
| 317 | - </field> | ||
| 318 | - <field> | ||
| 319 | - <name>车辆编码</name> | ||
| 320 | - <type>String</type> | ||
| 321 | - <format/> | ||
| 322 | - </field> | ||
| 323 | - <field> | ||
| 324 | - <name>内部编码</name> | ||
| 325 | - <type>String</type> | ||
| 326 | - <format/> | ||
| 327 | - </field> | ||
| 328 | - <field> | ||
| 329 | - <name>所属公司</name> | ||
| 330 | - <type>String</type> | ||
| 331 | - <format/> | ||
| 332 | - </field> | ||
| 333 | - <field> | ||
| 334 | - <name>所属公司代码</name> | ||
| 335 | - <type>String</type> | ||
| 336 | - <format/> | ||
| 337 | - </field> | ||
| 338 | - <field> | ||
| 339 | - <name>所属分公司</name> | ||
| 340 | - <type>String</type> | ||
| 341 | - <format/> | ||
| 342 | - </field> | ||
| 343 | - <field> | ||
| 344 | - <name>所属分公司代码</name> | ||
| 345 | - <type>String</type> | ||
| 346 | - <format/> | ||
| 347 | - </field> | ||
| 348 | - <field> | ||
| 349 | - <name>设备供应厂商</name> | ||
| 350 | - <type>String</type> | ||
| 351 | - <format/> | ||
| 352 | - </field> | ||
| 353 | - <field> | ||
| 354 | - <name>设备终端号</name> | ||
| 355 | - <type>String</type> | ||
| 356 | - <format/> | ||
| 357 | - </field> | ||
| 358 | - </fields> | ||
| 359 | - <custom> | ||
| 360 | - <header_font_name>arial</header_font_name> | ||
| 361 | - <header_font_size>10</header_font_size> | ||
| 362 | - <header_font_bold>N</header_font_bold> | ||
| 363 | - <header_font_italic>N</header_font_italic> | ||
| 364 | - <header_font_underline>no</header_font_underline> | ||
| 365 | - <header_font_orientation>horizontal</header_font_orientation> | ||
| 366 | - <header_font_color>black</header_font_color> | ||
| 367 | - <header_background_color>none</header_background_color> | ||
| 368 | - <header_row_height>255</header_row_height> | ||
| 369 | - <header_alignment>left</header_alignment> | ||
| 370 | - <header_image/> | ||
| 371 | - <row_font_name>arial</row_font_name> | ||
| 372 | - <row_font_size>10</row_font_size> | ||
| 373 | - <row_font_color>black</row_font_color> | ||
| 374 | - <row_background_color>none</row_background_color> | ||
| 375 | - </custom> | ||
| 376 | - <cluster_schema/> | ||
| 377 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 378 | - <xloc>282</xloc> | ||
| 379 | - <yloc>169</yloc> | ||
| 380 | - <draw>Y</draw> | ||
| 381 | - </GUI> | ||
| 382 | - </step> | ||
| 383 | - | ||
| 384 | - <step> | ||
| 385 | - <name>字段选择</name> | ||
| 386 | - <type>SelectValues</type> | ||
| 387 | - <description/> | ||
| 388 | - <distribute>Y</distribute> | ||
| 389 | - <custom_distribution/> | ||
| 390 | - <copies>1</copies> | ||
| 391 | - <partitioning> | ||
| 392 | - <method>none</method> | ||
| 393 | - <schema_name/> | ||
| 394 | - </partitioning> | ||
| 395 | - <fields> <field> <name>car_plate</name> | ||
| 396 | - <rename>车牌号</rename> | ||
| 397 | - <length>-2</length> | ||
| 398 | - <precision>-2</precision> | ||
| 399 | - </field> <field> <name>car_code</name> | ||
| 400 | - <rename>车辆编码</rename> | ||
| 401 | - <length>-2</length> | ||
| 402 | - <precision>-2</precision> | ||
| 403 | - </field> <field> <name>inside_code</name> | ||
| 404 | - <rename>内部编码</rename> | ||
| 405 | - <length>-2</length> | ||
| 406 | - <precision>-2</precision> | ||
| 407 | - </field> <field> <name>company</name> | ||
| 408 | - <rename>所属公司</rename> | ||
| 409 | - <length>-2</length> | ||
| 410 | - <precision>-2</precision> | ||
| 411 | - </field> <field> <name>business_code</name> | ||
| 412 | - <rename>所属公司代码</rename> | ||
| 413 | - <length>-2</length> | ||
| 414 | - <precision>-2</precision> | ||
| 415 | - </field> <field> <name>branche_company</name> | ||
| 416 | - <rename>所属分公司</rename> | ||
| 417 | - <length>-2</length> | ||
| 418 | - <precision>-2</precision> | ||
| 419 | - </field> <field> <name>branche_company_code</name> | ||
| 420 | - <rename>所属分公司代码</rename> | ||
| 421 | - <length>-2</length> | ||
| 422 | - <precision>-2</precision> | ||
| 423 | - </field> <field> <name>supplier_name</name> | ||
| 424 | - <rename>设备供应厂商</rename> | ||
| 425 | - <length>-2</length> | ||
| 426 | - <precision>-2</precision> | ||
| 427 | - </field> <field> <name>equipment_code</name> | ||
| 428 | - <rename>设备终端号</rename> | ||
| 429 | - <length>-2</length> | ||
| 430 | - <precision>-2</precision> | ||
| 431 | - </field> <select_unspecified>N</select_unspecified> | ||
| 432 | - </fields> <cluster_schema/> | ||
| 433 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 434 | - <xloc>280</xloc> | ||
| 435 | - <yloc>67</yloc> | ||
| 436 | - <draw>Y</draw> | ||
| 437 | - </GUI> | ||
| 438 | - </step> | ||
| 439 | - | ||
| 440 | - <step> | ||
| 441 | - <name>表输入</name> | ||
| 442 | - <type>TableInput</type> | ||
| 443 | - <description/> | ||
| 444 | - <distribute>Y</distribute> | ||
| 445 | - <custom_distribution/> | ||
| 446 | - <copies>1</copies> | ||
| 447 | - <partitioning> | ||
| 448 | - <method>none</method> | ||
| 449 | - <schema_name/> | ||
| 450 | - </partitioning> | ||
| 451 | - <connection>bus_control_variable</connection> | ||
| 452 | - <sql>SELECT * FROM bsth_c_cars;</sql> | ||
| 453 | - <limit>0</limit> | ||
| 454 | - <lookup/> | ||
| 455 | - <execute_each_row>N</execute_each_row> | ||
| 456 | - <variables_active>N</variables_active> | ||
| 457 | - <lazy_conversion_active>N</lazy_conversion_active> | ||
| 458 | - <cluster_schema/> | ||
| 459 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 460 | - <xloc>105</xloc> | ||
| 461 | - <yloc>67</yloc> | ||
| 462 | - <draw>Y</draw> | ||
| 463 | - </GUI> | ||
| 464 | - </step> | ||
| 465 | - | ||
| 466 | - <step_error_handling> | ||
| 467 | - </step_error_handling> | ||
| 468 | - <slave-step-copy-partition-distribution> | ||
| 469 | -</slave-step-copy-partition-distribution> | ||
| 470 | - <slave_transformation>N</slave_transformation> | ||
| 471 | - | ||
| 472 | -</transformation> | 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<transformation> | ||
| 3 | + <info> | ||
| 4 | + <name>车辆信息导出</name> | ||
| 5 | + <description>车辆信息导出</description> | ||
| 6 | + <extended_description>车辆基础信息</extended_description> | ||
| 7 | + <trans_version/> | ||
| 8 | + <trans_type>Normal</trans_type> | ||
| 9 | + <trans_status>0</trans_status> | ||
| 10 | + <directory>/</directory> | ||
| 11 | + <parameters> | ||
| 12 | + <parameter> | ||
| 13 | + <name>filepath</name> | ||
| 14 | + <default_value/> | ||
| 15 | + <description>excel文件路径</description> | ||
| 16 | + </parameter> | ||
| 17 | + </parameters> | ||
| 18 | + <log> | ||
| 19 | +<trans-log-table><connection/> | ||
| 20 | +<schema/> | ||
| 21 | +<table/> | ||
| 22 | +<size_limit_lines/> | ||
| 23 | +<interval/> | ||
| 24 | +<timeout_days/> | ||
| 25 | +<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> | ||
| 26 | +<perf-log-table><connection/> | ||
| 27 | +<schema/> | ||
| 28 | +<table/> | ||
| 29 | +<interval/> | ||
| 30 | +<timeout_days/> | ||
| 31 | +<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> | ||
| 32 | +<channel-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>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> | ||
| 37 | +<step-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>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> | ||
| 42 | +<metrics-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>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> | ||
| 47 | + </log> | ||
| 48 | + <maxdate> | ||
| 49 | + <connection/> | ||
| 50 | + <table/> | ||
| 51 | + <field/> | ||
| 52 | + <offset>0.0</offset> | ||
| 53 | + <maxdiff>0.0</maxdiff> | ||
| 54 | + </maxdate> | ||
| 55 | + <size_rowset>10000</size_rowset> | ||
| 56 | + <sleep_time_empty>50</sleep_time_empty> | ||
| 57 | + <sleep_time_full>50</sleep_time_full> | ||
| 58 | + <unique_connections>N</unique_connections> | ||
| 59 | + <feedback_shown>Y</feedback_shown> | ||
| 60 | + <feedback_size>50000</feedback_size> | ||
| 61 | + <using_thread_priorities>Y</using_thread_priorities> | ||
| 62 | + <shared_objects_file/> | ||
| 63 | + <capture_step_performance>N</capture_step_performance> | ||
| 64 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 65 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 66 | + <dependencies> | ||
| 67 | + </dependencies> | ||
| 68 | + <partitionschemas> | ||
| 69 | + </partitionschemas> | ||
| 70 | + <slaveservers> | ||
| 71 | + </slaveservers> | ||
| 72 | + <clusterschemas> | ||
| 73 | + </clusterschemas> | ||
| 74 | + <created_user>-</created_user> | ||
| 75 | + <created_date>2016/08/05 16:42:22.753</created_date> | ||
| 76 | + <modified_user>-</modified_user> | ||
| 77 | + <modified_date>2016/08/05 16:42:22.753</modified_date> | ||
| 78 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 79 | + <is_key_private>N</is_key_private> | ||
| 80 | + </info> | ||
| 81 | + <notepads> | ||
| 82 | + </notepads> | ||
| 83 | + <connection> | ||
| 84 | + <name>192.168.168.1_jwgl_dw</name> | ||
| 85 | + <server>192.168.168.1</server> | ||
| 86 | + <type>ORACLE</type> | ||
| 87 | + <access>Native</access> | ||
| 88 | + <database>orcl</database> | ||
| 89 | + <port>1521</port> | ||
| 90 | + <username>jwgl_dw</username> | ||
| 91 | + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | ||
| 92 | + <servername/> | ||
| 93 | + <data_tablespace/> | ||
| 94 | + <index_tablespace/> | ||
| 95 | + <attributes> | ||
| 96 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 97 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 98 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 99 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 100 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 101 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 102 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 103 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 104 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 105 | + </attributes> | ||
| 106 | + </connection> | ||
| 107 | + <connection> | ||
| 108 | + <name>bus_control_variable</name> | ||
| 109 | + <server>${v_db_ip}</server> | ||
| 110 | + <type>MYSQL</type> | ||
| 111 | + <access>Native</access> | ||
| 112 | + <database>${v_db_dname}</database> | ||
| 113 | + <port>3306</port> | ||
| 114 | + <username>${v_db_uname}</username> | ||
| 115 | + <password>${v_db_pwd}</password> | ||
| 116 | + <servername/> | ||
| 117 | + <data_tablespace/> | ||
| 118 | + <index_tablespace/> | ||
| 119 | + <attributes> | ||
| 120 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 121 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 122 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 123 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 124 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 125 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 126 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 127 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 128 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 129 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 130 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 131 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 132 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 133 | + </attributes> | ||
| 134 | + </connection> | ||
| 135 | + <connection> | ||
| 136 | + <name>bus_control_公司_201</name> | ||
| 137 | + <server>localhost</server> | ||
| 138 | + <type>MYSQL</type> | ||
| 139 | + <access>Native</access> | ||
| 140 | + <database>control</database> | ||
| 141 | + <port>3306</port> | ||
| 142 | + <username>root</username> | ||
| 143 | + <password>Encrypted </password> | ||
| 144 | + <servername/> | ||
| 145 | + <data_tablespace/> | ||
| 146 | + <index_tablespace/> | ||
| 147 | + <attributes> | ||
| 148 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 149 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 150 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 151 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 152 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 153 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 154 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 155 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 156 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 157 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 158 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 159 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 160 | + </attributes> | ||
| 161 | + </connection> | ||
| 162 | + <connection> | ||
| 163 | + <name>bus_control_本机</name> | ||
| 164 | + <server>localhost</server> | ||
| 165 | + <type>MYSQL</type> | ||
| 166 | + <access>Native</access> | ||
| 167 | + <database>control</database> | ||
| 168 | + <port>3306</port> | ||
| 169 | + <username>root</username> | ||
| 170 | + <password>Encrypted </password> | ||
| 171 | + <servername/> | ||
| 172 | + <data_tablespace/> | ||
| 173 | + <index_tablespace/> | ||
| 174 | + <attributes> | ||
| 175 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 176 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 177 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 178 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 179 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 180 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 181 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 182 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 183 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 184 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 185 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 186 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 187 | + </attributes> | ||
| 188 | + </connection> | ||
| 189 | + <connection> | ||
| 190 | + <name>xlab_mysql_youle</name> | ||
| 191 | + <server>101.231.124.8</server> | ||
| 192 | + <type>MYSQL</type> | ||
| 193 | + <access>Native</access> | ||
| 194 | + <database>xlab_youle</database> | ||
| 195 | + <port>45687</port> | ||
| 196 | + <username>xlab-youle</username> | ||
| 197 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 198 | + <servername/> | ||
| 199 | + <data_tablespace/> | ||
| 200 | + <index_tablespace/> | ||
| 201 | + <attributes> | ||
| 202 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 203 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 204 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 205 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 206 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 207 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 208 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 209 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 210 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 211 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 212 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 213 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 214 | + </attributes> | ||
| 215 | + </connection> | ||
| 216 | + <connection> | ||
| 217 | + <name>xlab_mysql_youle(本机)</name> | ||
| 218 | + <server>localhost</server> | ||
| 219 | + <type>MYSQL</type> | ||
| 220 | + <access>Native</access> | ||
| 221 | + <database>xlab_youle</database> | ||
| 222 | + <port>3306</port> | ||
| 223 | + <username>root</username> | ||
| 224 | + <password>Encrypted </password> | ||
| 225 | + <servername/> | ||
| 226 | + <data_tablespace/> | ||
| 227 | + <index_tablespace/> | ||
| 228 | + <attributes> | ||
| 229 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 230 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 231 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 232 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 233 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 234 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 235 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 236 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 237 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 238 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 239 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 240 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 241 | + </attributes> | ||
| 242 | + </connection> | ||
| 243 | + <connection> | ||
| 244 | + <name>xlab_youle</name> | ||
| 245 | + <server/> | ||
| 246 | + <type>MYSQL</type> | ||
| 247 | + <access>JNDI</access> | ||
| 248 | + <database>xlab_youle</database> | ||
| 249 | + <port>1521</port> | ||
| 250 | + <username/> | ||
| 251 | + <password>Encrypted </password> | ||
| 252 | + <servername/> | ||
| 253 | + <data_tablespace/> | ||
| 254 | + <index_tablespace/> | ||
| 255 | + <attributes> | ||
| 256 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 257 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 258 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 259 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 260 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 261 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 262 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 263 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 264 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 265 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 266 | + </attributes> | ||
| 267 | + </connection> | ||
| 268 | + <order> | ||
| 269 | + <hop> <from>表输入</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 270 | + <hop> <from>字段选择</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 271 | + </order> | ||
| 272 | + <step> | ||
| 273 | + <name>Excel输出</name> | ||
| 274 | + <type>ExcelOutput</type> | ||
| 275 | + <description/> | ||
| 276 | + <distribute>Y</distribute> | ||
| 277 | + <custom_distribution/> | ||
| 278 | + <copies>1</copies> | ||
| 279 | + <partitioning> | ||
| 280 | + <method>none</method> | ||
| 281 | + <schema_name/> | ||
| 282 | + </partitioning> | ||
| 283 | + <header>Y</header> | ||
| 284 | + <footer>N</footer> | ||
| 285 | + <encoding/> | ||
| 286 | + <append>N</append> | ||
| 287 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 288 | + <file> | ||
| 289 | + <name>${filepath}</name> | ||
| 290 | + <extention>xls</extention> | ||
| 291 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 292 | + <create_parent_folder>N</create_parent_folder> | ||
| 293 | + <split>N</split> | ||
| 294 | + <add_date>N</add_date> | ||
| 295 | + <add_time>N</add_time> | ||
| 296 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 297 | + <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 298 | + <sheetname>工作表1</sheetname> | ||
| 299 | + <autosizecolums>N</autosizecolums> | ||
| 300 | + <nullisblank>N</nullisblank> | ||
| 301 | + <protect_sheet>N</protect_sheet> | ||
| 302 | + <password>Encrypted </password> | ||
| 303 | + <splitevery>0</splitevery> | ||
| 304 | + <usetempfiles>N</usetempfiles> | ||
| 305 | + <tempdirectory/> | ||
| 306 | + </file> | ||
| 307 | + <template> | ||
| 308 | + <enabled>N</enabled> | ||
| 309 | + <append>N</append> | ||
| 310 | + <filename>template.xls</filename> | ||
| 311 | + </template> | ||
| 312 | + <fields> | ||
| 313 | + <field> | ||
| 314 | + <name>车牌号</name> | ||
| 315 | + <type>String</type> | ||
| 316 | + <format/> | ||
| 317 | + </field> | ||
| 318 | + <field> | ||
| 319 | + <name>车辆编码</name> | ||
| 320 | + <type>String</type> | ||
| 321 | + <format/> | ||
| 322 | + </field> | ||
| 323 | + <field> | ||
| 324 | + <name>内部编码</name> | ||
| 325 | + <type>String</type> | ||
| 326 | + <format/> | ||
| 327 | + </field> | ||
| 328 | + <field> | ||
| 329 | + <name>所属公司</name> | ||
| 330 | + <type>String</type> | ||
| 331 | + <format/> | ||
| 332 | + </field> | ||
| 333 | + <field> | ||
| 334 | + <name>所属公司代码</name> | ||
| 335 | + <type>String</type> | ||
| 336 | + <format/> | ||
| 337 | + </field> | ||
| 338 | + <field> | ||
| 339 | + <name>所属分公司</name> | ||
| 340 | + <type>String</type> | ||
| 341 | + <format/> | ||
| 342 | + </field> | ||
| 343 | + <field> | ||
| 344 | + <name>所属分公司代码</name> | ||
| 345 | + <type>String</type> | ||
| 346 | + <format/> | ||
| 347 | + </field> | ||
| 348 | + <field> | ||
| 349 | + <name>设备供应厂商</name> | ||
| 350 | + <type>String</type> | ||
| 351 | + <format/> | ||
| 352 | + </field> | ||
| 353 | + <field> | ||
| 354 | + <name>设备终端号</name> | ||
| 355 | + <type>String</type> | ||
| 356 | + <format/> | ||
| 357 | + </field> | ||
| 358 | + </fields> | ||
| 359 | + <custom> | ||
| 360 | + <header_font_name>arial</header_font_name> | ||
| 361 | + <header_font_size>10</header_font_size> | ||
| 362 | + <header_font_bold>N</header_font_bold> | ||
| 363 | + <header_font_italic>N</header_font_italic> | ||
| 364 | + <header_font_underline>no</header_font_underline> | ||
| 365 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 366 | + <header_font_color>black</header_font_color> | ||
| 367 | + <header_background_color>none</header_background_color> | ||
| 368 | + <header_row_height>255</header_row_height> | ||
| 369 | + <header_alignment>left</header_alignment> | ||
| 370 | + <header_image/> | ||
| 371 | + <row_font_name>arial</row_font_name> | ||
| 372 | + <row_font_size>10</row_font_size> | ||
| 373 | + <row_font_color>black</row_font_color> | ||
| 374 | + <row_background_color>none</row_background_color> | ||
| 375 | + </custom> | ||
| 376 | + <cluster_schema/> | ||
| 377 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 378 | + <xloc>282</xloc> | ||
| 379 | + <yloc>169</yloc> | ||
| 380 | + <draw>Y</draw> | ||
| 381 | + </GUI> | ||
| 382 | + </step> | ||
| 383 | + | ||
| 384 | + <step> | ||
| 385 | + <name>字段选择</name> | ||
| 386 | + <type>SelectValues</type> | ||
| 387 | + <description/> | ||
| 388 | + <distribute>Y</distribute> | ||
| 389 | + <custom_distribution/> | ||
| 390 | + <copies>1</copies> | ||
| 391 | + <partitioning> | ||
| 392 | + <method>none</method> | ||
| 393 | + <schema_name/> | ||
| 394 | + </partitioning> | ||
| 395 | + <fields> <field> <name>car_plate</name> | ||
| 396 | + <rename>车牌号</rename> | ||
| 397 | + <length>-2</length> | ||
| 398 | + <precision>-2</precision> | ||
| 399 | + </field> <field> <name>car_code</name> | ||
| 400 | + <rename>车辆编码</rename> | ||
| 401 | + <length>-2</length> | ||
| 402 | + <precision>-2</precision> | ||
| 403 | + </field> <field> <name>inside_code</name> | ||
| 404 | + <rename>内部编码</rename> | ||
| 405 | + <length>-2</length> | ||
| 406 | + <precision>-2</precision> | ||
| 407 | + </field> <field> <name>company</name> | ||
| 408 | + <rename>所属公司</rename> | ||
| 409 | + <length>-2</length> | ||
| 410 | + <precision>-2</precision> | ||
| 411 | + </field> <field> <name>business_code</name> | ||
| 412 | + <rename>所属公司代码</rename> | ||
| 413 | + <length>-2</length> | ||
| 414 | + <precision>-2</precision> | ||
| 415 | + </field> <field> <name>branche_company</name> | ||
| 416 | + <rename>所属分公司</rename> | ||
| 417 | + <length>-2</length> | ||
| 418 | + <precision>-2</precision> | ||
| 419 | + </field> <field> <name>branche_company_code</name> | ||
| 420 | + <rename>所属分公司代码</rename> | ||
| 421 | + <length>-2</length> | ||
| 422 | + <precision>-2</precision> | ||
| 423 | + </field> <field> <name>supplier_name</name> | ||
| 424 | + <rename>设备供应厂商</rename> | ||
| 425 | + <length>-2</length> | ||
| 426 | + <precision>-2</precision> | ||
| 427 | + </field> <field> <name>equipment_code</name> | ||
| 428 | + <rename>设备终端号</rename> | ||
| 429 | + <length>-2</length> | ||
| 430 | + <precision>-2</precision> | ||
| 431 | + </field> <select_unspecified>N</select_unspecified> | ||
| 432 | + </fields> <cluster_schema/> | ||
| 433 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 434 | + <xloc>280</xloc> | ||
| 435 | + <yloc>67</yloc> | ||
| 436 | + <draw>Y</draw> | ||
| 437 | + </GUI> | ||
| 438 | + </step> | ||
| 439 | + | ||
| 440 | + <step> | ||
| 441 | + <name>表输入</name> | ||
| 442 | + <type>TableInput</type> | ||
| 443 | + <description/> | ||
| 444 | + <distribute>Y</distribute> | ||
| 445 | + <custom_distribution/> | ||
| 446 | + <copies>1</copies> | ||
| 447 | + <partitioning> | ||
| 448 | + <method>none</method> | ||
| 449 | + <schema_name/> | ||
| 450 | + </partitioning> | ||
| 451 | + <connection>bus_control_variable</connection> | ||
| 452 | + <sql>SELECT * FROM bsth_c_cars;</sql> | ||
| 453 | + <limit>0</limit> | ||
| 454 | + <lookup/> | ||
| 455 | + <execute_each_row>N</execute_each_row> | ||
| 456 | + <variables_active>N</variables_active> | ||
| 457 | + <lazy_conversion_active>N</lazy_conversion_active> | ||
| 458 | + <cluster_schema/> | ||
| 459 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 460 | + <xloc>105</xloc> | ||
| 461 | + <yloc>67</yloc> | ||
| 462 | + <draw>Y</draw> | ||
| 463 | + </GUI> | ||
| 464 | + </step> | ||
| 465 | + | ||
| 466 | + <step_error_handling> | ||
| 467 | + </step_error_handling> | ||
| 468 | + <slave-step-copy-partition-distribution> | ||
| 469 | +</slave-step-copy-partition-distribution> | ||
| 470 | + <slave_transformation>N</slave_transformation> | ||
| 471 | + | ||
| 472 | +</transformation> |
src/main/resources/datatools/ktrs/employeesConfigDataOutput.ktr
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | -<transformation> | ||
| 3 | - <info> | ||
| 4 | - <name>人员配置信息导出</name> | ||
| 5 | - <description/> | ||
| 6 | - <extended_description/> | ||
| 7 | - <trans_version/> | ||
| 8 | - <trans_type>Normal</trans_type> | ||
| 9 | - <trans_status>0</trans_status> | ||
| 10 | - <directory>/</directory> | ||
| 11 | - <parameters> | ||
| 12 | - <parameter> | ||
| 13 | - <name>filepath</name> | ||
| 14 | - <default_value/> | ||
| 15 | - <description>excel文件路径</description> | ||
| 16 | - </parameter> | ||
| 17 | - <parameter> | ||
| 18 | - <name>xlid</name> | ||
| 19 | - <default_value/> | ||
| 20 | - <description>线路id</description> | ||
| 21 | - </parameter> | ||
| 22 | - </parameters> | ||
| 23 | - <log> | ||
| 24 | -<trans-log-table><connection/> | ||
| 25 | -<schema/> | ||
| 26 | -<table/> | ||
| 27 | -<size_limit_lines/> | ||
| 28 | -<interval/> | ||
| 29 | -<timeout_days/> | ||
| 30 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | ||
| 31 | -<perf-log-table><connection/> | ||
| 32 | -<schema/> | ||
| 33 | -<table/> | ||
| 34 | -<interval/> | ||
| 35 | -<timeout_days/> | ||
| 36 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | ||
| 37 | -<channel-log-table><connection/> | ||
| 38 | -<schema/> | ||
| 39 | -<table/> | ||
| 40 | -<timeout_days/> | ||
| 41 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | ||
| 42 | -<step-log-table><connection/> | ||
| 43 | -<schema/> | ||
| 44 | -<table/> | ||
| 45 | -<timeout_days/> | ||
| 46 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | ||
| 47 | -<metrics-log-table><connection/> | ||
| 48 | -<schema/> | ||
| 49 | -<table/> | ||
| 50 | -<timeout_days/> | ||
| 51 | -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | ||
| 52 | - </log> | ||
| 53 | - <maxdate> | ||
| 54 | - <connection/> | ||
| 55 | - <table/> | ||
| 56 | - <field/> | ||
| 57 | - <offset>0.0</offset> | ||
| 58 | - <maxdiff>0.0</maxdiff> | ||
| 59 | - </maxdate> | ||
| 60 | - <size_rowset>10000</size_rowset> | ||
| 61 | - <sleep_time_empty>50</sleep_time_empty> | ||
| 62 | - <sleep_time_full>50</sleep_time_full> | ||
| 63 | - <unique_connections>N</unique_connections> | ||
| 64 | - <feedback_shown>Y</feedback_shown> | ||
| 65 | - <feedback_size>50000</feedback_size> | ||
| 66 | - <using_thread_priorities>Y</using_thread_priorities> | ||
| 67 | - <shared_objects_file/> | ||
| 68 | - <capture_step_performance>N</capture_step_performance> | ||
| 69 | - <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 70 | - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 71 | - <dependencies> | ||
| 72 | - </dependencies> | ||
| 73 | - <partitionschemas> | ||
| 74 | - </partitionschemas> | ||
| 75 | - <slaveservers> | ||
| 76 | - </slaveservers> | ||
| 77 | - <clusterschemas> | ||
| 78 | - </clusterschemas> | ||
| 79 | - <created_user>-</created_user> | ||
| 80 | - <created_date>2017/01/11 15:36:10.101</created_date> | ||
| 81 | - <modified_user>-</modified_user> | ||
| 82 | - <modified_date>2017/01/11 15:36:10.101</modified_date> | ||
| 83 | - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 84 | - <is_key_private>N</is_key_private> | ||
| 85 | - </info> | ||
| 86 | - <notepads> | ||
| 87 | - <notepad> | ||
| 88 | - <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | ||
| 89 | - <xloc>66</xloc> | ||
| 90 | - <yloc>151</yloc> | ||
| 91 | - <width>333</width> | ||
| 92 | - <heigth>90</heigth> | ||
| 93 | - <fontname>YaHei Consolas Hybrid</fontname> | ||
| 94 | - <fontsize>12</fontsize> | ||
| 95 | - <fontbold>N</fontbold> | ||
| 96 | - <fontitalic>N</fontitalic> | ||
| 97 | - <fontcolorred>0</fontcolorred> | ||
| 98 | - <fontcolorgreen>0</fontcolorgreen> | ||
| 99 | - <fontcolorblue>0</fontcolorblue> | ||
| 100 | - <backgroundcolorred>255</backgroundcolorred> | ||
| 101 | - <backgroundcolorgreen>205</backgroundcolorgreen> | ||
| 102 | - <backgroundcolorblue>112</backgroundcolorblue> | ||
| 103 | - <bordercolorred>100</bordercolorred> | ||
| 104 | - <bordercolorgreen>100</bordercolorgreen> | ||
| 105 | - <bordercolorblue>100</bordercolorblue> | ||
| 106 | - <drawshadow>Y</drawshadow> | ||
| 107 | - </notepad> | ||
| 108 | - </notepads> | ||
| 109 | - <connection> | ||
| 110 | - <name>192.168.168.1_jwgl_dw</name> | ||
| 111 | - <server>192.168.168.1</server> | ||
| 112 | - <type>ORACLE</type> | ||
| 113 | - <access>Native</access> | ||
| 114 | - <database>orcl</database> | ||
| 115 | - <port>1521</port> | ||
| 116 | - <username>jwgl_dw</username> | ||
| 117 | - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | ||
| 118 | - <servername/> | ||
| 119 | - <data_tablespace/> | ||
| 120 | - <index_tablespace/> | ||
| 121 | - <attributes> | ||
| 122 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 123 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 124 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 125 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 126 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 127 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 128 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 129 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 130 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 131 | - </attributes> | ||
| 132 | - </connection> | ||
| 133 | - <connection> | ||
| 134 | - <name>bus_control_variable</name> | ||
| 135 | - <server>${v_db_ip}</server> | ||
| 136 | - <type>MYSQL</type> | ||
| 137 | - <access>Native</access> | ||
| 138 | - <database>${v_db_dname}</database> | ||
| 139 | - <port>3306</port> | ||
| 140 | - <username>${v_db_uname}</username> | ||
| 141 | - <password>${v_db_pwd}</password> | ||
| 142 | - <servername/> | ||
| 143 | - <data_tablespace/> | ||
| 144 | - <index_tablespace/> | ||
| 145 | - <attributes> | ||
| 146 | - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 147 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 148 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 149 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 150 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 151 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 152 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 153 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 154 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 155 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 156 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 157 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 158 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 159 | - </attributes> | ||
| 160 | - </connection> | ||
| 161 | - <connection> | ||
| 162 | - <name>bus_control_公司_201</name> | ||
| 163 | - <server>localhost</server> | ||
| 164 | - <type>MYSQL</type> | ||
| 165 | - <access>Native</access> | ||
| 166 | - <database>control</database> | ||
| 167 | - <port>3306</port> | ||
| 168 | - <username>root</username> | ||
| 169 | - <password>Encrypted </password> | ||
| 170 | - <servername/> | ||
| 171 | - <data_tablespace/> | ||
| 172 | - <index_tablespace/> | ||
| 173 | - <attributes> | ||
| 174 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 175 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 176 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 177 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 178 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 179 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 180 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 181 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 182 | - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 183 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 184 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 185 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 186 | - </attributes> | ||
| 187 | - </connection> | ||
| 188 | - <connection> | ||
| 189 | - <name>bus_control_本机</name> | ||
| 190 | - <server>localhost</server> | ||
| 191 | - <type>MYSQL</type> | ||
| 192 | - <access>Native</access> | ||
| 193 | - <database>control</database> | ||
| 194 | - <port>3306</port> | ||
| 195 | - <username>root</username> | ||
| 196 | - <password>Encrypted </password> | ||
| 197 | - <servername/> | ||
| 198 | - <data_tablespace/> | ||
| 199 | - <index_tablespace/> | ||
| 200 | - <attributes> | ||
| 201 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 202 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 203 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 204 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 205 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 206 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 207 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 208 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 209 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 210 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 211 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 212 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 213 | - </attributes> | ||
| 214 | - </connection> | ||
| 215 | - <connection> | ||
| 216 | - <name>xlab_mysql_youle</name> | ||
| 217 | - <server>101.231.124.8</server> | ||
| 218 | - <type>MYSQL</type> | ||
| 219 | - <access>Native</access> | ||
| 220 | - <database>xlab_youle</database> | ||
| 221 | - <port>45687</port> | ||
| 222 | - <username>xlab-youle</username> | ||
| 223 | - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 224 | - <servername/> | ||
| 225 | - <data_tablespace/> | ||
| 226 | - <index_tablespace/> | ||
| 227 | - <attributes> | ||
| 228 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 229 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 230 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 231 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 232 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 233 | - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 234 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 235 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 236 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 237 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 238 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 239 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 240 | - </attributes> | ||
| 241 | - </connection> | ||
| 242 | - <connection> | ||
| 243 | - <name>xlab_mysql_youle(本机)</name> | ||
| 244 | - <server>localhost</server> | ||
| 245 | - <type>MYSQL</type> | ||
| 246 | - <access>Native</access> | ||
| 247 | - <database>xlab_youle</database> | ||
| 248 | - <port>3306</port> | ||
| 249 | - <username>root</username> | ||
| 250 | - <password>Encrypted </password> | ||
| 251 | - <servername/> | ||
| 252 | - <data_tablespace/> | ||
| 253 | - <index_tablespace/> | ||
| 254 | - <attributes> | ||
| 255 | - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 256 | - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 257 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 258 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 259 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 260 | - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 261 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 262 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 263 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 264 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 265 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 266 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 267 | - </attributes> | ||
| 268 | - </connection> | ||
| 269 | - <connection> | ||
| 270 | - <name>xlab_youle</name> | ||
| 271 | - <server/> | ||
| 272 | - <type>MYSQL</type> | ||
| 273 | - <access>JNDI</access> | ||
| 274 | - <database>xlab_youle</database> | ||
| 275 | - <port>1521</port> | ||
| 276 | - <username/> | ||
| 277 | - <password>Encrypted </password> | ||
| 278 | - <servername/> | ||
| 279 | - <data_tablespace/> | ||
| 280 | - <index_tablespace/> | ||
| 281 | - <attributes> | ||
| 282 | - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 283 | - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 284 | - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 285 | - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 286 | - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 287 | - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 288 | - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 289 | - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 290 | - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 291 | - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 292 | - </attributes> | ||
| 293 | - </connection> | ||
| 294 | - <order> | ||
| 295 | - <hop> <from>人员配置(没有作废)</from><to>线路查询</to><enabled>Y</enabled> </hop> | ||
| 296 | - <hop> <from>线路查询</from><to>驾驶员查询</to><enabled>Y</enabled> </hop> | ||
| 297 | - <hop> <from>驾驶员查询</from><to>售票员查询</to><enabled>Y</enabled> </hop> | ||
| 298 | - <hop> <from>售票员查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 299 | - <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | ||
| 300 | - <hop> <from>排序记录</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 301 | - </order> | ||
| 302 | - <step> | ||
| 303 | - <name>Excel输出</name> | ||
| 304 | - <type>ExcelOutput</type> | ||
| 305 | - <description/> | ||
| 306 | - <distribute>Y</distribute> | ||
| 307 | - <custom_distribution/> | ||
| 308 | - <copies>1</copies> | ||
| 309 | - <partitioning> | ||
| 310 | - <method>none</method> | ||
| 311 | - <schema_name/> | ||
| 312 | - </partitioning> | ||
| 313 | - <header>Y</header> | ||
| 314 | - <footer>N</footer> | ||
| 315 | - <encoding/> | ||
| 316 | - <append>N</append> | ||
| 317 | - <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 318 | - <file> | ||
| 319 | - <name>${filepath}</name> | ||
| 320 | - <extention>xls</extention> | ||
| 321 | - <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 322 | - <create_parent_folder>N</create_parent_folder> | ||
| 323 | - <split>N</split> | ||
| 324 | - <add_date>N</add_date> | ||
| 325 | - <add_time>N</add_time> | ||
| 326 | - <SpecifyFormat>N</SpecifyFormat> | ||
| 327 | - <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 328 | - <sheetname>工作表1</sheetname> | ||
| 329 | - <autosizecolums>N</autosizecolums> | ||
| 330 | - <nullisblank>N</nullisblank> | ||
| 331 | - <protect_sheet>N</protect_sheet> | ||
| 332 | - <password>Encrypted </password> | ||
| 333 | - <splitevery>0</splitevery> | ||
| 334 | - <usetempfiles>N</usetempfiles> | ||
| 335 | - <tempdirectory/> | ||
| 336 | - </file> | ||
| 337 | - <template> | ||
| 338 | - <enabled>N</enabled> | ||
| 339 | - <append>N</append> | ||
| 340 | - <filename>template.xls</filename> | ||
| 341 | - </template> | ||
| 342 | - <fields> | ||
| 343 | - <field> | ||
| 344 | - <name>线路</name> | ||
| 345 | - <type>String</type> | ||
| 346 | - <format/> | ||
| 347 | - </field> | ||
| 348 | - <field> | ||
| 349 | - <name>搭班编码</name> | ||
| 350 | - <type>String</type> | ||
| 351 | - <format/> | ||
| 352 | - </field> | ||
| 353 | - <field> | ||
| 354 | - <name>驾驶员工号</name> | ||
| 355 | - <type>String</type> | ||
| 356 | - <format/> | ||
| 357 | - </field> | ||
| 358 | - <field> | ||
| 359 | - <name>驾驶员</name> | ||
| 360 | - <type>String</type> | ||
| 361 | - <format/> | ||
| 362 | - </field> | ||
| 363 | - <field> | ||
| 364 | - <name>售票员工号</name> | ||
| 365 | - <type>String</type> | ||
| 366 | - <format/> | ||
| 367 | - </field> | ||
| 368 | - <field> | ||
| 369 | - <name>售票员</name> | ||
| 370 | - <type>String</type> | ||
| 371 | - <format/> | ||
| 372 | - </field> | ||
| 373 | - </fields> | ||
| 374 | - <custom> | ||
| 375 | - <header_font_name>arial</header_font_name> | ||
| 376 | - <header_font_size>10</header_font_size> | ||
| 377 | - <header_font_bold>N</header_font_bold> | ||
| 378 | - <header_font_italic>N</header_font_italic> | ||
| 379 | - <header_font_underline>no</header_font_underline> | ||
| 380 | - <header_font_orientation>horizontal</header_font_orientation> | ||
| 381 | - <header_font_color>black</header_font_color> | ||
| 382 | - <header_background_color>none</header_background_color> | ||
| 383 | - <header_row_height>255</header_row_height> | ||
| 384 | - <header_alignment>left</header_alignment> | ||
| 385 | - <header_image/> | ||
| 386 | - <row_font_name>arial</row_font_name> | ||
| 387 | - <row_font_size>10</row_font_size> | ||
| 388 | - <row_font_color>black</row_font_color> | ||
| 389 | - <row_background_color>none</row_background_color> | ||
| 390 | - </custom> | ||
| 391 | - <cluster_schema/> | ||
| 392 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 393 | - <xloc>696</xloc> | ||
| 394 | - <yloc>257</yloc> | ||
| 395 | - <draw>Y</draw> | ||
| 396 | - </GUI> | ||
| 397 | - </step> | ||
| 398 | - | ||
| 399 | - <step> | ||
| 400 | - <name>人员配置(没有作废)</name> | ||
| 401 | - <type>TableInput</type> | ||
| 402 | - <description/> | ||
| 403 | - <distribute>Y</distribute> | ||
| 404 | - <custom_distribution/> | ||
| 405 | - <copies>1</copies> | ||
| 406 | - <partitioning> | ||
| 407 | - <method>none</method> | ||
| 408 | - <schema_name/> | ||
| 409 | - </partitioning> | ||
| 410 | - <connection>bus_control_variable</connection> | ||
| 411 | - <sql>select * from bsth_c_s_ecinfo where is_cancel = 0 and xl = ${xlid}</sql> | ||
| 412 | - <limit>0</limit> | ||
| 413 | - <lookup/> | ||
| 414 | - <execute_each_row>N</execute_each_row> | ||
| 415 | - <variables_active>Y</variables_active> | ||
| 416 | - <lazy_conversion_active>N</lazy_conversion_active> | ||
| 417 | - <cluster_schema/> | ||
| 418 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 419 | - <xloc>90</xloc> | ||
| 420 | - <yloc>59</yloc> | ||
| 421 | - <draw>Y</draw> | ||
| 422 | - </GUI> | ||
| 423 | - </step> | ||
| 424 | - | ||
| 425 | - <step> | ||
| 426 | - <name>售票员查询</name> | ||
| 427 | - <type>DBJoin</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 | - <connection>bus_control_variable</connection> | ||
| 437 | - <rowlimit>1</rowlimit> | ||
| 438 | - <sql>select job_code as scode, personnel_name as sname from bsth_c_personnel
where id = ?</sql> | ||
| 439 | - <outer_join>Y</outer_join> | ||
| 440 | - <replace_vars>N</replace_vars> | ||
| 441 | - <parameter> | ||
| 442 | - <field> | ||
| 443 | - <name>spy</name> | ||
| 444 | - <type>Integer</type> | ||
| 445 | - </field> | ||
| 446 | - </parameter> | ||
| 447 | - <cluster_schema/> | ||
| 448 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 449 | - <xloc>491</xloc> | ||
| 450 | - <yloc>60</yloc> | ||
| 451 | - <draw>Y</draw> | ||
| 452 | - </GUI> | ||
| 453 | - </step> | ||
| 454 | - | ||
| 455 | - <step> | ||
| 456 | - <name>字段选择</name> | ||
| 457 | - <type>SelectValues</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 | - <fields> <field> <name>xlmc</name> | ||
| 467 | - <rename>线路</rename> | ||
| 468 | - <length>-2</length> | ||
| 469 | - <precision>-2</precision> | ||
| 470 | - </field> <field> <name>dbbm</name> | ||
| 471 | - <rename>搭班编码</rename> | ||
| 472 | - <length>-2</length> | ||
| 473 | - <precision>-2</precision> | ||
| 474 | - </field> <field> <name>jcode</name> | ||
| 475 | - <rename>驾驶员工号</rename> | ||
| 476 | - <length>-2</length> | ||
| 477 | - <precision>-2</precision> | ||
| 478 | - </field> <field> <name>jname</name> | ||
| 479 | - <rename>驾驶员</rename> | ||
| 480 | - <length>-2</length> | ||
| 481 | - <precision>-2</precision> | ||
| 482 | - </field> <field> <name>scode</name> | ||
| 483 | - <rename>售票员工号</rename> | ||
| 484 | - <length>-2</length> | ||
| 485 | - <precision>-2</precision> | ||
| 486 | - </field> <field> <name>sname</name> | ||
| 487 | - <rename>售票员</rename> | ||
| 488 | - <length>-2</length> | ||
| 489 | - <precision>-2</precision> | ||
| 490 | - </field> <select_unspecified>N</select_unspecified> | ||
| 491 | - </fields> <cluster_schema/> | ||
| 492 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 493 | - <xloc>492</xloc> | ||
| 494 | - <yloc>164</yloc> | ||
| 495 | - <draw>Y</draw> | ||
| 496 | - </GUI> | ||
| 497 | - </step> | ||
| 498 | - | ||
| 499 | - <step> | ||
| 500 | - <name>排序记录</name> | ||
| 501 | - <type>SortRows</type> | ||
| 502 | - <description/> | ||
| 503 | - <distribute>Y</distribute> | ||
| 504 | - <custom_distribution/> | ||
| 505 | - <copies>1</copies> | ||
| 506 | - <partitioning> | ||
| 507 | - <method>none</method> | ||
| 508 | - <schema_name/> | ||
| 509 | - </partitioning> | ||
| 510 | - <directory>%%java.io.tmpdir%%</directory> | ||
| 511 | - <prefix>out</prefix> | ||
| 512 | - <sort_size>1000000</sort_size> | ||
| 513 | - <free_memory/> | ||
| 514 | - <compress>N</compress> | ||
| 515 | - <compress_variable/> | ||
| 516 | - <unique_rows>N</unique_rows> | ||
| 517 | - <fields> | ||
| 518 | - <field> | ||
| 519 | - <name>线路</name> | ||
| 520 | - <ascending>Y</ascending> | ||
| 521 | - <case_sensitive>N</case_sensitive> | ||
| 522 | - <presorted>N</presorted> | ||
| 523 | - </field> | ||
| 524 | - <field> | ||
| 525 | - <name>搭班编码</name> | ||
| 526 | - <ascending>Y</ascending> | ||
| 527 | - <case_sensitive>N</case_sensitive> | ||
| 528 | - <presorted>N</presorted> | ||
| 529 | - </field> | ||
| 530 | - </fields> | ||
| 531 | - <cluster_schema/> | ||
| 532 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 533 | - <xloc>692</xloc> | ||
| 534 | - <yloc>164</yloc> | ||
| 535 | - <draw>Y</draw> | ||
| 536 | - </GUI> | ||
| 537 | - </step> | ||
| 538 | - | ||
| 539 | - <step> | ||
| 540 | - <name>线路查询</name> | ||
| 541 | - <type>DBLookup</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 | - <connection>bus_control_variable</connection> | ||
| 551 | - <cache>Y</cache> | ||
| 552 | - <cache_load_all>Y</cache_load_all> | ||
| 553 | - <cache_size>0</cache_size> | ||
| 554 | - <lookup> | ||
| 555 | - <schema/> | ||
| 556 | - <table>bsth_c_line</table> | ||
| 557 | - <orderby/> | ||
| 558 | - <fail_on_multiple>N</fail_on_multiple> | ||
| 559 | - <eat_row_on_failure>N</eat_row_on_failure> | ||
| 560 | - <key> | ||
| 561 | - <name>xl</name> | ||
| 562 | - <field>id</field> | ||
| 563 | - <condition>=</condition> | ||
| 564 | - <name2/> | ||
| 565 | - </key> | ||
| 566 | - <value> | ||
| 567 | - <name>name</name> | ||
| 568 | - <rename>xlmc</rename> | ||
| 569 | - <default/> | ||
| 570 | - <type>String</type> | ||
| 571 | - </value> | ||
| 572 | - </lookup> | ||
| 573 | - <cluster_schema/> | ||
| 574 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 575 | - <xloc>227</xloc> | ||
| 576 | - <yloc>59</yloc> | ||
| 577 | - <draw>Y</draw> | ||
| 578 | - </GUI> | ||
| 579 | - </step> | ||
| 580 | - | ||
| 581 | - <step> | ||
| 582 | - <name>驾驶员查询</name> | ||
| 583 | - <type>DBJoin</type> | ||
| 584 | - <description/> | ||
| 585 | - <distribute>Y</distribute> | ||
| 586 | - <custom_distribution/> | ||
| 587 | - <copies>1</copies> | ||
| 588 | - <partitioning> | ||
| 589 | - <method>none</method> | ||
| 590 | - <schema_name/> | ||
| 591 | - </partitioning> | ||
| 592 | - <connection>bus_control_variable</connection> | ||
| 593 | - <rowlimit>1</rowlimit> | ||
| 594 | - <sql>select job_code as jcode, personnel_name as jname from bsth_c_personnel
where id = ?</sql> | ||
| 595 | - <outer_join>Y</outer_join> | ||
| 596 | - <replace_vars>N</replace_vars> | ||
| 597 | - <parameter> | ||
| 598 | - <field> | ||
| 599 | - <name>jsy</name> | ||
| 600 | - <type>Integer</type> | ||
| 601 | - </field> | ||
| 602 | - </parameter> | ||
| 603 | - <cluster_schema/> | ||
| 604 | - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 605 | - <xloc>366</xloc> | ||
| 606 | - <yloc>60</yloc> | ||
| 607 | - <draw>Y</draw> | ||
| 608 | - </GUI> | ||
| 609 | - </step> | ||
| 610 | - | ||
| 611 | - <step_error_handling> | ||
| 612 | - </step_error_handling> | ||
| 613 | - <slave-step-copy-partition-distribution> | ||
| 614 | -</slave-step-copy-partition-distribution> | ||
| 615 | - <slave_transformation>N</slave_transformation> | ||
| 616 | - | ||
| 617 | -</transformation> | 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<transformation> | ||
| 3 | + <info> | ||
| 4 | + <name>人员配置信息导出</name> | ||
| 5 | + <description/> | ||
| 6 | + <extended_description/> | ||
| 7 | + <trans_version/> | ||
| 8 | + <trans_type>Normal</trans_type> | ||
| 9 | + <trans_status>0</trans_status> | ||
| 10 | + <directory>/</directory> | ||
| 11 | + <parameters> | ||
| 12 | + <parameter> | ||
| 13 | + <name>filepath</name> | ||
| 14 | + <default_value/> | ||
| 15 | + <description>excel文件路径</description> | ||
| 16 | + </parameter> | ||
| 17 | + <parameter> | ||
| 18 | + <name>xlid</name> | ||
| 19 | + <default_value/> | ||
| 20 | + <description>线路id</description> | ||
| 21 | + </parameter> | ||
| 22 | + </parameters> | ||
| 23 | + <log> | ||
| 24 | +<trans-log-table><connection/> | ||
| 25 | +<schema/> | ||
| 26 | +<table/> | ||
| 27 | +<size_limit_lines/> | ||
| 28 | +<interval/> | ||
| 29 | +<timeout_days/> | ||
| 30 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table> | ||
| 31 | +<perf-log-table><connection/> | ||
| 32 | +<schema/> | ||
| 33 | +<table/> | ||
| 34 | +<interval/> | ||
| 35 | +<timeout_days/> | ||
| 36 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table> | ||
| 37 | +<channel-log-table><connection/> | ||
| 38 | +<schema/> | ||
| 39 | +<table/> | ||
| 40 | +<timeout_days/> | ||
| 41 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table> | ||
| 42 | +<step-log-table><connection/> | ||
| 43 | +<schema/> | ||
| 44 | +<table/> | ||
| 45 | +<timeout_days/> | ||
| 46 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table> | ||
| 47 | +<metrics-log-table><connection/> | ||
| 48 | +<schema/> | ||
| 49 | +<table/> | ||
| 50 | +<timeout_days/> | ||
| 51 | +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table> | ||
| 52 | + </log> | ||
| 53 | + <maxdate> | ||
| 54 | + <connection/> | ||
| 55 | + <table/> | ||
| 56 | + <field/> | ||
| 57 | + <offset>0.0</offset> | ||
| 58 | + <maxdiff>0.0</maxdiff> | ||
| 59 | + </maxdate> | ||
| 60 | + <size_rowset>10000</size_rowset> | ||
| 61 | + <sleep_time_empty>50</sleep_time_empty> | ||
| 62 | + <sleep_time_full>50</sleep_time_full> | ||
| 63 | + <unique_connections>N</unique_connections> | ||
| 64 | + <feedback_shown>Y</feedback_shown> | ||
| 65 | + <feedback_size>50000</feedback_size> | ||
| 66 | + <using_thread_priorities>Y</using_thread_priorities> | ||
| 67 | + <shared_objects_file/> | ||
| 68 | + <capture_step_performance>N</capture_step_performance> | ||
| 69 | + <step_performance_capturing_delay>1000</step_performance_capturing_delay> | ||
| 70 | + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit> | ||
| 71 | + <dependencies> | ||
| 72 | + </dependencies> | ||
| 73 | + <partitionschemas> | ||
| 74 | + </partitionschemas> | ||
| 75 | + <slaveservers> | ||
| 76 | + </slaveservers> | ||
| 77 | + <clusterschemas> | ||
| 78 | + </clusterschemas> | ||
| 79 | + <created_user>-</created_user> | ||
| 80 | + <created_date>2017/01/11 15:36:10.101</created_date> | ||
| 81 | + <modified_user>-</modified_user> | ||
| 82 | + <modified_date>2017/01/11 15:36:10.101</modified_date> | ||
| 83 | + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key> | ||
| 84 | + <is_key_private>N</is_key_private> | ||
| 85 | + </info> | ||
| 86 | + <notepads> | ||
| 87 | + <notepad> | ||
| 88 | + <note>这里有些问题
在window2012的环境下,
MySql数据库查询中如果返回中文内容的字段,这个内容乱码
解决办法,就是数据库查询全部缓存,就不乱码
linux环境下没问题</note> | ||
| 89 | + <xloc>66</xloc> | ||
| 90 | + <yloc>151</yloc> | ||
| 91 | + <width>333</width> | ||
| 92 | + <heigth>90</heigth> | ||
| 93 | + <fontname>YaHei Consolas Hybrid</fontname> | ||
| 94 | + <fontsize>12</fontsize> | ||
| 95 | + <fontbold>N</fontbold> | ||
| 96 | + <fontitalic>N</fontitalic> | ||
| 97 | + <fontcolorred>0</fontcolorred> | ||
| 98 | + <fontcolorgreen>0</fontcolorgreen> | ||
| 99 | + <fontcolorblue>0</fontcolorblue> | ||
| 100 | + <backgroundcolorred>255</backgroundcolorred> | ||
| 101 | + <backgroundcolorgreen>205</backgroundcolorgreen> | ||
| 102 | + <backgroundcolorblue>112</backgroundcolorblue> | ||
| 103 | + <bordercolorred>100</bordercolorred> | ||
| 104 | + <bordercolorgreen>100</bordercolorgreen> | ||
| 105 | + <bordercolorblue>100</bordercolorblue> | ||
| 106 | + <drawshadow>Y</drawshadow> | ||
| 107 | + </notepad> | ||
| 108 | + </notepads> | ||
| 109 | + <connection> | ||
| 110 | + <name>192.168.168.1_jwgl_dw</name> | ||
| 111 | + <server>192.168.168.1</server> | ||
| 112 | + <type>ORACLE</type> | ||
| 113 | + <access>Native</access> | ||
| 114 | + <database>orcl</database> | ||
| 115 | + <port>1521</port> | ||
| 116 | + <username>jwgl_dw</username> | ||
| 117 | + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password> | ||
| 118 | + <servername/> | ||
| 119 | + <data_tablespace/> | ||
| 120 | + <index_tablespace/> | ||
| 121 | + <attributes> | ||
| 122 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 123 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 124 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 125 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 126 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 127 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 128 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 129 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 130 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 131 | + </attributes> | ||
| 132 | + </connection> | ||
| 133 | + <connection> | ||
| 134 | + <name>bus_control_variable</name> | ||
| 135 | + <server>${v_db_ip}</server> | ||
| 136 | + <type>MYSQL</type> | ||
| 137 | + <access>Native</access> | ||
| 138 | + <database>${v_db_dname}</database> | ||
| 139 | + <port>3306</port> | ||
| 140 | + <username>${v_db_uname}</username> | ||
| 141 | + <password>${v_db_pwd}</password> | ||
| 142 | + <servername/> | ||
| 143 | + <data_tablespace/> | ||
| 144 | + <index_tablespace/> | ||
| 145 | + <attributes> | ||
| 146 | + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute> | ||
| 147 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 148 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 149 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 150 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 151 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 152 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 153 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 154 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 155 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 156 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 157 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 158 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 159 | + </attributes> | ||
| 160 | + </connection> | ||
| 161 | + <connection> | ||
| 162 | + <name>bus_control_公司_201</name> | ||
| 163 | + <server>localhost</server> | ||
| 164 | + <type>MYSQL</type> | ||
| 165 | + <access>Native</access> | ||
| 166 | + <database>control</database> | ||
| 167 | + <port>3306</port> | ||
| 168 | + <username>root</username> | ||
| 169 | + <password>Encrypted </password> | ||
| 170 | + <servername/> | ||
| 171 | + <data_tablespace/> | ||
| 172 | + <index_tablespace/> | ||
| 173 | + <attributes> | ||
| 174 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 175 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 176 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 177 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 178 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 179 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 180 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 181 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 182 | + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute> | ||
| 183 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 184 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 185 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 186 | + </attributes> | ||
| 187 | + </connection> | ||
| 188 | + <connection> | ||
| 189 | + <name>bus_control_本机</name> | ||
| 190 | + <server>localhost</server> | ||
| 191 | + <type>MYSQL</type> | ||
| 192 | + <access>Native</access> | ||
| 193 | + <database>control</database> | ||
| 194 | + <port>3306</port> | ||
| 195 | + <username>root</username> | ||
| 196 | + <password>Encrypted </password> | ||
| 197 | + <servername/> | ||
| 198 | + <data_tablespace/> | ||
| 199 | + <index_tablespace/> | ||
| 200 | + <attributes> | ||
| 201 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 202 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 203 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 204 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 205 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 206 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 207 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 208 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 209 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 210 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 211 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 212 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 213 | + </attributes> | ||
| 214 | + </connection> | ||
| 215 | + <connection> | ||
| 216 | + <name>xlab_mysql_youle</name> | ||
| 217 | + <server>101.231.124.8</server> | ||
| 218 | + <type>MYSQL</type> | ||
| 219 | + <access>Native</access> | ||
| 220 | + <database>xlab_youle</database> | ||
| 221 | + <port>45687</port> | ||
| 222 | + <username>xlab-youle</username> | ||
| 223 | + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password> | ||
| 224 | + <servername/> | ||
| 225 | + <data_tablespace/> | ||
| 226 | + <index_tablespace/> | ||
| 227 | + <attributes> | ||
| 228 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 229 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 230 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 231 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 232 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 233 | + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute> | ||
| 234 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 235 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 236 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 237 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 238 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 239 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 240 | + </attributes> | ||
| 241 | + </connection> | ||
| 242 | + <connection> | ||
| 243 | + <name>xlab_mysql_youle(本机)</name> | ||
| 244 | + <server>localhost</server> | ||
| 245 | + <type>MYSQL</type> | ||
| 246 | + <access>Native</access> | ||
| 247 | + <database>xlab_youle</database> | ||
| 248 | + <port>3306</port> | ||
| 249 | + <username>root</username> | ||
| 250 | + <password>Encrypted </password> | ||
| 251 | + <servername/> | ||
| 252 | + <data_tablespace/> | ||
| 253 | + <index_tablespace/> | ||
| 254 | + <attributes> | ||
| 255 | + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute> | ||
| 256 | + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute> | ||
| 257 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 258 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 259 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 260 | + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute> | ||
| 261 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 262 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 263 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 264 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 265 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute> | ||
| 266 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 267 | + </attributes> | ||
| 268 | + </connection> | ||
| 269 | + <connection> | ||
| 270 | + <name>xlab_youle</name> | ||
| 271 | + <server/> | ||
| 272 | + <type>MYSQL</type> | ||
| 273 | + <access>JNDI</access> | ||
| 274 | + <database>xlab_youle</database> | ||
| 275 | + <port>1521</port> | ||
| 276 | + <username/> | ||
| 277 | + <password>Encrypted </password> | ||
| 278 | + <servername/> | ||
| 279 | + <data_tablespace/> | ||
| 280 | + <index_tablespace/> | ||
| 281 | + <attributes> | ||
| 282 | + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute> | ||
| 283 | + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute> | ||
| 284 | + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute> | ||
| 285 | + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute> | ||
| 286 | + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute> | ||
| 287 | + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute> | ||
| 288 | + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute> | ||
| 289 | + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 290 | + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute> | ||
| 291 | + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute> | ||
| 292 | + </attributes> | ||
| 293 | + </connection> | ||
| 294 | + <order> | ||
| 295 | + <hop> <from>人员配置(没有作废)</from><to>线路查询</to><enabled>Y</enabled> </hop> | ||
| 296 | + <hop> <from>线路查询</from><to>驾驶员查询</to><enabled>Y</enabled> </hop> | ||
| 297 | + <hop> <from>驾驶员查询</from><to>售票员查询</to><enabled>Y</enabled> </hop> | ||
| 298 | + <hop> <from>售票员查询</from><to>字段选择</to><enabled>Y</enabled> </hop> | ||
| 299 | + <hop> <from>字段选择</from><to>排序记录</to><enabled>Y</enabled> </hop> | ||
| 300 | + <hop> <from>排序记录</from><to>Excel输出</to><enabled>Y</enabled> </hop> | ||
| 301 | + </order> | ||
| 302 | + <step> | ||
| 303 | + <name>Excel输出</name> | ||
| 304 | + <type>ExcelOutput</type> | ||
| 305 | + <description/> | ||
| 306 | + <distribute>Y</distribute> | ||
| 307 | + <custom_distribution/> | ||
| 308 | + <copies>1</copies> | ||
| 309 | + <partitioning> | ||
| 310 | + <method>none</method> | ||
| 311 | + <schema_name/> | ||
| 312 | + </partitioning> | ||
| 313 | + <header>Y</header> | ||
| 314 | + <footer>N</footer> | ||
| 315 | + <encoding/> | ||
| 316 | + <append>N</append> | ||
| 317 | + <add_to_result_filenames>Y</add_to_result_filenames> | ||
| 318 | + <file> | ||
| 319 | + <name>${filepath}</name> | ||
| 320 | + <extention>xls</extention> | ||
| 321 | + <do_not_open_newfile_init>N</do_not_open_newfile_init> | ||
| 322 | + <create_parent_folder>N</create_parent_folder> | ||
| 323 | + <split>N</split> | ||
| 324 | + <add_date>N</add_date> | ||
| 325 | + <add_time>N</add_time> | ||
| 326 | + <SpecifyFormat>N</SpecifyFormat> | ||
| 327 | + <date_time_format>yyyyMMddHHmmss</date_time_format> | ||
| 328 | + <sheetname>工作表1</sheetname> | ||
| 329 | + <autosizecolums>N</autosizecolums> | ||
| 330 | + <nullisblank>N</nullisblank> | ||
| 331 | + <protect_sheet>N</protect_sheet> | ||
| 332 | + <password>Encrypted </password> | ||
| 333 | + <splitevery>0</splitevery> | ||
| 334 | + <usetempfiles>N</usetempfiles> | ||
| 335 | + <tempdirectory/> | ||
| 336 | + </file> | ||
| 337 | + <template> | ||
| 338 | + <enabled>N</enabled> | ||
| 339 | + <append>N</append> | ||
| 340 | + <filename>template.xls</filename> | ||
| 341 | + </template> | ||
| 342 | + <fields> | ||
| 343 | + <field> | ||
| 344 | + <name>线路</name> | ||
| 345 | + <type>String</type> | ||
| 346 | + <format/> | ||
| 347 | + </field> | ||
| 348 | + <field> | ||
| 349 | + <name>搭班编码</name> | ||
| 350 | + <type>String</type> | ||
| 351 | + <format/> | ||
| 352 | + </field> | ||
| 353 | + <field> | ||
| 354 | + <name>驾驶员工号</name> | ||
| 355 | + <type>String</type> | ||
| 356 | + <format/> | ||
| 357 | + </field> | ||
| 358 | + <field> | ||
| 359 | + <name>驾驶员</name> | ||
| 360 | + <type>String</type> | ||
| 361 | + <format/> | ||
| 362 | + </field> | ||
| 363 | + <field> | ||
| 364 | + <name>售票员工号</name> | ||
| 365 | + <type>String</type> | ||
| 366 | + <format/> | ||
| 367 | + </field> | ||
| 368 | + <field> | ||
| 369 | + <name>售票员</name> | ||
| 370 | + <type>String</type> | ||
| 371 | + <format/> | ||
| 372 | + </field> | ||
| 373 | + </fields> | ||
| 374 | + <custom> | ||
| 375 | + <header_font_name>arial</header_font_name> | ||
| 376 | + <header_font_size>10</header_font_size> | ||
| 377 | + <header_font_bold>N</header_font_bold> | ||
| 378 | + <header_font_italic>N</header_font_italic> | ||
| 379 | + <header_font_underline>no</header_font_underline> | ||
| 380 | + <header_font_orientation>horizontal</header_font_orientation> | ||
| 381 | + <header_font_color>black</header_font_color> | ||
| 382 | + <header_background_color>none</header_background_color> | ||
| 383 | + <header_row_height>255</header_row_height> | ||
| 384 | + <header_alignment>left</header_alignment> | ||
| 385 | + <header_image/> | ||
| 386 | + <row_font_name>arial</row_font_name> | ||
| 387 | + <row_font_size>10</row_font_size> | ||
| 388 | + <row_font_color>black</row_font_color> | ||
| 389 | + <row_background_color>none</row_background_color> | ||
| 390 | + </custom> | ||
| 391 | + <cluster_schema/> | ||
| 392 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 393 | + <xloc>696</xloc> | ||
| 394 | + <yloc>257</yloc> | ||
| 395 | + <draw>Y</draw> | ||
| 396 | + </GUI> | ||
| 397 | + </step> | ||
| 398 | + | ||
| 399 | + <step> | ||
| 400 | + <name>人员配置(没有作废)</name> | ||
| 401 | + <type>TableInput</type> | ||
| 402 | + <description/> | ||
| 403 | + <distribute>Y</distribute> | ||
| 404 | + <custom_distribution/> | ||
| 405 | + <copies>1</copies> | ||
| 406 | + <partitioning> | ||
| 407 | + <method>none</method> | ||
| 408 | + <schema_name/> | ||
| 409 | + </partitioning> | ||
| 410 | + <connection>bus_control_variable</connection> | ||
| 411 | + <sql>select * from bsth_c_s_ecinfo where is_cancel = 0 and xl = ${xlid}</sql> | ||
| 412 | + <limit>0</limit> | ||
| 413 | + <lookup/> | ||
| 414 | + <execute_each_row>N</execute_each_row> | ||
| 415 | + <variables_active>Y</variables_active> | ||
| 416 | + <lazy_conversion_active>N</lazy_conversion_active> | ||
| 417 | + <cluster_schema/> | ||
| 418 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 419 | + <xloc>90</xloc> | ||
| 420 | + <yloc>59</yloc> | ||
| 421 | + <draw>Y</draw> | ||
| 422 | + </GUI> | ||
| 423 | + </step> | ||
| 424 | + | ||
| 425 | + <step> | ||
| 426 | + <name>售票员查询</name> | ||
| 427 | + <type>DBJoin</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 | + <connection>bus_control_variable</connection> | ||
| 437 | + <rowlimit>1</rowlimit> | ||
| 438 | + <sql>select job_code as scode, personnel_name as sname from bsth_c_personnel
where id = ?</sql> | ||
| 439 | + <outer_join>Y</outer_join> | ||
| 440 | + <replace_vars>N</replace_vars> | ||
| 441 | + <parameter> | ||
| 442 | + <field> | ||
| 443 | + <name>spy</name> | ||
| 444 | + <type>Integer</type> | ||
| 445 | + </field> | ||
| 446 | + </parameter> | ||
| 447 | + <cluster_schema/> | ||
| 448 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 449 | + <xloc>491</xloc> | ||
| 450 | + <yloc>60</yloc> | ||
| 451 | + <draw>Y</draw> | ||
| 452 | + </GUI> | ||
| 453 | + </step> | ||
| 454 | + | ||
| 455 | + <step> | ||
| 456 | + <name>字段选择</name> | ||
| 457 | + <type>SelectValues</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 | + <fields> <field> <name>xlmc</name> | ||
| 467 | + <rename>线路</rename> | ||
| 468 | + <length>-2</length> | ||
| 469 | + <precision>-2</precision> | ||
| 470 | + </field> <field> <name>dbbm</name> | ||
| 471 | + <rename>搭班编码</rename> | ||
| 472 | + <length>-2</length> | ||
| 473 | + <precision>-2</precision> | ||
| 474 | + </field> <field> <name>jcode</name> | ||
| 475 | + <rename>驾驶员工号</rename> | ||
| 476 | + <length>-2</length> | ||
| 477 | + <precision>-2</precision> | ||
| 478 | + </field> <field> <name>jname</name> | ||
| 479 | + <rename>驾驶员</rename> | ||
| 480 | + <length>-2</length> | ||
| 481 | + <precision>-2</precision> | ||
| 482 | + </field> <field> <name>scode</name> | ||
| 483 | + <rename>售票员工号</rename> | ||
| 484 | + <length>-2</length> | ||
| 485 | + <precision>-2</precision> | ||
| 486 | + </field> <field> <name>sname</name> | ||
| 487 | + <rename>售票员</rename> | ||
| 488 | + <length>-2</length> | ||
| 489 | + <precision>-2</precision> | ||
| 490 | + </field> <select_unspecified>N</select_unspecified> | ||
| 491 | + </fields> <cluster_schema/> | ||
| 492 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 493 | + <xloc>492</xloc> | ||
| 494 | + <yloc>164</yloc> | ||
| 495 | + <draw>Y</draw> | ||
| 496 | + </GUI> | ||
| 497 | + </step> | ||
| 498 | + | ||
| 499 | + <step> | ||
| 500 | + <name>排序记录</name> | ||
| 501 | + <type>SortRows</type> | ||
| 502 | + <description/> | ||
| 503 | + <distribute>Y</distribute> | ||
| 504 | + <custom_distribution/> | ||
| 505 | + <copies>1</copies> | ||
| 506 | + <partitioning> | ||
| 507 | + <method>none</method> | ||
| 508 | + <schema_name/> | ||
| 509 | + </partitioning> | ||
| 510 | + <directory>%%java.io.tmpdir%%</directory> | ||
| 511 | + <prefix>out</prefix> | ||
| 512 | + <sort_size>1000000</sort_size> | ||
| 513 | + <free_memory/> | ||
| 514 | + <compress>N</compress> | ||
| 515 | + <compress_variable/> | ||
| 516 | + <unique_rows>N</unique_rows> | ||
| 517 | + <fields> | ||
| 518 | + <field> | ||
| 519 | + <name>线路</name> | ||
| 520 | + <ascending>Y</ascending> | ||
| 521 | + <case_sensitive>N</case_sensitive> | ||
| 522 | + <presorted>N</presorted> | ||
| 523 | + </field> | ||
| 524 | + <field> | ||
| 525 | + <name>搭班编码</name> | ||
| 526 | + <ascending>Y</ascending> | ||
| 527 | + <case_sensitive>N</case_sensitive> | ||
| 528 | + <presorted>N</presorted> | ||
| 529 | + </field> | ||
| 530 | + </fields> | ||
| 531 | + <cluster_schema/> | ||
| 532 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 533 | + <xloc>692</xloc> | ||
| 534 | + <yloc>164</yloc> | ||
| 535 | + <draw>Y</draw> | ||
| 536 | + </GUI> | ||
| 537 | + </step> | ||
| 538 | + | ||
| 539 | + <step> | ||
| 540 | + <name>线路查询</name> | ||
| 541 | + <type>DBLookup</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 | + <connection>bus_control_variable</connection> | ||
| 551 | + <cache>Y</cache> | ||
| 552 | + <cache_load_all>Y</cache_load_all> | ||
| 553 | + <cache_size>0</cache_size> | ||
| 554 | + <lookup> | ||
| 555 | + <schema/> | ||
| 556 | + <table>bsth_c_line</table> | ||
| 557 | + <orderby/> | ||
| 558 | + <fail_on_multiple>N</fail_on_multiple> | ||
| 559 | + <eat_row_on_failure>N</eat_row_on_failure> | ||
| 560 | + <key> | ||
| 561 | + <name>xl</name> | ||
| 562 | + <field>id</field> | ||
| 563 | + <condition>=</condition> | ||
| 564 | + <name2/> | ||
| 565 | + </key> | ||
| 566 | + <value> | ||
| 567 | + <name>name</name> | ||
| 568 | + <rename>xlmc</rename> | ||
| 569 | + <default/> | ||
| 570 | + <type>String</type> | ||
| 571 | + </value> | ||
| 572 | + </lookup> | ||
| 573 | + <cluster_schema/> | ||
| 574 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 575 | + <xloc>227</xloc> | ||
| 576 | + <yloc>59</yloc> | ||
| 577 | + <draw>Y</draw> | ||
| 578 | + </GUI> | ||
| 579 | + </step> | ||
| 580 | + | ||
| 581 | + <step> | ||
| 582 | + <name>驾驶员查询</name> | ||
| 583 | + <type>DBJoin</type> | ||
| 584 | + <description/> | ||
| 585 | + <distribute>Y</distribute> | ||
| 586 | + <custom_distribution/> | ||
| 587 | + <copies>1</copies> | ||
| 588 | + <partitioning> | ||
| 589 | + <method>none</method> | ||
| 590 | + <schema_name/> | ||
| 591 | + </partitioning> | ||
| 592 | + <connection>bus_control_variable</connection> | ||
| 593 | + <rowlimit>1</rowlimit> | ||
| 594 | + <sql>select job_code as jcode, personnel_name as jname from bsth_c_personnel
where id = ?</sql> | ||
| 595 | + <outer_join>Y</outer_join> | ||
| 596 | + <replace_vars>N</replace_vars> | ||
| 597 | + <parameter> | ||
| 598 | + <field> | ||
| 599 | + <name>jsy</name> | ||
| 600 | + <type>Integer</type> | ||
| 601 | + </field> | ||
| 602 | + </parameter> | ||
| 603 | + <cluster_schema/> | ||
| 604 | + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI> | ||
| 605 | + <xloc>366</xloc> | ||
| 606 | + <yloc>60</yloc> | ||
| 607 | + <draw>Y</draw> | ||
| 608 | + </GUI> | ||
| 609 | + </step> | ||
| 610 | + | ||
| 611 | + <step_error_handling> | ||
| 612 | + </step_error_handling> | ||
| 613 | + <slave-step-copy-partition-distribution> | ||
| 614 | +</slave-step-copy-partition-distribution> | ||
| 615 | + <slave_transformation>N</slave_transformation> | ||
| 616 | + | ||
| 617 | +</transformation> |