注释错误

This commit is contained in:
sk 2024-09-10 15:31:46 +08:00
parent 9012b2a4db
commit 8d63969701
3 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@ type CustomLog struct {
TotalRound int32 // 总局数
PlayerNum int32 // 最大人数
Password string // 密码
CostType int32 // 付费方式 1房主 2AA
CostType int32 // 付费方式 1AA 2房主
Voice int32 // 是否开启语音 1开启
RoomId int32 // 房间id
SnId []PlayerInfo // 所有玩家

View File

@ -910,7 +910,7 @@ type CustomParam struct {
RoomTypeId int32 `protobuf:"varint,1,opt,name=RoomTypeId,proto3" json:"RoomTypeId,omitempty"` // 房间类型id
RoomConfigId int32 `protobuf:"varint,2,opt,name=RoomConfigId,proto3" json:"RoomConfigId,omitempty"` // 房间配置id
CostType int32 `protobuf:"varint,3,opt,name=CostType,proto3" json:"CostType,omitempty"` // 房卡场付费方式 1房主 2AA
CostType int32 `protobuf:"varint,3,opt,name=CostType,proto3" json:"CostType,omitempty"` // 房卡场付费方式 1AA 2
Password string `protobuf:"bytes,4,opt,name=Password,proto3" json:"Password,omitempty"` // 房间密码
Voice int32 `protobuf:"varint,5,opt,name=Voice,proto3" json:"Voice,omitempty"` // 是否开启语音 1开启 2关闭
}

View File

@ -170,7 +170,7 @@ message Item {
message CustomParam {
int32 RoomTypeId = 1; // id
int32 RoomConfigId = 2; // id
int32 CostType = 3; // 1 2AA
int32 CostType = 3; // 1AA 2
string Password = 4; //
int32 Voice = 5; // 1 2
}