diff --git a/protocol/webapi/common.pb.go b/protocol/webapi/common.pb.go index dcf3646..1d31b42 100644 --- a/protocol/webapi/common.pb.go +++ b/protocol/webapi/common.pb.go @@ -5978,7 +5978,7 @@ type ChannelSwitchConfig struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - Tp int32 `protobuf:"varint,1,opt,name=Tp,proto3" json:"Tp,omitempty"` // 开关类型 1.兑换 2.道具掉落 + Tp int32 `protobuf:"varint,1,opt,name=Tp,proto3" json:"Tp,omitempty"` // 开关类型 1.兑换 2.道具掉落 3.邀请活动开关 Platform string `protobuf:"bytes,2,opt,name=Platform,proto3" json:"Platform,omitempty"` // 平台id OnChannelName []string `protobuf:"bytes,3,rep,name=OnChannelName,proto3" json:"OnChannelName,omitempty"` // 开启渠道 } diff --git a/protocol/webapi/common.proto b/protocol/webapi/common.proto index bf442d3..75557ca 100644 --- a/protocol/webapi/common.proto +++ b/protocol/webapi/common.proto @@ -664,7 +664,7 @@ message WelfareCollectConfig{ // etcd /game/channel/switch message ChannelSwitchConfig{ - int32 Tp = 1; // 开关类型 1.兑换 2.道具掉落 + int32 Tp = 1; // 开关类型 1.兑换 2.道具掉落 3.邀请活动开关 string Platform = 2; // 平台id repeated string OnChannelName = 3; // 开启渠道 }