From 6e89e00929268799a12329aafb770e1a74ec491d Mon Sep 17 00:00:00 2001 From: tiger_zhou Date: Thu, 7 Mar 2024 13:23:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A7=E8=B5=9B=E7=AE=A1=E7=90=86=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/race/race_paper.proto | 14 ++++++++++++++ proto/race/race_scene.proto | 2 ++ 2 files changed, 16 insertions(+) diff --git a/proto/race/race_paper.proto b/proto/race/race_paper.proto index d41c018..9534ba4 100644 --- a/proto/race/race_paper.proto +++ b/proto/race/race_paper.proto @@ -19,6 +19,20 @@ message RacePaperVO{ RaceSeason.Group group = 9; } +message RacePaperMenuVO{ + repeated SeasonMenu menu = 1; + message SeasonMenu{ + int64 season_id = 1; + string season_name = 2; + string detail_html_content = 3; + repeated PaperMenu papers = 4; + } + message PaperMenu{ + int64 id = 1; + string name = 2; + } +} + message RacePaperDetailVO{ int64 id = 1; string name = 2; diff --git a/proto/race/race_scene.proto b/proto/race/race_scene.proto index 18fc338..554d590 100644 --- a/proto/race/race_scene.proto +++ b/proto/race/race_scene.proto @@ -31,6 +31,8 @@ message RaceScenePublishVO{ int64 dafitid = 1;//实训草稿id // int64 mapId = 2; string name = 3; + //是否强制更新 + bool force_publish = 4; }