20 lines
474 B
Protocol Buffer
20 lines
474 B
Protocol Buffer
syntax = "proto3";
|
||
package race;
|
||
import "race/race_task.proto";
|
||
|
||
option java_package = "club.joylink.rtss.vo.race";
|
||
|
||
//模块训练结果
|
||
message RacePracticeResult {
|
||
int32 custom_module_id = 1;
|
||
repeated ResultNode node = 2;
|
||
}
|
||
|
||
message ResultNode {
|
||
string name = 1;
|
||
float fullScore = 2;
|
||
float score = 3;
|
||
RaceTaskChildVO.ChildNodeType type = 4;
|
||
repeated ResultNode child = 5;
|
||
int64 sceneId = 6; //任务关联的场景的ID(0表示没有关联的场景)
|
||
} |