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

43 lines
720 B
Protocol Buffer

syntax = "proto3";
package race;
import "modify_info.proto";
import "page_query.proto";
option java_package = "club.joylink.rtss.vo.race";
message RaceSceneVO {
int64 id = 1;
string name = 2;
RaceScene.Type type = 3;
Scene scene = 4;
common.ModifyInfoVO modifyInfo = 5;
}
message RaceSceneCreateVO {
string name = 1;
RaceScene.Type type = 2;
}
message RaceSceneQueryVO {
common.PageQueryVO page = 1;
string name = 2;
RaceScene.Type type = 3;
}
message Scene {
string url = 1;
StorageSimulation storageSimulation = 2;
}
//此消息与之前的实训数据相同,待填充
message StorageSimulation {
}
message RaceScene {
enum Type {
Unknown = 0;
Local = 1;
Link = 2;
}
}