28 lines
494 B
Protocol Buffer
28 lines
494 B
Protocol Buffer
syntax = "proto3";
|
|
package race;
|
|
import "modify_info.proto";
|
|
import "page_query.proto";
|
|
import "race_season.proto";
|
|
|
|
option java_package = "club.joylink.rtss.vo.race";
|
|
|
|
message RacePaperVO {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
string desc = 3;
|
|
RaceSeason season = 4;
|
|
common.ModifyInfoVO modifyInfo = 5;
|
|
}
|
|
|
|
message RacePaperCreateVO {
|
|
string name = 1;
|
|
string desc = 2; //非必填
|
|
int64 seasonId = 3;
|
|
}
|
|
|
|
message RacePaperQueryVO {
|
|
common.PageQueryVO page = 1;
|
|
string name = 2;
|
|
}
|
|
|