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; // 状态 }