2024-02-05 14:05:44 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
package race;
|
2024-02-18 15:09:02 +08:00
|
|
|
import "common/modify_info.proto";
|
|
|
|
import "common/page_query.proto";
|
|
|
|
import "race/race_season.proto";
|
2024-02-05 14:05:44 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|