From ac28820d4be53310a05491f875de21ee52f13387 Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Tue, 17 Dec 2024 11:14:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makedown/optimization.md | 7 ++++++- proto/Gameapi.proto | 6 ++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/makedown/optimization.md b/makedown/optimization.md index 7d257ff6..682162dc 100644 --- a/makedown/optimization.md +++ b/makedown/optimization.md @@ -1374,8 +1374,13 @@ message ResPlayroom{ int32 Chip = 12; // 碎片 int32 WorkOutline = 13;// 离线打工状态 0 未离线 1 已离线 } +message ReqPlayroomWrokOutline{} // 处理离线打工 +message ResPlayroomWrokOutline{ + RES_CODE Code = 1; + string Msg = 2; +} message NofiPlayroomStatus{ - int32 WorkOutline = 1; // 状态 + int32 WorkOutline = 1; // 状态 } message NotifyPlayroomWork{ int32 StartTime = 1; // 开始时间 diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index bf0908ea..758e7678 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -3389,6 +3389,12 @@ message ResPlayroom{ int32 Chip = 12; // 碎片 int32 WorkOutline = 13;// 离线打工状态 0 未离线 1 已离线 } + +message ReqPlayroomWrokOutline{} // 处理离线打工 +message ResPlayroomWrokOutline{ + RES_CODE Code = 1; + string Msg = 2; +} message NofiPlayroomStatus{ int32 WorkOutline = 1; // 状态 }