Files
MoGoEagleEye/libraries/mogo-adas-data/src/main/proto/sweeper/sweeper_bootable.proto

33 lines
670 B
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
syntax = "proto3";
package com.zhjt.mogo.adas.data.sweeper.bootable;
import "sweeper/sweeper_common.proto";
/**** 8、接管后回自驾-pad上报状态给云端 云端下发启动自驾type: 100008 ****/
//8.1、请求信息
/**
pad 上报是否可以进自驾
*/
message IsBootable {
string sn = 1; // sn
string taskId = 2; // 大任务Id
string subTaskId = 3; // 子任务id
uint64 lineId = 4; //路线id
}
//8.2、响应信息
/**
云端响应
*/
message IsBootableResp {
string sn = 1;// sn
string taskId = 2;// 大任务编号
string subTaskId = 3;// 子任务ID
common.Code code = 4; //响应状态
string msg = 5; //响应详情
}