19 lines
449 B
Protocol Buffer
19 lines
449 B
Protocol Buffer
syntax = "proto3";
|
||
package com.zhjt.mogo.adas.data.sweeper.task.status;
|
||
|
||
import "sweeper/sweeper_common.proto";
|
||
|
||
/**** 3、云端下发任务状态到pad (type:100003) ****/
|
||
|
||
//3.1、请求信息
|
||
message TaskStatusPush {
|
||
string sn = 1;// sn
|
||
string taskId = 2;// 大任务编号
|
||
string subTaskId = 3;// 子任务编号
|
||
common.TaskStatus TaskStatus = 4;// 子任务状态
|
||
uint64 systemTime = 5; // 时间戳
|
||
}
|
||
|
||
//3.2、响应信息
|
||
// 无
|