大赛管理功能

This commit is contained in:
tiger_zhou 2024-02-23 11:03:09 +08:00
parent 339190b74e
commit c848ff56b3
2 changed files with 11 additions and 3 deletions

View File

@ -15,11 +15,19 @@ message RaceModuleVO {
int32 duration = 7; //min
common.ModifyInfoVO modifyInfo = 8;
}
message RaceModuleListVO{
int64 id = 1;
string code = 3;
string desc = 4;
int64 paperId = 5;
string paperName = 6;
int32 duration = 7; //min
common.ModifyInfoVO modifyInfo = 8;
}
message RaceModuleCreateVO {
string code = 1;
string desc = 2;
int64 paperId = 3;
int64 paper_id = 3;
int32 duration = 4; //min
}

View File

@ -25,6 +25,6 @@ message RacePaperVO{
message RacePaperCreateVO {
string name = 1;
string desc = 2; //
int64 seasonId = 3;
int64 season_id = 3;
}