rt-sim-training-message/proto/race/race_application.proto

20 lines
474 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 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; //任务关联的场景的ID0表示没有关联的场景
}