Commit b615f576 authored by zhangzc's avatar zhangzc

修改司机抢单参数

parent 8e8ff346
......@@ -59,7 +59,7 @@ public class DriverAccountController {
private BusinessMessageService businessMessageService;
@Autowired
public DriverAccountController(TokenComponent tokenComponent, AccountDeviceInfoService accountDeviceInfoService, CarrierInterface carrierInterface, DriverInterface driverInterface, NoticeInterface noticeInterface, AppLoginService appLoginService) {
public DriverAccountController(BusinessMessageService businessMessageService, TokenComponent tokenComponent, AccountDeviceInfoService accountDeviceInfoService, CarrierInterface carrierInterface, DriverInterface driverInterface, NoticeInterface noticeInterface, AppLoginService appLoginService) {
this.noticeInterface = noticeInterface;
this.appLoginService = appLoginService;
this.driverInterface = driverInterface;
......
......@@ -156,7 +156,7 @@ public class GrabController {
reqJson.put("orderGrabbingId", orderGrabbingForm.getOrderGrabbingId());
reqJson.put("driverId", orderGrabbingForm.getDriverId());
reqJson.put("vehicleId", orderGrabbingForm.getVehicleId());
reqJson.put("signData", orderGrabbingForm.getSignData());
reqJson.put("signId", orderGrabbingForm.getSignId());
reqJson.put("bargainFreight", orderGrabbingForm.getBargainFreight());
log.info(reqJson.toJSONString());
JSONObject result = tmsGrabInterface.grabOrder(reqJson);
......
......@@ -51,7 +51,7 @@ public class OrderGrabbingForm {
/**
* 司机签名数据
*/
private String signData;
private String signId;
@Override
public String toString() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment