Merge remote-tracking branch 'origin/master'
| | |
| | | map = orderCrossCityService.queryOrderInfo(orderId); |
| | | break; |
| | | } |
| | | |
| | | if(map.get("companyId") != null){ |
| | | Company companyId = companyService.selectById(map.get("companyId").toString()); |
| | | map.put("companyName", companyId.getName()); |
| | | }else { |
| | | String string = map.get("driverId").toString(); |
| | | Driver driver = driverService.selectById(string); |
| | | Company company = companyService.selectById(driver.getCompanyId()); |
| | | map.put("companyName", company.getName()); |
| | | } |
| | | if(map.get("telX") != null){ |
| | | map.put("driverPhone", map.get("telX")); |
| | | } |
| | |
| | | a.abnormalStatus, |
| | | a.abnormalRemark, |
| | | a.abnormalIntro, |
| | | a.abnormalImg |
| | | a.abnormalImg, |
| | | a.companyId |
| | | from t_order_cross_city a |
| | | left join t_driver b on (a.driverId = b.id) |
| | | left join t_car c on (a.carId = c.id) |
| | |
| | | a.abnormalStatus, |
| | | a.abnormalRemark, |
| | | a.abnormalIntro, |
| | | a.abnormalImg |
| | | a.abnormalImg, |
| | | a.companyId |
| | | from t_order_private_car a |
| | | left join t_driver b on (a.driverId = b.id) |
| | | left join t_car c on (a.carId = c.id) |
| | |
| | | private String responsibilityType; |
| | | |
| | | |
| | | @ApiModelProperty("公司名称") |
| | | private String companyName; |
| | | |
| | | public String getCompanyName() { |
| | | return companyName; |
| | | } |
| | | |
| | | public void setCompanyName(String companyName) { |
| | | this.companyName = companyName; |
| | | } |
| | | |
| | | public Integer getAbnormalStatus() { |
| | | return abnormalStatus; |
| | | } |
| | |
| | | a.abnormalStatus, |
| | | a.abnormalRemark, |
| | | a.abnormalIntro, |
| | | a.abnormalImg |
| | | a.abnormalImg, |
| | | a.companyId |
| | | from t_order_taxi a |
| | | left join t_driver b on (a.driverId = b.id) |
| | | left join t_car c on (a.carId = c.id) |