司机出库,修改运单为运输中状态,开始运输任务
**请求示例**: ```javascript { "cargoPickUpPicture": "", "cargoPicture": "", "id": "" } ``` **请求参数**: | 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | |--------------------------------|-------------------|------|--------|------| | driverPickUpDTO | driverPickUpDTO | body | true | 提货对象 | | cargoPickUpPicture | 提货凭证,多个图片url以逗号分隔 || true | string | | cargoPicture | 货物照片,多个图片url以逗号分隔 || true | string | | id | 司机作业id || true | string | ### 2.4司机入库接口 **接口地址**:`/driver-job/intoStorage` **请求方式**:`POST` **请求数据类型**:`application/json` **接口描述**:司机入库,修改运单的当前节点和下个节点 以及 修改运单为待调度状态,结束运输任务
**请求示例**: ```javascript { "deliverPicture": "", "id": "", "transportCertificate": "" } ``` **请求参数**: | 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | |----------------------------------|-------------------|------|--------|--------| | driverDeliverDTO | driverDeliverDTO | body | true | 司机交付对象 | | deliverPicture | 交付图片,多个图片url以逗号分隔 || true | string | | id | 司机作业id || true | string | | transportCertificate | 交付凭证,多个图片url以逗号分隔 || true | string | ### 2.5回车登记接口 **接口地址**:`/driver-job/returnRegister` **请求方式**:`POST` **请求数据类型**:`application/json` **接口描述**:回车登记,并设置下一次车辆计划
**请求示例**: ```javascript { "accidentDescription": "", "accidentImages": "", "accidentType": "", "breakRulesDescription": "", "breakRulesType": "", "deductPoints": 0, "faultDescription": "", "faultImages": "", "faultType": "", "id": "", "intoStorageTime": "2022-07-18 17:00:00", "isAccident": true, "isAvailable": true, "isBreakRules": true, "isFault": true, "outStorageTime": "2022-07-18 17:00:00", "penaltyAmount": 0 } ``` **请求参数**: | 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | |-----------------------------------|---------------------------------------------------------------------|-------|----------------|-------------------------| | driverReturnRegisterDTO | driverReturnRegisterDTO | body | true | DriverReturnRegisterDTO | | accidentDescription | 事故说明,类型为“其他”时填写 || false | string | | accidentImages | 事故图片 || false | string | | accidentType | 事故类型,1-直行事故,2-追尾事故,3-超车事故,4-左转弯事故,5-右转弯事故,6-弯道事故,7-坡道事故,8-会车事故,9-其他 || false | string | | breakRulesDescription | 违章说明,类型为“其他”时填写 || false | string | | breakRulesType | 违章类型,1-闯红灯,2-无证驾驶,3-超载,4-酒后驾驶,5-超速行驶,6-其他 || false | string | | deductPoints | 扣分数据 || false | integer(int32) | | faultDescription | 故障说明,类型为“其他”时填写 || false | string | | faultImages | 故障图片 || false | string | | faultType | 故障类型,1-发动机启动困难,2-不着车,3-漏油,4-漏水,5-照明失灵,6-有异响,7-排烟异常,8-温度异常,9-其他 || false | string | | id | 运输任务id || true | string | | intoStorageTime | 回车时间 || true | string | | isAccident | 是否出现事故 || true | boolean | | isAvailable | 车辆是否可用 || false | boolean | | isBreakRules | 车辆是否违章 || true | boolean | | isFault | 车辆是否故障 || true | boolean | | outStorageTime | 出车时间 || true | string | | penaltyAmount | 罚款金额 || false | number | ## 3.服务架构 ### 3.1司机出库业务流程图 ![司机出库业务流程图](../../docs/zh-cn/assets/司机出库业务流程图.png) ### 3.2司机入库业务流程图 ![司机入库业务流程图](../../docs/zh-cn/assets/司机入库业务流程图.png) ### 3.3回车登记业务流程图 ![回车登记业务流程图](../../docs/zh-cn/assets/回车登记业务流程图.png)