diff --git a/proto/race/race_module.proto b/proto/race/race_module.proto index 35488bc..3b7a409 100644 --- a/proto/race/race_module.proto +++ b/proto/race/race_module.proto @@ -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) } diff --git a/proto/race/race_paper.proto b/proto/race/race_paper.proto index 96995eb..ce6fe71 100644 --- a/proto/race/race_paper.proto +++ b/proto/race/race_paper.proto @@ -25,6 +25,6 @@ message RacePaperVO{ message RacePaperCreateVO { string name = 1; string desc = 2; //非必填 - int64 seasonId = 3; + int64 season_id = 3; }