1
0
mirror of https://github.com/Mrs4s/MiraiGo.git synced 2025-05-04 19:17:38 +08:00

Merge branch 'master' into master

This commit is contained in:
源文雨 2021-11-26 15:06:02 +08:00 committed by GitHub
commit b27ab903f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
72 changed files with 9451 additions and 49413 deletions

View File

@ -1090,11 +1090,11 @@ func (c *QQClient) buildAppInfoRequestPacket(id string) (uint16, []byte) {
} }
b, _ := proto.Marshal(req) b, _ := proto.Marshal(req)
body := &qweb.QWebReq{ body := &qweb.QWebReq{
Seq: 1, Seq: proto.Int64(1),
Qua: "V1_AND_SQ_8.4.8_1492_YYB_D", Qua: proto.String("V1_AND_SQ_8.4.8_1492_YYB_D"),
DeviceInfo: fmt.Sprintf("i=865166025905020&imsi=460002478794049&mac=02:00:00:00:00:00&m=%v&o=7.1.2&a=25&sc=1&sd=0&p=900*1600&f=nubia&mm=3479&cf=2407&cc=4&aid=086bbf84a7d5fbb3&qimei=865166023450458&sharpP=1&n=wifi", string(c.deviceInfo.Model)), DeviceInfo: proto.String(c.getWebDeviceInfo()),
BusiBuff: b, BusiBuff: b,
TraceId: fmt.Sprintf("%v_%v_%v", c.Uin, time.Now().Format("0102150405"), rand.Int63()), TraceId: proto.String(fmt.Sprintf("%v_%v_%v", c.Uin, time.Now().Format("0102150405"), rand.Int63())),
} }
payload, _ := proto.Marshal(body) payload, _ := proto.Marshal(body)
packet := packets.BuildUniPacket(c.Uin, seq, "LightAppSvc.mini_app_info.GetAppInfoById", 1, c.OutGoingPacketSessionId, EmptyBytes, c.sigInfo.d2Key, payload) packet := packets.BuildUniPacket(c.Uin, seq, "LightAppSvc.mini_app_info.GetAppInfoById", 1, c.OutGoingPacketSessionId, EmptyBytes, c.sigInfo.d2Key, payload)

View File

@ -71,7 +71,7 @@ func (c *QQClient) c2cMessageSyncProcessor(rsp *msg.GetMessageResponse, info *in
_, _ = c.sendAndWait(c.buildDeleteMessageRequestPacket(delItems)) _, _ = c.sendAndWait(c.buildDeleteMessageRequestPacket(delItems))
} }
if rsp.GetSyncFlag() != msg.SyncFlag_STOP { if rsp.GetSyncFlag() != msg.SyncFlag_STOP {
c.Debug("continue sync with flag: %v", rsp.SyncFlag.String()) c.Debug("continue sync with flag: %v", rsp.SyncFlag)
seq, pkt := c.buildGetMessageRequestPacket(rsp.GetSyncFlag(), time.Now().Unix()) seq, pkt := c.buildGetMessageRequestPacket(rsp.GetSyncFlag(), time.Now().Unix())
_, _ = c.sendAndWait(seq, pkt, info.Params) _, _ = c.sendAndWait(seq, pkt, info.Params)
} }

View File

@ -82,6 +82,7 @@ type QQClient struct {
ksid []byte ksid []byte
// session info // session info
qwebSeq int64
sigInfo *loginSigInfo sigInfo *loginSigInfo
bigDataSession *bigDataSessionInfo bigDataSession *bigDataSessionInfo
dpwd []byte dpwd []byte
@ -861,6 +862,10 @@ func (c *QQClient) nextFriendSeq() int32 {
return atomic.AddInt32(&c.friendSeq, 1) return atomic.AddInt32(&c.friendSeq, 1)
} }
func (c *QQClient) nextQWebSeq() int64 {
return atomic.AddInt64(&c.qwebSeq, 1)
}
func (c *QQClient) nextGroupDataTransSeq() int32 { func (c *QQClient) nextGroupDataTransSeq() int32 {
return atomic.AddInt32(&c.groupDataTransSeq, 2) return atomic.AddInt32(&c.groupDataTransSeq, 2)
} }

View File

@ -804,8 +804,8 @@ func decodeAppInfoResponse(_ *QQClient, _ *incomingPacketInfo, payload []byte) (
if err := proto.Unmarshal(payload, &pkg); err != nil { if err := proto.Unmarshal(payload, &pkg); err != nil {
return nil, errors.Wrap(err, "failed to unmarshal protobuf message") return nil, errors.Wrap(err, "failed to unmarshal protobuf message")
} }
if pkg.RetCode != 0 { if pkg.GetRetCode() != 0 {
return nil, errors.New(pkg.ErrMsg) return nil, errors.New(pkg.GetErrMsg())
} }
if err := proto.Unmarshal(pkg.BusiBuff, &rsp); err != nil { if err := proto.Unmarshal(pkg.BusiBuff, &rsp); err != nil {
return nil, errors.Wrap(err, "failed to unmarshal protobuf message") return nil, errors.Wrap(err, "failed to unmarshal protobuf message")

View File

@ -645,6 +645,16 @@ func (p requestParams) int32(k string) int32 {
return i.(int32) return i.(int32)
} }
func (c *QQClient) getWebDeviceInfo() (i string) {
qimei := strings.ToLower(utils.RandomString(36))
i += fmt.Sprintf("i=%v&imsi=&mac=%v&m=%v&o=%v&", c.deviceInfo.IMEI, utils.B2S(c.deviceInfo.MacAddress), utils.B2S(c.deviceInfo.Device), utils.B2S(c.deviceInfo.Version.Release))
i += fmt.Sprintf("a=%v&sd=0&c64=0&sc=1&p=1080*2210&aid=%v&", c.deviceInfo.Version.Sdk, c.deviceInfo.IMEI)
i += fmt.Sprintf("f=%v&mm=%v&cf=%v&cc=%v&", c.deviceInfo.Brand, 5629 /* Total Memory*/, 1725 /* CPU Frequency */, 8 /* CPU Core Count */)
i += fmt.Sprintf("qimei=%v&qimei36=%v&", qimei, qimei)
i += "sharpP=1&n=wifi&support_xsj_live=true&client_mod=default&timezone=Asia/Shanghai&material_sdk_version=2.9.0&vh265=null&refreshrate=60"
return
}
func (c *QQClient) packOIDBPackage(cmd, serviceType int32, body []byte) []byte { func (c *QQClient) packOIDBPackage(cmd, serviceType int32, body []byte) []byte {
pkg := &oidb.OIDBSSOPkg{ pkg := &oidb.OIDBSSOPkg{
Command: cmd, Command: cmd,

View File

@ -2,15 +2,18 @@ package client
import ( import (
"fmt" "fmt"
"math/rand"
"sort" "sort"
"time" "time"
"github.com/Mrs4s/MiraiGo/client/pb/qweb"
"github.com/Mrs4s/MiraiGo/internal/proto"
"github.com/pkg/errors" "github.com/pkg/errors"
"github.com/Mrs4s/MiraiGo/binary" "github.com/Mrs4s/MiraiGo/binary"
"github.com/Mrs4s/MiraiGo/client/pb/channel" "github.com/Mrs4s/MiraiGo/client/pb/channel"
"github.com/Mrs4s/MiraiGo/internal/packets" "github.com/Mrs4s/MiraiGo/internal/packets"
"github.com/Mrs4s/MiraiGo/internal/proto"
"github.com/Mrs4s/MiraiGo/utils" "github.com/Mrs4s/MiraiGo/utils"
) )
@ -74,7 +77,7 @@ type (
RoleId uint64 RoleId uint64
RoleName string RoleName string
ArgbColor uint32 ArgbColor uint32
Indepedent bool Independent bool
Num int32 Num int32
Owned bool Owned bool
Disabled bool Disabled bool
@ -314,7 +317,7 @@ func (s *GuildService) GetGuildRoles(guildId uint64) ([]*GuildRole, error) {
RoleId: role.GetRoleId(), RoleId: role.GetRoleId(),
RoleName: role.GetName(), RoleName: role.GetName(),
ArgbColor: role.GetArgbColor(), ArgbColor: role.GetArgbColor(),
Indepedent: role.GetIndependent() == 1, Independent: role.GetIndependent() == 1,
Num: role.GetNum(), Num: role.GetNum(),
Owned: role.GetOwned() == 1, Owned: role.GetOwned() == 1,
Disabled: role.GetDisabled() == 1, Disabled: role.GetDisabled() == 1,
@ -522,6 +525,65 @@ func (s *GuildService) FetchChannelInfo(guildId, channelId uint64) (*ChannelInfo
return convertChannelInfo(body.Info), nil return convertChannelInfo(body.Info), nil
} }
func (s *GuildService) GetChannelTopics(guildId, channelId uint64) error {
guild := s.FindGuild(guildId)
if guild == nil {
return errors.New("guild not found")
}
channelInfo := guild.FindChannel(channelId)
if channelInfo == nil {
return errors.New("channel not found")
}
if channelInfo.ChannelType != ChannelTypeTopic {
return errors.New("channel type error")
}
req, _ := proto.Marshal(&channel.StGetChannelFeedsReq{
Count: proto.Uint32(12),
From: proto.Uint32(0),
ChannelSign: &channel.StChannelSign{
GuildId: &guildId,
ChannelId: &channelId,
},
FeedAttchInfo: proto.String(""), // isLoadMore
})
payload, _ := proto.Marshal(&qweb.QWebReq{
Seq: proto.Int64(s.c.nextQWebSeq()),
Qua: proto.String("V1_AND_SQ_8.8.50_2324_YYB_D"),
DeviceInfo: proto.String(s.c.getWebDeviceInfo()),
BusiBuff: req,
TraceId: proto.String(fmt.Sprintf("%v_%v_%v", s.c.Uin, time.Now().Format("0102150405"), rand.Int63())),
Extinfo: []*qweb.COMMEntry{
{
Key: proto.String("fc-appid"),
Value: proto.String("96"),
},
{
Key: proto.String("environment_id"),
Value: proto.String("production"),
},
{
Key: proto.String("tiny_id"),
Value: proto.String(fmt.Sprint(s.TinyId)),
},
},
})
seq := s.c.nextSeq()
packet := packets.BuildUniPacket(s.c.Uin, seq, "QChannelSvr.trpc.qchannel.commreader.ComReader.GetChannelTimelineFeeds", 1, s.c.OutGoingPacketSessionId, []byte{}, s.c.sigInfo.d2Key, payload)
rsp, err := s.c.sendAndWaitDynamic(seq, packet)
if err != nil {
return errors.New("send packet error")
}
pkg := new(qweb.QWebRsp)
body := new(channel.StGetChannelFeedsRsp)
if err = proto.Unmarshal(rsp, pkg); err != nil {
return errors.Wrap(err, "failed to unmarshal protobuf message")
}
if err = proto.Unmarshal(pkg.BusiBuff, body); err != nil {
return errors.Wrap(err, "failed to unmarshal protobuf message")
}
return nil
}
/* need analysis /* need analysis
func (s *GuildService) fetchChannelListState(guildId uint64, channels []*ChannelInfo) { func (s *GuildService) fetchChannelListState(guildId uint64, channels []*ChannelInfo) {
seq := s.c.nextSeq() seq := s.c.nextSeq()

View File

@ -0,0 +1,242 @@
// Code generated by protoc-gen-golite. DO NOT EDIT.
// source: pb/channel/GuildChannelBase.proto
package channel
type ChannelUserInfo struct {
ClientIdentity *ClientIdentity `protobuf:"bytes,1,opt"`
MemberType *uint32 `protobuf:"varint,2,opt"`
Permission *ChannelUserPermission `protobuf:"bytes,3,opt"`
RoleGroups []*BaseRoleGroupInfo `protobuf:"bytes,4,rep"`
}
func (x *ChannelUserInfo) GetClientIdentity() *ClientIdentity {
if x != nil {
return x.ClientIdentity
}
return nil
}
func (x *ChannelUserInfo) GetMemberType() uint32 {
if x != nil && x.MemberType != nil {
return *x.MemberType
}
return 0
}
func (x *ChannelUserInfo) GetPermission() *ChannelUserPermission {
if x != nil {
return x.Permission
}
return nil
}
func (x *ChannelUserInfo) GetRoleGroups() []*BaseRoleGroupInfo {
if x != nil {
return x.RoleGroups
}
return nil
}
type ChannelUserPermission struct {
AllowReadFeed *bool `protobuf:"varint,1,opt"`
AllowWriteFeed *bool `protobuf:"varint,2,opt"`
}
func (x *ChannelUserPermission) GetAllowReadFeed() bool {
if x != nil && x.AllowReadFeed != nil {
return *x.AllowReadFeed
}
return false
}
func (x *ChannelUserPermission) GetAllowWriteFeed() bool {
if x != nil && x.AllowWriteFeed != nil {
return *x.AllowWriteFeed
}
return false
}
type ClientIdentity struct {
ClientId *uint32 `protobuf:"varint,1,opt"`
Desc *string `protobuf:"bytes,2,opt"`
}
func (x *ClientIdentity) GetClientId() uint32 {
if x != nil && x.ClientId != nil {
return *x.ClientId
}
return 0
}
func (x *ClientIdentity) GetDesc() string {
if x != nil && x.Desc != nil {
return *x.Desc
}
return ""
}
type BaseGuildInfo struct {
GuildId *uint64 `protobuf:"varint,1,opt"`
Name *string `protobuf:"bytes,2,opt"`
JoinTime *uint64 `protobuf:"varint,3,opt"`
}
func (x *BaseGuildInfo) GetGuildId() uint64 {
if x != nil && x.GuildId != nil {
return *x.GuildId
}
return 0
}
func (x *BaseGuildInfo) GetName() string {
if x != nil && x.Name != nil {
return *x.Name
}
return ""
}
func (x *BaseGuildInfo) GetJoinTime() uint64 {
if x != nil && x.JoinTime != nil {
return *x.JoinTime
}
return 0
}
type BaseRoleGroupInfo struct {
RoleId *uint64 `protobuf:"varint,1,opt"`
Name *string `protobuf:"bytes,2,opt"`
Color *uint32 `protobuf:"varint,3,opt"`
}
func (x *BaseRoleGroupInfo) GetRoleId() uint64 {
if x != nil && x.RoleId != nil {
return *x.RoleId
}
return 0
}
func (x *BaseRoleGroupInfo) GetName() string {
if x != nil && x.Name != nil {
return *x.Name
}
return ""
}
func (x *BaseRoleGroupInfo) GetColor() uint32 {
if x != nil && x.Color != nil {
return *x.Color
}
return 0
}
type StChannelInfo struct {
Sign *StChannelSign `protobuf:"bytes,1,opt"`
Name *string `protobuf:"bytes,2,opt"`
IconUrl *string `protobuf:"bytes,3,opt"`
}
func (x *StChannelInfo) GetSign() *StChannelSign {
if x != nil {
return x.Sign
}
return nil
}
func (x *StChannelInfo) GetName() string {
if x != nil && x.Name != nil {
return *x.Name
}
return ""
}
func (x *StChannelInfo) GetIconUrl() string {
if x != nil && x.IconUrl != nil {
return *x.IconUrl
}
return ""
}
type StChannelSign struct {
GuildId *uint64 `protobuf:"varint,1,opt"`
ChannelId *uint64 `protobuf:"varint,2,opt"`
}
func (x *StChannelSign) GetGuildId() uint64 {
if x != nil && x.GuildId != nil {
return *x.GuildId
}
return 0
}
func (x *StChannelSign) GetChannelId() uint64 {
if x != nil && x.ChannelId != nil {
return *x.ChannelId
}
return 0
}
type StCommonExt struct {
MapInfo []*CommonEntry `protobuf:"bytes,1,rep"`
AttachInfo *string `protobuf:"bytes,2,opt"`
MapBytesInfo []*BytesEntry `protobuf:"bytes,3,rep"`
}
func (x *StCommonExt) GetMapInfo() []*CommonEntry {
if x != nil {
return x.MapInfo
}
return nil
}
func (x *StCommonExt) GetAttachInfo() string {
if x != nil && x.AttachInfo != nil {
return *x.AttachInfo
}
return ""
}
func (x *StCommonExt) GetMapBytesInfo() []*BytesEntry {
if x != nil {
return x.MapBytesInfo
}
return nil
}
type BytesEntry struct {
Key *string `protobuf:"bytes,1,opt"`
Value []byte `protobuf:"bytes,2,opt"`
}
func (x *BytesEntry) GetKey() string {
if x != nil && x.Key != nil {
return *x.Key
}
return ""
}
func (x *BytesEntry) GetValue() []byte {
if x != nil {
return x.Value
}
return nil
}
type CommonEntry struct {
Key *string `protobuf:"bytes,1,opt"`
Value *string `protobuf:"bytes,2,opt"`
}
func (x *CommonEntry) GetKey() string {
if x != nil && x.Key != nil {
return *x.Key
}
return ""
}
func (x *CommonEntry) GetValue() string {
if x != nil && x.Value != nil {
return *x.Value
}
return ""
}

View File

@ -0,0 +1,75 @@
syntax = "proto2";
package channel;
option go_package = "pb/channel;channel";
message ChannelUserInfo {
optional ClientIdentity clientIdentity = 1;
optional uint32 memberType = 2;
optional ChannelUserPermission permission = 3;
repeated BaseRoleGroupInfo roleGroups = 4;
}
message ChannelUserPermission {
optional bool allowReadFeed = 1;
optional bool allowWriteFeed = 2;
}
message ClientIdentity {
optional uint32 clientId = 1;
optional string desc = 2;
}
message BaseGuildInfo {
optional uint64 guildId = 1;
optional string name = 2;
optional uint64 joinTime = 3;
}
message BaseRoleGroupInfo {
optional uint64 roleId = 1;
optional string name = 2;
optional uint32 color = 3;
}
message StChannelInfo {
optional StChannelSign sign = 1;
optional string name = 2;
optional string iconUrl = 3;
}
message StChannelSign {
optional uint64 guildId = 1;
optional uint64 channelId = 2;
}
/*
message StEmojiReaction {
optional string emojiId = 1;
optional uint64 emojiType = 2;
optional uint64 cnt = 3;
optional bool isClicked = 4;
optional bool isDefaultEmoji = 10001;
}
message StEmotionReactionInfo {
optional string id = 1;
repeated StEmojiReaction emojiReactionList = 2;
}
*/
message StCommonExt {
repeated CommonEntry mapInfo = 1;
optional string attachInfo = 2;
repeated BytesEntry mapBytesInfo = 3;
}
message BytesEntry {
optional string key = 1;
optional bytes value = 2;
}
message CommonEntry {
optional string key = 1;
optional string value = 2;
}

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,652 @@
syntax = "proto2";
package channel;
option go_package = "pb/channel;channel";
import "pb/channel/MsgResponsesSvr.proto";
import "pb/channel/GuildChannelBase.proto";
message ContentMetaData {
optional RichTextContentCount count = 1;
optional int64 ContentID = 2;
}
message FeedMetaData {
optional ContentMetaData content = 1;
optional uint64 lastModifiedTime = 2;
}
message FeedRedTouchTransInfo {
optional string feedId = 1;
optional string author = 2;
optional int64 createTs = 3;
optional int32 msgType = 4;
optional int32 pageType = 5;
optional int32 redType = 6;
optional int32 insertPageType = 7;
}
message NoticeOperation {
optional uint32 type = 1;
optional string schema = 2;
}
message RichTextContentCount {
optional uint64 textWord = 1;
optional uint64 at = 2;
optional uint64 url = 3;
optional uint64 emoji = 4;
optional uint64 image = 5;
optional uint64 video = 6;
}
message StAnimation {
optional uint32 width = 1;
optional uint32 height = 2;
optional string animationUrl = 3;
optional bytes busiData = 4;
}
message StBusiReportInfo {
optional StRecomReportInfo recomReport = 1;
optional string traceID = 2;
}
message StChannelShareInfo {
optional string feedID = 1;
optional string posterID = 2;
optional uint64 feedPublishAt = 3;
optional StChannelSign channelSign = 4;
optional uint64 updateDurationMs = 5;
optional StChannelShareSign sign = 6;
}
message StChannelShareSign {
optional uint64 createAt = 1;
optional string token = 2;
}
message StCircleRankItem {
optional int32 rankNo = 1;
optional string circleName = 2;
optional int64 fuelValue = 3;
optional int64 feedNum = 4;
optional string circleID = 5;
}
message StClientInfo {
optional string feedclientkey = 1;
repeated CommonEntry clientMap = 2;
}
message StComment {
optional string id = 1;
optional StUser postUser = 2;
optional uint64 createTime = 3;
optional string content = 4;
optional uint32 replyCount = 5;
repeated StReply vecReply = 6;
optional bytes busiData = 7;
optional StLike likeInfo = 8;
optional uint32 typeFlag = 9;
repeated string atUinList = 10;
optional uint32 typeFlag2 = 11;
optional uint64 createTimeNs = 12;
repeated CommonEntry storeExtInfo = 13;
optional string thirdId = 14;
optional uint32 sourceType = 15;
optional StRichText richContents = 16;
}
message StDebugInfo {
repeated CommonEntry debugMap = 1;
}
message StDittoFeed {
optional uint32 dittoId = 1;
optional uint32 dittoPatternId = 2;
optional bytes dittoData = 3;
optional bytes dittoDataNew = 4;
}
message StExifInfo {
repeated CommonEntry kvs = 1;
}
message StExternalMedalWallInfo {
optional bool needRedPoint = 1;
repeated StMedalInfo medalInfos = 2;
optional string medalWallJumpUrl = 3;
optional bool needShowEntrance = 4;
}
message StFeed {
optional string id = 1;
optional StRichText title = 2;
optional StRichText subtitle = 3;
optional StUser poster = 4;
repeated StVideo videos = 5;
optional StRichText contents = 6;
optional uint64 createTime = 7;
optional EmojiReaction emotionReaction = 8;
optional uint32 commentCount = 9;
repeated StComment vecComment = 10;
optional StShare share = 11;
optional StVisitor visitorInfo = 12;
repeated StImage images = 13;
optional StPoiInfoV2 poiInfo = 14;
repeated StTagInfo tagInfos = 15;
optional bytes busiReport = 16;
repeated uint32 opMask = 17;
optional StOpinfo opinfo = 18;
repeated CommonEntry extInfo = 19;
optional string patternInfo = 20;
optional StChannelInfo channelInfo = 21;
optional uint64 createTimeNs = 22;
optional StFeedSummary summary = 23;
optional StRecomInfo recomInfo = 24;
optional FeedMetaData meta = 25;
}
message StFeedAbstract {
optional string id = 1;
optional string title = 2;
optional StUser poster = 3;
optional StImage pic = 4;
optional uint32 type = 5;
optional uint64 createTime = 6;
optional StVideo video = 7;
optional uint32 fuelNum = 8;
optional string content = 9;
repeated StImage images = 10;
optional StFeedCount countInfo = 11;
}
message StFeedCount {
optional int64 liked = 1;
optional int64 push = 2;
optional int64 comment = 3;
optional int64 visitor = 4;
}
message StFeedSummary {
optional uint32 layoutType = 1;
}
message StFollowRecomInfo {
optional string followText = 1;
repeated StFollowUser followUsers = 4;
optional string commFriendText = 6;
optional string commGroupText = 7;
}
message StFollowUser {
optional uint64 uid = 1;
optional string nick = 2;
}
message StGPSV2 {
optional int64 lat = 1;
optional int64 lon = 2;
optional int64 eType = 3;
optional int64 alt = 4;
}
message StGuidePublishBubble {
optional string id = 1;
optional StImage backgroundImage = 2;
optional string jumpUrl = 3;
}
message StIconInfo {
optional string iconUrl40 = 1;
optional string iconUrl100 = 2;
optional string iconUrl140 = 3;
optional string iconUrl640 = 4;
optional string iconUrl = 5;
}
message StImage {
optional uint32 width = 1;
optional uint32 height = 2;
optional string picUrl = 3;
repeated StImageUrl vecImageUrl = 4;
optional string picId = 5;
optional bytes busiData = 6;
optional string imageMD5 = 7;
optional string layerPicUrl = 8;
optional string patternId = 9;
optional uint32 displayIndex = 10;
}
message StImageUrl {
optional uint32 levelType = 1;
optional string url = 2;
optional uint32 width = 3;
optional uint32 height = 4;
optional bytes busiData = 5;
}
message StLightInteractInfo {
optional StUser user = 1;
optional StRelationInfo relation = 2;
optional uint32 count = 3;
optional bytes busiData = 4;
}
message StLike {
optional string id = 1;
optional uint32 count = 2;
optional uint32 status = 3;
repeated StUser vecUser = 4;
optional bytes busiData = 5;
optional StUser postUser = 6;
optional uint32 hasLikedCount = 7;
optional uint32 ownerStatus = 8;
optional string jumpUrl = 9;
}
message StLiteBanner {
optional StImage icon = 1;
optional string title = 2;
optional string jumpUrl = 3;
optional string activityID = 4;
optional string jsonStyle = 5;
repeated CommonEntry extInfo = 6;
}
message StMaterialDataNew {
optional string materialType = 1;
repeated StSingleMaterial materialList = 2;
}
message StMedalInfo {
optional int32 type = 1;
optional string medalName = 2;
optional string medalID = 3;
optional int32 rank = 4;
optional bool isHighLight = 5;
optional bool isNew = 6;
optional string jumpUrl = 7;
optional string iconUrl = 8;
optional string backgroundUrl = 9;
optional string describe = 10;
optional int32 reportValue = 11;
}
message StNotice {
optional StFeed psvFeed = 1;
optional StFeed origineFeed = 2;
optional StNoticePattonInfo pattonInfo = 3;
}
message StNoticePattonInfo {
optional uint32 pattonType = 1;
optional StPlainTxtInfo plainTxt = 2;
}
message StNoticeTxtInfo {
optional StRichText content = 1;
optional StRichText contentOfReference = 2;
}
message StOpinfo {
repeated uint64 createTime = 1;
}
message StPlainTxtInfo {
optional StNoticeTxtInfo txtInfo = 1;
optional NoticeOperation operation = 2;
}
message StPoiInfoV2 {
optional string poiId = 1;
optional string name = 2;
optional int32 poiType = 3;
optional string typeName = 4;
optional string address = 5;
optional int32 districtCode = 6;
optional StGPSV2 gps = 7;
optional int32 distance = 8;
optional int32 hotValue = 9;
optional string phone = 10;
optional string country = 11;
optional string province = 12;
optional string city = 13;
optional int32 poiNum = 14;
optional int32 poiOrderType = 15;
optional string defaultName = 16;
optional string district = 17;
optional string dianPingId = 18;
optional string distanceText = 19;
optional string displayName = 20;
}
message StPrePullCacheFeed {
optional string id = 1;
optional StUser poster = 2;
optional uint64 createTime = 3;
//repeated GuildCommon.BytesEntry busiTranparent = 4;
}
message StProxyInfo {
optional int32 cmdId = 1;
optional int32 subCmdId = 2;
optional string appProtocol = 3;
optional bytes reqBody = 4;
}
message StRankingItem {
optional StUser user = 1;
optional StRelationInfo relation = 2;
optional int64 score = 3;
optional int32 grade = 4;
optional bytes busiData = 5;
optional int32 rankNo = 6;
optional int32 inTopicList = 7;
}
message StRecomForward {
optional string id = 1;
optional string title = 2;
optional string subtitle = 3;
optional StUser poster = 4;
optional uint64 createTime = 5;
optional uint32 type = 6;
optional bytes busiData = 7;
}
message StRecomInfo {
optional string recomReason = 1;
optional bytes recomAttachInfo = 2;
optional string recomTrace = 3;
optional bytes clientSealData = 4;
optional string iconUrl = 5;
optional int32 recomReasonType = 6;
}
message StRecomReportInfo {
repeated StSingleRecomReportInfo recomInfos = 1;
}
message StRelationInfo {
optional string id = 1;
optional uint32 relation = 2;
optional bytes busiData = 3;
optional uint32 relationState = 4;
optional uint32 score = 5;
optional bool isBlock = 6;
optional bool isBlocked = 7;
optional bool isFriend = 8;
optional bool isUncare = 9;
optional uint64 imBitMap = 10;
}
message StReply {
optional string id = 1;
optional StUser postUser = 2;
optional uint64 createTime = 3;
optional string content = 4;
optional StUser targetUser = 5;
optional bytes busiData = 6;
optional StLike likeInfo = 7;
optional uint32 typeFlag = 8;
optional uint32 modifyflag = 9;
repeated string atUinList = 10;
optional uint32 typeFlag2 = 11;
optional uint64 createTimeNs = 12;
repeated CommonEntry storeExtInfo = 13;
optional string thirdId = 14;
optional string targetReplyID = 15;
optional uint32 sourceType = 16;
optional StRichText richContents = 17;
}
message StReportInfo {
optional string id = 1;
optional bytes busiReport = 2;
}
message StRichText {
repeated StRichTextContent contents = 1;
}
message StRichTextAtContent {
optional uint32 type = 1;
optional GuildChannelBaseGuildInfo guildInfo = 2;
optional GuildChannelBaseRoleGroupInfo roleGroupId = 3;
optional StUser user = 4;
}
message GuildChannelBaseGuildInfo {
optional uint64 guildId = 1;
optional string name = 2;
optional uint64 joinTime = 3;
}
message GuildChannelBaseRoleGroupInfo {
optional uint64 roleId = 1;
optional string name = 2;
optional uint32 color = 3;
}
message StRichTextChannelContent {
optional StChannelInfo channelInfo = 1;
}
message StRichTextContent {
optional uint32 type = 1;
optional string patternId = 2;
optional StRichTextTextContent textContent = 3;
optional StRichTextAtContent atContent = 4;
optional StRichTextURLContent urlContent = 5;
optional StRichTextEmojiContent emojiContent = 6;
optional StRichTextChannelContent channelContent = 7;
}
message StRichTextEmojiContent {
optional string id = 1;
optional string type = 2;
optional string name = 3;
optional string url = 4;
}
message StRichTextTextContent {
optional string text = 1;
}
message StRichTextURLContent {
optional string url = 1;
optional string displayText = 2;
}
message StSameTopicGuideInfo {
optional uint32 isSameTopicGuide = 1;
optional int64 stayShowTime = 2;
optional string hashTag = 3;
optional string words = 4;
optional string jumpUrl = 5;
optional string reportExt = 6;
}
message StShare {
optional string title = 1;
optional string desc = 2;
optional uint32 type = 3;
optional string url = 4;
optional StUser author = 5;
optional StUser poster = 6;
repeated StVideo videos = 7;
optional string shorturl = 8;
optional string shareCardInfo = 9;
optional StShareQzoneInfo shareQzoneInfo = 10;
repeated StImage images = 11;
optional uint32 publishTotalUser = 12;
optional uint32 sharedCount = 13;
optional StChannelShareInfo channelShareInfo = 14;
}
message StShareQzoneInfo {
repeated CommonEntry entrys = 1;
}
message StSingleMaterial {
optional string materialId = 1;
}
message StSingleRecomReportInfo {
optional string reportID = 1;
optional bytes reportData = 2;
}
message StTagInfo {
optional string tagId = 1;
optional string tagName = 2;
optional string tagDec = 3;
repeated StUser userList = 4;
repeated StFeedAbstract feedList = 5;
optional uint32 tagTotalUser = 6;
optional uint32 tagTotalFeed = 7;
optional string tagWording = 8;
optional uint32 tagType = 9;
optional uint32 followState = 10;
optional StShare shareInfo = 11;
optional uint32 isTop = 12;
optional uint32 isSelected = 13;
optional int64 userViewHistory = 14;
optional StTagMedalInfo medal = 15;
optional uint32 status = 16;
optional StTagOperateInfo optInfo = 17;
optional uint32 tagBaseStatus = 18;
optional int32 isRecommend = 19;
optional int64 tagViewHistory = 20;
optional string operateIconUrl = 21;
optional string tagReport = 99;
optional string tagIconUrl = 100;
}
message StTagMedalInfo {
optional string tagID = 1;
optional string tagName = 2;
optional uint64 rank = 3;
}
message StTagOperateInfo {
optional string createUser = 1;
optional string coverURL = 2;
optional string desc = 3;
optional string backgroundURL = 4;
optional string bannerURL = 5;
optional string bannerSkipLink = 6;
optional int64 activityStartTime = 7;
optional int64 activityEndTime = 8;
optional string recommendReason = 9;
optional int32 isWhite = 10;
optional int64 beWhiteStartTime = 11;
optional int64 beWhiteEndTime = 12;
optional string publishSchema = 13;
}
message StUnifiedTag {
optional string unifiedType = 1;
optional string unifiedId = 2;
}
message StUser {
optional string id = 1;
optional string nick = 2;
optional StIconInfo icon = 3;
optional string desc = 4;
optional uint32 followState = 5;
optional uint32 type = 6;
optional uint32 sex = 7;
optional uint64 birthday = 8;
optional string school = 9;
optional string location = 11;
optional bytes busiData = 12;
optional uint32 frdState = 13;
optional uint32 relationState = 14;
optional uint32 blackState = 15;
optional StTagMedalInfo medal = 16;
optional int32 constellation = 17;
optional string jumpUrl = 18;
optional string locationCode = 19;
optional string thirdId = 20;
optional string company = 21;
optional string certificationDesc = 22;
optional uint32 descType = 23;
optional GuildChannelBaseChannelUserInfo channelUserInfo = 24;
optional string loginId = 25;
}
message GuildChannelBaseChannelUserInfo {
optional ClientIdentity clientIdentity = 1;
optional uint32 memberType = 2;
// optional ChannelUserPermission permission = 3;
repeated GuildChannelBaseRoleGroupInfo roleGroups = 4;
}
message StUserGroupInfo {
optional string id = 1;
optional string name = 2;
repeated StUser userList = 3;
}
message StUserRecomInfo {
optional StUser user = 1;
repeated StFeedAbstract feedList = 2;
optional bytes busiData = 3;
}
message StVideo {
optional string fileId = 1;
optional uint32 fileSize = 2;
optional uint32 duration = 3;
optional uint32 width = 4;
optional uint32 height = 5;
optional string playUrl = 6;
optional uint32 transStatus = 7;
optional uint32 videoPrior = 8;
optional uint32 videoRate = 9;
repeated StVideoUrl vecVideoUrl = 10;
optional bytes busiData = 11;
optional uint32 approvalStatus = 12;
optional uint32 videoSource = 13;
optional uint32 mediaQualityRank = 14;
optional float mediaQualityScore = 15;
optional string videoMD5 = 16;
optional uint32 isQuic = 17;
optional uint32 orientation = 18;
optional StImage cover = 19;
optional string patternId = 20;
optional uint32 displayIndex = 21;
}
message StVideoUrl {
optional uint32 levelType = 1;
optional string playUrl = 2;
optional uint32 videoPrior = 3;
optional uint32 videoRate = 4;
optional uint32 transStatus = 5;
optional bytes busiData = 6;
optional bool hasWatermark = 7;
}
message StVisitor {
optional uint32 viewCount = 1;
optional bytes busiData = 2;
optional uint32 recomCount = 3;
optional string viewDesc = 4;
}
message StWearingMedal {
repeated StWearingMedalInfo medalInfos = 1;
}
message StWearingMedalInfo {
optional int32 type = 1;
optional string medalName = 2;
optional string medalID = 3;
}

View File

@ -0,0 +1,424 @@
// Code generated by protoc-gen-golite. DO NOT EDIT.
// source: pb/channel/GuildFeedCloudRead.proto
package channel
type GetNoticesReq struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
PageNum *uint32 `protobuf:"varint,2,opt"`
AttachInfo *string `protobuf:"bytes,3,opt"`
}
func (x *GetNoticesReq) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *GetNoticesReq) GetPageNum() uint32 {
if x != nil && x.PageNum != nil {
return *x.PageNum
}
return 0
}
func (x *GetNoticesReq) GetAttachInfo() string {
if x != nil && x.AttachInfo != nil {
return *x.AttachInfo
}
return ""
}
type GetNoticesRsp struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
Notices []*StNotice `protobuf:"bytes,2,rep"`
TotalNum *uint32 `protobuf:"varint,3,opt"`
IsFinish *bool `protobuf:"varint,4,opt"`
AttachInfo *string `protobuf:"bytes,5,opt"`
}
func (x *GetNoticesRsp) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *GetNoticesRsp) GetNotices() []*StNotice {
if x != nil {
return x.Notices
}
return nil
}
func (x *GetNoticesRsp) GetTotalNum() uint32 {
if x != nil && x.TotalNum != nil {
return *x.TotalNum
}
return 0
}
func (x *GetNoticesRsp) GetIsFinish() bool {
if x != nil && x.IsFinish != nil {
return *x.IsFinish
}
return false
}
func (x *GetNoticesRsp) GetAttachInfo() string {
if x != nil && x.AttachInfo != nil {
return *x.AttachInfo
}
return ""
}
type NeedInsertCommentInfo struct {
CommentID *string `protobuf:"bytes,1,opt"`
}
func (x *NeedInsertCommentInfo) GetCommentID() string {
if x != nil && x.CommentID != nil {
return *x.CommentID
}
return ""
}
type RefreshToast struct {
Text *string `protobuf:"bytes,1,opt"`
}
func (x *RefreshToast) GetText() string {
if x != nil && x.Text != nil {
return *x.Text
}
return ""
}
type StGetChannelFeedsReq struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
Count *uint32 `protobuf:"varint,2,opt"`
From *uint32 `protobuf:"varint,3,opt"`
ChannelSign *StChannelSign `protobuf:"bytes,4,opt"`
FeedAttchInfo *string `protobuf:"bytes,5,opt"`
}
func (x *StGetChannelFeedsReq) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetChannelFeedsReq) GetCount() uint32 {
if x != nil && x.Count != nil {
return *x.Count
}
return 0
}
func (x *StGetChannelFeedsReq) GetFrom() uint32 {
if x != nil && x.From != nil {
return *x.From
}
return 0
}
func (x *StGetChannelFeedsReq) GetChannelSign() *StChannelSign {
if x != nil {
return x.ChannelSign
}
return nil
}
func (x *StGetChannelFeedsReq) GetFeedAttchInfo() string {
if x != nil && x.FeedAttchInfo != nil {
return *x.FeedAttchInfo
}
return ""
}
type StGetChannelFeedsRsp struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
VecFeed []*StFeed `protobuf:"bytes,2,rep"`
IsFinish *uint32 `protobuf:"varint,3,opt"`
User *StUser `protobuf:"bytes,4,opt"`
FeedAttchInfo *string `protobuf:"bytes,5,opt"`
RefreshToast *RefreshToast `protobuf:"bytes,6,opt"`
}
func (x *StGetChannelFeedsRsp) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetChannelFeedsRsp) GetVecFeed() []*StFeed {
if x != nil {
return x.VecFeed
}
return nil
}
func (x *StGetChannelFeedsRsp) GetIsFinish() uint32 {
if x != nil && x.IsFinish != nil {
return *x.IsFinish
}
return 0
}
func (x *StGetChannelFeedsRsp) GetUser() *StUser {
if x != nil {
return x.User
}
return nil
}
func (x *StGetChannelFeedsRsp) GetFeedAttchInfo() string {
if x != nil && x.FeedAttchInfo != nil {
return *x.FeedAttchInfo
}
return ""
}
func (x *StGetChannelFeedsRsp) GetRefreshToast() *RefreshToast {
if x != nil {
return x.RefreshToast
}
return nil
}
type StGetChannelShareFeedReq struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
From *uint32 `protobuf:"varint,2,opt"`
ChannelShareInfo *StChannelShareInfo `protobuf:"bytes,3,opt"`
}
func (x *StGetChannelShareFeedReq) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetChannelShareFeedReq) GetFrom() uint32 {
if x != nil && x.From != nil {
return *x.From
}
return 0
}
func (x *StGetChannelShareFeedReq) GetChannelShareInfo() *StChannelShareInfo {
if x != nil {
return x.ChannelShareInfo
}
return nil
}
type StGetChannelShareFeedRsp struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
Feed *StFeed `protobuf:"bytes,2,opt"`
}
func (x *StGetChannelShareFeedRsp) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetChannelShareFeedRsp) GetFeed() *StFeed {
if x != nil {
return x.Feed
}
return nil
}
type StGetFeedCommentsReq struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
UserId *string `protobuf:"bytes,2,opt"`
FeedId *string `protobuf:"bytes,3,opt"`
ListNum *uint32 `protobuf:"varint,4,opt"`
From *uint32 `protobuf:"varint,5,opt"`
AttchInfo *string `protobuf:"bytes,6,opt"`
EntrySchema *string `protobuf:"bytes,7,opt"`
}
func (x *StGetFeedCommentsReq) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetFeedCommentsReq) GetUserId() string {
if x != nil && x.UserId != nil {
return *x.UserId
}
return ""
}
func (x *StGetFeedCommentsReq) GetFeedId() string {
if x != nil && x.FeedId != nil {
return *x.FeedId
}
return ""
}
func (x *StGetFeedCommentsReq) GetListNum() uint32 {
if x != nil && x.ListNum != nil {
return *x.ListNum
}
return 0
}
func (x *StGetFeedCommentsReq) GetFrom() uint32 {
if x != nil && x.From != nil {
return *x.From
}
return 0
}
func (x *StGetFeedCommentsReq) GetAttchInfo() string {
if x != nil && x.AttchInfo != nil {
return *x.AttchInfo
}
return ""
}
func (x *StGetFeedCommentsReq) GetEntrySchema() string {
if x != nil && x.EntrySchema != nil {
return *x.EntrySchema
}
return ""
}
type StGetFeedCommentsRsp struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
VecComment []*StComment `protobuf:"bytes,2,rep"`
TotalNum *uint32 `protobuf:"varint,3,opt"`
IsFinish *uint32 `protobuf:"varint,4,opt"`
AttchInfo *string `protobuf:"bytes,5,opt"`
}
func (x *StGetFeedCommentsRsp) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetFeedCommentsRsp) GetVecComment() []*StComment {
if x != nil {
return x.VecComment
}
return nil
}
func (x *StGetFeedCommentsRsp) GetTotalNum() uint32 {
if x != nil && x.TotalNum != nil {
return *x.TotalNum
}
return 0
}
func (x *StGetFeedCommentsRsp) GetIsFinish() uint32 {
if x != nil && x.IsFinish != nil {
return *x.IsFinish
}
return 0
}
func (x *StGetFeedCommentsRsp) GetAttchInfo() string {
if x != nil && x.AttchInfo != nil {
return *x.AttchInfo
}
return ""
}
type StGetFeedDetailReq struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
From *uint32 `protobuf:"varint,2,opt"`
UserId *string `protobuf:"bytes,3,opt"`
FeedId *string `protobuf:"bytes,4,opt"`
CreateTime *uint64 `protobuf:"varint,5,opt"`
DetailType *uint32 `protobuf:"varint,6,opt"`
ChannelSign *StChannelSign `protobuf:"bytes,7,opt"`
}
func (x *StGetFeedDetailReq) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetFeedDetailReq) GetFrom() uint32 {
if x != nil && x.From != nil {
return *x.From
}
return 0
}
func (x *StGetFeedDetailReq) GetUserId() string {
if x != nil && x.UserId != nil {
return *x.UserId
}
return ""
}
func (x *StGetFeedDetailReq) GetFeedId() string {
if x != nil && x.FeedId != nil {
return *x.FeedId
}
return ""
}
func (x *StGetFeedDetailReq) GetCreateTime() uint64 {
if x != nil && x.CreateTime != nil {
return *x.CreateTime
}
return 0
}
func (x *StGetFeedDetailReq) GetDetailType() uint32 {
if x != nil && x.DetailType != nil {
return *x.DetailType
}
return 0
}
func (x *StGetFeedDetailReq) GetChannelSign() *StChannelSign {
if x != nil {
return x.ChannelSign
}
return nil
}
type StGetFeedDetailRsp struct {
ExtInfo *StCommonExt `protobuf:"bytes,1,opt"`
Feed *StFeed `protobuf:"bytes,2,opt"`
LoginUser *StUser `protobuf:"bytes,3,opt"`
}
func (x *StGetFeedDetailRsp) GetExtInfo() *StCommonExt {
if x != nil {
return x.ExtInfo
}
return nil
}
func (x *StGetFeedDetailRsp) GetFeed() *StFeed {
if x != nil {
return x.Feed
}
return nil
}
func (x *StGetFeedDetailRsp) GetLoginUser() *StUser {
if x != nil {
return x.LoginUser
}
return nil
}

View File

@ -0,0 +1,93 @@
syntax = "proto2";
package channel;
option go_package = "pb/channel;channel";
import "pb/channel/GuildFeedCloudMeta.proto";
import "pb/channel/GuildChannelBase.proto";
message GetNoticesReq {
optional StCommonExt extInfo = 1;
optional uint32 pageNum = 2;
optional string attachInfo = 3;
}
message GetNoticesRsp {
optional StCommonExt extInfo = 1;
repeated StNotice notices = 2;
optional uint32 totalNum = 3;
optional bool isFinish = 4;
optional string attachInfo = 5;
}
message NeedInsertCommentInfo {
optional string commentID = 1;
}
message RefreshToast {
optional string text = 1;
}
message StGetChannelFeedsReq {
optional StCommonExt extInfo = 1;
optional uint32 count = 2;
optional uint32 from = 3;
optional StChannelSign channelSign = 4;
optional string feedAttchInfo = 5;
}
message StGetChannelFeedsRsp {
optional StCommonExt extInfo = 1;
repeated StFeed vecFeed = 2;
optional uint32 isFinish = 3;
optional StUser user = 4;
optional string feedAttchInfo = 5;
optional RefreshToast refreshToast = 6;
}
message StGetChannelShareFeedReq {
optional StCommonExt extInfo = 1;
optional uint32 from = 2;
optional StChannelShareInfo channelShareInfo = 3;
}
message StGetChannelShareFeedRsp {
optional StCommonExt extInfo = 1;
optional StFeed feed = 2;
}
message StGetFeedCommentsReq {
optional StCommonExt extInfo = 1;
optional string userId = 2;
optional string feedId = 3;
optional uint32 listNum = 4;
optional uint32 from = 5;
optional string attchInfo = 6;
optional string entrySchema = 7;
}
message StGetFeedCommentsRsp {
optional StCommonExt extInfo = 1;
repeated StComment vecComment = 2;
optional uint32 totalNum = 3;
optional uint32 isFinish = 4;
optional string attchInfo = 5;
}
message StGetFeedDetailReq {
optional StCommonExt extInfo = 1;
optional uint32 from = 2;
optional string userId = 3;
optional string feedId = 4;
optional uint64 createTime = 5;
optional uint32 detailType = 6;
optional StChannelSign channelSign = 7;
}
message StGetFeedDetailRsp {
optional StCommonExt extInfo = 1;
optional StFeed feed = 2;
optional StUser loginUser = 3;
}

View File

@ -1,64 +1,10 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc v3.14.0
// source: pb/channel/MsgResponsesSvr.proto // source: pb/channel/MsgResponsesSvr.proto
package channel package channel
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type BatchGetMsgRspCountReq struct { type BatchGetMsgRspCountReq struct {
state protoimpl.MessageState GuildMsgList []*GuildMsg `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
GuildMsgList []*GuildMsg `protobuf:"bytes,1,rep,name=guildMsgList" json:"guildMsgList,omitempty"`
}
func (x *BatchGetMsgRspCountReq) Reset() {
*x = BatchGetMsgRspCountReq{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BatchGetMsgRspCountReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BatchGetMsgRspCountReq) ProtoMessage() {}
func (x *BatchGetMsgRspCountReq) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BatchGetMsgRspCountReq.ProtoReflect.Descriptor instead.
func (*BatchGetMsgRspCountReq) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{0}
} }
func (x *BatchGetMsgRspCountReq) GetGuildMsgList() []*GuildMsg { func (x *BatchGetMsgRspCountReq) GetGuildMsgList() []*GuildMsg {
@ -69,43 +15,7 @@ func (x *BatchGetMsgRspCountReq) GetGuildMsgList() []*GuildMsg {
} }
type BatchGetMsgRspCountRsp struct { type BatchGetMsgRspCountRsp struct {
state protoimpl.MessageState GuildMsgInfoList []*GuildMsgInfo `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
GuildMsgInfoList []*GuildMsgInfo `protobuf:"bytes,1,rep,name=guildMsgInfoList" json:"guildMsgInfoList,omitempty"`
}
func (x *BatchGetMsgRspCountRsp) Reset() {
*x = BatchGetMsgRspCountRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BatchGetMsgRspCountRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BatchGetMsgRspCountRsp) ProtoMessage() {}
func (x *BatchGetMsgRspCountRsp) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BatchGetMsgRspCountRsp.ProtoReflect.Descriptor instead.
func (*BatchGetMsgRspCountRsp) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{1}
} }
func (x *BatchGetMsgRspCountRsp) GetGuildMsgInfoList() []*GuildMsgInfo { func (x *BatchGetMsgRspCountRsp) GetGuildMsgInfoList() []*GuildMsgInfo {
@ -116,44 +26,8 @@ func (x *BatchGetMsgRspCountRsp) GetGuildMsgInfoList() []*GuildMsgInfo {
} }
type SvrChannelMsg struct { type SvrChannelMsg struct {
state protoimpl.MessageState ChannelId *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Id []*MsgId `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
ChannelId *uint64 `protobuf:"varint,1,opt,name=channelId" json:"channelId,omitempty"`
Id []*MsgId `protobuf:"bytes,2,rep,name=id" json:"id,omitempty"`
}
func (x *SvrChannelMsg) Reset() {
*x = SvrChannelMsg{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SvrChannelMsg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SvrChannelMsg) ProtoMessage() {}
func (x *SvrChannelMsg) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SvrChannelMsg.ProtoReflect.Descriptor instead.
func (*SvrChannelMsg) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{2}
} }
func (x *SvrChannelMsg) GetChannelId() uint64 { func (x *SvrChannelMsg) GetChannelId() uint64 {
@ -171,44 +45,8 @@ func (x *SvrChannelMsg) GetId() []*MsgId {
} }
type ChannelMsgInfo struct { type ChannelMsgInfo struct {
state protoimpl.MessageState ChannelId *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RespData []*MsgRespData `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
ChannelId *uint64 `protobuf:"varint,1,opt,name=channelId" json:"channelId,omitempty"`
RespData []*MsgRespData `protobuf:"bytes,2,rep,name=respData" json:"respData,omitempty"`
}
func (x *ChannelMsgInfo) Reset() {
*x = ChannelMsgInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ChannelMsgInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ChannelMsgInfo) ProtoMessage() {}
func (x *ChannelMsgInfo) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ChannelMsgInfo.ProtoReflect.Descriptor instead.
func (*ChannelMsgInfo) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{3}
} }
func (x *ChannelMsgInfo) GetChannelId() uint64 { func (x *ChannelMsgInfo) GetChannelId() uint64 {
@ -226,46 +64,11 @@ func (x *ChannelMsgInfo) GetRespData() []*MsgRespData {
} }
type EmojiReaction struct { type EmojiReaction struct {
state protoimpl.MessageState EmojiId *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache EmojiType *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Cnt *uint64 `protobuf:"varint,3,opt"`
IsClicked *bool `protobuf:"varint,4,opt"`
EmojiId *string `protobuf:"bytes,1,opt,name=emojiId" json:"emojiId,omitempty"` IsDefaultEmoji *bool `protobuf:"varint,10001,opt"`
EmojiType *uint64 `protobuf:"varint,2,opt,name=emojiType" json:"emojiType,omitempty"`
Cnt *uint64 `protobuf:"varint,3,opt,name=cnt" json:"cnt,omitempty"`
IsClicked *bool `protobuf:"varint,4,opt,name=isClicked" json:"isClicked,omitempty"`
}
func (x *EmojiReaction) Reset() {
*x = EmojiReaction{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *EmojiReaction) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*EmojiReaction) ProtoMessage() {}
func (x *EmojiReaction) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use EmojiReaction.ProtoReflect.Descriptor instead.
func (*EmojiReaction) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{4}
} }
func (x *EmojiReaction) GetEmojiId() string { func (x *EmojiReaction) GetEmojiId() string {
@ -296,45 +99,16 @@ func (x *EmojiReaction) GetIsClicked() bool {
return false return false
} }
func (x *EmojiReaction) GetIsDefaultEmoji() bool {
if x != nil && x.IsDefaultEmoji != nil {
return *x.IsDefaultEmoji
}
return false
}
type GuildMsg struct { type GuildMsg struct {
state protoimpl.MessageState GuildId *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ChannelMsgList []*SvrChannelMsg `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
GuildId *uint64 `protobuf:"varint,1,opt,name=guildId" json:"guildId,omitempty"`
ChannelMsgList []*SvrChannelMsg `protobuf:"bytes,2,rep,name=channelMsgList" json:"channelMsgList,omitempty"`
}
func (x *GuildMsg) Reset() {
*x = GuildMsg{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GuildMsg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GuildMsg) ProtoMessage() {}
func (x *GuildMsg) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GuildMsg.ProtoReflect.Descriptor instead.
func (*GuildMsg) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{5}
} }
func (x *GuildMsg) GetGuildId() uint64 { func (x *GuildMsg) GetGuildId() uint64 {
@ -352,44 +126,8 @@ func (x *GuildMsg) GetChannelMsgList() []*SvrChannelMsg {
} }
type GuildMsgInfo struct { type GuildMsgInfo struct {
state protoimpl.MessageState GuildId *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ChannelMsgInfoList []*ChannelMsgInfo `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
GuildId *uint64 `protobuf:"varint,1,opt,name=guildId" json:"guildId,omitempty"`
ChannelMsgInfoList []*ChannelMsgInfo `protobuf:"bytes,2,rep,name=channelMsgInfoList" json:"channelMsgInfoList,omitempty"`
}
func (x *GuildMsgInfo) Reset() {
*x = GuildMsgInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GuildMsgInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GuildMsgInfo) ProtoMessage() {}
func (x *GuildMsgInfo) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GuildMsgInfo.ProtoReflect.Descriptor instead.
func (*GuildMsgInfo) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{6}
} }
func (x *GuildMsgInfo) GetGuildId() uint64 { func (x *GuildMsgInfo) GetGuildId() uint64 {
@ -407,44 +145,8 @@ func (x *GuildMsgInfo) GetChannelMsgInfoList() []*ChannelMsgInfo {
} }
type MsgCnt struct { type MsgCnt struct {
state protoimpl.MessageState Id *MsgId `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache EmojiReaction []*EmojiReaction `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
Id *MsgId `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
EmojiReaction []*EmojiReaction `protobuf:"bytes,2,rep,name=emojiReaction" json:"emojiReaction,omitempty"`
}
func (x *MsgCnt) Reset() {
*x = MsgCnt{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgCnt) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgCnt) ProtoMessage() {}
func (x *MsgCnt) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgCnt.ProtoReflect.Descriptor instead.
func (*MsgCnt) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{7}
} }
func (x *MsgCnt) GetId() *MsgId { func (x *MsgCnt) GetId() *MsgId {
@ -462,44 +164,8 @@ func (x *MsgCnt) GetEmojiReaction() []*EmojiReaction {
} }
type MsgId struct { type MsgId struct {
state protoimpl.MessageState Version *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Seq *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
Version *uint64 `protobuf:"varint,1,opt,name=version" json:"version,omitempty"`
Seq *uint64 `protobuf:"varint,2,opt,name=seq" json:"seq,omitempty"`
}
func (x *MsgId) Reset() {
*x = MsgId{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgId) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgId) ProtoMessage() {}
func (x *MsgId) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgId.ProtoReflect.Descriptor instead.
func (*MsgId) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{8}
} }
func (x *MsgId) GetVersion() uint64 { func (x *MsgId) GetVersion() uint64 {
@ -517,44 +183,8 @@ func (x *MsgId) GetSeq() uint64 {
} }
type MsgRespData struct { type MsgRespData struct {
state protoimpl.MessageState Id *MsgId `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Cnt []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Id *MsgId `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
Cnt []byte `protobuf:"bytes,2,opt,name=cnt" json:"cnt,omitempty"`
}
func (x *MsgRespData) Reset() {
*x = MsgRespData{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgRespData) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgRespData) ProtoMessage() {}
func (x *MsgRespData) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_MsgResponsesSvr_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgRespData.ProtoReflect.Descriptor instead.
func (*MsgRespData) Descriptor() ([]byte, []int) {
return file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP(), []int{9}
} }
func (x *MsgRespData) GetId() *MsgId { func (x *MsgRespData) GetId() *MsgId {
@ -570,253 +200,3 @@ func (x *MsgRespData) GetCnt() []byte {
} }
return nil return nil
} }
var File_pb_channel_MsgResponsesSvr_proto protoreflect.FileDescriptor
var file_pb_channel_MsgResponsesSvr_proto_rawDesc = []byte{
0x0a, 0x20, 0x70, 0x62, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x4d, 0x73, 0x67,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x53, 0x76, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x22, 0x47, 0x0a, 0x16, 0x42, 0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x4d, 0x73,
0x67, 0x52, 0x73, 0x70, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x2d, 0x0a, 0x0c,
0x67, 0x75, 0x69, 0x6c, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x09, 0x2e, 0x47, 0x75, 0x69, 0x6c, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x0c, 0x67,
0x75, 0x69, 0x6c, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x53, 0x0a, 0x16, 0x42,
0x61, 0x74, 0x63, 0x68, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x52, 0x73, 0x70, 0x43, 0x6f, 0x75,
0x6e, 0x74, 0x52, 0x73, 0x70, 0x12, 0x39, 0x0a, 0x10, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x4d, 0x73,
0x67, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x0d, 0x2e, 0x47, 0x75, 0x69, 0x6c, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x10,
0x67, 0x75, 0x69, 0x6c, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74,
0x22, 0x45, 0x0a, 0x0d, 0x53, 0x76, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73,
0x67, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x18, 0x01,
0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x12,
0x16, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x4d, 0x73,
0x67, 0x49, 0x64, 0x52, 0x02, 0x69, 0x64, 0x22, 0x58, 0x0a, 0x0e, 0x43, 0x68, 0x61, 0x6e, 0x6e,
0x65, 0x6c, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x63, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x08, 0x72, 0x65, 0x73, 0x70, 0x44,
0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4d, 0x73, 0x67, 0x52,
0x65, 0x73, 0x70, 0x44, 0x61, 0x74, 0x61, 0x52, 0x08, 0x72, 0x65, 0x73, 0x70, 0x44, 0x61, 0x74,
0x61, 0x22, 0x77, 0x0a, 0x0d, 0x45, 0x6d, 0x6f, 0x6a, 0x69, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x49, 0x64, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09,
0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
0x09, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x54, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6e,
0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x63, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09,
0x69, 0x73, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52,
0x09, 0x69, 0x73, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x65, 0x64, 0x22, 0x5c, 0x0a, 0x08, 0x47, 0x75,
0x69, 0x6c, 0x64, 0x4d, 0x73, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x49,
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x64,
0x12, 0x36, 0x0a, 0x0e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73, 0x67, 0x4c, 0x69,
0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x53, 0x76, 0x72, 0x43, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73, 0x67, 0x52, 0x0e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65,
0x6c, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x69, 0x0a, 0x0c, 0x47, 0x75, 0x69, 0x6c,
0x64, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x67, 0x75, 0x69, 0x6c,
0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x67, 0x75, 0x69, 0x6c, 0x64,
0x49, 0x64, 0x12, 0x3f, 0x0a, 0x12, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73, 0x67,
0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f,
0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52,
0x12, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x4c,
0x69, 0x73, 0x74, 0x22, 0x56, 0x0a, 0x06, 0x4d, 0x73, 0x67, 0x43, 0x6e, 0x74, 0x12, 0x16, 0x0a,
0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x4d, 0x73, 0x67, 0x49,
0x64, 0x52, 0x02, 0x69, 0x64, 0x12, 0x34, 0x0a, 0x0d, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x52, 0x65,
0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x45,
0x6d, 0x6f, 0x6a, 0x69, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0d, 0x65, 0x6d,
0x6f, 0x6a, 0x69, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x33, 0x0a, 0x05, 0x4d,
0x73, 0x67, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x10,
0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x73, 0x65, 0x71,
0x22, 0x37, 0x0a, 0x0b, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x44, 0x61, 0x74, 0x61, 0x12,
0x16, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x4d, 0x73,
0x67, 0x49, 0x64, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6e, 0x74, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x63, 0x6e, 0x74, 0x42, 0x14, 0x5a, 0x12, 0x70, 0x62, 0x2f,
0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x3b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
}
var (
file_pb_channel_MsgResponsesSvr_proto_rawDescOnce sync.Once
file_pb_channel_MsgResponsesSvr_proto_rawDescData = file_pb_channel_MsgResponsesSvr_proto_rawDesc
)
func file_pb_channel_MsgResponsesSvr_proto_rawDescGZIP() []byte {
file_pb_channel_MsgResponsesSvr_proto_rawDescOnce.Do(func() {
file_pb_channel_MsgResponsesSvr_proto_rawDescData = protoimpl.X.CompressGZIP(file_pb_channel_MsgResponsesSvr_proto_rawDescData)
})
return file_pb_channel_MsgResponsesSvr_proto_rawDescData
}
var file_pb_channel_MsgResponsesSvr_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
var file_pb_channel_MsgResponsesSvr_proto_goTypes = []interface{}{
(*BatchGetMsgRspCountReq)(nil), // 0: BatchGetMsgRspCountReq
(*BatchGetMsgRspCountRsp)(nil), // 1: BatchGetMsgRspCountRsp
(*SvrChannelMsg)(nil), // 2: SvrChannelMsg
(*ChannelMsgInfo)(nil), // 3: ChannelMsgInfo
(*EmojiReaction)(nil), // 4: EmojiReaction
(*GuildMsg)(nil), // 5: GuildMsg
(*GuildMsgInfo)(nil), // 6: GuildMsgInfo
(*MsgCnt)(nil), // 7: MsgCnt
(*MsgId)(nil), // 8: MsgId
(*MsgRespData)(nil), // 9: MsgRespData
}
var file_pb_channel_MsgResponsesSvr_proto_depIdxs = []int32{
5, // 0: BatchGetMsgRspCountReq.guildMsgList:type_name -> GuildMsg
6, // 1: BatchGetMsgRspCountRsp.guildMsgInfoList:type_name -> GuildMsgInfo
8, // 2: SvrChannelMsg.id:type_name -> MsgId
9, // 3: ChannelMsgInfo.respData:type_name -> MsgRespData
2, // 4: GuildMsg.channelMsgList:type_name -> SvrChannelMsg
3, // 5: GuildMsgInfo.channelMsgInfoList:type_name -> ChannelMsgInfo
8, // 6: MsgCnt.id:type_name -> MsgId
4, // 7: MsgCnt.emojiReaction:type_name -> EmojiReaction
8, // 8: MsgRespData.id:type_name -> MsgId
9, // [9:9] is the sub-list for method output_type
9, // [9:9] is the sub-list for method input_type
9, // [9:9] is the sub-list for extension type_name
9, // [9:9] is the sub-list for extension extendee
0, // [0:9] is the sub-list for field type_name
}
func init() { file_pb_channel_MsgResponsesSvr_proto_init() }
func file_pb_channel_MsgResponsesSvr_proto_init() {
if File_pb_channel_MsgResponsesSvr_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_pb_channel_MsgResponsesSvr_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BatchGetMsgRspCountReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BatchGetMsgRspCountRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SvrChannelMsg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChannelMsgInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EmojiReaction); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GuildMsg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GuildMsgInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgCnt); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgId); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_MsgResponsesSvr_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgRespData); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_pb_channel_MsgResponsesSvr_proto_rawDesc,
NumEnums: 0,
NumMessages: 10,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_pb_channel_MsgResponsesSvr_proto_goTypes,
DependencyIndexes: file_pb_channel_MsgResponsesSvr_proto_depIdxs,
MessageInfos: file_pb_channel_MsgResponsesSvr_proto_msgTypes,
}.Build()
File_pb_channel_MsgResponsesSvr_proto = out.File
file_pb_channel_MsgResponsesSvr_proto_rawDesc = nil
file_pb_channel_MsgResponsesSvr_proto_goTypes = nil
file_pb_channel_MsgResponsesSvr_proto_depIdxs = nil
}

View File

@ -2,7 +2,6 @@ syntax = "proto2";
option go_package = "pb/channel;channel"; option go_package = "pb/channel;channel";
message BatchGetMsgRspCountReq { message BatchGetMsgRspCountReq {
repeated GuildMsg guildMsgList = 1; repeated GuildMsg guildMsgList = 1;
} }
@ -26,6 +25,7 @@ message EmojiReaction {
optional uint64 emojiType = 2; optional uint64 emojiType = 2;
optional uint64 cnt = 3; optional uint64 cnt = 3;
optional bool isClicked = 4; optional bool isClicked = 4;
optional bool isDefaultEmoji = 10001;
} }
message GuildMsg { message GuildMsg {

File diff suppressed because it is too large Load Diff

View File

@ -1,64 +1,10 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc v3.14.0
// source: pb/channel/msgpush.proto // source: pb/channel/msgpush.proto
package channel package channel
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type FocusInfo struct { type FocusInfo struct {
state protoimpl.MessageState ChannelIdList []uint64 `protobuf:"varint,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ChannelIdList []uint64 `protobuf:"varint,1,rep,name=channelIdList" json:"channelIdList,omitempty"`
}
func (x *FocusInfo) Reset() {
*x = FocusInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_msgpush_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FocusInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FocusInfo) ProtoMessage() {}
func (x *FocusInfo) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_msgpush_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FocusInfo.ProtoReflect.Descriptor instead.
func (*FocusInfo) Descriptor() ([]byte, []int) {
return file_pb_channel_msgpush_proto_rawDescGZIP(), []int{0}
} }
func (x *FocusInfo) GetChannelIdList() []uint64 { func (x *FocusInfo) GetChannelIdList() []uint64 {
@ -69,50 +15,14 @@ func (x *FocusInfo) GetChannelIdList() []uint64 {
} }
type MsgOnlinePush struct { type MsgOnlinePush struct {
state protoimpl.MessageState Msgs []*ChannelMsgContent `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache GeneralFlag *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields NeedResp *uint32 `protobuf:"varint,3,opt"`
ServerBuf []byte `protobuf:"bytes,4,opt"`
Msgs []*ChannelMsgContent `protobuf:"bytes,1,rep,name=msgs" json:"msgs,omitempty"` CompressFlag *uint32 `protobuf:"varint,5,opt"`
GeneralFlag *uint32 `protobuf:"varint,2,opt,name=generalFlag" json:"generalFlag,omitempty"` CompressMsg []byte `protobuf:"bytes,6,opt"`
NeedResp *uint32 `protobuf:"varint,3,opt,name=needResp" json:"needResp,omitempty"` FocusInfo *FocusInfo `protobuf:"bytes,7,opt"`
ServerBuf []byte `protobuf:"bytes,4,opt,name=serverBuf" json:"serverBuf,omitempty"` HugeFlag *uint32 `protobuf:"varint,8,opt"`
CompressFlag *uint32 `protobuf:"varint,5,opt,name=compressFlag" json:"compressFlag,omitempty"`
CompressMsg []byte `protobuf:"bytes,6,opt,name=compressMsg" json:"compressMsg,omitempty"`
FocusInfo *FocusInfo `protobuf:"bytes,7,opt,name=focusInfo" json:"focusInfo,omitempty"`
HugeFlag *uint32 `protobuf:"varint,8,opt,name=hugeFlag" json:"hugeFlag,omitempty"`
}
func (x *MsgOnlinePush) Reset() {
*x = MsgOnlinePush{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_msgpush_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgOnlinePush) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgOnlinePush) ProtoMessage() {}
func (x *MsgOnlinePush) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_msgpush_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgOnlinePush.ProtoReflect.Descriptor instead.
func (*MsgOnlinePush) Descriptor() ([]byte, []int) {
return file_pb_channel_msgpush_proto_rawDescGZIP(), []int{1}
} }
func (x *MsgOnlinePush) GetMsgs() []*ChannelMsgContent { func (x *MsgOnlinePush) GetMsgs() []*ChannelMsgContent {
@ -172,43 +82,7 @@ func (x *MsgOnlinePush) GetHugeFlag() uint32 {
} }
type MsgPushResp struct { type MsgPushResp struct {
state protoimpl.MessageState ServerBuf []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ServerBuf []byte `protobuf:"bytes,1,opt,name=serverBuf" json:"serverBuf,omitempty"`
}
func (x *MsgPushResp) Reset() {
*x = MsgPushResp{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_msgpush_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgPushResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgPushResp) ProtoMessage() {}
func (x *MsgPushResp) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_msgpush_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgPushResp.ProtoReflect.Descriptor instead.
func (*MsgPushResp) Descriptor() ([]byte, []int) {
return file_pb_channel_msgpush_proto_rawDescGZIP(), []int{2}
} }
func (x *MsgPushResp) GetServerBuf() []byte { func (x *MsgPushResp) GetServerBuf() []byte {
@ -219,43 +93,7 @@ func (x *MsgPushResp) GetServerBuf() []byte {
} }
type PressMsg struct { type PressMsg struct {
state protoimpl.MessageState Msgs []*ChannelMsgContent `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Msgs []*ChannelMsgContent `protobuf:"bytes,1,rep,name=msgs" json:"msgs,omitempty"`
}
func (x *PressMsg) Reset() {
*x = PressMsg{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_msgpush_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PressMsg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PressMsg) ProtoMessage() {}
func (x *PressMsg) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_msgpush_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PressMsg.ProtoReflect.Descriptor instead.
func (*PressMsg) Descriptor() ([]byte, []int) {
return file_pb_channel_msgpush_proto_rawDescGZIP(), []int{3}
} }
func (x *PressMsg) GetMsgs() []*ChannelMsgContent { func (x *PressMsg) GetMsgs() []*ChannelMsgContent {
@ -266,45 +104,9 @@ func (x *PressMsg) GetMsgs() []*ChannelMsgContent {
} }
type ServerBuf struct { type ServerBuf struct {
state protoimpl.MessageState SvrIp *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache SvrPort *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields EchoKey []byte `protobuf:"bytes,3,opt"`
SvrIp *uint32 `protobuf:"varint,1,opt,name=svrIp" json:"svrIp,omitempty"`
SvrPort *uint32 `protobuf:"varint,2,opt,name=svrPort" json:"svrPort,omitempty"`
EchoKey []byte `protobuf:"bytes,3,opt,name=echoKey" json:"echoKey,omitempty"`
}
func (x *ServerBuf) Reset() {
*x = ServerBuf{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_msgpush_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServerBuf) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServerBuf) ProtoMessage() {}
func (x *ServerBuf) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_msgpush_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServerBuf.ProtoReflect.Descriptor instead.
func (*ServerBuf) Descriptor() ([]byte, []int) {
return file_pb_channel_msgpush_proto_rawDescGZIP(), []int{4}
} }
func (x *ServerBuf) GetSvrIp() uint32 { func (x *ServerBuf) GetSvrIp() uint32 {
@ -327,168 +129,3 @@ func (x *ServerBuf) GetEchoKey() []byte {
} }
return nil return nil
} }
var File_pb_channel_msgpush_proto protoreflect.FileDescriptor
var file_pb_channel_msgpush_proto_rawDesc = []byte{
0x0a, 0x18, 0x70, 0x62, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x6d, 0x73, 0x67,
0x70, 0x75, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x63, 0x68, 0x61, 0x6e,
0x6e, 0x65, 0x6c, 0x1a, 0x17, 0x70, 0x62, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x31, 0x0a, 0x09,
0x46, 0x6f, 0x63, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x04,
0x52, 0x0d, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22,
0xaf, 0x02, 0x0a, 0x0d, 0x4d, 0x73, 0x67, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x75, 0x73,
0x68, 0x12, 0x2e, 0x0a, 0x04, 0x6d, 0x73, 0x67, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x1a, 0x2e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65,
0x6c, 0x4d, 0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x52, 0x04, 0x6d, 0x73, 0x67,
0x73, 0x12, 0x20, 0x0a, 0x0b, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x46, 0x6c, 0x61, 0x67,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x46,
0x6c, 0x61, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x18,
0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x6e, 0x65, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12,
0x1c, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x42, 0x75, 0x66, 0x18, 0x04, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x42, 0x75, 0x66, 0x12, 0x22, 0x0a,
0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x05, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6c, 0x61,
0x67, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x4d, 0x73, 0x67,
0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
0x4d, 0x73, 0x67, 0x12, 0x30, 0x0a, 0x09, 0x66, 0x6f, 0x63, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f,
0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
0x2e, 0x46, 0x6f, 0x63, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x66, 0x6f, 0x63, 0x75,
0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x75, 0x67, 0x65, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x68, 0x75, 0x67, 0x65, 0x46, 0x6c, 0x61,
0x67, 0x22, 0x2b, 0x0a, 0x0b, 0x4d, 0x73, 0x67, 0x50, 0x75, 0x73, 0x68, 0x52, 0x65, 0x73, 0x70,
0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x42, 0x75, 0x66, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x42, 0x75, 0x66, 0x22, 0x3a,
0x0a, 0x08, 0x50, 0x72, 0x65, 0x73, 0x73, 0x4d, 0x73, 0x67, 0x12, 0x2e, 0x0a, 0x04, 0x6d, 0x73,
0x67, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x63, 0x68, 0x61, 0x6e, 0x6e,
0x65, 0x6c, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73, 0x67, 0x43, 0x6f, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x52, 0x04, 0x6d, 0x73, 0x67, 0x73, 0x22, 0x55, 0x0a, 0x09, 0x53, 0x65,
0x72, 0x76, 0x65, 0x72, 0x42, 0x75, 0x66, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x76, 0x72, 0x49, 0x70,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x73, 0x76, 0x72, 0x49, 0x70, 0x12, 0x18, 0x0a,
0x07, 0x73, 0x76, 0x72, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07,
0x73, 0x76, 0x72, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x63, 0x68, 0x6f, 0x4b,
0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x65, 0x63, 0x68, 0x6f, 0x4b, 0x65,
0x79, 0x42, 0x14, 0x5a, 0x12, 0x70, 0x62, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x3b,
0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
}
var (
file_pb_channel_msgpush_proto_rawDescOnce sync.Once
file_pb_channel_msgpush_proto_rawDescData = file_pb_channel_msgpush_proto_rawDesc
)
func file_pb_channel_msgpush_proto_rawDescGZIP() []byte {
file_pb_channel_msgpush_proto_rawDescOnce.Do(func() {
file_pb_channel_msgpush_proto_rawDescData = protoimpl.X.CompressGZIP(file_pb_channel_msgpush_proto_rawDescData)
})
return file_pb_channel_msgpush_proto_rawDescData
}
var file_pb_channel_msgpush_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
var file_pb_channel_msgpush_proto_goTypes = []interface{}{
(*FocusInfo)(nil), // 0: channel.FocusInfo
(*MsgOnlinePush)(nil), // 1: channel.MsgOnlinePush
(*MsgPushResp)(nil), // 2: channel.MsgPushResp
(*PressMsg)(nil), // 3: channel.PressMsg
(*ServerBuf)(nil), // 4: channel.ServerBuf
(*ChannelMsgContent)(nil), // 5: channel.ChannelMsgContent
}
var file_pb_channel_msgpush_proto_depIdxs = []int32{
5, // 0: channel.MsgOnlinePush.msgs:type_name -> channel.ChannelMsgContent
0, // 1: channel.MsgOnlinePush.focusInfo:type_name -> channel.FocusInfo
5, // 2: channel.PressMsg.msgs:type_name -> channel.ChannelMsgContent
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_pb_channel_msgpush_proto_init() }
func file_pb_channel_msgpush_proto_init() {
if File_pb_channel_msgpush_proto != nil {
return
}
file_pb_channel_common_proto_init()
if !protoimpl.UnsafeEnabled {
file_pb_channel_msgpush_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FocusInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_msgpush_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgOnlinePush); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_msgpush_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgPushResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_msgpush_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PressMsg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_msgpush_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServerBuf); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_pb_channel_msgpush_proto_rawDesc,
NumEnums: 0,
NumMessages: 5,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_pb_channel_msgpush_proto_goTypes,
DependencyIndexes: file_pb_channel_msgpush_proto_depIdxs,
MessageInfos: file_pb_channel_msgpush_proto_msgTypes,
}.Build()
File_pb_channel_msgpush_proto = out.File
file_pb_channel_msgpush_proto_rawDesc = nil
file_pb_channel_msgpush_proto_goTypes = nil
file_pb_channel_msgpush_proto_depIdxs = nil
}

View File

@ -1,65 +1,14 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc v3.14.0
// source: pb/channel/oidb0xf62.proto // source: pb/channel/oidb0xf62.proto
package channel package channel
import ( import (
reflect "reflect"
sync "sync"
msg "github.com/Mrs4s/MiraiGo/client/pb/msg" msg "github.com/Mrs4s/MiraiGo/client/pb/msg"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
) )
type DF62ReqBody struct { type DF62ReqBody struct {
state protoimpl.MessageState Msg *ChannelMsgContent `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Msg *ChannelMsgContent `protobuf:"bytes,1,opt,name=msg" json:"msg,omitempty"`
}
func (x *DF62ReqBody) Reset() {
*x = DF62ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_oidb0xf62_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DF62ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DF62ReqBody) ProtoMessage() {}
func (x *DF62ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_oidb0xf62_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DF62ReqBody.ProtoReflect.Descriptor instead.
func (*DF62ReqBody) Descriptor() ([]byte, []int) {
return file_pb_channel_oidb0xf62_proto_rawDescGZIP(), []int{0}
} }
func (x *DF62ReqBody) GetMsg() *ChannelMsgContent { func (x *DF62ReqBody) GetMsg() *ChannelMsgContent {
@ -70,50 +19,14 @@ func (x *DF62ReqBody) GetMsg() *ChannelMsgContent {
} }
type DF62RspBody struct { type DF62RspBody struct {
state protoimpl.MessageState Result *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Errmsg []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields SendTime *uint32 `protobuf:"varint,3,opt"`
Head *ChannelMsgHead `protobuf:"bytes,4,opt"`
Result *uint32 `protobuf:"varint,1,opt,name=result" json:"result,omitempty"` ErrType *uint32 `protobuf:"varint,5,opt"`
Errmsg []byte `protobuf:"bytes,2,opt,name=errmsg" json:"errmsg,omitempty"` TransSvrInfo *TransSvrInfo `protobuf:"bytes,6,opt"`
SendTime *uint32 `protobuf:"varint,3,opt,name=sendTime" json:"sendTime,omitempty"` FreqLimitInfo *ChannelFreqLimitInfo `protobuf:"bytes,7,opt"`
Head *ChannelMsgHead `protobuf:"bytes,4,opt,name=head" json:"head,omitempty"` Body *msg.MessageBody `protobuf:"bytes,8,opt"`
ErrType *uint32 `protobuf:"varint,5,opt,name=errType" json:"errType,omitempty"`
TransSvrInfo *TransSvrInfo `protobuf:"bytes,6,opt,name=transSvrInfo" json:"transSvrInfo,omitempty"`
FreqLimitInfo *ChannelFreqLimitInfo `protobuf:"bytes,7,opt,name=freqLimitInfo" json:"freqLimitInfo,omitempty"`
Body *msg.MessageBody `protobuf:"bytes,8,opt,name=body" json:"body,omitempty"`
}
func (x *DF62RspBody) Reset() {
*x = DF62RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_oidb0xf62_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DF62RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DF62RspBody) ProtoMessage() {}
func (x *DF62RspBody) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_oidb0xf62_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DF62RspBody.ProtoReflect.Descriptor instead.
func (*DF62RspBody) Descriptor() ([]byte, []int) {
return file_pb_channel_oidb0xf62_proto_rawDescGZIP(), []int{1}
} }
func (x *DF62RspBody) GetResult() uint32 { func (x *DF62RspBody) GetResult() uint32 {
@ -173,46 +86,10 @@ func (x *DF62RspBody) GetBody() *msg.MessageBody {
} }
type TransSvrInfo struct { type TransSvrInfo struct {
state protoimpl.MessageState SubType *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetCode *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields ErrMsg []byte `protobuf:"bytes,3,opt"`
TransInfo []byte `protobuf:"bytes,4,opt"`
SubType *uint32 `protobuf:"varint,1,opt,name=subType" json:"subType,omitempty"`
RetCode *int32 `protobuf:"varint,2,opt,name=retCode" json:"retCode,omitempty"`
ErrMsg []byte `protobuf:"bytes,3,opt,name=errMsg" json:"errMsg,omitempty"`
TransInfo []byte `protobuf:"bytes,4,opt,name=transInfo" json:"transInfo,omitempty"`
}
func (x *TransSvrInfo) Reset() {
*x = TransSvrInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_pb_channel_oidb0xf62_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TransSvrInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TransSvrInfo) ProtoMessage() {}
func (x *TransSvrInfo) ProtoReflect() protoreflect.Message {
mi := &file_pb_channel_oidb0xf62_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TransSvrInfo.ProtoReflect.Descriptor instead.
func (*TransSvrInfo) Descriptor() ([]byte, []int) {
return file_pb_channel_oidb0xf62_proto_rawDescGZIP(), []int{2}
} }
func (x *TransSvrInfo) GetSubType() uint32 { func (x *TransSvrInfo) GetSubType() uint32 {
@ -242,146 +119,3 @@ func (x *TransSvrInfo) GetTransInfo() []byte {
} }
return nil return nil
} }
var File_pb_channel_oidb0xf62_proto protoreflect.FileDescriptor
var file_pb_channel_oidb0xf62_proto_rawDesc = []byte{
0x0a, 0x1a, 0x70, 0x62, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2f, 0x6f, 0x69, 0x64,
0x62, 0x30, 0x78, 0x66, 0x36, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x63, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x1a, 0x17, 0x70, 0x62, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65,
0x6c, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x10,
0x70, 0x62, 0x2f, 0x6d, 0x73, 0x67, 0x2f, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x22, 0x3b, 0x0a, 0x0b, 0x44, 0x46, 0x36, 0x32, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12,
0x2c, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x63,
0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73,
0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0xc6, 0x02,
0x0a, 0x0b, 0x44, 0x46, 0x36, 0x32, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x16, 0x0a,
0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72,
0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x18,
0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x12, 0x1a, 0x0a,
0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2b, 0x0a, 0x04, 0x68, 0x65, 0x61,
0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65,
0x6c, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x73, 0x67, 0x48, 0x65, 0x61, 0x64,
0x52, 0x04, 0x68, 0x65, 0x61, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x54, 0x79, 0x70,
0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x65, 0x72, 0x72, 0x54, 0x79, 0x70, 0x65,
0x12, 0x39, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x53, 0x76, 0x72, 0x49, 0x6e, 0x66, 0x6f,
0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x53, 0x76, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x74,
0x72, 0x61, 0x6e, 0x73, 0x53, 0x76, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x43, 0x0a, 0x0d, 0x66,
0x72, 0x65, 0x71, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x07, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x43, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x46, 0x72, 0x65, 0x71, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x52, 0x0d, 0x66, 0x72, 0x65, 0x71, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x24, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10,
0x2e, 0x6d, 0x73, 0x67, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x42, 0x6f, 0x64, 0x79,
0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x22, 0x78, 0x0a, 0x0c, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x53,
0x76, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x54, 0x79, 0x70,
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65,
0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72,
0x72, 0x4d, 0x73, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d,
0x73, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x49, 0x6e, 0x66, 0x6f,
0x42, 0x14, 0x5a, 0x12, 0x70, 0x62, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x3b, 0x63,
0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
}
var (
file_pb_channel_oidb0xf62_proto_rawDescOnce sync.Once
file_pb_channel_oidb0xf62_proto_rawDescData = file_pb_channel_oidb0xf62_proto_rawDesc
)
func file_pb_channel_oidb0xf62_proto_rawDescGZIP() []byte {
file_pb_channel_oidb0xf62_proto_rawDescOnce.Do(func() {
file_pb_channel_oidb0xf62_proto_rawDescData = protoimpl.X.CompressGZIP(file_pb_channel_oidb0xf62_proto_rawDescData)
})
return file_pb_channel_oidb0xf62_proto_rawDescData
}
var file_pb_channel_oidb0xf62_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
var file_pb_channel_oidb0xf62_proto_goTypes = []interface{}{
(*DF62ReqBody)(nil), // 0: channel.DF62ReqBody
(*DF62RspBody)(nil), // 1: channel.DF62RspBody
(*TransSvrInfo)(nil), // 2: channel.TransSvrInfo
(*ChannelMsgContent)(nil), // 3: channel.ChannelMsgContent
(*ChannelMsgHead)(nil), // 4: channel.ChannelMsgHead
(*ChannelFreqLimitInfo)(nil), // 5: channel.ChannelFreqLimitInfo
(*msg.MessageBody)(nil), // 6: msg.MessageBody
}
var file_pb_channel_oidb0xf62_proto_depIdxs = []int32{
3, // 0: channel.DF62ReqBody.msg:type_name -> channel.ChannelMsgContent
4, // 1: channel.DF62RspBody.head:type_name -> channel.ChannelMsgHead
2, // 2: channel.DF62RspBody.transSvrInfo:type_name -> channel.TransSvrInfo
5, // 3: channel.DF62RspBody.freqLimitInfo:type_name -> channel.ChannelFreqLimitInfo
6, // 4: channel.DF62RspBody.body:type_name -> msg.MessageBody
5, // [5:5] is the sub-list for method output_type
5, // [5:5] is the sub-list for method input_type
5, // [5:5] is the sub-list for extension type_name
5, // [5:5] is the sub-list for extension extendee
0, // [0:5] is the sub-list for field type_name
}
func init() { file_pb_channel_oidb0xf62_proto_init() }
func file_pb_channel_oidb0xf62_proto_init() {
if File_pb_channel_oidb0xf62_proto != nil {
return
}
file_pb_channel_common_proto_init()
if !protoimpl.UnsafeEnabled {
file_pb_channel_oidb0xf62_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DF62ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_oidb0xf62_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DF62RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_pb_channel_oidb0xf62_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TransSvrInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_pb_channel_oidb0xf62_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_pb_channel_oidb0xf62_proto_goTypes,
DependencyIndexes: file_pb_channel_oidb0xf62_proto_depIdxs,
MessageInfos: file_pb_channel_oidb0xf62_proto_msgTypes,
}.Build()
File_pb_channel_oidb0xf62_proto = out.File
file_pb_channel_oidb0xf62_proto_rawDesc = nil
file_pb_channel_oidb0xf62_proto_goTypes = nil
file_pb_channel_oidb0xf62_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,68 +1,14 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: cmd0x352.proto // source: cmd0x352.proto
package cmd0x352 package cmd0x352
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type ReqBody struct { type ReqBody struct {
state protoimpl.MessageState Subcmd *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache TryupImgReq []*D352TryUpImgReq `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
Subcmd *uint32 `protobuf:"varint,1,opt,name=subcmd" json:"subcmd,omitempty"`
TryupImgReq []*D352TryUpImgReq `protobuf:"bytes,2,rep,name=tryupImgReq" json:"tryupImgReq,omitempty"`
// repeated GetImgUrlReq getimgUrlReq = 3; // repeated GetImgUrlReq getimgUrlReq = 3;
// repeated DelImgReq delImgReq = 4; // repeated DelImgReq delImgReq = 4;
NetType *uint32 `protobuf:"varint,10,opt,name=netType" json:"netType,omitempty"` NetType *uint32 `protobuf:"varint,10,opt"`
}
func (x *ReqBody) Reset() {
*x = ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x352_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReqBody) ProtoMessage() {}
func (x *ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x352_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReqBody.ProtoReflect.Descriptor instead.
func (*ReqBody) Descriptor() ([]byte, []int) {
return file_cmd0x352_proto_rawDescGZIP(), []int{0}
} }
func (x *ReqBody) GetSubcmd() uint32 { func (x *ReqBody) GetSubcmd() uint32 {
@ -87,48 +33,12 @@ func (x *ReqBody) GetNetType() uint32 {
} }
type RspBody struct { type RspBody struct {
state protoimpl.MessageState Subcmd *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache TryupImgRsp []*TryUpImgRsp `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
Subcmd *uint32 `protobuf:"varint,1,opt,name=subcmd" json:"subcmd,omitempty"`
TryupImgRsp []*TryUpImgRsp `protobuf:"bytes,2,rep,name=tryupImgRsp" json:"tryupImgRsp,omitempty"`
// repeated GetImgUrlRsp getimgUrlRsp = 3; // repeated GetImgUrlRsp getimgUrlRsp = 3;
NewBigchan *bool `protobuf:"varint,4,opt,name=newBigchan" json:"newBigchan,omitempty"` NewBigchan *bool `protobuf:"varint,4,opt"`
// repeated DelImgRsp delImgRsp = 5; // repeated DelImgRsp delImgRsp = 5;
FailMsg []byte `protobuf:"bytes,10,opt,name=failMsg" json:"failMsg,omitempty"` FailMsg []byte `protobuf:"bytes,10,opt"`
}
func (x *RspBody) Reset() {
*x = RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x352_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RspBody) ProtoMessage() {}
func (x *RspBody) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x352_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RspBody.ProtoReflect.Descriptor instead.
func (*RspBody) Descriptor() ([]byte, []int) {
return file_cmd0x352_proto_rawDescGZIP(), []int{1}
} }
func (x *RspBody) GetSubcmd() uint32 { func (x *RspBody) GetSubcmd() uint32 {
@ -160,65 +70,29 @@ func (x *RspBody) GetFailMsg() []byte {
} }
type D352TryUpImgReq struct { type D352TryUpImgReq struct {
state protoimpl.MessageState SrcUin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache DstUin *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields FileId *uint64 `protobuf:"varint,3,opt"`
FileMd5 []byte `protobuf:"bytes,4,opt"`
SrcUin *uint64 `protobuf:"varint,1,opt,name=srcUin" json:"srcUin,omitempty"` FileSize *uint64 `protobuf:"varint,5,opt"`
DstUin *uint64 `protobuf:"varint,2,opt,name=dstUin" json:"dstUin,omitempty"` FileName []byte `protobuf:"bytes,6,opt"`
FileId *uint64 `protobuf:"varint,3,opt,name=fileId" json:"fileId,omitempty"` SrcTerm *uint32 `protobuf:"varint,7,opt"`
FileMd5 []byte `protobuf:"bytes,4,opt,name=fileMd5" json:"fileMd5,omitempty"` PlatformType *uint32 `protobuf:"varint,8,opt"`
FileSize *uint64 `protobuf:"varint,5,opt,name=fileSize" json:"fileSize,omitempty"` InnerIp *uint32 `protobuf:"varint,9,opt"`
FileName []byte `protobuf:"bytes,6,opt,name=fileName" json:"fileName,omitempty"` AddressBook *bool `protobuf:"varint,10,opt"`
SrcTerm *uint32 `protobuf:"varint,7,opt,name=srcTerm" json:"srcTerm,omitempty"` Retry *uint32 `protobuf:"varint,11,opt"`
PlatformType *uint32 `protobuf:"varint,8,opt,name=platformType" json:"platformType,omitempty"` BuType *uint32 `protobuf:"varint,12,opt"`
InnerIp *uint32 `protobuf:"varint,9,opt,name=innerIp" json:"innerIp,omitempty"` PicOriginal *bool `protobuf:"varint,13,opt"`
AddressBook *bool `protobuf:"varint,10,opt,name=addressBook" json:"addressBook,omitempty"` PicWidth *uint32 `protobuf:"varint,14,opt"`
Retry *uint32 `protobuf:"varint,11,opt,name=retry" json:"retry,omitempty"` PicHeight *uint32 `protobuf:"varint,15,opt"`
BuType *uint32 `protobuf:"varint,12,opt,name=buType" json:"buType,omitempty"` PicType *uint32 `protobuf:"varint,16,opt"`
PicOriginal *bool `protobuf:"varint,13,opt,name=picOriginal" json:"picOriginal,omitempty"` BuildVer []byte `protobuf:"bytes,17,opt"`
PicWidth *uint32 `protobuf:"varint,14,opt,name=picWidth" json:"picWidth,omitempty"` FileIndex []byte `protobuf:"bytes,18,opt"`
PicHeight *uint32 `protobuf:"varint,15,opt,name=picHeight" json:"picHeight,omitempty"` StoreDays *uint32 `protobuf:"varint,19,opt"`
PicType *uint32 `protobuf:"varint,16,opt,name=picType" json:"picType,omitempty"` TryupStepflag *uint32 `protobuf:"varint,20,opt"`
BuildVer []byte `protobuf:"bytes,17,opt,name=buildVer" json:"buildVer,omitempty"` RejectTryfast *bool `protobuf:"varint,21,opt"`
FileIndex []byte `protobuf:"bytes,18,opt,name=fileIndex" json:"fileIndex,omitempty"` SrvUpload *uint32 `protobuf:"varint,22,opt"`
StoreDays *uint32 `protobuf:"varint,19,opt,name=storeDays" json:"storeDays,omitempty"` TransferUrl []byte `protobuf:"bytes,23,opt"`
TryupStepflag *uint32 `protobuf:"varint,20,opt,name=tryupStepflag" json:"tryupStepflag,omitempty"`
RejectTryfast *bool `protobuf:"varint,21,opt,name=rejectTryfast" json:"rejectTryfast,omitempty"`
SrvUpload *uint32 `protobuf:"varint,22,opt,name=srvUpload" json:"srvUpload,omitempty"`
TransferUrl []byte `protobuf:"bytes,23,opt,name=transferUrl" json:"transferUrl,omitempty"`
}
func (x *D352TryUpImgReq) Reset() {
*x = D352TryUpImgReq{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x352_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D352TryUpImgReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D352TryUpImgReq) ProtoMessage() {}
func (x *D352TryUpImgReq) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x352_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D352TryUpImgReq.ProtoReflect.Descriptor instead.
func (*D352TryUpImgReq) Descriptor() ([]byte, []int) {
return file_cmd0x352_proto_rawDescGZIP(), []int{2}
} }
func (x *D352TryUpImgReq) GetSrcUin() uint64 { func (x *D352TryUpImgReq) GetSrcUin() uint64 {
@ -383,65 +257,29 @@ func (x *D352TryUpImgReq) GetTransferUrl() []byte {
} }
type TryUpImgRsp struct { type TryUpImgRsp struct {
state protoimpl.MessageState FileId *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ClientIp *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Result *uint32 `protobuf:"varint,3,opt"`
FailMsg []byte `protobuf:"bytes,4,opt"`
FileId *uint64 `protobuf:"varint,1,opt,name=fileId" json:"fileId,omitempty"` FileExit *bool `protobuf:"varint,5,opt"`
ClientIp *uint32 `protobuf:"varint,2,opt,name=clientIp" json:"clientIp,omitempty"`
Result *uint32 `protobuf:"varint,3,opt,name=result" json:"result,omitempty"`
FailMsg []byte `protobuf:"bytes,4,opt,name=failMsg" json:"failMsg,omitempty"`
FileExit *bool `protobuf:"varint,5,opt,name=fileExit" json:"fileExit,omitempty"`
// optional ImgInfo imgInfo = 6; // optional ImgInfo imgInfo = 6;
UpIp []uint32 `protobuf:"varint,7,rep,name=upIp" json:"upIp,omitempty"` UpIp []uint32 `protobuf:"varint,7,rep"`
UpPort []uint32 `protobuf:"varint,8,rep,name=upPort" json:"upPort,omitempty"` UpPort []uint32 `protobuf:"varint,8,rep"`
UpUkey []byte `protobuf:"bytes,9,opt,name=upUkey" json:"upUkey,omitempty"` UpUkey []byte `protobuf:"bytes,9,opt"`
UpResid []byte `protobuf:"bytes,10,opt,name=upResid" json:"upResid,omitempty"` UpResid []byte `protobuf:"bytes,10,opt"`
UpUuid []byte `protobuf:"bytes,11,opt,name=upUuid" json:"upUuid,omitempty"` UpUuid []byte `protobuf:"bytes,11,opt"`
UpOffset *uint64 `protobuf:"varint,12,opt,name=upOffset" json:"upOffset,omitempty"` UpOffset *uint64 `protobuf:"varint,12,opt"`
BlockSize *uint64 `protobuf:"varint,13,opt,name=blockSize" json:"blockSize,omitempty"` BlockSize *uint64 `protobuf:"varint,13,opt"`
EncryptDstip []byte `protobuf:"bytes,14,opt,name=encryptDstip" json:"encryptDstip,omitempty"` EncryptDstip []byte `protobuf:"bytes,14,opt"`
Roamdays *uint32 `protobuf:"varint,15,opt,name=roamdays" json:"roamdays,omitempty"` Roamdays *uint32 `protobuf:"varint,15,opt"`
// repeated IPv6Info upIp6 = 26; // repeated IPv6Info upIp6 = 26;
ClientIp6 []byte `protobuf:"bytes,27,opt,name=clientIp6" json:"clientIp6,omitempty"` ClientIp6 []byte `protobuf:"bytes,27,opt"`
ThumbDownPara []byte `protobuf:"bytes,60,opt,name=thumbDownPara" json:"thumbDownPara,omitempty"` ThumbDownPara []byte `protobuf:"bytes,60,opt"`
OriginalDownPara []byte `protobuf:"bytes,61,opt,name=originalDownPara" json:"originalDownPara,omitempty"` OriginalDownPara []byte `protobuf:"bytes,61,opt"`
DownDomain []byte `protobuf:"bytes,62,opt,name=downDomain" json:"downDomain,omitempty"` DownDomain []byte `protobuf:"bytes,62,opt"`
BigDownPara []byte `protobuf:"bytes,64,opt,name=bigDownPara" json:"bigDownPara,omitempty"` BigDownPara []byte `protobuf:"bytes,64,opt"`
BigThumbDownPara []byte `protobuf:"bytes,65,opt,name=bigThumbDownPara" json:"bigThumbDownPara,omitempty"` BigThumbDownPara []byte `protobuf:"bytes,65,opt"`
HttpsUrlFlag *uint32 `protobuf:"varint,66,opt,name=httpsUrlFlag" json:"httpsUrlFlag,omitempty"` // optional TryUpInfo4Busi info4Busi = 1001; HttpsUrlFlag *uint32 `protobuf:"varint,66,opt"` // optional TryUpInfo4Busi info4Busi = 1001;
}
func (x *TryUpImgRsp) Reset() {
*x = TryUpImgRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x352_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TryUpImgRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TryUpImgRsp) ProtoMessage() {}
func (x *TryUpImgRsp) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x352_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TryUpImgRsp.ProtoReflect.Descriptor instead.
func (*TryUpImgRsp) Descriptor() ([]byte, []int) {
return file_cmd0x352_proto_rawDescGZIP(), []int{3}
} }
func (x *TryUpImgRsp) GetFileId() uint64 { func (x *TryUpImgRsp) GetFileId() uint64 {
@ -590,214 +428,3 @@ func (x *TryUpImgRsp) GetHttpsUrlFlag() uint32 {
} }
return 0 return 0
} }
var File_cmd0x352_proto protoreflect.FileDescriptor
var file_cmd0x352_proto_rawDesc = []byte{
0x0a, 0x0e, 0x63, 0x6d, 0x64, 0x30, 0x78, 0x33, 0x35, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x22, 0x6f, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x73,
0x75, 0x62, 0x63, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x75, 0x62,
0x63, 0x6d, 0x64, 0x12, 0x32, 0x0a, 0x0b, 0x74, 0x72, 0x79, 0x75, 0x70, 0x49, 0x6d, 0x67, 0x52,
0x65, 0x71, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x33, 0x35, 0x32, 0x54,
0x72, 0x79, 0x55, 0x70, 0x49, 0x6d, 0x67, 0x52, 0x65, 0x71, 0x52, 0x0b, 0x74, 0x72, 0x79, 0x75,
0x70, 0x49, 0x6d, 0x67, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x65, 0x74, 0x54, 0x79,
0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x54, 0x79, 0x70,
0x65, 0x22, 0x8b, 0x01, 0x0a, 0x07, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x16, 0x0a,
0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73,
0x75, 0x62, 0x63, 0x6d, 0x64, 0x12, 0x2e, 0x0a, 0x0b, 0x74, 0x72, 0x79, 0x75, 0x70, 0x49, 0x6d,
0x67, 0x52, 0x73, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x54, 0x72, 0x79,
0x55, 0x70, 0x49, 0x6d, 0x67, 0x52, 0x73, 0x70, 0x52, 0x0b, 0x74, 0x72, 0x79, 0x75, 0x70, 0x49,
0x6d, 0x67, 0x52, 0x73, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x6e, 0x65, 0x77, 0x42, 0x69, 0x67, 0x63,
0x68, 0x61, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x6e, 0x65, 0x77, 0x42, 0x69,
0x67, 0x63, 0x68, 0x61, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x61, 0x69, 0x6c, 0x4d, 0x73, 0x67,
0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x66, 0x61, 0x69, 0x6c, 0x4d, 0x73, 0x67, 0x22,
0xad, 0x05, 0x0a, 0x0f, 0x44, 0x33, 0x35, 0x32, 0x54, 0x72, 0x79, 0x55, 0x70, 0x49, 0x6d, 0x67,
0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x72, 0x63, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20,
0x01, 0x28, 0x04, 0x52, 0x06, 0x73, 0x72, 0x63, 0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x64,
0x73, 0x74, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x64, 0x73, 0x74,
0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20,
0x01, 0x28, 0x04, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x66,
0x69, 0x6c, 0x65, 0x4d, 0x64, 0x35, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x66, 0x69,
0x6c, 0x65, 0x4d, 0x64, 0x35, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a,
0x07, 0x73, 0x72, 0x63, 0x54, 0x65, 0x72, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07,
0x73, 0x72, 0x63, 0x54, 0x65, 0x72, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x74, 0x66,
0x6f, 0x72, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x70,
0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x69,
0x6e, 0x6e, 0x65, 0x72, 0x49, 0x70, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x69, 0x6e,
0x6e, 0x65, 0x72, 0x49, 0x70, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
0x42, 0x6f, 0x6f, 0x6b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x61, 0x64, 0x64, 0x72,
0x65, 0x73, 0x73, 0x42, 0x6f, 0x6f, 0x6b, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x74, 0x72, 0x79,
0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x72, 0x65, 0x74, 0x72, 0x79, 0x12, 0x16, 0x0a,
0x06, 0x62, 0x75, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x62,
0x75, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x69, 0x63, 0x4f, 0x72, 0x69, 0x67,
0x69, 0x6e, 0x61, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70, 0x69, 0x63, 0x4f,
0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x57, 0x69,
0x64, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x70, 0x69, 0x63, 0x57, 0x69,
0x64, 0x74, 0x68, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x69, 0x63, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74,
0x18, 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x69, 0x63, 0x48, 0x65, 0x69, 0x67, 0x68,
0x74, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x69, 0x63, 0x54, 0x79, 0x70, 0x65, 0x18, 0x10, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x07, 0x70, 0x69, 0x63, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x62,
0x75, 0x69, 0x6c, 0x64, 0x56, 0x65, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x62,
0x75, 0x69, 0x6c, 0x64, 0x56, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x49,
0x6e, 0x64, 0x65, 0x78, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65,
0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x44, 0x61,
0x79, 0x73, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x44,
0x61, 0x79, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x74, 0x72, 0x79, 0x75, 0x70, 0x53, 0x74, 0x65, 0x70,
0x66, 0x6c, 0x61, 0x67, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x74, 0x72, 0x79, 0x75,
0x70, 0x53, 0x74, 0x65, 0x70, 0x66, 0x6c, 0x61, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x6a,
0x65, 0x63, 0x74, 0x54, 0x72, 0x79, 0x66, 0x61, 0x73, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x08,
0x52, 0x0d, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x54, 0x72, 0x79, 0x66, 0x61, 0x73, 0x74, 0x12,
0x1c, 0x0a, 0x09, 0x73, 0x72, 0x76, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x16, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x09, 0x73, 0x72, 0x76, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x20, 0x0a,
0x0b, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x17, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x55, 0x72, 0x6c, 0x22,
0x81, 0x05, 0x0a, 0x0b, 0x54, 0x72, 0x79, 0x55, 0x70, 0x49, 0x6d, 0x67, 0x52, 0x73, 0x70, 0x12,
0x16, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x49, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x49, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x66,
0x61, 0x69, 0x6c, 0x4d, 0x73, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x66, 0x61,
0x69, 0x6c, 0x4d, 0x73, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
0x74, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x70, 0x49, 0x70, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0d, 0x52,
0x04, 0x75, 0x70, 0x49, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x70, 0x50, 0x6f, 0x72, 0x74, 0x18,
0x08, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x06, 0x75, 0x70, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a,
0x06, 0x75, 0x70, 0x55, 0x6b, 0x65, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x75,
0x70, 0x55, 0x6b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x70, 0x52, 0x65, 0x73, 0x69, 0x64,
0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x75, 0x70, 0x52, 0x65, 0x73, 0x69, 0x64, 0x12,
0x16, 0x0a, 0x06, 0x75, 0x70, 0x55, 0x75, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x06, 0x75, 0x70, 0x55, 0x75, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x70, 0x4f, 0x66, 0x66,
0x73, 0x65, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x75, 0x70, 0x4f, 0x66, 0x66,
0x73, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x69, 0x7a, 0x65,
0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x69, 0x7a,
0x65, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74, 0x44, 0x73, 0x74, 0x69,
0x70, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x65, 0x6e, 0x63, 0x72, 0x79, 0x70, 0x74,
0x44, 0x73, 0x74, 0x69, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x6f, 0x61, 0x6d, 0x64, 0x61, 0x79,
0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x72, 0x6f, 0x61, 0x6d, 0x64, 0x61, 0x79,
0x73, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x36, 0x18, 0x1b,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x36, 0x12,
0x24, 0x0a, 0x0d, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72, 0x61,
0x18, 0x3c, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x44, 0x6f, 0x77,
0x6e, 0x50, 0x61, 0x72, 0x61, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61,
0x6c, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x10, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72,
0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x6f, 0x77, 0x6e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18,
0x3e, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x64, 0x6f, 0x77, 0x6e, 0x44, 0x6f, 0x6d, 0x61, 0x69,
0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x69, 0x67, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72, 0x61,
0x18, 0x40, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x62, 0x69, 0x67, 0x44, 0x6f, 0x77, 0x6e, 0x50,
0x61, 0x72, 0x61, 0x12, 0x2a, 0x0a, 0x10, 0x62, 0x69, 0x67, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x44,
0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x18, 0x41, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x10, 0x62,
0x69, 0x67, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x12,
0x22, 0x0a, 0x0c, 0x68, 0x74, 0x74, 0x70, 0x73, 0x55, 0x72, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x18,
0x42, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x68, 0x74, 0x74, 0x70, 0x73, 0x55, 0x72, 0x6c, 0x46,
0x6c, 0x61, 0x67, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x3b, 0x63, 0x6d, 0x64, 0x30, 0x78, 0x33,
0x35, 0x32,
}
var (
file_cmd0x352_proto_rawDescOnce sync.Once
file_cmd0x352_proto_rawDescData = file_cmd0x352_proto_rawDesc
)
func file_cmd0x352_proto_rawDescGZIP() []byte {
file_cmd0x352_proto_rawDescOnce.Do(func() {
file_cmd0x352_proto_rawDescData = protoimpl.X.CompressGZIP(file_cmd0x352_proto_rawDescData)
})
return file_cmd0x352_proto_rawDescData
}
var file_cmd0x352_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
var file_cmd0x352_proto_goTypes = []interface{}{
(*ReqBody)(nil), // 0: ReqBody
(*RspBody)(nil), // 1: RspBody
(*D352TryUpImgReq)(nil), // 2: D352TryUpImgReq
(*TryUpImgRsp)(nil), // 3: TryUpImgRsp
}
var file_cmd0x352_proto_depIdxs = []int32{
2, // 0: ReqBody.tryupImgReq:type_name -> D352TryUpImgReq
3, // 1: RspBody.tryupImgRsp:type_name -> TryUpImgRsp
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
2, // [2:2] is the sub-list for extension extendee
0, // [0:2] is the sub-list for field type_name
}
func init() { file_cmd0x352_proto_init() }
func file_cmd0x352_proto_init() {
if File_cmd0x352_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_cmd0x352_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x352_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x352_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D352TryUpImgReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x352_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TryUpImgRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_cmd0x352_proto_rawDesc,
NumEnums: 0,
NumMessages: 4,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_cmd0x352_proto_goTypes,
DependencyIndexes: file_cmd0x352_proto_depIdxs,
MessageInfos: file_cmd0x352_proto_msgTypes,
}.Build()
File_cmd0x352_proto = out.File
file_cmd0x352_proto_rawDesc = nil
file_cmd0x352_proto_goTypes = nil
file_cmd0x352_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,66 +1,12 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: cmd0x3f6.proto // source: cmd0x3f6.proto
package cmd0x3f6 package cmd0x3f6
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type C3F6ReqBody struct { type C3F6ReqBody struct {
state protoimpl.MessageState SubCmd *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache CrmCommonHead *C3F6CRMMsgHead `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields SubcmdLoginProcessCompleteReqBody *QDUserLoginProcessCompleteReqBody `protobuf:"bytes,42,opt"`
SubCmd *uint32 `protobuf:"varint,1,opt,name=subCmd" json:"subCmd,omitempty"`
CrmCommonHead *C3F6CRMMsgHead `protobuf:"bytes,2,opt,name=crmCommonHead" json:"crmCommonHead,omitempty"`
SubcmdLoginProcessCompleteReqBody *QDUserLoginProcessCompleteReqBody `protobuf:"bytes,42,opt,name=subcmdLoginProcessCompleteReqBody" json:"subcmdLoginProcessCompleteReqBody,omitempty"`
}
func (x *C3F6ReqBody) Reset() {
*x = C3F6ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x3f6_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *C3F6ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*C3F6ReqBody) ProtoMessage() {}
func (x *C3F6ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x3f6_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use C3F6ReqBody.ProtoReflect.Descriptor instead.
func (*C3F6ReqBody) Descriptor() ([]byte, []int) {
return file_cmd0x3f6_proto_rawDescGZIP(), []int{0}
} }
func (x *C3F6ReqBody) GetSubCmd() uint32 { func (x *C3F6ReqBody) GetSubCmd() uint32 {
@ -85,45 +31,9 @@ func (x *C3F6ReqBody) GetSubcmdLoginProcessCompleteReqBody() *QDUserLoginProcess
} }
type C3F6RspBody struct { type C3F6RspBody struct {
state protoimpl.MessageState SubCmd *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache CrmCommonHead *C3F6CRMMsgHead `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields SubcmdLoginProcessCompleteRspBody *QDUserLoginProcessCompleteRspBody `protobuf:"bytes,42,opt"`
SubCmd *uint32 `protobuf:"varint,1,opt,name=subCmd" json:"subCmd,omitempty"`
CrmCommonHead *C3F6CRMMsgHead `protobuf:"bytes,2,opt,name=crmCommonHead" json:"crmCommonHead,omitempty"`
SubcmdLoginProcessCompleteRspBody *QDUserLoginProcessCompleteRspBody `protobuf:"bytes,42,opt,name=subcmdLoginProcessCompleteRspBody" json:"subcmdLoginProcessCompleteRspBody,omitempty"`
}
func (x *C3F6RspBody) Reset() {
*x = C3F6RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x3f6_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *C3F6RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*C3F6RspBody) ProtoMessage() {}
func (x *C3F6RspBody) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x3f6_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use C3F6RspBody.ProtoReflect.Descriptor instead.
func (*C3F6RspBody) Descriptor() ([]byte, []int) {
return file_cmd0x3f6_proto_rawDescGZIP(), []int{1}
} }
func (x *C3F6RspBody) GetSubCmd() uint32 { func (x *C3F6RspBody) GetSubCmd() uint32 {
@ -148,53 +58,17 @@ func (x *C3F6RspBody) GetSubcmdLoginProcessCompleteRspBody() *QDUserLoginProcess
} }
type QDUserLoginProcessCompleteReqBody struct { type QDUserLoginProcessCompleteReqBody struct {
state protoimpl.MessageState Kfext *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Pubno *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Buildno *uint32 `protobuf:"varint,3,opt"`
TerminalType *uint32 `protobuf:"varint,4,opt"`
Kfext *uint64 `protobuf:"varint,1,opt,name=kfext" json:"kfext,omitempty"` Status *uint32 `protobuf:"varint,5,opt"`
Pubno *uint32 `protobuf:"varint,2,opt,name=pubno" json:"pubno,omitempty"` LoginTime *uint32 `protobuf:"varint,6,opt"`
Buildno *uint32 `protobuf:"varint,3,opt,name=buildno" json:"buildno,omitempty"` HardwareInfo *string `protobuf:"bytes,7,opt"`
TerminalType *uint32 `protobuf:"varint,4,opt,name=terminalType" json:"terminalType,omitempty"` SoftwareInfo *string `protobuf:"bytes,8,opt"`
Status *uint32 `protobuf:"varint,5,opt,name=status" json:"status,omitempty"` Guid []byte `protobuf:"bytes,9,opt"`
LoginTime *uint32 `protobuf:"varint,6,opt,name=loginTime" json:"loginTime,omitempty"` AppName *string `protobuf:"bytes,10,opt"`
HardwareInfo *string `protobuf:"bytes,7,opt,name=hardwareInfo" json:"hardwareInfo,omitempty"` SubAppId *uint32 `protobuf:"varint,11,opt"`
SoftwareInfo *string `protobuf:"bytes,8,opt,name=softwareInfo" json:"softwareInfo,omitempty"`
Guid []byte `protobuf:"bytes,9,opt,name=guid" json:"guid,omitempty"`
AppName *string `protobuf:"bytes,10,opt,name=appName" json:"appName,omitempty"`
SubAppId *uint32 `protobuf:"varint,11,opt,name=subAppId" json:"subAppId,omitempty"`
}
func (x *QDUserLoginProcessCompleteReqBody) Reset() {
*x = QDUserLoginProcessCompleteReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x3f6_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QDUserLoginProcessCompleteReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QDUserLoginProcessCompleteReqBody) ProtoMessage() {}
func (x *QDUserLoginProcessCompleteReqBody) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x3f6_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QDUserLoginProcessCompleteReqBody.ProtoReflect.Descriptor instead.
func (*QDUserLoginProcessCompleteReqBody) Descriptor() ([]byte, []int) {
return file_cmd0x3f6_proto_rawDescGZIP(), []int{2}
} }
func (x *QDUserLoginProcessCompleteReqBody) GetKfext() uint64 { func (x *QDUserLoginProcessCompleteReqBody) GetKfext() uint64 {
@ -275,62 +149,26 @@ func (x *QDUserLoginProcessCompleteReqBody) GetSubAppId() uint32 {
} }
type QDUserLoginProcessCompleteRspBody struct { type QDUserLoginProcessCompleteRspBody struct {
state protoimpl.MessageState Ret *RetInfo `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Url *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Mobile *string `protobuf:"bytes,3,opt"`
ExternalMobile *string `protobuf:"bytes,4,opt"`
Ret *RetInfo `protobuf:"bytes,1,opt,name=ret" json:"ret,omitempty"` DataAnalysisPriv *bool `protobuf:"varint,5,opt"`
Url *string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"` DeviceLock *bool `protobuf:"varint,6,opt"`
Mobile *string `protobuf:"bytes,3,opt,name=mobile" json:"mobile,omitempty"` ModulePrivilege *uint64 `protobuf:"varint,7,opt"`
ExternalMobile *string `protobuf:"bytes,4,opt,name=externalMobile" json:"externalMobile,omitempty"` ModuleSubPrivilege []uint32 `protobuf:"varint,8,rep"`
DataAnalysisPriv *bool `protobuf:"varint,5,opt,name=dataAnalysisPriv" json:"dataAnalysisPriv,omitempty"` MasterSet *uint32 `protobuf:"varint,9,opt"`
DeviceLock *bool `protobuf:"varint,6,opt,name=deviceLock" json:"deviceLock,omitempty"` ExtSet *uint32 `protobuf:"varint,10,opt"`
ModulePrivilege *uint64 `protobuf:"varint,7,opt,name=modulePrivilege" json:"modulePrivilege,omitempty"` CorpConfProperty *uint64 `protobuf:"varint,11,opt"`
ModuleSubPrivilege []uint32 `protobuf:"varint,8,rep,name=moduleSubPrivilege" json:"moduleSubPrivilege,omitempty"` Corpuin *uint64 `protobuf:"varint,12,opt"`
MasterSet *uint32 `protobuf:"varint,9,opt,name=masterSet" json:"masterSet,omitempty"` Kfaccount *uint64 `protobuf:"varint,13,opt"`
ExtSet *uint32 `protobuf:"varint,10,opt,name=extSet" json:"extSet,omitempty"` SecurityLevel *uint32 `protobuf:"varint,14,opt"`
CorpConfProperty *uint64 `protobuf:"varint,11,opt,name=corpConfProperty" json:"corpConfProperty,omitempty"` MsgTitle *string `protobuf:"bytes,15,opt"`
Corpuin *uint64 `protobuf:"varint,12,opt,name=corpuin" json:"corpuin,omitempty"` SuccNoticeMsg *string `protobuf:"bytes,16,opt"`
Kfaccount *uint64 `protobuf:"varint,13,opt,name=kfaccount" json:"kfaccount,omitempty"` NameAccount *uint64 `protobuf:"varint,17,opt"`
SecurityLevel *uint32 `protobuf:"varint,14,opt,name=securityLevel" json:"securityLevel,omitempty"` CrmMigrateFlag *uint32 `protobuf:"varint,18,opt"`
MsgTitle *string `protobuf:"bytes,15,opt,name=msgTitle" json:"msgTitle,omitempty"` ExtuinName *string `protobuf:"bytes,19,opt"`
SuccNoticeMsg *string `protobuf:"bytes,16,opt,name=succNoticeMsg" json:"succNoticeMsg,omitempty"` OpenAccountTime *uint32 `protobuf:"varint,20,opt"`
NameAccount *uint64 `protobuf:"varint,17,opt,name=nameAccount" json:"nameAccount,omitempty"`
CrmMigrateFlag *uint32 `protobuf:"varint,18,opt,name=crmMigrateFlag" json:"crmMigrateFlag,omitempty"`
ExtuinName *string `protobuf:"bytes,19,opt,name=extuinName" json:"extuinName,omitempty"`
OpenAccountTime *uint32 `protobuf:"varint,20,opt,name=openAccountTime" json:"openAccountTime,omitempty"`
}
func (x *QDUserLoginProcessCompleteRspBody) Reset() {
*x = QDUserLoginProcessCompleteRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x3f6_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QDUserLoginProcessCompleteRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QDUserLoginProcessCompleteRspBody) ProtoMessage() {}
func (x *QDUserLoginProcessCompleteRspBody) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x3f6_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QDUserLoginProcessCompleteRspBody.ProtoReflect.Descriptor instead.
func (*QDUserLoginProcessCompleteRspBody) Descriptor() ([]byte, []int) {
return file_cmd0x3f6_proto_rawDescGZIP(), []int{3}
} }
func (x *QDUserLoginProcessCompleteRspBody) GetRet() *RetInfo { func (x *QDUserLoginProcessCompleteRspBody) GetRet() *RetInfo {
@ -474,44 +312,8 @@ func (x *QDUserLoginProcessCompleteRspBody) GetOpenAccountTime() uint32 {
} }
type RetInfo struct { type RetInfo struct {
state protoimpl.MessageState RetCode *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ErrorMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
RetCode *uint32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"`
ErrorMsg *string `protobuf:"bytes,2,opt,name=errorMsg" json:"errorMsg,omitempty"`
}
func (x *RetInfo) Reset() {
*x = RetInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x3f6_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RetInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RetInfo) ProtoMessage() {}
func (x *RetInfo) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x3f6_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RetInfo.ProtoReflect.Descriptor instead.
func (*RetInfo) Descriptor() ([]byte, []int) {
return file_cmd0x3f6_proto_rawDescGZIP(), []int{4}
} }
func (x *RetInfo) GetRetCode() uint32 { func (x *RetInfo) GetRetCode() uint32 {
@ -529,56 +331,20 @@ func (x *RetInfo) GetErrorMsg() string {
} }
type C3F6CRMMsgHead struct { type C3F6CRMMsgHead struct {
state protoimpl.MessageState CrmSubCmd *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache HeadLen *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields VerNo *uint32 `protobuf:"varint,3,opt"`
KfUin *uint64 `protobuf:"varint,4,opt"`
CrmSubCmd *uint32 `protobuf:"varint,1,opt,name=crmSubCmd" json:"crmSubCmd,omitempty"` Seq *uint32 `protobuf:"varint,5,opt"`
HeadLen *uint32 `protobuf:"varint,2,opt,name=headLen" json:"headLen,omitempty"` PackNum *uint32 `protobuf:"varint,6,opt"`
VerNo *uint32 `protobuf:"varint,3,opt,name=verNo" json:"verNo,omitempty"` CurPack *uint32 `protobuf:"varint,7,opt"`
KfUin *uint64 `protobuf:"varint,4,opt,name=kfUin" json:"kfUin,omitempty"` BufSig *string `protobuf:"bytes,8,opt"`
Seq *uint32 `protobuf:"varint,5,opt,name=seq" json:"seq,omitempty"` Clienttype *uint32 `protobuf:"varint,9,opt"`
PackNum *uint32 `protobuf:"varint,6,opt,name=packNum" json:"packNum,omitempty"` LaborUin *uint64 `protobuf:"varint,10,opt"`
CurPack *uint32 `protobuf:"varint,7,opt,name=curPack" json:"curPack,omitempty"` LaborName *string `protobuf:"bytes,11,opt"`
BufSig *string `protobuf:"bytes,8,opt,name=bufSig" json:"bufSig,omitempty"` Kfaccount *uint64 `protobuf:"varint,12,opt"`
Clienttype *uint32 `protobuf:"varint,9,opt,name=clienttype" json:"clienttype,omitempty"` TraceId *string `protobuf:"bytes,13,opt"`
LaborUin *uint64 `protobuf:"varint,10,opt,name=laborUin" json:"laborUin,omitempty"` AppId *uint32 `protobuf:"varint,14,opt"`
LaborName *string `protobuf:"bytes,11,opt,name=laborName" json:"laborName,omitempty"`
Kfaccount *uint64 `protobuf:"varint,12,opt,name=kfaccount" json:"kfaccount,omitempty"`
TraceId *string `protobuf:"bytes,13,opt,name=traceId" json:"traceId,omitempty"`
AppId *uint32 `protobuf:"varint,14,opt,name=appId" json:"appId,omitempty"`
}
func (x *C3F6CRMMsgHead) Reset() {
*x = C3F6CRMMsgHead{}
if protoimpl.UnsafeEnabled {
mi := &file_cmd0x3f6_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *C3F6CRMMsgHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*C3F6CRMMsgHead) ProtoMessage() {}
func (x *C3F6CRMMsgHead) ProtoReflect() protoreflect.Message {
mi := &file_cmd0x3f6_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use C3F6CRMMsgHead.ProtoReflect.Descriptor instead.
func (*C3F6CRMMsgHead) Descriptor() ([]byte, []int) {
return file_cmd0x3f6_proto_rawDescGZIP(), []int{5}
} }
func (x *C3F6CRMMsgHead) GetCrmSubCmd() uint32 { func (x *C3F6CRMMsgHead) GetCrmSubCmd() uint32 {
@ -678,264 +444,3 @@ func (x *C3F6CRMMsgHead) GetAppId() uint32 {
} }
return 0 return 0
} }
var File_cmd0x3f6_proto protoreflect.FileDescriptor
var file_cmd0x3f6_proto_rawDesc = []byte{
0x0a, 0x0e, 0x63, 0x6d, 0x64, 0x30, 0x78, 0x33, 0x66, 0x36, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x22, 0xce, 0x01, 0x0a, 0x0b, 0x43, 0x33, 0x46, 0x36, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79,
0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x12, 0x35, 0x0a, 0x0d, 0x63, 0x72, 0x6d, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x0f, 0x2e, 0x43, 0x33, 0x46, 0x36, 0x43, 0x52, 0x4d, 0x4d, 0x73, 0x67, 0x48, 0x65, 0x61, 0x64,
0x52, 0x0d, 0x63, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x12,
0x70, 0x0a, 0x21, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x72,
0x6f, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71,
0x42, 0x6f, 0x64, 0x79, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x51, 0x44, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x43,
0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x21,
0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x63, 0x65,
0x73, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x22, 0xce, 0x01, 0x0a, 0x0b, 0x43, 0x33, 0x46, 0x36, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x12, 0x35, 0x0a, 0x0d, 0x63, 0x72, 0x6d,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x0f, 0x2e, 0x43, 0x33, 0x46, 0x36, 0x43, 0x52, 0x4d, 0x4d, 0x73, 0x67, 0x48, 0x65, 0x61,
0x64, 0x52, 0x0d, 0x63, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x48, 0x65, 0x61, 0x64,
0x12, 0x70, 0x0a, 0x21, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50,
0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x73,
0x70, 0x42, 0x6f, 0x64, 0x79, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x51, 0x44,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52,
0x21, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x63,
0x65, 0x73, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x73, 0x70, 0x42, 0x6f,
0x64, 0x79, 0x22, 0xd5, 0x02, 0x0a, 0x21, 0x51, 0x44, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67,
0x69, 0x6e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74,
0x65, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x6b, 0x66, 0x65, 0x78,
0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6b, 0x66, 0x65, 0x78, 0x74, 0x12, 0x14,
0x0a, 0x05, 0x70, 0x75, 0x62, 0x6e, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x70,
0x75, 0x62, 0x6e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6e, 0x6f, 0x18,
0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6e, 0x6f, 0x12, 0x22,
0x0a, 0x0c, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x54, 0x79,
0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x6f,
0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6c,
0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x68, 0x61, 0x72, 0x64,
0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
0x68, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x22, 0x0a, 0x0c,
0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0c, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x12, 0x0a, 0x04, 0x67, 0x75, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04,
0x67, 0x75, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x18,
0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a,
0x0a, 0x08, 0x73, 0x75, 0x62, 0x41, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x08, 0x73, 0x75, 0x62, 0x41, 0x70, 0x70, 0x49, 0x64, 0x22, 0xcd, 0x05, 0x0a, 0x21, 0x51,
0x44, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73,
0x73, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79,
0x12, 0x1a, 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e,
0x52, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03,
0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16,
0x0a, 0x06, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e,
0x61, 0x6c, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x12, 0x2a,
0x0a, 0x10, 0x64, 0x61, 0x74, 0x61, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x50, 0x72,
0x69, 0x76, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x64, 0x61, 0x74, 0x61, 0x41, 0x6e,
0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x50, 0x72, 0x69, 0x76, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x65,
0x76, 0x69, 0x63, 0x65, 0x4c, 0x6f, 0x63, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,
0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x4c, 0x6f, 0x63, 0x6b, 0x12, 0x28, 0x0a, 0x0f, 0x6d, 0x6f,
0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x18, 0x07, 0x20,
0x01, 0x28, 0x04, 0x52, 0x0f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x69, 0x76, 0x69,
0x6c, 0x65, 0x67, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x75,
0x62, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0d,
0x52, 0x12, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x53, 0x75, 0x62, 0x50, 0x72, 0x69, 0x76, 0x69,
0x6c, 0x65, 0x67, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x53, 0x65,
0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6d, 0x61, 0x73, 0x74, 0x65, 0x72, 0x53,
0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x78, 0x74, 0x53, 0x65, 0x74, 0x18, 0x0a, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x06, 0x65, 0x78, 0x74, 0x53, 0x65, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x6f,
0x72, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x18, 0x0b,
0x20, 0x01, 0x28, 0x04, 0x52, 0x10, 0x63, 0x6f, 0x72, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x50, 0x72,
0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x72, 0x70, 0x75, 0x69,
0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x63, 0x6f, 0x72, 0x70, 0x75, 0x69, 0x6e,
0x12, 0x1c, 0x0a, 0x09, 0x6b, 0x66, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0d, 0x20,
0x01, 0x28, 0x04, 0x52, 0x09, 0x6b, 0x66, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24,
0x0a, 0x0d, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18,
0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x4c,
0x65, 0x76, 0x65, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x54, 0x69, 0x74, 0x6c, 0x65,
0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x54, 0x69, 0x74, 0x6c, 0x65,
0x12, 0x24, 0x0a, 0x0d, 0x73, 0x75, 0x63, 0x63, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x4d, 0x73,
0x67, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x75, 0x63, 0x63, 0x4e, 0x6f, 0x74,
0x69, 0x63, 0x65, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x61, 0x6d, 0x65, 0x41, 0x63,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x6e, 0x61, 0x6d,
0x65, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x6d, 0x4d,
0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x0e, 0x63, 0x72, 0x6d, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, 0x46, 0x6c, 0x61, 0x67,
0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x78, 0x74, 0x75, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x13,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x75, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65,
0x12, 0x28, 0x0a, 0x0f, 0x6f, 0x70, 0x65, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54,
0x69, 0x6d, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x6f, 0x70, 0x65, 0x6e, 0x41,
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x3f, 0x0a, 0x07, 0x52, 0x65,
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12,
0x1a, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x22, 0xfa, 0x02, 0x0a, 0x0e,
0x43, 0x33, 0x46, 0x36, 0x43, 0x52, 0x4d, 0x4d, 0x73, 0x67, 0x48, 0x65, 0x61, 0x64, 0x12, 0x1c,
0x0a, 0x09, 0x63, 0x72, 0x6d, 0x53, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x09, 0x63, 0x72, 0x6d, 0x53, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x12, 0x18, 0x0a, 0x07,
0x68, 0x65, 0x61, 0x64, 0x4c, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x68,
0x65, 0x61, 0x64, 0x4c, 0x65, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x65, 0x72, 0x4e, 0x6f, 0x18,
0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x65, 0x72, 0x4e, 0x6f, 0x12, 0x14, 0x0a, 0x05,
0x6b, 0x66, 0x55, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6b, 0x66, 0x55,
0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x03, 0x73, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x18,
0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x70, 0x61, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x18,
0x0a, 0x07, 0x63, 0x75, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x07, 0x63, 0x75, 0x72, 0x50, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x75, 0x66, 0x53,
0x69, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x62, 0x75, 0x66, 0x53, 0x69, 0x67,
0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x74, 0x79, 0x70, 0x65,
0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x62, 0x6f, 0x72, 0x55, 0x69, 0x6e, 0x18, 0x0a, 0x20, 0x01,
0x28, 0x04, 0x52, 0x08, 0x6c, 0x61, 0x62, 0x6f, 0x72, 0x55, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09,
0x6c, 0x61, 0x62, 0x6f, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
0x09, 0x6c, 0x61, 0x62, 0x6f, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6b, 0x66,
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6b,
0x66, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x72, 0x61, 0x63,
0x65, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, 0x72, 0x61, 0x63, 0x65,
0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x3b, 0x63,
0x6d, 0x64, 0x30, 0x78, 0x33, 0x66, 0x36,
}
var (
file_cmd0x3f6_proto_rawDescOnce sync.Once
file_cmd0x3f6_proto_rawDescData = file_cmd0x3f6_proto_rawDesc
)
func file_cmd0x3f6_proto_rawDescGZIP() []byte {
file_cmd0x3f6_proto_rawDescOnce.Do(func() {
file_cmd0x3f6_proto_rawDescData = protoimpl.X.CompressGZIP(file_cmd0x3f6_proto_rawDescData)
})
return file_cmd0x3f6_proto_rawDescData
}
var file_cmd0x3f6_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
var file_cmd0x3f6_proto_goTypes = []interface{}{
(*C3F6ReqBody)(nil), // 0: C3F6ReqBody
(*C3F6RspBody)(nil), // 1: C3F6RspBody
(*QDUserLoginProcessCompleteReqBody)(nil), // 2: QDUserLoginProcessCompleteReqBody
(*QDUserLoginProcessCompleteRspBody)(nil), // 3: QDUserLoginProcessCompleteRspBody
(*RetInfo)(nil), // 4: RetInfo
(*C3F6CRMMsgHead)(nil), // 5: C3F6CRMMsgHead
}
var file_cmd0x3f6_proto_depIdxs = []int32{
5, // 0: C3F6ReqBody.crmCommonHead:type_name -> C3F6CRMMsgHead
2, // 1: C3F6ReqBody.subcmdLoginProcessCompleteReqBody:type_name -> QDUserLoginProcessCompleteReqBody
5, // 2: C3F6RspBody.crmCommonHead:type_name -> C3F6CRMMsgHead
3, // 3: C3F6RspBody.subcmdLoginProcessCompleteRspBody:type_name -> QDUserLoginProcessCompleteRspBody
4, // 4: QDUserLoginProcessCompleteRspBody.ret:type_name -> RetInfo
5, // [5:5] is the sub-list for method output_type
5, // [5:5] is the sub-list for method input_type
5, // [5:5] is the sub-list for extension type_name
5, // [5:5] is the sub-list for extension extendee
0, // [0:5] is the sub-list for field type_name
}
func init() { file_cmd0x3f6_proto_init() }
func file_cmd0x3f6_proto_init() {
if File_cmd0x3f6_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_cmd0x3f6_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*C3F6ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x3f6_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*C3F6RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x3f6_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QDUserLoginProcessCompleteReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x3f6_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QDUserLoginProcessCompleteRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x3f6_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RetInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_cmd0x3f6_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*C3F6CRMMsgHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_cmd0x3f6_proto_rawDesc,
NumEnums: 0,
NumMessages: 6,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_cmd0x3f6_proto_goTypes,
DependencyIndexes: file_cmd0x3f6_proto_depIdxs,
MessageInfos: file_cmd0x3f6_proto_msgTypes,
}.Build()
File_cmd0x3f6_proto = out.File
file_cmd0x3f6_proto_rawDesc = nil
file_cmd0x3f6_proto_goTypes = nil
file_cmd0x3f6_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,64 +1,10 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: subcmd0x501.proto // source: subcmd0x501.proto
package cmd0x6ff package cmd0x6ff
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type C501ReqBody struct { type C501ReqBody struct {
state protoimpl.MessageState ReqBody *SubCmd0X501ReqBody `protobuf:"bytes,1281,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ReqBody *SubCmd0X501ReqBody `protobuf:"bytes,1281,opt,name=ReqBody" json:"ReqBody,omitempty"`
}
func (x *C501ReqBody) Reset() {
*x = C501ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_subcmd0x501_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *C501ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*C501ReqBody) ProtoMessage() {}
func (x *C501ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_subcmd0x501_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use C501ReqBody.ProtoReflect.Descriptor instead.
func (*C501ReqBody) Descriptor() ([]byte, []int) {
return file_subcmd0x501_proto_rawDescGZIP(), []int{0}
} }
func (x *C501ReqBody) GetReqBody() *SubCmd0X501ReqBody { func (x *C501ReqBody) GetReqBody() *SubCmd0X501ReqBody {
@ -69,43 +15,7 @@ func (x *C501ReqBody) GetReqBody() *SubCmd0X501ReqBody {
} }
type C501RspBody struct { type C501RspBody struct {
state protoimpl.MessageState RspBody *SubCmd0X501RspBody `protobuf:"bytes,1281,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
RspBody *SubCmd0X501RspBody `protobuf:"bytes,1281,opt,name=RspBody" json:"RspBody,omitempty"`
}
func (x *C501RspBody) Reset() {
*x = C501RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_subcmd0x501_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *C501RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*C501RspBody) ProtoMessage() {}
func (x *C501RspBody) ProtoReflect() protoreflect.Message {
mi := &file_subcmd0x501_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use C501RspBody.ProtoReflect.Descriptor instead.
func (*C501RspBody) Descriptor() ([]byte, []int) {
return file_subcmd0x501_proto_rawDescGZIP(), []int{1}
} }
func (x *C501RspBody) GetRspBody() *SubCmd0X501RspBody { func (x *C501RspBody) GetRspBody() *SubCmd0X501RspBody {
@ -116,50 +26,14 @@ func (x *C501RspBody) GetRspBody() *SubCmd0X501RspBody {
} }
type SubCmd0X501ReqBody struct { type SubCmd0X501ReqBody struct {
state protoimpl.MessageState Uin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache IdcId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Appid *uint32 `protobuf:"varint,3,opt"`
LoginSigType *uint32 `protobuf:"varint,4,opt"`
Uin *uint64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"` LoginSigTicket []byte `protobuf:"bytes,5,opt"`
IdcId *uint32 `protobuf:"varint,2,opt,name=idcId" json:"idcId,omitempty"` RequestFlag *uint32 `protobuf:"varint,6,opt"`
Appid *uint32 `protobuf:"varint,3,opt,name=appid" json:"appid,omitempty"` ServiceTypes []uint32 `protobuf:"varint,7,rep"`
LoginSigType *uint32 `protobuf:"varint,4,opt,name=loginSigType" json:"loginSigType,omitempty"` Bid *uint32 `protobuf:"varint,8,opt"`
LoginSigTicket []byte `protobuf:"bytes,5,opt,name=loginSigTicket" json:"loginSigTicket,omitempty"`
RequestFlag *uint32 `protobuf:"varint,6,opt,name=requestFlag" json:"requestFlag,omitempty"`
ServiceTypes []uint32 `protobuf:"varint,7,rep,name=serviceTypes" json:"serviceTypes,omitempty"`
Bid *uint32 `protobuf:"varint,8,opt,name=bid" json:"bid,omitempty"`
}
func (x *SubCmd0X501ReqBody) Reset() {
*x = SubCmd0X501ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_subcmd0x501_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SubCmd0X501ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SubCmd0X501ReqBody) ProtoMessage() {}
func (x *SubCmd0X501ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_subcmd0x501_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SubCmd0X501ReqBody.ProtoReflect.Descriptor instead.
func (*SubCmd0X501ReqBody) Descriptor() ([]byte, []int) {
return file_subcmd0x501_proto_rawDescGZIP(), []int{2}
} }
func (x *SubCmd0X501ReqBody) GetUin() uint64 { func (x *SubCmd0X501ReqBody) GetUin() uint64 {
@ -219,45 +93,9 @@ func (x *SubCmd0X501ReqBody) GetBid() uint32 {
} }
type SubCmd0X501RspBody struct { type SubCmd0X501RspBody struct {
state protoimpl.MessageState SigSession []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache SessionKey []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Addrs []*SrvAddrs `protobuf:"bytes,3,rep"`
SigSession []byte `protobuf:"bytes,1,opt,name=sigSession" json:"sigSession,omitempty"`
SessionKey []byte `protobuf:"bytes,2,opt,name=sessionKey" json:"sessionKey,omitempty"`
Addrs []*SrvAddrs `protobuf:"bytes,3,rep,name=addrs" json:"addrs,omitempty"`
}
func (x *SubCmd0X501RspBody) Reset() {
*x = SubCmd0X501RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_subcmd0x501_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SubCmd0X501RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SubCmd0X501RspBody) ProtoMessage() {}
func (x *SubCmd0X501RspBody) ProtoReflect() protoreflect.Message {
mi := &file_subcmd0x501_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SubCmd0X501RspBody.ProtoReflect.Descriptor instead.
func (*SubCmd0X501RspBody) Descriptor() ([]byte, []int) {
return file_subcmd0x501_proto_rawDescGZIP(), []int{3}
} }
func (x *SubCmd0X501RspBody) GetSigSession() []byte { func (x *SubCmd0X501RspBody) GetSigSession() []byte {
@ -282,44 +120,8 @@ func (x *SubCmd0X501RspBody) GetAddrs() []*SrvAddrs {
} }
type SrvAddrs struct { type SrvAddrs struct {
state protoimpl.MessageState ServiceType *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Addrs []*IpAddr `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
ServiceType *uint32 `protobuf:"varint,1,opt,name=serviceType" json:"serviceType,omitempty"`
Addrs []*IpAddr `protobuf:"bytes,2,rep,name=addrs" json:"addrs,omitempty"`
}
func (x *SrvAddrs) Reset() {
*x = SrvAddrs{}
if protoimpl.UnsafeEnabled {
mi := &file_subcmd0x501_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SrvAddrs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SrvAddrs) ProtoMessage() {}
func (x *SrvAddrs) ProtoReflect() protoreflect.Message {
mi := &file_subcmd0x501_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SrvAddrs.ProtoReflect.Descriptor instead.
func (*SrvAddrs) Descriptor() ([]byte, []int) {
return file_subcmd0x501_proto_rawDescGZIP(), []int{4}
} }
func (x *SrvAddrs) GetServiceType() uint32 { func (x *SrvAddrs) GetServiceType() uint32 {
@ -337,46 +139,10 @@ func (x *SrvAddrs) GetAddrs() []*IpAddr {
} }
type IpAddr struct { type IpAddr struct {
state protoimpl.MessageState Type *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Ip *uint32 `protobuf:"fixed32,2,opt"`
unknownFields protoimpl.UnknownFields Port *uint32 `protobuf:"varint,3,opt"`
Area *uint32 `protobuf:"varint,4,opt"`
Type *uint32 `protobuf:"varint,1,opt,name=type" json:"type,omitempty"`
Ip *uint32 `protobuf:"fixed32,2,opt,name=ip" json:"ip,omitempty"`
Port *uint32 `protobuf:"varint,3,opt,name=port" json:"port,omitempty"`
Area *uint32 `protobuf:"varint,4,opt,name=area" json:"area,omitempty"`
}
func (x *IpAddr) Reset() {
*x = IpAddr{}
if protoimpl.UnsafeEnabled {
mi := &file_subcmd0x501_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *IpAddr) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*IpAddr) ProtoMessage() {}
func (x *IpAddr) ProtoReflect() protoreflect.Message {
mi := &file_subcmd0x501_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use IpAddr.ProtoReflect.Descriptor instead.
func (*IpAddr) Descriptor() ([]byte, []int) {
return file_subcmd0x501_proto_rawDescGZIP(), []int{5}
} }
func (x *IpAddr) GetType() uint32 { func (x *IpAddr) GetType() uint32 {
@ -406,184 +172,3 @@ func (x *IpAddr) GetArea() uint32 {
} }
return 0 return 0
} }
var File_subcmd0x501_proto protoreflect.FileDescriptor
var file_subcmd0x501_proto_rawDesc = []byte{
0x0a, 0x11, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x30, 0x78, 0x35, 0x30, 0x31, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x22, 0x3d, 0x0a, 0x0b, 0x43, 0x35, 0x30, 0x31, 0x52, 0x65, 0x71, 0x42, 0x6f,
0x64, 0x79, 0x12, 0x2e, 0x0a, 0x07, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x18, 0x81, 0x0a,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x53, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x30, 0x78, 0x35,
0x30, 0x31, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x07, 0x52, 0x65, 0x71, 0x42, 0x6f,
0x64, 0x79, 0x22, 0x3d, 0x0a, 0x0b, 0x43, 0x35, 0x30, 0x31, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x2e, 0x0a, 0x07, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x18, 0x81, 0x0a, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x53, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x30, 0x78, 0x35, 0x30,
0x31, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x07, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
0x79, 0x22, 0xf6, 0x01, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x30, 0x78, 0x35, 0x30,
0x31, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x64,
0x63, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x69, 0x64, 0x63, 0x49, 0x64,
0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x53,
0x69, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x6c, 0x6f,
0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x6c, 0x6f,
0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x0e, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x54, 0x69, 0x63, 0x6b,
0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x46, 0x6c, 0x61, 0x67, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54,
0x79, 0x70, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x76,
0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69, 0x64, 0x18,
0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x62, 0x69, 0x64, 0x22, 0x75, 0x0a, 0x12, 0x53, 0x75,
0x62, 0x43, 0x6d, 0x64, 0x30, 0x78, 0x35, 0x30, 0x31, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79,
0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x69, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x69, 0x67, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79,
0x12, 0x1f, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x09, 0x2e, 0x53, 0x72, 0x76, 0x41, 0x64, 0x64, 0x72, 0x73, 0x52, 0x05, 0x61, 0x64, 0x64, 0x72,
0x73, 0x22, 0x4b, 0x0a, 0x08, 0x53, 0x72, 0x76, 0x41, 0x64, 0x64, 0x72, 0x73, 0x12, 0x20, 0x0a,
0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
0x1d, 0x0a, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07,
0x2e, 0x49, 0x70, 0x41, 0x64, 0x64, 0x72, 0x52, 0x05, 0x61, 0x64, 0x64, 0x72, 0x73, 0x22, 0x54,
0x0a, 0x06, 0x49, 0x70, 0x41, 0x64, 0x64, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x0e, 0x0a, 0x02,
0x69, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x07, 0x52, 0x02, 0x69, 0x70, 0x12, 0x12, 0x0a, 0x04,
0x70, 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x70, 0x6f, 0x72, 0x74,
0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04,
0x61, 0x72, 0x65, 0x61, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x3b, 0x63, 0x6d, 0x64, 0x30, 0x78,
0x36, 0x66, 0x66,
}
var (
file_subcmd0x501_proto_rawDescOnce sync.Once
file_subcmd0x501_proto_rawDescData = file_subcmd0x501_proto_rawDesc
)
func file_subcmd0x501_proto_rawDescGZIP() []byte {
file_subcmd0x501_proto_rawDescOnce.Do(func() {
file_subcmd0x501_proto_rawDescData = protoimpl.X.CompressGZIP(file_subcmd0x501_proto_rawDescData)
})
return file_subcmd0x501_proto_rawDescData
}
var file_subcmd0x501_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
var file_subcmd0x501_proto_goTypes = []interface{}{
(*C501ReqBody)(nil), // 0: C501ReqBody
(*C501RspBody)(nil), // 1: C501RspBody
(*SubCmd0X501ReqBody)(nil), // 2: SubCmd0x501ReqBody
(*SubCmd0X501RspBody)(nil), // 3: SubCmd0x501RspBody
(*SrvAddrs)(nil), // 4: SrvAddrs
(*IpAddr)(nil), // 5: IpAddr
}
var file_subcmd0x501_proto_depIdxs = []int32{
2, // 0: C501ReqBody.ReqBody:type_name -> SubCmd0x501ReqBody
3, // 1: C501RspBody.RspBody:type_name -> SubCmd0x501RspBody
4, // 2: SubCmd0x501RspBody.addrs:type_name -> SrvAddrs
5, // 3: SrvAddrs.addrs:type_name -> IpAddr
4, // [4:4] is the sub-list for method output_type
4, // [4:4] is the sub-list for method input_type
4, // [4:4] is the sub-list for extension type_name
4, // [4:4] is the sub-list for extension extendee
0, // [0:4] is the sub-list for field type_name
}
func init() { file_subcmd0x501_proto_init() }
func file_subcmd0x501_proto_init() {
if File_subcmd0x501_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_subcmd0x501_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*C501ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_subcmd0x501_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*C501RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_subcmd0x501_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SubCmd0X501ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_subcmd0x501_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SubCmd0X501RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_subcmd0x501_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SrvAddrs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_subcmd0x501_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IpAddr); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_subcmd0x501_proto_rawDesc,
NumEnums: 0,
NumMessages: 6,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_subcmd0x501_proto_goTypes,
DependencyIndexes: file_subcmd0x501_proto_depIdxs,
MessageInfos: file_subcmd0x501_proto_msgTypes,
}.Build()
File_subcmd0x501_proto = out.File
file_subcmd0x501_proto_rawDesc = nil
file_subcmd0x501_proto_goTypes = nil
file_subcmd0x501_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,6 @@ syntax = "proto3";
option go_package = "./;pb"; option go_package = "./;pb";
message DeviceInfo { message DeviceInfo {
string bootloader = 1; string bootloader = 1;
string procVersion = 2; string procVersion = 2;

View File

@ -1,67 +1,13 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: group.proto // source: group.proto
package exciting package exciting
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type GroupFileUploadExt struct { type GroupFileUploadExt struct {
state protoimpl.MessageState Unknown1 *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Unknown2 *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Entry *GroupFileUploadEntry `protobuf:"bytes,100,opt"`
Unknown3 *int32 `protobuf:"varint,3,opt"`
Unknown1 *int32 `protobuf:"varint,1,opt,name=unknown1" json:"unknown1,omitempty"`
Unknown2 *int32 `protobuf:"varint,2,opt,name=unknown2" json:"unknown2,omitempty"`
Entry *GroupFileUploadEntry `protobuf:"bytes,100,opt,name=entry" json:"entry,omitempty"`
Unknown3 *int32 `protobuf:"varint,3,opt,name=unknown3" json:"unknown3,omitempty"`
}
func (x *GroupFileUploadExt) Reset() {
*x = GroupFileUploadExt{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GroupFileUploadExt) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GroupFileUploadExt) ProtoMessage() {}
func (x *GroupFileUploadExt) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GroupFileUploadExt.ProtoReflect.Descriptor instead.
func (*GroupFileUploadExt) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{0}
} }
func (x *GroupFileUploadExt) GetUnknown1() int32 { func (x *GroupFileUploadExt) GetUnknown1() int32 {
@ -93,47 +39,11 @@ func (x *GroupFileUploadExt) GetUnknown3() int32 {
} }
type GroupFileUploadEntry struct { type GroupFileUploadEntry struct {
state protoimpl.MessageState BusiBuff *ExcitingBusiInfo `protobuf:"bytes,100,opt"`
sizeCache protoimpl.SizeCache FileEntry *ExcitingFileEntry `protobuf:"bytes,200,opt"`
unknownFields protoimpl.UnknownFields ClientInfo *ExcitingClientInfo `protobuf:"bytes,300,opt"`
FileNameInfo *ExcitingFileNameInfo `protobuf:"bytes,400,opt"`
BusiBuff *ExcitingBusiInfo `protobuf:"bytes,100,opt,name=busiBuff" json:"busiBuff,omitempty"` Host *ExcitingHostConfig `protobuf:"bytes,500,opt"`
FileEntry *ExcitingFileEntry `protobuf:"bytes,200,opt,name=fileEntry" json:"fileEntry,omitempty"`
ClientInfo *ExcitingClientInfo `protobuf:"bytes,300,opt,name=clientInfo" json:"clientInfo,omitempty"`
FileNameInfo *ExcitingFileNameInfo `protobuf:"bytes,400,opt,name=fileNameInfo" json:"fileNameInfo,omitempty"`
Host *ExcitingHostConfig `protobuf:"bytes,500,opt,name=host" json:"host,omitempty"`
}
func (x *GroupFileUploadEntry) Reset() {
*x = GroupFileUploadEntry{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GroupFileUploadEntry) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GroupFileUploadEntry) ProtoMessage() {}
func (x *GroupFileUploadEntry) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GroupFileUploadEntry.ProtoReflect.Descriptor instead.
func (*GroupFileUploadEntry) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{1}
} }
func (x *GroupFileUploadEntry) GetBusiBuff() *ExcitingBusiInfo { func (x *GroupFileUploadEntry) GetBusiBuff() *ExcitingBusiInfo {
@ -172,46 +82,10 @@ func (x *GroupFileUploadEntry) GetHost() *ExcitingHostConfig {
} }
type ExcitingBusiInfo struct { type ExcitingBusiInfo struct {
state protoimpl.MessageState BusId *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache SenderUin *int64 `protobuf:"varint,100,opt"`
unknownFields protoimpl.UnknownFields ReceiverUin *int64 `protobuf:"varint,200,opt"` // probable
GroupCode *int64 `protobuf:"varint,400,opt"` // probable
BusId *int32 `protobuf:"varint,1,opt,name=busId" json:"busId,omitempty"`
SenderUin *int64 `protobuf:"varint,100,opt,name=senderUin" json:"senderUin,omitempty"`
ReceiverUin *int64 `protobuf:"varint,200,opt,name=receiverUin" json:"receiverUin,omitempty"` // probable
GroupCode *int64 `protobuf:"varint,400,opt,name=groupCode" json:"groupCode,omitempty"` // probable
}
func (x *ExcitingBusiInfo) Reset() {
*x = ExcitingBusiInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExcitingBusiInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExcitingBusiInfo) ProtoMessage() {}
func (x *ExcitingBusiInfo) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExcitingBusiInfo.ProtoReflect.Descriptor instead.
func (*ExcitingBusiInfo) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{2}
} }
func (x *ExcitingBusiInfo) GetBusId() int32 { func (x *ExcitingBusiInfo) GetBusId() int32 {
@ -243,47 +117,11 @@ func (x *ExcitingBusiInfo) GetGroupCode() int64 {
} }
type ExcitingFileEntry struct { type ExcitingFileEntry struct {
state protoimpl.MessageState FileSize *int64 `protobuf:"varint,100,opt"`
sizeCache protoimpl.SizeCache Md5 []byte `protobuf:"bytes,200,opt"`
unknownFields protoimpl.UnknownFields Sha1 []byte `protobuf:"bytes,300,opt"`
FileId []byte `protobuf:"bytes,600,opt"`
FileSize *int64 `protobuf:"varint,100,opt,name=fileSize" json:"fileSize,omitempty"` UploadKey []byte `protobuf:"bytes,700,opt"`
Md5 []byte `protobuf:"bytes,200,opt,name=md5" json:"md5,omitempty"`
Sha1 []byte `protobuf:"bytes,300,opt,name=sha1" json:"sha1,omitempty"`
FileId []byte `protobuf:"bytes,600,opt,name=fileId" json:"fileId,omitempty"`
UploadKey []byte `protobuf:"bytes,700,opt,name=uploadKey" json:"uploadKey,omitempty"`
}
func (x *ExcitingFileEntry) Reset() {
*x = ExcitingFileEntry{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExcitingFileEntry) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExcitingFileEntry) ProtoMessage() {}
func (x *ExcitingFileEntry) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExcitingFileEntry.ProtoReflect.Descriptor instead.
func (*ExcitingFileEntry) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{3}
} }
func (x *ExcitingFileEntry) GetFileSize() int64 { func (x *ExcitingFileEntry) GetFileSize() int64 {
@ -322,47 +160,11 @@ func (x *ExcitingFileEntry) GetUploadKey() []byte {
} }
type ExcitingClientInfo struct { type ExcitingClientInfo struct {
state protoimpl.MessageState ClientType *int32 `protobuf:"varint,100,opt"` // probable
sizeCache protoimpl.SizeCache AppId *string `protobuf:"bytes,200,opt"`
unknownFields protoimpl.UnknownFields TerminalType *int32 `protobuf:"varint,300,opt"` // probable
ClientVer *string `protobuf:"bytes,400,opt"`
ClientType *int32 `protobuf:"varint,100,opt,name=clientType" json:"clientType,omitempty"` // probable Unknown *int32 `protobuf:"varint,600,opt"`
AppId *string `protobuf:"bytes,200,opt,name=appId" json:"appId,omitempty"`
TerminalType *int32 `protobuf:"varint,300,opt,name=terminalType" json:"terminalType,omitempty"` // probable
ClientVer *string `protobuf:"bytes,400,opt,name=clientVer" json:"clientVer,omitempty"`
Unknown *int32 `protobuf:"varint,600,opt,name=unknown" json:"unknown,omitempty"`
}
func (x *ExcitingClientInfo) Reset() {
*x = ExcitingClientInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExcitingClientInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExcitingClientInfo) ProtoMessage() {}
func (x *ExcitingClientInfo) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExcitingClientInfo.ProtoReflect.Descriptor instead.
func (*ExcitingClientInfo) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{4}
} }
func (x *ExcitingClientInfo) GetClientType() int32 { func (x *ExcitingClientInfo) GetClientType() int32 {
@ -401,43 +203,7 @@ func (x *ExcitingClientInfo) GetUnknown() int32 {
} }
type ExcitingFileNameInfo struct { type ExcitingFileNameInfo struct {
state protoimpl.MessageState FileName *string `protobuf:"bytes,100,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
FileName *string `protobuf:"bytes,100,opt,name=fileName" json:"fileName,omitempty"`
}
func (x *ExcitingFileNameInfo) Reset() {
*x = ExcitingFileNameInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExcitingFileNameInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExcitingFileNameInfo) ProtoMessage() {}
func (x *ExcitingFileNameInfo) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExcitingFileNameInfo.ProtoReflect.Descriptor instead.
func (*ExcitingFileNameInfo) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{5}
} }
func (x *ExcitingFileNameInfo) GetFileName() string { func (x *ExcitingFileNameInfo) GetFileName() string {
@ -448,43 +214,7 @@ func (x *ExcitingFileNameInfo) GetFileName() string {
} }
type ExcitingHostConfig struct { type ExcitingHostConfig struct {
state protoimpl.MessageState Hosts []*ExcitingHostInfo `protobuf:"bytes,200,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Hosts []*ExcitingHostInfo `protobuf:"bytes,200,rep,name=hosts" json:"hosts,omitempty"`
}
func (x *ExcitingHostConfig) Reset() {
*x = ExcitingHostConfig{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExcitingHostConfig) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExcitingHostConfig) ProtoMessage() {}
func (x *ExcitingHostConfig) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExcitingHostConfig.ProtoReflect.Descriptor instead.
func (*ExcitingHostConfig) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{6}
} }
func (x *ExcitingHostConfig) GetHosts() []*ExcitingHostInfo { func (x *ExcitingHostConfig) GetHosts() []*ExcitingHostInfo {
@ -495,44 +225,8 @@ func (x *ExcitingHostConfig) GetHosts() []*ExcitingHostInfo {
} }
type ExcitingHostInfo struct { type ExcitingHostInfo struct {
state protoimpl.MessageState Url *ExcitingUrlInfo `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Port *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
Url *ExcitingUrlInfo `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
Port *int32 `protobuf:"varint,2,opt,name=port" json:"port,omitempty"`
}
func (x *ExcitingHostInfo) Reset() {
*x = ExcitingHostInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExcitingHostInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExcitingHostInfo) ProtoMessage() {}
func (x *ExcitingHostInfo) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExcitingHostInfo.ProtoReflect.Descriptor instead.
func (*ExcitingHostInfo) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{7}
} }
func (x *ExcitingHostInfo) GetUrl() *ExcitingUrlInfo { func (x *ExcitingHostInfo) GetUrl() *ExcitingUrlInfo {
@ -550,44 +244,8 @@ func (x *ExcitingHostInfo) GetPort() int32 {
} }
type ExcitingUrlInfo struct { type ExcitingUrlInfo struct {
state protoimpl.MessageState Unknown *int32 `protobuf:"varint,1,opt"` // not https?
sizeCache protoimpl.SizeCache Host *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Unknown *int32 `protobuf:"varint,1,opt,name=unknown" json:"unknown,omitempty"` // not https?
Host *string `protobuf:"bytes,2,opt,name=host" json:"host,omitempty"`
}
func (x *ExcitingUrlInfo) Reset() {
*x = ExcitingUrlInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExcitingUrlInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExcitingUrlInfo) ProtoMessage() {}
func (x *ExcitingUrlInfo) ProtoReflect() protoreflect.Message {
mi := &file_group_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExcitingUrlInfo.ProtoReflect.Descriptor instead.
func (*ExcitingUrlInfo) Descriptor() ([]byte, []int) {
return file_group_proto_rawDescGZIP(), []int{8}
} }
func (x *ExcitingUrlInfo) GetUnknown() int32 { func (x *ExcitingUrlInfo) GetUnknown() int32 {
@ -603,257 +261,3 @@ func (x *ExcitingUrlInfo) GetHost() string {
} }
return "" return ""
} }
var File_group_proto protoreflect.FileDescriptor
var file_group_proto_rawDesc = []byte{
0x0a, 0x0b, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x95, 0x01,
0x0a, 0x12, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x55, 0x70, 0x6c, 0x6f, 0x61,
0x64, 0x45, 0x78, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x31,
0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x31,
0x12, 0x1a, 0x0a, 0x08, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x32, 0x18, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x08, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x32, 0x12, 0x2b, 0x0a, 0x05,
0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x64, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x6e, 0x74,
0x72, 0x79, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x6e, 0x6b,
0x6e, 0x6f, 0x77, 0x6e, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x75, 0x6e, 0x6b,
0x6e, 0x6f, 0x77, 0x6e, 0x33, 0x22, 0x94, 0x02, 0x0a, 0x14, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46,
0x69, 0x6c, 0x65, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x2d,
0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x42, 0x75, 0x66, 0x66, 0x18, 0x64, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x11, 0x2e, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x75, 0x73, 0x69, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x42, 0x75, 0x66, 0x66, 0x12, 0x31, 0x0a,
0x09, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x18, 0xc8, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x12, 0x2e, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x65,
0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79,
0x12, 0x34, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0xac,
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69, 0x6e, 0x67,
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65,
0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x3a, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x90, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
0x45, 0x78, 0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x6e,
0x66, 0x6f, 0x12, 0x28, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0xf4, 0x03, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x13, 0x2e, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x6f, 0x73, 0x74,
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x22, 0x88, 0x01, 0x0a,
0x10, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x75, 0x73, 0x69, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x65,
0x72, 0x55, 0x69, 0x6e, 0x18, 0x64, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x65, 0x6e, 0x64,
0x65, 0x72, 0x55, 0x69, 0x6e, 0x12, 0x21, 0x0a, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
0x72, 0x55, 0x69, 0x6e, 0x18, 0xc8, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x63,
0x65, 0x69, 0x76, 0x65, 0x72, 0x55, 0x69, 0x6e, 0x12, 0x1d, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x90, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x8f, 0x01, 0x0a, 0x11, 0x45, 0x78, 0x63, 0x69,
0x74, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a,
0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x64, 0x20, 0x01, 0x28, 0x03, 0x52,
0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x11, 0x0a, 0x03, 0x6d, 0x64, 0x35,
0x18, 0xc8, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6d, 0x64, 0x35, 0x12, 0x13, 0x0a, 0x04,
0x73, 0x68, 0x61, 0x31, 0x18, 0xac, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x73, 0x68, 0x61,
0x31, 0x12, 0x17, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x18, 0xd8, 0x04, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x09, 0x75, 0x70,
0x6c, 0x6f, 0x61, 0x64, 0x4b, 0x65, 0x79, 0x18, 0xbc, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09,
0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4b, 0x65, 0x79, 0x22, 0xaa, 0x01, 0x0a, 0x12, 0x45, 0x78,
0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x64,
0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
0x12, 0x15, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0xc8, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0c, 0x74, 0x65, 0x72, 0x6d, 0x69,
0x6e, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0xac, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c,
0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x09,
0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x18, 0x90, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x12, 0x19, 0x0a, 0x07, 0x75,
0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x18, 0xd8, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x75,
0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x22, 0x32, 0x0a, 0x14, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69,
0x6e, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a,
0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x64, 0x20, 0x01, 0x28, 0x09,
0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x0a, 0x12, 0x45, 0x78,
0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x6f, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
0x12, 0x28, 0x0a, 0x05, 0x68, 0x6f, 0x73, 0x74, 0x73, 0x18, 0xc8, 0x01, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x11, 0x2e, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x6f, 0x73, 0x74, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x05, 0x68, 0x6f, 0x73, 0x74, 0x73, 0x22, 0x4a, 0x0a, 0x10, 0x45, 0x78,
0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x48, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x22,
0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x78,
0x63, 0x69, 0x74, 0x69, 0x6e, 0x67, 0x55, 0x72, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x03, 0x75,
0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x04, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x3f, 0x0a, 0x0f, 0x45, 0x78, 0x63, 0x69, 0x74, 0x69,
0x6e, 0x67, 0x55, 0x72, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x6e, 0x6b,
0x6e, 0x6f, 0x77, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x75, 0x6e, 0x6b, 0x6e,
0x6f, 0x77, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x3b, 0x65, 0x78,
0x63, 0x69, 0x74, 0x69, 0x6e, 0x67,
}
var (
file_group_proto_rawDescOnce sync.Once
file_group_proto_rawDescData = file_group_proto_rawDesc
)
func file_group_proto_rawDescGZIP() []byte {
file_group_proto_rawDescOnce.Do(func() {
file_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_group_proto_rawDescData)
})
return file_group_proto_rawDescData
}
var file_group_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
var file_group_proto_goTypes = []interface{}{
(*GroupFileUploadExt)(nil), // 0: GroupFileUploadExt
(*GroupFileUploadEntry)(nil), // 1: GroupFileUploadEntry
(*ExcitingBusiInfo)(nil), // 2: ExcitingBusiInfo
(*ExcitingFileEntry)(nil), // 3: ExcitingFileEntry
(*ExcitingClientInfo)(nil), // 4: ExcitingClientInfo
(*ExcitingFileNameInfo)(nil), // 5: ExcitingFileNameInfo
(*ExcitingHostConfig)(nil), // 6: ExcitingHostConfig
(*ExcitingHostInfo)(nil), // 7: ExcitingHostInfo
(*ExcitingUrlInfo)(nil), // 8: ExcitingUrlInfo
}
var file_group_proto_depIdxs = []int32{
1, // 0: GroupFileUploadExt.entry:type_name -> GroupFileUploadEntry
2, // 1: GroupFileUploadEntry.busiBuff:type_name -> ExcitingBusiInfo
3, // 2: GroupFileUploadEntry.fileEntry:type_name -> ExcitingFileEntry
4, // 3: GroupFileUploadEntry.clientInfo:type_name -> ExcitingClientInfo
5, // 4: GroupFileUploadEntry.fileNameInfo:type_name -> ExcitingFileNameInfo
6, // 5: GroupFileUploadEntry.host:type_name -> ExcitingHostConfig
7, // 6: ExcitingHostConfig.hosts:type_name -> ExcitingHostInfo
8, // 7: ExcitingHostInfo.url:type_name -> ExcitingUrlInfo
8, // [8:8] is the sub-list for method output_type
8, // [8:8] is the sub-list for method input_type
8, // [8:8] is the sub-list for extension type_name
8, // [8:8] is the sub-list for extension extendee
0, // [0:8] is the sub-list for field type_name
}
func init() { file_group_proto_init() }
func file_group_proto_init() {
if File_group_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GroupFileUploadExt); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GroupFileUploadEntry); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExcitingBusiInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExcitingFileEntry); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExcitingClientInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExcitingFileNameInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExcitingHostConfig); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExcitingHostInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExcitingUrlInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_group_proto_rawDesc,
NumEnums: 0,
NumMessages: 9,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_group_proto_goTypes,
DependencyIndexes: file_group_proto_depIdxs,
MessageInfos: file_group_proto_msgTypes,
}.Build()
File_group_proto = out.File
file_group_proto_rawDesc = nil
file_group_proto_goTypes = nil
file_group_proto_depIdxs = nil
}

View File

@ -1,66 +1,12 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: faceroam.proto // source: faceroam.proto
package faceroam package faceroam
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type PlatInfo struct { type PlatInfo struct {
state protoimpl.MessageState Implat *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Osver *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Mqqver *string `protobuf:"bytes,3,opt"`
Implat *int64 `protobuf:"varint,1,opt,name=implat" json:"implat,omitempty"`
Osver *string `protobuf:"bytes,2,opt,name=osver" json:"osver,omitempty"`
Mqqver *string `protobuf:"bytes,3,opt,name=mqqver" json:"mqqver,omitempty"`
}
func (x *PlatInfo) Reset() {
*x = PlatInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_faceroam_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PlatInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PlatInfo) ProtoMessage() {}
func (x *PlatInfo) ProtoReflect() protoreflect.Message {
mi := &file_faceroam_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PlatInfo.ProtoReflect.Descriptor instead.
func (*PlatInfo) Descriptor() ([]byte, []int) {
return file_faceroam_proto_rawDescGZIP(), []int{0}
} }
func (x *PlatInfo) GetImplat() int64 { func (x *PlatInfo) GetImplat() int64 {
@ -85,47 +31,11 @@ func (x *PlatInfo) GetMqqver() string {
} }
type FaceroamReqBody struct { type FaceroamReqBody struct {
state protoimpl.MessageState Comm *PlatInfo `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Uin *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields SubCmd *uint32 `protobuf:"varint,3,opt"`
ReqUserInfo *ReqUserInfo `protobuf:"bytes,4,opt"`
Comm *PlatInfo `protobuf:"bytes,1,opt,name=comm" json:"comm,omitempty"` ReqDeleteItem *ReqDeleteItem `protobuf:"bytes,5,opt"`
Uin *uint64 `protobuf:"varint,2,opt,name=uin" json:"uin,omitempty"`
SubCmd *uint32 `protobuf:"varint,3,opt,name=subCmd" json:"subCmd,omitempty"`
ReqUserInfo *ReqUserInfo `protobuf:"bytes,4,opt,name=reqUserInfo" json:"reqUserInfo,omitempty"`
ReqDeleteItem *ReqDeleteItem `protobuf:"bytes,5,opt,name=reqDeleteItem" json:"reqDeleteItem,omitempty"`
}
func (x *FaceroamReqBody) Reset() {
*x = FaceroamReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_faceroam_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FaceroamReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FaceroamReqBody) ProtoMessage() {}
func (x *FaceroamReqBody) ProtoReflect() protoreflect.Message {
mi := &file_faceroam_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FaceroamReqBody.ProtoReflect.Descriptor instead.
func (*FaceroamReqBody) Descriptor() ([]byte, []int) {
return file_faceroam_proto_rawDescGZIP(), []int{1}
} }
func (x *FaceroamReqBody) GetComm() *PlatInfo { func (x *FaceroamReqBody) GetComm() *PlatInfo {
@ -164,43 +74,7 @@ func (x *FaceroamReqBody) GetReqDeleteItem() *ReqDeleteItem {
} }
type ReqDeleteItem struct { type ReqDeleteItem struct {
state protoimpl.MessageState Filename []string `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Filename []string `protobuf:"bytes,1,rep,name=filename" json:"filename,omitempty"`
}
func (x *ReqDeleteItem) Reset() {
*x = ReqDeleteItem{}
if protoimpl.UnsafeEnabled {
mi := &file_faceroam_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReqDeleteItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReqDeleteItem) ProtoMessage() {}
func (x *ReqDeleteItem) ProtoReflect() protoreflect.Message {
mi := &file_faceroam_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReqDeleteItem.ProtoReflect.Descriptor instead.
func (*ReqDeleteItem) Descriptor() ([]byte, []int) {
return file_faceroam_proto_rawDescGZIP(), []int{2}
} }
func (x *ReqDeleteItem) GetFilename() []string { func (x *ReqDeleteItem) GetFilename() []string {
@ -211,85 +85,14 @@ func (x *ReqDeleteItem) GetFilename() []string {
} }
type ReqUserInfo struct { type ReqUserInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
}
func (x *ReqUserInfo) Reset() {
*x = ReqUserInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_faceroam_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ReqUserInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ReqUserInfo) ProtoMessage() {}
func (x *ReqUserInfo) ProtoReflect() protoreflect.Message {
mi := &file_faceroam_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ReqUserInfo.ProtoReflect.Descriptor instead.
func (*ReqUserInfo) Descriptor() ([]byte, []int) {
return file_faceroam_proto_rawDescGZIP(), []int{3}
} }
type FaceroamRspBody struct { type FaceroamRspBody struct {
state protoimpl.MessageState Ret *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Errmsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields SubCmd *uint32 `protobuf:"varint,3,opt"`
RspUserInfo *RspUserInfo `protobuf:"bytes,4,opt"`
Ret *int64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"` RspDeleteItem *RspDeleteItem `protobuf:"bytes,5,opt"`
Errmsg *string `protobuf:"bytes,2,opt,name=errmsg" json:"errmsg,omitempty"`
SubCmd *uint32 `protobuf:"varint,3,opt,name=subCmd" json:"subCmd,omitempty"`
RspUserInfo *RspUserInfo `protobuf:"bytes,4,opt,name=rspUserInfo" json:"rspUserInfo,omitempty"`
RspDeleteItem *RspDeleteItem `protobuf:"bytes,5,opt,name=rspDeleteItem" json:"rspDeleteItem,omitempty"`
}
func (x *FaceroamRspBody) Reset() {
*x = FaceroamRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_faceroam_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FaceroamRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FaceroamRspBody) ProtoMessage() {}
func (x *FaceroamRspBody) ProtoReflect() protoreflect.Message {
mi := &file_faceroam_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FaceroamRspBody.ProtoReflect.Descriptor instead.
func (*FaceroamRspBody) Descriptor() ([]byte, []int) {
return file_faceroam_proto_rawDescGZIP(), []int{4}
} }
func (x *FaceroamRspBody) GetRet() int64 { func (x *FaceroamRspBody) GetRet() int64 {
@ -328,44 +131,8 @@ func (x *FaceroamRspBody) GetRspDeleteItem() *RspDeleteItem {
} }
type RspDeleteItem struct { type RspDeleteItem struct {
state protoimpl.MessageState Filename []string `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache Ret []int64 `protobuf:"varint,2,rep"`
unknownFields protoimpl.UnknownFields
Filename []string `protobuf:"bytes,1,rep,name=filename" json:"filename,omitempty"`
Ret []int64 `protobuf:"varint,2,rep,name=ret" json:"ret,omitempty"`
}
func (x *RspDeleteItem) Reset() {
*x = RspDeleteItem{}
if protoimpl.UnsafeEnabled {
mi := &file_faceroam_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RspDeleteItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RspDeleteItem) ProtoMessage() {}
func (x *RspDeleteItem) ProtoReflect() protoreflect.Message {
mi := &file_faceroam_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RspDeleteItem.ProtoReflect.Descriptor instead.
func (*RspDeleteItem) Descriptor() ([]byte, []int) {
return file_faceroam_proto_rawDescGZIP(), []int{5}
} }
func (x *RspDeleteItem) GetFilename() []string { func (x *RspDeleteItem) GetFilename() []string {
@ -383,47 +150,11 @@ func (x *RspDeleteItem) GetRet() []int64 {
} }
type RspUserInfo struct { type RspUserInfo struct {
state protoimpl.MessageState Filename []string `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache DeleteFile []string `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields Bid *string `protobuf:"bytes,3,opt"`
MaxRoamSize *uint32 `protobuf:"varint,4,opt"`
Filename []string `protobuf:"bytes,1,rep,name=filename" json:"filename,omitempty"` EmojiType []uint32 `protobuf:"varint,5,rep"`
DeleteFile []string `protobuf:"bytes,2,rep,name=deleteFile" json:"deleteFile,omitempty"`
Bid *string `protobuf:"bytes,3,opt,name=bid" json:"bid,omitempty"`
MaxRoamSize *uint32 `protobuf:"varint,4,opt,name=maxRoamSize" json:"maxRoamSize,omitempty"`
EmojiType []uint32 `protobuf:"varint,5,rep,name=emojiType" json:"emojiType,omitempty"`
}
func (x *RspUserInfo) Reset() {
*x = RspUserInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_faceroam_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RspUserInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RspUserInfo) ProtoMessage() {}
func (x *RspUserInfo) ProtoReflect() protoreflect.Message {
mi := &file_faceroam_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RspUserInfo.ProtoReflect.Descriptor instead.
func (*RspUserInfo) Descriptor() ([]byte, []int) {
return file_faceroam_proto_rawDescGZIP(), []int{6}
} }
func (x *RspUserInfo) GetFilename() []string { func (x *RspUserInfo) GetFilename() []string {
@ -460,203 +191,3 @@ func (x *RspUserInfo) GetEmojiType() []uint32 {
} }
return nil return nil
} }
var File_faceroam_proto protoreflect.FileDescriptor
var file_faceroam_proto_rawDesc = []byte{
0x0a, 0x0e, 0x66, 0x61, 0x63, 0x65, 0x72, 0x6f, 0x61, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x22, 0x50, 0x0a, 0x08, 0x50, 0x6c, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06,
0x69, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x6d,
0x70, 0x6c, 0x61, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x73, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20,
0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x73, 0x76, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x71,
0x71, 0x76, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x71, 0x71, 0x76,
0x65, 0x72, 0x22, 0xc0, 0x01, 0x0a, 0x0f, 0x46, 0x61, 0x63, 0x65, 0x72, 0x6f, 0x61, 0x6d, 0x52,
0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1d, 0x0a, 0x04, 0x63, 0x6f, 0x6d, 0x6d, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x50, 0x6c, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52,
0x04, 0x63, 0x6f, 0x6d, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01,
0x28, 0x04, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d,
0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x12,
0x2e, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x52, 0x65, 0x71, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
0x66, 0x6f, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
0x34, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d,
0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x52, 0x65, 0x71, 0x44, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x44, 0x65, 0x6c, 0x65, 0x74,
0x65, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x2b, 0x0a, 0x0d, 0x52, 0x65, 0x71, 0x44, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61,
0x6d, 0x65, 0x22, 0x0d, 0x0a, 0x0b, 0x52, 0x65, 0x71, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
0x6f, 0x22, 0xb9, 0x01, 0x0a, 0x0f, 0x46, 0x61, 0x63, 0x65, 0x72, 0x6f, 0x61, 0x6d, 0x52, 0x73,
0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
0x28, 0x03, 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73,
0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x12,
0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x12, 0x2e, 0x0a, 0x0b, 0x72, 0x73, 0x70, 0x55, 0x73,
0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x52,
0x73, 0x70, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, 0x72, 0x73, 0x70, 0x55,
0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x34, 0x0a, 0x0d, 0x72, 0x73, 0x70, 0x44, 0x65,
0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e,
0x2e, 0x52, 0x73, 0x70, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x0d,
0x72, 0x73, 0x70, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x22, 0x3d, 0x0a,
0x0d, 0x52, 0x73, 0x70, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x1a,
0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65,
0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x72, 0x65, 0x74, 0x22, 0x9b, 0x01, 0x0a,
0x0b, 0x52, 0x73, 0x70, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08,
0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08,
0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65,
0x6c, 0x65, 0x74, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69, 0x64, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61,
0x78, 0x52, 0x6f, 0x61, 0x6d, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x0b, 0x6d, 0x61, 0x78, 0x52, 0x6f, 0x61, 0x6d, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x09,
0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0d, 0x52,
0x09, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x54, 0x79, 0x70, 0x65, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f,
0x3b, 0x66, 0x61, 0x63, 0x65, 0x72, 0x6f, 0x61, 0x6d,
}
var (
file_faceroam_proto_rawDescOnce sync.Once
file_faceroam_proto_rawDescData = file_faceroam_proto_rawDesc
)
func file_faceroam_proto_rawDescGZIP() []byte {
file_faceroam_proto_rawDescOnce.Do(func() {
file_faceroam_proto_rawDescData = protoimpl.X.CompressGZIP(file_faceroam_proto_rawDescData)
})
return file_faceroam_proto_rawDescData
}
var file_faceroam_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
var file_faceroam_proto_goTypes = []interface{}{
(*PlatInfo)(nil), // 0: PlatInfo
(*FaceroamReqBody)(nil), // 1: FaceroamReqBody
(*ReqDeleteItem)(nil), // 2: ReqDeleteItem
(*ReqUserInfo)(nil), // 3: ReqUserInfo
(*FaceroamRspBody)(nil), // 4: FaceroamRspBody
(*RspDeleteItem)(nil), // 5: RspDeleteItem
(*RspUserInfo)(nil), // 6: RspUserInfo
}
var file_faceroam_proto_depIdxs = []int32{
0, // 0: FaceroamReqBody.comm:type_name -> PlatInfo
3, // 1: FaceroamReqBody.reqUserInfo:type_name -> ReqUserInfo
2, // 2: FaceroamReqBody.reqDeleteItem:type_name -> ReqDeleteItem
6, // 3: FaceroamRspBody.rspUserInfo:type_name -> RspUserInfo
5, // 4: FaceroamRspBody.rspDeleteItem:type_name -> RspDeleteItem
5, // [5:5] is the sub-list for method output_type
5, // [5:5] is the sub-list for method input_type
5, // [5:5] is the sub-list for extension type_name
5, // [5:5] is the sub-list for extension extendee
0, // [0:5] is the sub-list for field type_name
}
func init() { file_faceroam_proto_init() }
func file_faceroam_proto_init() {
if File_faceroam_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_faceroam_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PlatInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_faceroam_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FaceroamReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_faceroam_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ReqDeleteItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_faceroam_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ReqUserInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_faceroam_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FaceroamRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_faceroam_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RspDeleteItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_faceroam_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RspUserInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_faceroam_proto_rawDesc,
NumEnums: 0,
NumMessages: 7,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_faceroam_proto_goTypes,
DependencyIndexes: file_faceroam_proto_depIdxs,
MessageInfos: file_faceroam_proto_msgTypes,
}.Build()
File_faceroam_proto = out.File
file_faceroam_proto_rawDesc = nil
file_faceroam_proto_goTypes = nil
file_faceroam_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,65 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: longmsg.proto // source: longmsg.proto
package longmsg package longmsg
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type LongMsgDeleteReq struct { type LongMsgDeleteReq struct {
state protoimpl.MessageState MsgResid []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache MsgType int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
MsgResid []byte `protobuf:"bytes,1,opt,name=msgResid,proto3" json:"msgResid,omitempty"`
MsgType int32 `protobuf:"varint,2,opt,name=msgType,proto3" json:"msgType,omitempty"`
}
func (x *LongMsgDeleteReq) Reset() {
*x = LongMsgDeleteReq{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongMsgDeleteReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongMsgDeleteReq) ProtoMessage() {}
func (x *LongMsgDeleteReq) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongMsgDeleteReq.ProtoReflect.Descriptor instead.
func (*LongMsgDeleteReq) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{0}
} }
func (x *LongMsgDeleteReq) GetMsgResid() []byte { func (x *LongMsgDeleteReq) GetMsgResid() []byte {
@ -77,44 +23,8 @@ func (x *LongMsgDeleteReq) GetMsgType() int32 {
} }
type LongMsgDeleteRsp struct { type LongMsgDeleteRsp struct {
state protoimpl.MessageState Result int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgResid []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Result int32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
MsgResid []byte `protobuf:"bytes,2,opt,name=msgResid,proto3" json:"msgResid,omitempty"`
}
func (x *LongMsgDeleteRsp) Reset() {
*x = LongMsgDeleteRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongMsgDeleteRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongMsgDeleteRsp) ProtoMessage() {}
func (x *LongMsgDeleteRsp) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongMsgDeleteRsp.ProtoReflect.Descriptor instead.
func (*LongMsgDeleteRsp) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{1}
} }
func (x *LongMsgDeleteRsp) GetResult() int32 { func (x *LongMsgDeleteRsp) GetResult() int32 {
@ -132,46 +42,10 @@ func (x *LongMsgDeleteRsp) GetMsgResid() []byte {
} }
type LongMsgDownReq struct { type LongMsgDownReq struct {
state protoimpl.MessageState SrcUin int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgResid []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields MsgType int32 `protobuf:"varint,3,opt"`
NeedCache int32 `protobuf:"varint,4,opt"`
SrcUin int32 `protobuf:"varint,1,opt,name=srcUin,proto3" json:"srcUin,omitempty"`
MsgResid []byte `protobuf:"bytes,2,opt,name=msgResid,proto3" json:"msgResid,omitempty"`
MsgType int32 `protobuf:"varint,3,opt,name=msgType,proto3" json:"msgType,omitempty"`
NeedCache int32 `protobuf:"varint,4,opt,name=needCache,proto3" json:"needCache,omitempty"`
}
func (x *LongMsgDownReq) Reset() {
*x = LongMsgDownReq{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongMsgDownReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongMsgDownReq) ProtoMessage() {}
func (x *LongMsgDownReq) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongMsgDownReq.ProtoReflect.Descriptor instead.
func (*LongMsgDownReq) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{2}
} }
func (x *LongMsgDownReq) GetSrcUin() int32 { func (x *LongMsgDownReq) GetSrcUin() int32 {
@ -203,45 +77,9 @@ func (x *LongMsgDownReq) GetNeedCache() int32 {
} }
type LongMsgDownRsp struct { type LongMsgDownRsp struct {
state protoimpl.MessageState Result int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgResid []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields MsgContent []byte `protobuf:"bytes,3,opt"`
Result int32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
MsgResid []byte `protobuf:"bytes,2,opt,name=msgResid,proto3" json:"msgResid,omitempty"`
MsgContent []byte `protobuf:"bytes,3,opt,name=msgContent,proto3" json:"msgContent,omitempty"`
}
func (x *LongMsgDownRsp) Reset() {
*x = LongMsgDownRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongMsgDownRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongMsgDownRsp) ProtoMessage() {}
func (x *LongMsgDownRsp) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongMsgDownRsp.ProtoReflect.Descriptor instead.
func (*LongMsgDownRsp) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{3}
} }
func (x *LongMsgDownRsp) GetResult() int32 { func (x *LongMsgDownRsp) GetResult() int32 {
@ -266,49 +104,13 @@ func (x *LongMsgDownRsp) GetMsgContent() []byte {
} }
type LongMsgUpReq struct { type LongMsgUpReq struct {
state protoimpl.MessageState MsgType int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache DstUin int64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MsgId int32 `protobuf:"varint,3,opt"`
MsgContent []byte `protobuf:"bytes,4,opt"`
MsgType int32 `protobuf:"varint,1,opt,name=msgType,proto3" json:"msgType,omitempty"` StoreType int32 `protobuf:"varint,5,opt"`
DstUin int64 `protobuf:"varint,2,opt,name=dstUin,proto3" json:"dstUin,omitempty"` MsgUkey []byte `protobuf:"bytes,6,opt"`
MsgId int32 `protobuf:"varint,3,opt,name=msgId,proto3" json:"msgId,omitempty"` NeedCache int32 `protobuf:"varint,7,opt"`
MsgContent []byte `protobuf:"bytes,4,opt,name=msgContent,proto3" json:"msgContent,omitempty"`
StoreType int32 `protobuf:"varint,5,opt,name=storeType,proto3" json:"storeType,omitempty"`
MsgUkey []byte `protobuf:"bytes,6,opt,name=msgUkey,proto3" json:"msgUkey,omitempty"`
NeedCache int32 `protobuf:"varint,7,opt,name=needCache,proto3" json:"needCache,omitempty"`
}
func (x *LongMsgUpReq) Reset() {
*x = LongMsgUpReq{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongMsgUpReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongMsgUpReq) ProtoMessage() {}
func (x *LongMsgUpReq) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongMsgUpReq.ProtoReflect.Descriptor instead.
func (*LongMsgUpReq) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{4}
} }
func (x *LongMsgUpReq) GetMsgType() int32 { func (x *LongMsgUpReq) GetMsgType() int32 {
@ -361,45 +163,9 @@ func (x *LongMsgUpReq) GetNeedCache() int32 {
} }
type LongMsgUpRsp struct { type LongMsgUpRsp struct {
state protoimpl.MessageState Result int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgId int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MsgResid []byte `protobuf:"bytes,3,opt"`
Result int32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
MsgId int32 `protobuf:"varint,2,opt,name=msgId,proto3" json:"msgId,omitempty"`
MsgResid []byte `protobuf:"bytes,3,opt,name=msgResid,proto3" json:"msgResid,omitempty"`
}
func (x *LongMsgUpRsp) Reset() {
*x = LongMsgUpRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongMsgUpRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongMsgUpRsp) ProtoMessage() {}
func (x *LongMsgUpRsp) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongMsgUpRsp.ProtoReflect.Descriptor instead.
func (*LongMsgUpRsp) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{5}
} }
func (x *LongMsgUpRsp) GetResult() int32 { func (x *LongMsgUpRsp) GetResult() int32 {
@ -424,49 +190,13 @@ func (x *LongMsgUpRsp) GetMsgResid() []byte {
} }
type LongReqBody struct { type LongReqBody struct {
state protoimpl.MessageState Subcmd int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache TermType int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields PlatformType int32 `protobuf:"varint,3,opt"`
MsgUpReq []*LongMsgUpReq `protobuf:"bytes,4,rep"`
Subcmd int32 `protobuf:"varint,1,opt,name=subcmd,proto3" json:"subcmd,omitempty"` MsgDownReq []*LongMsgDownReq `protobuf:"bytes,5,rep"`
TermType int32 `protobuf:"varint,2,opt,name=termType,proto3" json:"termType,omitempty"` MsgDelReq []*LongMsgDeleteReq `protobuf:"bytes,6,rep"`
PlatformType int32 `protobuf:"varint,3,opt,name=platformType,proto3" json:"platformType,omitempty"` AgentType int32 `protobuf:"varint,10,opt"`
MsgUpReq []*LongMsgUpReq `protobuf:"bytes,4,rep,name=msgUpReq,proto3" json:"msgUpReq,omitempty"`
MsgDownReq []*LongMsgDownReq `protobuf:"bytes,5,rep,name=msgDownReq,proto3" json:"msgDownReq,omitempty"`
MsgDelReq []*LongMsgDeleteReq `protobuf:"bytes,6,rep,name=msgDelReq,proto3" json:"msgDelReq,omitempty"`
AgentType int32 `protobuf:"varint,10,opt,name=agentType,proto3" json:"agentType,omitempty"`
}
func (x *LongReqBody) Reset() {
*x = LongReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongReqBody) ProtoMessage() {}
func (x *LongReqBody) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongReqBody.ProtoReflect.Descriptor instead.
func (*LongReqBody) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{6}
} }
func (x *LongReqBody) GetSubcmd() int32 { func (x *LongReqBody) GetSubcmd() int32 {
@ -519,46 +249,10 @@ func (x *LongReqBody) GetAgentType() int32 {
} }
type LongRspBody struct { type LongRspBody struct {
state protoimpl.MessageState Subcmd int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgUpRsp []*LongMsgUpRsp `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields MsgDownRsp []*LongMsgDownRsp `protobuf:"bytes,3,rep"`
MsgDelRsp []*LongMsgDeleteRsp `protobuf:"bytes,4,rep"`
Subcmd int32 `protobuf:"varint,1,opt,name=subcmd,proto3" json:"subcmd,omitempty"`
MsgUpRsp []*LongMsgUpRsp `protobuf:"bytes,2,rep,name=msgUpRsp,proto3" json:"msgUpRsp,omitempty"`
MsgDownRsp []*LongMsgDownRsp `protobuf:"bytes,3,rep,name=msgDownRsp,proto3" json:"msgDownRsp,omitempty"`
MsgDelRsp []*LongMsgDeleteRsp `protobuf:"bytes,4,rep,name=msgDelRsp,proto3" json:"msgDelRsp,omitempty"`
}
func (x *LongRspBody) Reset() {
*x = LongRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_longmsg_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LongRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LongRspBody) ProtoMessage() {}
func (x *LongRspBody) ProtoReflect() protoreflect.Message {
mi := &file_longmsg_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LongRspBody.ProtoReflect.Descriptor instead.
func (*LongRspBody) Descriptor() ([]byte, []int) {
return file_longmsg_proto_rawDescGZIP(), []int{7}
} }
func (x *LongRspBody) GetSubcmd() int32 { func (x *LongRspBody) GetSubcmd() int32 {
@ -588,241 +282,3 @@ func (x *LongRspBody) GetMsgDelRsp() []*LongMsgDeleteRsp {
} }
return nil return nil
} }
var File_longmsg_proto protoreflect.FileDescriptor
var file_longmsg_proto_rawDesc = []byte{
0x0a, 0x0d, 0x6c, 0x6f, 0x6e, 0x67, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
0x48, 0x0a, 0x10, 0x4c, 0x6f, 0x6e, 0x67, 0x4d, 0x73, 0x67, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x12,
0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x46, 0x0a, 0x10, 0x4c, 0x6f, 0x6e,
0x67, 0x4d, 0x73, 0x67, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x16, 0x0a,
0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72,
0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69,
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69,
0x64, 0x22, 0x7c, 0x0a, 0x0e, 0x4c, 0x6f, 0x6e, 0x67, 0x4d, 0x73, 0x67, 0x44, 0x6f, 0x77, 0x6e,
0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x72, 0x63, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x72, 0x63, 0x55, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6d,
0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d,
0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79,
0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70,
0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x43, 0x61, 0x63, 0x68, 0x65, 0x18, 0x04,
0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x43, 0x61, 0x63, 0x68, 0x65, 0x22,
0x64, 0x0a, 0x0e, 0x4c, 0x6f, 0x6e, 0x67, 0x4d, 0x73, 0x67, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x73,
0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67,
0x52, 0x65, 0x73, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x73, 0x67,
0x52, 0x65, 0x73, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6d, 0x73, 0x67, 0x43, 0x6f,
0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0xcc, 0x01, 0x0a, 0x0c, 0x4c, 0x6f, 0x6e, 0x67, 0x4d, 0x73,
0x67, 0x55, 0x70, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70,
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
0x12, 0x16, 0x0a, 0x06, 0x64, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
0x52, 0x06, 0x64, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73, 0x67, 0x49,
0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x1e,
0x0a, 0x0a, 0x6d, 0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x0a, 0x6d, 0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1c,
0x0a, 0x09, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
0x05, 0x52, 0x09, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07,
0x6d, 0x73, 0x67, 0x55, 0x6b, 0x65, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6d,
0x73, 0x67, 0x55, 0x6b, 0x65, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x43, 0x61,
0x63, 0x68, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6e, 0x65, 0x65, 0x64, 0x43,
0x61, 0x63, 0x68, 0x65, 0x22, 0x58, 0x0a, 0x0c, 0x4c, 0x6f, 0x6e, 0x67, 0x4d, 0x73, 0x67, 0x55,
0x70, 0x52, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x14, 0x0a, 0x05,
0x6d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x73, 0x67,
0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x18, 0x03,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x22, 0x90,
0x02, 0x0a, 0x0b, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x16,
0x0a, 0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x72, 0x6d, 0x54, 0x79,
0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x74, 0x65, 0x72, 0x6d, 0x54, 0x79,
0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x79,
0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f,
0x72, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x12, 0x29, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x55, 0x70, 0x52,
0x65, 0x71, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x4c, 0x6f, 0x6e, 0x67, 0x4d,
0x73, 0x67, 0x55, 0x70, 0x52, 0x65, 0x71, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x55, 0x70, 0x52, 0x65,
0x71, 0x12, 0x2f, 0x0a, 0x0a, 0x6d, 0x73, 0x67, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x18,
0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x4c, 0x6f, 0x6e, 0x67, 0x4d, 0x73, 0x67, 0x44,
0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x52, 0x0a, 0x6d, 0x73, 0x67, 0x44, 0x6f, 0x77, 0x6e, 0x52,
0x65, 0x71, 0x12, 0x2f, 0x0a, 0x09, 0x6d, 0x73, 0x67, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x18,
0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x4c, 0x6f, 0x6e, 0x67, 0x4d, 0x73, 0x67, 0x44,
0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x52, 0x09, 0x6d, 0x73, 0x67, 0x44, 0x65, 0x6c,
0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
0x65, 0x22, 0xb2, 0x01, 0x0a, 0x0b, 0x4c, 0x6f, 0x6e, 0x67, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x12, 0x29, 0x0a, 0x08, 0x6d, 0x73, 0x67,
0x55, 0x70, 0x52, 0x73, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x4c, 0x6f,
0x6e, 0x67, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x52, 0x73, 0x70, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x55,
0x70, 0x52, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x0a, 0x6d, 0x73, 0x67, 0x44, 0x6f, 0x77, 0x6e, 0x52,
0x73, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x4c, 0x6f, 0x6e, 0x67, 0x4d,
0x73, 0x67, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x73, 0x70, 0x52, 0x0a, 0x6d, 0x73, 0x67, 0x44, 0x6f,
0x77, 0x6e, 0x52, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x09, 0x6d, 0x73, 0x67, 0x44, 0x65, 0x6c, 0x52,
0x73, 0x70, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x4c, 0x6f, 0x6e, 0x67, 0x4d,
0x73, 0x67, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x73, 0x70, 0x52, 0x09, 0x6d, 0x73, 0x67,
0x44, 0x65, 0x6c, 0x52, 0x73, 0x70, 0x42, 0x0c, 0x5a, 0x0a, 0x2e, 0x2f, 0x3b, 0x6c, 0x6f, 0x6e,
0x67, 0x6d, 0x73, 0x67, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_longmsg_proto_rawDescOnce sync.Once
file_longmsg_proto_rawDescData = file_longmsg_proto_rawDesc
)
func file_longmsg_proto_rawDescGZIP() []byte {
file_longmsg_proto_rawDescOnce.Do(func() {
file_longmsg_proto_rawDescData = protoimpl.X.CompressGZIP(file_longmsg_proto_rawDescData)
})
return file_longmsg_proto_rawDescData
}
var file_longmsg_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
var file_longmsg_proto_goTypes = []interface{}{
(*LongMsgDeleteReq)(nil), // 0: LongMsgDeleteReq
(*LongMsgDeleteRsp)(nil), // 1: LongMsgDeleteRsp
(*LongMsgDownReq)(nil), // 2: LongMsgDownReq
(*LongMsgDownRsp)(nil), // 3: LongMsgDownRsp
(*LongMsgUpReq)(nil), // 4: LongMsgUpReq
(*LongMsgUpRsp)(nil), // 5: LongMsgUpRsp
(*LongReqBody)(nil), // 6: LongReqBody
(*LongRspBody)(nil), // 7: LongRspBody
}
var file_longmsg_proto_depIdxs = []int32{
4, // 0: LongReqBody.msgUpReq:type_name -> LongMsgUpReq
2, // 1: LongReqBody.msgDownReq:type_name -> LongMsgDownReq
0, // 2: LongReqBody.msgDelReq:type_name -> LongMsgDeleteReq
5, // 3: LongRspBody.msgUpRsp:type_name -> LongMsgUpRsp
3, // 4: LongRspBody.msgDownRsp:type_name -> LongMsgDownRsp
1, // 5: LongRspBody.msgDelRsp:type_name -> LongMsgDeleteRsp
6, // [6:6] is the sub-list for method output_type
6, // [6:6] is the sub-list for method input_type
6, // [6:6] is the sub-list for extension type_name
6, // [6:6] is the sub-list for extension extendee
0, // [0:6] is the sub-list for field type_name
}
func init() { file_longmsg_proto_init() }
func file_longmsg_proto_init() {
if File_longmsg_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_longmsg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongMsgDeleteReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_longmsg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongMsgDeleteRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_longmsg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongMsgDownReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_longmsg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongMsgDownRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_longmsg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongMsgUpReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_longmsg_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongMsgUpRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_longmsg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_longmsg_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LongRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_longmsg_proto_rawDesc,
NumEnums: 0,
NumMessages: 8,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_longmsg_proto_goTypes,
DependencyIndexes: file_longmsg_proto_depIdxs,
MessageInfos: file_longmsg_proto_msgTypes,
}.Build()
File_longmsg_proto = out.File
file_longmsg_proto_rawDesc = nil
file_longmsg_proto_goTypes = nil
file_longmsg_proto_depIdxs = nil
}

View File

@ -1,71 +1,17 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: register_proxy.proto // source: register_proxy.proto
package msf package msf
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type DiscussList struct { type DiscussList struct {
state protoimpl.MessageState DiscussCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache DiscussSeq *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MemberSeq *uint64 `protobuf:"varint,3,opt"`
InfoSeq *uint64 `protobuf:"varint,4,opt"`
DiscussCode *uint64 `protobuf:"varint,1,opt,name=discussCode" json:"discussCode,omitempty"` BHotGroup *bool `protobuf:"varint,5,opt"`
DiscussSeq *uint64 `protobuf:"varint,2,opt,name=discussSeq" json:"discussSeq,omitempty"` RedpackTime *uint64 `protobuf:"varint,6,opt"`
MemberSeq *uint64 `protobuf:"varint,3,opt,name=memberSeq" json:"memberSeq,omitempty"` HasMsg *bool `protobuf:"varint,7,opt"`
InfoSeq *uint64 `protobuf:"varint,4,opt,name=infoSeq" json:"infoSeq,omitempty"` DicussFlag *int64 `protobuf:"varint,8,opt"`
BHotGroup *bool `protobuf:"varint,5,opt,name=bHotGroup" json:"bHotGroup,omitempty"`
RedpackTime *uint64 `protobuf:"varint,6,opt,name=redpackTime" json:"redpackTime,omitempty"`
HasMsg *bool `protobuf:"varint,7,opt,name=hasMsg" json:"hasMsg,omitempty"`
DicussFlag *int64 `protobuf:"varint,8,opt,name=dicussFlag" json:"dicussFlag,omitempty"`
}
func (x *DiscussList) Reset() {
*x = DiscussList{}
if protoimpl.UnsafeEnabled {
mi := &file_register_proxy_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DiscussList) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DiscussList) ProtoMessage() {}
func (x *DiscussList) ProtoReflect() protoreflect.Message {
mi := &file_register_proxy_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DiscussList.ProtoReflect.Descriptor instead.
func (*DiscussList) Descriptor() ([]byte, []int) {
return file_register_proxy_proto_rawDescGZIP(), []int{0}
} }
func (x *DiscussList) GetDiscussCode() uint64 { func (x *DiscussList) GetDiscussCode() uint64 {
@ -125,54 +71,18 @@ func (x *DiscussList) GetDicussFlag() int64 {
} }
type GroupList struct { type GroupList struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache GroupSeq *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MemberSeq *uint64 `protobuf:"varint,3,opt"`
Mask *uint64 `protobuf:"varint,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"` RedpackTime *uint64 `protobuf:"varint,5,opt"`
GroupSeq *uint64 `protobuf:"varint,2,opt,name=groupSeq" json:"groupSeq,omitempty"` HasMsg *bool `protobuf:"varint,6,opt"`
MemberSeq *uint64 `protobuf:"varint,3,opt,name=memberSeq" json:"memberSeq,omitempty"` GroupFlag *int64 `protobuf:"varint,7,opt"`
Mask *uint64 `protobuf:"varint,4,opt,name=mask" json:"mask,omitempty"` GroupType *uint64 `protobuf:"varint,8,opt"`
RedpackTime *uint64 `protobuf:"varint,5,opt,name=redpackTime" json:"redpackTime,omitempty"` GroupNameSeq *uint32 `protobuf:"varint,9,opt"`
HasMsg *bool `protobuf:"varint,6,opt,name=hasMsg" json:"hasMsg,omitempty"` GroupMemberSeq *uint32 `protobuf:"varint,10,opt"`
GroupFlag *int64 `protobuf:"varint,7,opt,name=groupFlag" json:"groupFlag,omitempty"` UinFlagEx2 *uint32 `protobuf:"varint,11,opt"`
GroupType *uint64 `protobuf:"varint,8,opt,name=groupType" json:"groupType,omitempty"` ImportantMsgLatestSeq *uint32 `protobuf:"varint,12,opt"`
GroupNameSeq *uint32 `protobuf:"varint,9,opt,name=groupNameSeq" json:"groupNameSeq,omitempty"`
GroupMemberSeq *uint32 `protobuf:"varint,10,opt,name=groupMemberSeq" json:"groupMemberSeq,omitempty"`
UinFlagEx2 *uint32 `protobuf:"varint,11,opt,name=uinFlagEx2" json:"uinFlagEx2,omitempty"`
ImportantMsgLatestSeq *uint32 `protobuf:"varint,12,opt,name=importantMsgLatestSeq" json:"importantMsgLatestSeq,omitempty"`
}
func (x *GroupList) Reset() {
*x = GroupList{}
if protoimpl.UnsafeEnabled {
mi := &file_register_proxy_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GroupList) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GroupList) ProtoMessage() {}
func (x *GroupList) ProtoReflect() protoreflect.Message {
mi := &file_register_proxy_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GroupList.ProtoReflect.Descriptor instead.
func (*GroupList) Descriptor() ([]byte, []int) {
return file_register_proxy_proto_rawDescGZIP(), []int{1}
} }
func (x *GroupList) GetGroupCode() uint64 { func (x *GroupList) GetGroupCode() uint64 {
@ -260,44 +170,8 @@ func (x *GroupList) GetImportantMsgLatestSeq() uint32 {
} }
type SvcPbResponsePullDisMsgProxy struct { type SvcPbResponsePullDisMsgProxy struct {
state protoimpl.MessageState MemberSeq *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Content []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
MemberSeq *uint64 `protobuf:"varint,1,opt,name=memberSeq" json:"memberSeq,omitempty"`
Content []byte `protobuf:"bytes,2,opt,name=content" json:"content,omitempty"`
}
func (x *SvcPbResponsePullDisMsgProxy) Reset() {
*x = SvcPbResponsePullDisMsgProxy{}
if protoimpl.UnsafeEnabled {
mi := &file_register_proxy_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SvcPbResponsePullDisMsgProxy) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SvcPbResponsePullDisMsgProxy) ProtoMessage() {}
func (x *SvcPbResponsePullDisMsgProxy) ProtoReflect() protoreflect.Message {
mi := &file_register_proxy_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SvcPbResponsePullDisMsgProxy.ProtoReflect.Descriptor instead.
func (*SvcPbResponsePullDisMsgProxy) Descriptor() ([]byte, []int) {
return file_register_proxy_proto_rawDescGZIP(), []int{2}
} }
func (x *SvcPbResponsePullDisMsgProxy) GetMemberSeq() uint64 { func (x *SvcPbResponsePullDisMsgProxy) GetMemberSeq() uint64 {
@ -315,54 +189,18 @@ func (x *SvcPbResponsePullDisMsgProxy) GetContent() []byte {
} }
type SvcRegisterProxyMsgResp struct { type SvcRegisterProxyMsgResp struct {
state protoimpl.MessageState Result *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ErrMsg []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Flag *uint32 `protobuf:"varint,3,opt"`
Seq *uint32 `protobuf:"varint,4,opt"`
Result *uint32 `protobuf:"varint,1,opt,name=result" json:"result,omitempty"` Info *SvcResponseMsgInfo `protobuf:"bytes,5,opt"`
ErrMsg []byte `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"` GroupList []*GroupList `protobuf:"bytes,6,rep"`
Flag *uint32 `protobuf:"varint,3,opt,name=flag" json:"flag,omitempty"` DiscussList []*DiscussList `protobuf:"bytes,7,rep"`
Seq *uint32 `protobuf:"varint,4,opt,name=seq" json:"seq,omitempty"` GroupMsg []*SvcResponsePbPullGroupMsgProxy `protobuf:"bytes,8,rep"`
Info *SvcResponseMsgInfo `protobuf:"bytes,5,opt,name=info" json:"info,omitempty"` DiscussMsg []*SvcPbResponsePullDisMsgProxy `protobuf:"bytes,9,rep"`
GroupList []*GroupList `protobuf:"bytes,6,rep,name=groupList" json:"groupList,omitempty"` C2CMsg []byte `protobuf:"bytes,10,opt"`
DiscussList []*DiscussList `protobuf:"bytes,7,rep,name=discussList" json:"discussList,omitempty"` PubAccountMsg []byte `protobuf:"bytes,11,opt"`
GroupMsg []*SvcResponsePbPullGroupMsgProxy `protobuf:"bytes,8,rep,name=groupMsg" json:"groupMsg,omitempty"` DiscussListFlag *uint32 `protobuf:"varint,12,opt"`
DiscussMsg []*SvcPbResponsePullDisMsgProxy `protobuf:"bytes,9,rep,name=discussMsg" json:"discussMsg,omitempty"`
C2CMsg []byte `protobuf:"bytes,10,opt,name=c2CMsg" json:"c2CMsg,omitempty"`
PubAccountMsg []byte `protobuf:"bytes,11,opt,name=pubAccountMsg" json:"pubAccountMsg,omitempty"`
DiscussListFlag *uint32 `protobuf:"varint,12,opt,name=discussListFlag" json:"discussListFlag,omitempty"`
}
func (x *SvcRegisterProxyMsgResp) Reset() {
*x = SvcRegisterProxyMsgResp{}
if protoimpl.UnsafeEnabled {
mi := &file_register_proxy_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SvcRegisterProxyMsgResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SvcRegisterProxyMsgResp) ProtoMessage() {}
func (x *SvcRegisterProxyMsgResp) ProtoReflect() protoreflect.Message {
mi := &file_register_proxy_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SvcRegisterProxyMsgResp.ProtoReflect.Descriptor instead.
func (*SvcRegisterProxyMsgResp) Descriptor() ([]byte, []int) {
return file_register_proxy_proto_rawDescGZIP(), []int{3}
} }
func (x *SvcRegisterProxyMsgResp) GetResult() uint32 { func (x *SvcRegisterProxyMsgResp) GetResult() uint32 {
@ -450,44 +288,8 @@ func (x *SvcRegisterProxyMsgResp) GetDiscussListFlag() uint32 {
} }
type SvcResponseMsgInfo struct { type SvcResponseMsgInfo struct {
state protoimpl.MessageState GroupNum *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache DiscussNum *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
GroupNum *uint32 `protobuf:"varint,1,opt,name=groupNum" json:"groupNum,omitempty"`
DiscussNum *uint32 `protobuf:"varint,2,opt,name=discussNum" json:"discussNum,omitempty"`
}
func (x *SvcResponseMsgInfo) Reset() {
*x = SvcResponseMsgInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_register_proxy_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SvcResponseMsgInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SvcResponseMsgInfo) ProtoMessage() {}
func (x *SvcResponseMsgInfo) ProtoReflect() protoreflect.Message {
mi := &file_register_proxy_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SvcResponseMsgInfo.ProtoReflect.Descriptor instead.
func (*SvcResponseMsgInfo) Descriptor() ([]byte, []int) {
return file_register_proxy_proto_rawDescGZIP(), []int{4}
} }
func (x *SvcResponseMsgInfo) GetGroupNum() uint32 { func (x *SvcResponseMsgInfo) GetGroupNum() uint32 {
@ -505,44 +307,8 @@ func (x *SvcResponseMsgInfo) GetDiscussNum() uint32 {
} }
type SvcResponsePbPullGroupMsgProxy struct { type SvcResponsePbPullGroupMsgProxy struct {
state protoimpl.MessageState MemberSeq *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Content []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
MemberSeq *uint64 `protobuf:"varint,1,opt,name=memberSeq" json:"memberSeq,omitempty"`
Content []byte `protobuf:"bytes,2,opt,name=content" json:"content,omitempty"`
}
func (x *SvcResponsePbPullGroupMsgProxy) Reset() {
*x = SvcResponsePbPullGroupMsgProxy{}
if protoimpl.UnsafeEnabled {
mi := &file_register_proxy_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *SvcResponsePbPullGroupMsgProxy) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*SvcResponsePbPullGroupMsgProxy) ProtoMessage() {}
func (x *SvcResponsePbPullGroupMsgProxy) ProtoReflect() protoreflect.Message {
mi := &file_register_proxy_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use SvcResponsePbPullGroupMsgProxy.ProtoReflect.Descriptor instead.
func (*SvcResponsePbPullGroupMsgProxy) Descriptor() ([]byte, []int) {
return file_register_proxy_proto_rawDescGZIP(), []int{5}
} }
func (x *SvcResponsePbPullGroupMsgProxy) GetMemberSeq() uint64 { func (x *SvcResponsePbPullGroupMsgProxy) GetMemberSeq() uint64 {
@ -558,231 +324,3 @@ func (x *SvcResponsePbPullGroupMsgProxy) GetContent() []byte {
} }
return nil return nil
} }
var File_register_proxy_proto protoreflect.FileDescriptor
var file_register_proxy_proto_rawDesc = []byte{
0x0a, 0x14, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x78, 0x79,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xff, 0x01, 0x0a, 0x0b, 0x44, 0x69, 0x73, 0x63, 0x75,
0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x69, 0x73, 0x63, 0x75, 0x73,
0x73, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x64, 0x69, 0x73,
0x63, 0x75, 0x73, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x69, 0x73, 0x63,
0x75, 0x73, 0x73, 0x53, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x64, 0x69,
0x73, 0x63, 0x75, 0x73, 0x73, 0x53, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x6d, 0x62,
0x65, 0x72, 0x53, 0x65, 0x71, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x65, 0x6d,
0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x6e, 0x66, 0x6f, 0x53, 0x65,
0x71, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x69, 0x6e, 0x66, 0x6f, 0x53, 0x65, 0x71,
0x12, 0x1c, 0x0a, 0x09, 0x62, 0x48, 0x6f, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20,
0x01, 0x28, 0x08, 0x52, 0x09, 0x62, 0x48, 0x6f, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x20,
0x0a, 0x0b, 0x72, 0x65, 0x64, 0x70, 0x61, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20,
0x01, 0x28, 0x04, 0x52, 0x0b, 0x72, 0x65, 0x64, 0x70, 0x61, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65,
0x12, 0x16, 0x0a, 0x06, 0x68, 0x61, 0x73, 0x4d, 0x73, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08,
0x52, 0x06, 0x68, 0x61, 0x73, 0x4d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x69, 0x63, 0x75,
0x73, 0x73, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x64, 0x69,
0x63, 0x75, 0x73, 0x73, 0x46, 0x6c, 0x61, 0x67, 0x22, 0x8f, 0x03, 0x0a, 0x09, 0x47, 0x72, 0x6f,
0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43,
0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70,
0x43, 0x6f, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x71,
0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x71,
0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x18, 0x03, 0x20,
0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x12, 0x12,
0x0a, 0x04, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x6d, 0x61,
0x73, 0x6b, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x64, 0x70, 0x61, 0x63, 0x6b, 0x54, 0x69, 0x6d,
0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x72, 0x65, 0x64, 0x70, 0x61, 0x63, 0x6b,
0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x61, 0x73, 0x4d, 0x73, 0x67, 0x18, 0x06,
0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x68, 0x61, 0x73, 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x0a, 0x09,
0x67, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x4e, 0x61, 0x6d, 0x65, 0x53, 0x65, 0x71, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c,
0x67, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x53, 0x65, 0x71, 0x12, 0x26, 0x0a, 0x0e,
0x67, 0x72, 0x6f, 0x75, 0x70, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x18, 0x0a,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4d, 0x65, 0x6d, 0x62, 0x65,
0x72, 0x53, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x69, 0x6e, 0x46, 0x6c, 0x61, 0x67, 0x45,
0x78, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x75, 0x69, 0x6e, 0x46, 0x6c, 0x61,
0x67, 0x45, 0x78, 0x32, 0x12, 0x34, 0x0a, 0x15, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6e,
0x74, 0x4d, 0x73, 0x67, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x53, 0x65, 0x71, 0x18, 0x0c, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x15, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x61, 0x6e, 0x74, 0x4d, 0x73,
0x67, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x53, 0x65, 0x71, 0x22, 0x56, 0x0a, 0x1c, 0x53, 0x76,
0x63, 0x50, 0x62, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x50, 0x75, 0x6c, 0x6c, 0x44,
0x69, 0x73, 0x4d, 0x73, 0x67, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65,
0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d,
0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65,
0x6e, 0x74, 0x22, 0xd6, 0x03, 0x0a, 0x17, 0x53, 0x76, 0x63, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
0x65, 0x72, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16,
0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12,
0x0a, 0x04, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x66, 0x6c,
0x61, 0x67, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x03, 0x73, 0x65, 0x71, 0x12, 0x27, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x13, 0x2e, 0x53, 0x76, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x28, 0x0a,
0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x0a, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x09, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x0b, 0x64, 0x69, 0x73, 0x63, 0x75,
0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x44,
0x69, 0x73, 0x63, 0x75, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x63,
0x75, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x3b, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70,
0x4d, 0x73, 0x67, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x53, 0x76, 0x63, 0x52,
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x50, 0x62, 0x50, 0x75, 0x6c, 0x6c, 0x47, 0x72, 0x6f,
0x75, 0x70, 0x4d, 0x73, 0x67, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x52, 0x08, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x4d, 0x73, 0x67, 0x12, 0x3d, 0x0a, 0x0a, 0x64, 0x69, 0x73, 0x63, 0x75, 0x73, 0x73, 0x4d,
0x73, 0x67, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x53, 0x76, 0x63, 0x50, 0x62,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x50, 0x75, 0x6c, 0x6c, 0x44, 0x69, 0x73, 0x4d,
0x73, 0x67, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x52, 0x0a, 0x64, 0x69, 0x73, 0x63, 0x75, 0x73, 0x73,
0x4d, 0x73, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x32, 0x43, 0x4d, 0x73, 0x67, 0x18, 0x0a, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x32, 0x43, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x70,
0x75, 0x62, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x0b, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x0d, 0x70, 0x75, 0x62, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x73,
0x67, 0x12, 0x28, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x63, 0x75, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74,
0x46, 0x6c, 0x61, 0x67, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x64, 0x69, 0x73, 0x63,
0x75, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x22, 0x50, 0x0a, 0x12, 0x53,
0x76, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4d, 0x73, 0x67, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x08, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x1e, 0x0a,
0x0a, 0x64, 0x69, 0x73, 0x63, 0x75, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x0a, 0x64, 0x69, 0x73, 0x63, 0x75, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x22, 0x58, 0x0a,
0x1e, 0x53, 0x76, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x50, 0x62, 0x50, 0x75,
0x6c, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4d, 0x73, 0x67, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x12,
0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01,
0x28, 0x04, 0x52, 0x09, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x12, 0x18, 0x0a,
0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07,
0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x2f, 0x3b, 0x6d, 0x73,
0x66,
}
var (
file_register_proxy_proto_rawDescOnce sync.Once
file_register_proxy_proto_rawDescData = file_register_proxy_proto_rawDesc
)
func file_register_proxy_proto_rawDescGZIP() []byte {
file_register_proxy_proto_rawDescOnce.Do(func() {
file_register_proxy_proto_rawDescData = protoimpl.X.CompressGZIP(file_register_proxy_proto_rawDescData)
})
return file_register_proxy_proto_rawDescData
}
var file_register_proxy_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
var file_register_proxy_proto_goTypes = []interface{}{
(*DiscussList)(nil), // 0: DiscussList
(*GroupList)(nil), // 1: GroupList
(*SvcPbResponsePullDisMsgProxy)(nil), // 2: SvcPbResponsePullDisMsgProxy
(*SvcRegisterProxyMsgResp)(nil), // 3: SvcRegisterProxyMsgResp
(*SvcResponseMsgInfo)(nil), // 4: SvcResponseMsgInfo
(*SvcResponsePbPullGroupMsgProxy)(nil), // 5: SvcResponsePbPullGroupMsgProxy
}
var file_register_proxy_proto_depIdxs = []int32{
4, // 0: SvcRegisterProxyMsgResp.info:type_name -> SvcResponseMsgInfo
1, // 1: SvcRegisterProxyMsgResp.groupList:type_name -> GroupList
0, // 2: SvcRegisterProxyMsgResp.discussList:type_name -> DiscussList
5, // 3: SvcRegisterProxyMsgResp.groupMsg:type_name -> SvcResponsePbPullGroupMsgProxy
2, // 4: SvcRegisterProxyMsgResp.discussMsg:type_name -> SvcPbResponsePullDisMsgProxy
5, // [5:5] is the sub-list for method output_type
5, // [5:5] is the sub-list for method input_type
5, // [5:5] is the sub-list for extension type_name
5, // [5:5] is the sub-list for extension extendee
0, // [0:5] is the sub-list for field type_name
}
func init() { file_register_proxy_proto_init() }
func file_register_proxy_proto_init() {
if File_register_proxy_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_register_proxy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DiscussList); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_register_proxy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GroupList); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_register_proxy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SvcPbResponsePullDisMsgProxy); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_register_proxy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SvcRegisterProxyMsgResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_register_proxy_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SvcResponseMsgInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_register_proxy_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SvcResponsePbPullGroupMsgProxy); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_register_proxy_proto_rawDesc,
NumEnums: 0,
NumMessages: 6,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_register_proxy_proto_goTypes,
DependencyIndexes: file_register_proxy_proto_depIdxs,
MessageInfos: file_register_proxy_proto_msgTypes,
}.Build()
File_register_proxy_proto = out.File
file_register_proxy_proto_rawDesc = nil
file_register_proxy_proto_goTypes = nil
file_register_proxy_proto_depIdxs = nil
}

View File

@ -1,65 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc v3.14.0
// source: TextMsgExt.proto // source: TextMsgExt.proto
package msg package msg
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type ExtChannelInfo struct { type ExtChannelInfo struct {
state protoimpl.MessageState GuildId *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ChannelId *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
GuildId *uint64 `protobuf:"varint,1,opt,name=guildId" json:"guildId,omitempty"`
ChannelId *uint64 `protobuf:"varint,2,opt,name=channelId" json:"channelId,omitempty"`
}
func (x *ExtChannelInfo) Reset() {
*x = ExtChannelInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_TextMsgExt_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExtChannelInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExtChannelInfo) ProtoMessage() {}
func (x *ExtChannelInfo) ProtoReflect() protoreflect.Message {
mi := &file_TextMsgExt_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExtChannelInfo.ProtoReflect.Descriptor instead.
func (*ExtChannelInfo) Descriptor() ([]byte, []int) {
return file_TextMsgExt_proto_rawDescGZIP(), []int{0}
} }
func (x *ExtChannelInfo) GetGuildId() uint64 { func (x *ExtChannelInfo) GetGuildId() uint64 {
@ -77,50 +23,14 @@ func (x *ExtChannelInfo) GetChannelId() uint64 {
} }
type TextResvAttr struct { type TextResvAttr struct {
state protoimpl.MessageState Wording []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache TextAnalysisResult *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields AtType *uint32 `protobuf:"varint,3,opt"`
AtMemberUin *uint64 `protobuf:"varint,4,opt"`
Wording []byte `protobuf:"bytes,1,opt,name=wording" json:"wording,omitempty"` AtMemberTinyid *uint64 `protobuf:"varint,5,opt"`
TextAnalysisResult *uint32 `protobuf:"varint,2,opt,name=textAnalysisResult" json:"textAnalysisResult,omitempty"` AtMemberRoleInfo *ExtRoleInfo `protobuf:"bytes,6,opt"`
AtType *uint32 `protobuf:"varint,3,opt,name=atType" json:"atType,omitempty"` AtRoleInfo *ExtRoleInfo `protobuf:"bytes,7,opt"`
AtMemberUin *uint64 `protobuf:"varint,4,opt,name=atMemberUin" json:"atMemberUin,omitempty"` AtChannelInfo *ExtChannelInfo `protobuf:"bytes,8,opt"`
AtMemberTinyid *uint64 `protobuf:"varint,5,opt,name=atMemberTinyid" json:"atMemberTinyid,omitempty"`
AtMemberRoleInfo *ExtRoleInfo `protobuf:"bytes,6,opt,name=atMemberRoleInfo" json:"atMemberRoleInfo,omitempty"`
AtRoleInfo *ExtRoleInfo `protobuf:"bytes,7,opt,name=atRoleInfo" json:"atRoleInfo,omitempty"`
AtChannelInfo *ExtChannelInfo `protobuf:"bytes,8,opt,name=atChannelInfo" json:"atChannelInfo,omitempty"`
}
func (x *TextResvAttr) Reset() {
*x = TextResvAttr{}
if protoimpl.UnsafeEnabled {
mi := &file_TextMsgExt_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TextResvAttr) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TextResvAttr) ProtoMessage() {}
func (x *TextResvAttr) ProtoReflect() protoreflect.Message {
mi := &file_TextMsgExt_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TextResvAttr.ProtoReflect.Descriptor instead.
func (*TextResvAttr) Descriptor() ([]byte, []int) {
return file_TextMsgExt_proto_rawDescGZIP(), []int{1}
} }
func (x *TextResvAttr) GetWording() []byte { func (x *TextResvAttr) GetWording() []byte {
@ -180,45 +90,9 @@ func (x *TextResvAttr) GetAtChannelInfo() *ExtChannelInfo {
} }
type ExtRoleInfo struct { type ExtRoleInfo struct {
state protoimpl.MessageState Id *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Info []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Flag *uint32 `protobuf:"varint,3,opt"`
Id *uint64 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
Info []byte `protobuf:"bytes,2,opt,name=info" json:"info,omitempty"`
Flag *uint32 `protobuf:"varint,3,opt,name=flag" json:"flag,omitempty"`
}
func (x *ExtRoleInfo) Reset() {
*x = ExtRoleInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_TextMsgExt_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExtRoleInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExtRoleInfo) ProtoMessage() {}
func (x *ExtRoleInfo) ProtoReflect() protoreflect.Message {
mi := &file_TextMsgExt_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExtRoleInfo.ProtoReflect.Descriptor instead.
func (*ExtRoleInfo) Descriptor() ([]byte, []int) {
return file_TextMsgExt_proto_rawDescGZIP(), []int{2}
} }
func (x *ExtRoleInfo) GetId() uint64 { func (x *ExtRoleInfo) GetId() uint64 {
@ -241,133 +115,3 @@ func (x *ExtRoleInfo) GetFlag() uint32 {
} }
return 0 return 0
} }
var File_TextMsgExt_proto protoreflect.FileDescriptor
var file_TextMsgExt_proto_rawDesc = []byte{
0x0a, 0x10, 0x54, 0x65, 0x78, 0x74, 0x4d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x22, 0x48, 0x0a, 0x0e, 0x45, 0x78, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x64, 0x18,
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x64, 0x12, 0x1c,
0x0a, 0x09, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
0x04, 0x52, 0x09, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x22, 0xd9, 0x02, 0x0a,
0x0c, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65, 0x73, 0x76, 0x41, 0x74, 0x74, 0x72, 0x12, 0x18, 0x0a,
0x07, 0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07,
0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x2e, 0x0a, 0x12, 0x74, 0x65, 0x78, 0x74, 0x41,
0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x12, 0x74, 0x65, 0x78, 0x74, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69,
0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x54, 0x79, 0x70,
0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
0x20, 0x0a, 0x0b, 0x61, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x55, 0x69, 0x6e, 0x18, 0x04,
0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x61, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x55, 0x69,
0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x61, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x69, 0x6e,
0x79, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x61, 0x74, 0x4d, 0x65, 0x6d,
0x62, 0x65, 0x72, 0x54, 0x69, 0x6e, 0x79, 0x69, 0x64, 0x12, 0x38, 0x0a, 0x10, 0x61, 0x74, 0x4d,
0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x52, 0x10, 0x61, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x49,
0x6e, 0x66, 0x6f, 0x12, 0x2c, 0x0a, 0x0a, 0x61, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x74, 0x52, 0x6f, 0x6c,
0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x61, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x35, 0x0a, 0x0d, 0x61, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e,
0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x45, 0x78, 0x74, 0x43, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0d, 0x61, 0x74, 0x43, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x45, 0x0a, 0x0b, 0x45, 0x78, 0x74, 0x52,
0x6f, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
0x01, 0x28, 0x04, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18,
0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x66,
0x6c, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x66, 0x6c, 0x61, 0x67, 0x42,
0x08, 0x5a, 0x06, 0x2e, 0x2f, 0x3b, 0x6d, 0x73, 0x67,
}
var (
file_TextMsgExt_proto_rawDescOnce sync.Once
file_TextMsgExt_proto_rawDescData = file_TextMsgExt_proto_rawDesc
)
func file_TextMsgExt_proto_rawDescGZIP() []byte {
file_TextMsgExt_proto_rawDescOnce.Do(func() {
file_TextMsgExt_proto_rawDescData = protoimpl.X.CompressGZIP(file_TextMsgExt_proto_rawDescData)
})
return file_TextMsgExt_proto_rawDescData
}
var file_TextMsgExt_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
var file_TextMsgExt_proto_goTypes = []interface{}{
(*ExtChannelInfo)(nil), // 0: ExtChannelInfo
(*TextResvAttr)(nil), // 1: TextResvAttr
(*ExtRoleInfo)(nil), // 2: ExtRoleInfo
}
var file_TextMsgExt_proto_depIdxs = []int32{
2, // 0: TextResvAttr.atMemberRoleInfo:type_name -> ExtRoleInfo
2, // 1: TextResvAttr.atRoleInfo:type_name -> ExtRoleInfo
0, // 2: TextResvAttr.atChannelInfo:type_name -> ExtChannelInfo
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_TextMsgExt_proto_init() }
func file_TextMsgExt_proto_init() {
if File_TextMsgExt_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_TextMsgExt_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExtChannelInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_TextMsgExt_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TextResvAttr); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_TextMsgExt_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExtRoleInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_TextMsgExt_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_TextMsgExt_proto_goTypes,
DependencyIndexes: file_TextMsgExt_proto_depIdxs,
MessageInfos: file_TextMsgExt_proto_msgTypes,
}.Build()
File_TextMsgExt_proto = out.File
file_TextMsgExt_proto_rawDesc = nil
file_TextMsgExt_proto_goTypes = nil
file_TextMsgExt_proto_depIdxs = nil
}

View File

@ -1,74 +1,20 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: head.proto // source: head.proto
package msg package msg
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type C2CHead struct { type C2CHead struct {
state protoimpl.MessageState ToUin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache FromUin *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields CcType *uint32 `protobuf:"varint,3,opt"`
CcCmd *uint32 `protobuf:"varint,4,opt"`
ToUin *uint64 `protobuf:"varint,1,opt,name=toUin" json:"toUin,omitempty"` AuthPicSig []byte `protobuf:"bytes,5,opt"`
FromUin *uint64 `protobuf:"varint,2,opt,name=fromUin" json:"fromUin,omitempty"` AuthSig []byte `protobuf:"bytes,6,opt"`
CcType *uint32 `protobuf:"varint,3,opt,name=ccType" json:"ccType,omitempty"` AuthBuf []byte `protobuf:"bytes,7,opt"`
CcCmd *uint32 `protobuf:"varint,4,opt,name=ccCmd" json:"ccCmd,omitempty"` ServerTime *uint32 `protobuf:"varint,8,opt"`
AuthPicSig []byte `protobuf:"bytes,5,opt,name=authPicSig" json:"authPicSig,omitempty"` ClientTime *uint32 `protobuf:"varint,9,opt"`
AuthSig []byte `protobuf:"bytes,6,opt,name=authSig" json:"authSig,omitempty"` Rand *uint32 `protobuf:"varint,10,opt"`
AuthBuf []byte `protobuf:"bytes,7,opt,name=authBuf" json:"authBuf,omitempty"` PhoneNumber *string `protobuf:"bytes,11,opt"`
ServerTime *uint32 `protobuf:"varint,8,opt,name=serverTime" json:"serverTime,omitempty"`
ClientTime *uint32 `protobuf:"varint,9,opt,name=clientTime" json:"clientTime,omitempty"`
Rand *uint32 `protobuf:"varint,10,opt,name=rand" json:"rand,omitempty"`
PhoneNumber *string `protobuf:"bytes,11,opt,name=phoneNumber" json:"phoneNumber,omitempty"`
}
func (x *C2CHead) Reset() {
*x = C2CHead{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *C2CHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*C2CHead) ProtoMessage() {}
func (x *C2CHead) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use C2CHead.ProtoReflect.Descriptor instead.
func (*C2CHead) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{0}
} }
func (x *C2CHead) GetToUin() uint64 { func (x *C2CHead) GetToUin() uint64 {
@ -149,66 +95,30 @@ func (x *C2CHead) GetPhoneNumber() string {
} }
type CSHead struct { type CSHead struct {
state protoimpl.MessageState Uin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Command *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Seq *uint32 `protobuf:"varint,3,opt"`
Version *uint32 `protobuf:"varint,4,opt"`
Uin *uint64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"` RetryTimes *uint32 `protobuf:"varint,5,opt"`
Command *uint32 `protobuf:"varint,2,opt,name=command" json:"command,omitempty"` ClientType *uint32 `protobuf:"varint,6,opt"`
Seq *uint32 `protobuf:"varint,3,opt,name=seq" json:"seq,omitempty"` Pubno *uint32 `protobuf:"varint,7,opt"`
Version *uint32 `protobuf:"varint,4,opt,name=version" json:"version,omitempty"` Localid *uint32 `protobuf:"varint,8,opt"`
RetryTimes *uint32 `protobuf:"varint,5,opt,name=retryTimes" json:"retryTimes,omitempty"` Timezone *uint32 `protobuf:"varint,9,opt"`
ClientType *uint32 `protobuf:"varint,6,opt,name=clientType" json:"clientType,omitempty"` ClientIp *uint32 `protobuf:"fixed32,10,opt"`
Pubno *uint32 `protobuf:"varint,7,opt,name=pubno" json:"pubno,omitempty"` ClientPort *uint32 `protobuf:"varint,11,opt"`
Localid *uint32 `protobuf:"varint,8,opt,name=localid" json:"localid,omitempty"` ConnIp *uint32 `protobuf:"fixed32,12,opt"`
Timezone *uint32 `protobuf:"varint,9,opt,name=timezone" json:"timezone,omitempty"` ConnPort *uint32 `protobuf:"varint,13,opt"`
ClientIp *uint32 `protobuf:"fixed32,10,opt,name=clientIp" json:"clientIp,omitempty"` InterfaceIp *uint32 `protobuf:"fixed32,14,opt"`
ClientPort *uint32 `protobuf:"varint,11,opt,name=clientPort" json:"clientPort,omitempty"` InterfacePort *uint32 `protobuf:"varint,15,opt"`
ConnIp *uint32 `protobuf:"fixed32,12,opt,name=connIp" json:"connIp,omitempty"` ActualIp *uint32 `protobuf:"fixed32,16,opt"`
ConnPort *uint32 `protobuf:"varint,13,opt,name=connPort" json:"connPort,omitempty"` Flag *uint32 `protobuf:"varint,17,opt"`
InterfaceIp *uint32 `protobuf:"fixed32,14,opt,name=interfaceIp" json:"interfaceIp,omitempty"` Timestamp *uint32 `protobuf:"fixed32,18,opt"`
InterfacePort *uint32 `protobuf:"varint,15,opt,name=interfacePort" json:"interfacePort,omitempty"` Subcmd *uint32 `protobuf:"varint,19,opt"`
ActualIp *uint32 `protobuf:"fixed32,16,opt,name=actualIp" json:"actualIp,omitempty"` Result *uint32 `protobuf:"varint,20,opt"`
Flag *uint32 `protobuf:"varint,17,opt,name=flag" json:"flag,omitempty"` AppId *uint32 `protobuf:"varint,21,opt"`
Timestamp *uint32 `protobuf:"fixed32,18,opt,name=timestamp" json:"timestamp,omitempty"` InstanceId *uint32 `protobuf:"varint,22,opt"`
Subcmd *uint32 `protobuf:"varint,19,opt,name=subcmd" json:"subcmd,omitempty"` SessionId *uint64 `protobuf:"varint,23,opt"`
Result *uint32 `protobuf:"varint,20,opt,name=result" json:"result,omitempty"` IdcId *uint32 `protobuf:"varint,24,opt"`
AppId *uint32 `protobuf:"varint,21,opt,name=appId" json:"appId,omitempty"`
InstanceId *uint32 `protobuf:"varint,22,opt,name=instanceId" json:"instanceId,omitempty"`
SessionId *uint64 `protobuf:"varint,23,opt,name=sessionId" json:"sessionId,omitempty"`
IdcId *uint32 `protobuf:"varint,24,opt,name=idcId" json:"idcId,omitempty"`
}
func (x *CSHead) Reset() {
*x = CSHead{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CSHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CSHead) ProtoMessage() {}
func (x *CSHead) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CSHead.ProtoReflect.Descriptor instead.
func (*CSHead) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{1}
} }
func (x *CSHead) GetUin() uint64 { func (x *CSHead) GetUin() uint64 {
@ -380,49 +290,13 @@ func (x *CSHead) GetIdcId() uint32 {
} }
type DeltaHead struct { type DeltaHead struct {
state protoimpl.MessageState TotalLen *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Offset *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields AckOffset *uint64 `protobuf:"varint,3,opt"`
Cookie []byte `protobuf:"bytes,4,opt"`
TotalLen *uint64 `protobuf:"varint,1,opt,name=totalLen" json:"totalLen,omitempty"` AckCookie []byte `protobuf:"bytes,5,opt"`
Offset *uint64 `protobuf:"varint,2,opt,name=offset" json:"offset,omitempty"` Result *uint32 `protobuf:"varint,6,opt"`
AckOffset *uint64 `protobuf:"varint,3,opt,name=ackOffset" json:"ackOffset,omitempty"` Flags *uint32 `protobuf:"varint,7,opt"`
Cookie []byte `protobuf:"bytes,4,opt,name=cookie" json:"cookie,omitempty"`
AckCookie []byte `protobuf:"bytes,5,opt,name=ackCookie" json:"ackCookie,omitempty"`
Result *uint32 `protobuf:"varint,6,opt,name=result" json:"result,omitempty"`
Flags *uint32 `protobuf:"varint,7,opt,name=flags" json:"flags,omitempty"`
}
func (x *DeltaHead) Reset() {
*x = DeltaHead{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeltaHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeltaHead) ProtoMessage() {}
func (x *DeltaHead) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeltaHead.ProtoReflect.Descriptor instead.
func (*DeltaHead) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{2}
} }
func (x *DeltaHead) GetTotalLen() uint64 { func (x *DeltaHead) GetTotalLen() uint64 {
@ -475,50 +349,14 @@ func (x *DeltaHead) GetFlags() uint32 {
} }
type IMHead struct { type IMHead struct {
state protoimpl.MessageState HeadType *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache CsHead *CSHead `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields S2CHead *S2CHead `protobuf:"bytes,3,opt"`
HttpconnHead *HttpConnHead `protobuf:"bytes,4,opt"`
HeadType *uint32 `protobuf:"varint,1,opt,name=headType" json:"headType,omitempty"` PaintFlag *uint32 `protobuf:"varint,5,opt"`
CsHead *CSHead `protobuf:"bytes,2,opt,name=csHead" json:"csHead,omitempty"` LoginSig *LoginSig `protobuf:"bytes,6,opt"`
S2CHead *S2CHead `protobuf:"bytes,3,opt,name=s2CHead" json:"s2CHead,omitempty"` DeltaHead *DeltaHead `protobuf:"bytes,7,opt"`
HttpconnHead *HttpConnHead `protobuf:"bytes,4,opt,name=httpconnHead" json:"httpconnHead,omitempty"` C2CHead *C2CHead `protobuf:"bytes,8,opt"`
PaintFlag *uint32 `protobuf:"varint,5,opt,name=paintFlag" json:"paintFlag,omitempty"`
LoginSig *LoginSig `protobuf:"bytes,6,opt,name=loginSig" json:"loginSig,omitempty"`
DeltaHead *DeltaHead `protobuf:"bytes,7,opt,name=deltaHead" json:"deltaHead,omitempty"`
C2CHead *C2CHead `protobuf:"bytes,8,opt,name=c2CHead" json:"c2CHead,omitempty"`
}
func (x *IMHead) Reset() {
*x = IMHead{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *IMHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*IMHead) ProtoMessage() {}
func (x *IMHead) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use IMHead.ProtoReflect.Descriptor instead.
func (*IMHead) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{3}
} }
func (x *IMHead) GetHeadType() uint32 { func (x *IMHead) GetHeadType() uint32 {
@ -578,67 +416,31 @@ func (x *IMHead) GetC2CHead() *C2CHead {
} }
type HttpConnHead struct { type HttpConnHead struct {
state protoimpl.MessageState Uin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Command *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields SubCommand *uint32 `protobuf:"varint,3,opt"`
Seq *uint32 `protobuf:"varint,4,opt"`
Uin *uint64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"` Version *uint32 `protobuf:"varint,5,opt"`
Command *uint32 `protobuf:"varint,2,opt,name=command" json:"command,omitempty"` RetryTimes *uint32 `protobuf:"varint,6,opt"`
SubCommand *uint32 `protobuf:"varint,3,opt,name=subCommand" json:"subCommand,omitempty"` ClientType *uint32 `protobuf:"varint,7,opt"`
Seq *uint32 `protobuf:"varint,4,opt,name=seq" json:"seq,omitempty"` PubNo *uint32 `protobuf:"varint,8,opt"`
Version *uint32 `protobuf:"varint,5,opt,name=version" json:"version,omitempty"` LocalId *uint32 `protobuf:"varint,9,opt"`
RetryTimes *uint32 `protobuf:"varint,6,opt,name=retryTimes" json:"retryTimes,omitempty"` TimeZone *uint32 `protobuf:"varint,10,opt"`
ClientType *uint32 `protobuf:"varint,7,opt,name=clientType" json:"clientType,omitempty"` ClientIp *uint32 `protobuf:"fixed32,11,opt"`
PubNo *uint32 `protobuf:"varint,8,opt,name=pubNo" json:"pubNo,omitempty"` ClientPort *uint32 `protobuf:"varint,12,opt"`
LocalId *uint32 `protobuf:"varint,9,opt,name=localId" json:"localId,omitempty"` QzhttpIp *uint32 `protobuf:"fixed32,13,opt"`
TimeZone *uint32 `protobuf:"varint,10,opt,name=timeZone" json:"timeZone,omitempty"` QzhttpPort *uint32 `protobuf:"varint,14,opt"`
ClientIp *uint32 `protobuf:"fixed32,11,opt,name=clientIp" json:"clientIp,omitempty"` SppIp *uint32 `protobuf:"fixed32,15,opt"`
ClientPort *uint32 `protobuf:"varint,12,opt,name=clientPort" json:"clientPort,omitempty"` SppPort *uint32 `protobuf:"varint,16,opt"`
QzhttpIp *uint32 `protobuf:"fixed32,13,opt,name=qzhttpIp" json:"qzhttpIp,omitempty"` Flag *uint32 `protobuf:"varint,17,opt"`
QzhttpPort *uint32 `protobuf:"varint,14,opt,name=qzhttpPort" json:"qzhttpPort,omitempty"` Key []byte `protobuf:"bytes,18,opt"`
SppIp *uint32 `protobuf:"fixed32,15,opt,name=sppIp" json:"sppIp,omitempty"` CompressType *uint32 `protobuf:"varint,19,opt"`
SppPort *uint32 `protobuf:"varint,16,opt,name=sppPort" json:"sppPort,omitempty"` OriginSize *uint32 `protobuf:"varint,20,opt"`
Flag *uint32 `protobuf:"varint,17,opt,name=flag" json:"flag,omitempty"` ErrorCode *uint32 `protobuf:"varint,21,opt"`
Key []byte `protobuf:"bytes,18,opt,name=key" json:"key,omitempty"` Redirect *RedirectMsg `protobuf:"bytes,22,opt"`
CompressType *uint32 `protobuf:"varint,19,opt,name=compressType" json:"compressType,omitempty"` CommandId *uint32 `protobuf:"varint,23,opt"`
OriginSize *uint32 `protobuf:"varint,20,opt,name=originSize" json:"originSize,omitempty"` ServiceCmdid *uint32 `protobuf:"varint,24,opt"`
ErrorCode *uint32 `protobuf:"varint,21,opt,name=errorCode" json:"errorCode,omitempty"` Oidbhead *TransOidbHead `protobuf:"bytes,25,opt"`
Redirect *RedirectMsg `protobuf:"bytes,22,opt,name=redirect" json:"redirect,omitempty"`
CommandId *uint32 `protobuf:"varint,23,opt,name=commandId" json:"commandId,omitempty"`
ServiceCmdid *uint32 `protobuf:"varint,24,opt,name=serviceCmdid" json:"serviceCmdid,omitempty"`
Oidbhead *TransOidbHead `protobuf:"bytes,25,opt,name=oidbhead" json:"oidbhead,omitempty"`
}
func (x *HttpConnHead) Reset() {
*x = HttpConnHead{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *HttpConnHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*HttpConnHead) ProtoMessage() {}
func (x *HttpConnHead) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use HttpConnHead.ProtoReflect.Descriptor instead.
func (*HttpConnHead) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{4}
} }
func (x *HttpConnHead) GetUin() uint64 { func (x *HttpConnHead) GetUin() uint64 {
@ -817,44 +619,8 @@ func (x *HttpConnHead) GetOidbhead() *TransOidbHead {
} }
type LoginSig struct { type LoginSig struct {
state protoimpl.MessageState Type *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Sig []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Type *uint32 `protobuf:"varint,1,opt,name=type" json:"type,omitempty"`
Sig []byte `protobuf:"bytes,2,opt,name=sig" json:"sig,omitempty"`
}
func (x *LoginSig) Reset() {
*x = LoginSig{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LoginSig) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LoginSig) ProtoMessage() {}
func (x *LoginSig) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LoginSig.ProtoReflect.Descriptor instead.
func (*LoginSig) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{5}
} }
func (x *LoginSig) GetType() uint32 { func (x *LoginSig) GetType() uint32 {
@ -872,47 +638,11 @@ func (x *LoginSig) GetSig() []byte {
} }
type RedirectMsg struct { type RedirectMsg struct {
state protoimpl.MessageState LastRedirectIp *uint32 `protobuf:"fixed32,1,opt"`
sizeCache protoimpl.SizeCache LastRedirectPort *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields RedirectIp *uint32 `protobuf:"fixed32,3,opt"`
RedirectPort *uint32 `protobuf:"varint,4,opt"`
LastRedirectIp *uint32 `protobuf:"fixed32,1,opt,name=lastRedirectIp" json:"lastRedirectIp,omitempty"` RedirectCount *uint32 `protobuf:"varint,5,opt"`
LastRedirectPort *uint32 `protobuf:"varint,2,opt,name=lastRedirectPort" json:"lastRedirectPort,omitempty"`
RedirectIp *uint32 `protobuf:"fixed32,3,opt,name=redirectIp" json:"redirectIp,omitempty"`
RedirectPort *uint32 `protobuf:"varint,4,opt,name=redirectPort" json:"redirectPort,omitempty"`
RedirectCount *uint32 `protobuf:"varint,5,opt,name=redirectCount" json:"redirectCount,omitempty"`
}
func (x *RedirectMsg) Reset() {
*x = RedirectMsg{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RedirectMsg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RedirectMsg) ProtoMessage() {}
func (x *RedirectMsg) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RedirectMsg.ProtoReflect.Descriptor instead.
func (*RedirectMsg) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{6}
} }
func (x *RedirectMsg) GetLastRedirectIp() uint32 { func (x *RedirectMsg) GetLastRedirectIp() uint32 {
@ -951,49 +681,13 @@ func (x *RedirectMsg) GetRedirectCount() uint32 {
} }
type S2CHead struct { type S2CHead struct {
state protoimpl.MessageState SubMsgtype *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgType *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields FromUin *uint64 `protobuf:"varint,3,opt"`
MsgId *uint32 `protobuf:"varint,4,opt"`
SubMsgtype *uint32 `protobuf:"varint,1,opt,name=subMsgtype" json:"subMsgtype,omitempty"` RelayIp *uint32 `protobuf:"fixed32,5,opt"`
MsgType *uint32 `protobuf:"varint,2,opt,name=msgType" json:"msgType,omitempty"` RelayPort *uint32 `protobuf:"varint,6,opt"`
FromUin *uint64 `protobuf:"varint,3,opt,name=fromUin" json:"fromUin,omitempty"` ToUin *uint64 `protobuf:"varint,7,opt"`
MsgId *uint32 `protobuf:"varint,4,opt,name=msgId" json:"msgId,omitempty"`
RelayIp *uint32 `protobuf:"fixed32,5,opt,name=relayIp" json:"relayIp,omitempty"`
RelayPort *uint32 `protobuf:"varint,6,opt,name=relayPort" json:"relayPort,omitempty"`
ToUin *uint64 `protobuf:"varint,7,opt,name=toUin" json:"toUin,omitempty"`
}
func (x *S2CHead) Reset() {
*x = S2CHead{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *S2CHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*S2CHead) ProtoMessage() {}
func (x *S2CHead) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use S2CHead.ProtoReflect.Descriptor instead.
func (*S2CHead) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{7}
} }
func (x *S2CHead) GetSubMsgtype() uint32 { func (x *S2CHead) GetSubMsgtype() uint32 {
@ -1046,46 +740,10 @@ func (x *S2CHead) GetToUin() uint64 {
} }
type TransOidbHead struct { type TransOidbHead struct {
state protoimpl.MessageState Command *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ServiceType *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Result *uint32 `protobuf:"varint,3,opt"`
ErrorMsg *string `protobuf:"bytes,4,opt"`
Command *uint32 `protobuf:"varint,1,opt,name=command" json:"command,omitempty"`
ServiceType *uint32 `protobuf:"varint,2,opt,name=serviceType" json:"serviceType,omitempty"`
Result *uint32 `protobuf:"varint,3,opt,name=result" json:"result,omitempty"`
ErrorMsg *string `protobuf:"bytes,4,opt,name=errorMsg" json:"errorMsg,omitempty"`
}
func (x *TransOidbHead) Reset() {
*x = TransOidbHead{}
if protoimpl.UnsafeEnabled {
mi := &file_head_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TransOidbHead) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TransOidbHead) ProtoMessage() {}
func (x *TransOidbHead) ProtoReflect() protoreflect.Message {
mi := &file_head_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TransOidbHead.ProtoReflect.Descriptor instead.
func (*TransOidbHead) Descriptor() ([]byte, []int) {
return file_head_proto_rawDescGZIP(), []int{8}
} }
func (x *TransOidbHead) GetCommand() uint32 { func (x *TransOidbHead) GetCommand() uint32 {
@ -1115,359 +773,3 @@ func (x *TransOidbHead) GetErrorMsg() string {
} }
return "" return ""
} }
var File_head_proto protoreflect.FileDescriptor
var file_head_proto_rawDesc = []byte{
0x0a, 0x0a, 0x68, 0x65, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb1, 0x02, 0x0a,
0x07, 0x43, 0x32, 0x43, 0x48, 0x65, 0x61, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x55, 0x69,
0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x74, 0x6f, 0x55, 0x69, 0x6e, 0x12, 0x18,
0x0a, 0x07, 0x66, 0x72, 0x6f, 0x6d, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
0x07, 0x66, 0x72, 0x6f, 0x6d, 0x55, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x63, 0x54, 0x79,
0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x63, 0x63, 0x54, 0x79, 0x70, 0x65,
0x12, 0x14, 0x0a, 0x05, 0x63, 0x63, 0x43, 0x6d, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x05, 0x63, 0x63, 0x43, 0x6d, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x50, 0x69,
0x63, 0x53, 0x69, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68,
0x50, 0x69, 0x63, 0x53, 0x69, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x75, 0x74, 0x68, 0x53, 0x69,
0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x61, 0x75, 0x74, 0x68, 0x53, 0x69, 0x67,
0x12, 0x18, 0x0a, 0x07, 0x61, 0x75, 0x74, 0x68, 0x42, 0x75, 0x66, 0x18, 0x07, 0x20, 0x01, 0x28,
0x0c, 0x52, 0x07, 0x61, 0x75, 0x74, 0x68, 0x42, 0x75, 0x66, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65,
0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a,
0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c,
0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a,
0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x61,
0x6e, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x20,
0x0a, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x0b, 0x20,
0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
0x22, 0x8c, 0x05, 0x0a, 0x06, 0x43, 0x53, 0x48, 0x65, 0x61, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75,
0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x18, 0x0a,
0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07,
0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x03,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x73, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72,
0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x65, 0x74, 0x72, 0x79, 0x54, 0x69, 0x6d, 0x65,
0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x72, 0x65, 0x74, 0x72, 0x79, 0x54, 0x69,
0x6d, 0x65, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54,
0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x75, 0x62, 0x6e, 0x6f, 0x18, 0x07, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x05, 0x70, 0x75, 0x62, 0x6e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x63,
0x61, 0x6c, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x6c, 0x6f, 0x63, 0x61,
0x6c, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x7a, 0x6f, 0x6e, 0x65, 0x18,
0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x7a, 0x6f, 0x6e, 0x65, 0x12,
0x1a, 0x0a, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x18, 0x0a, 0x20, 0x01, 0x28,
0x07, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x63,
0x6f, 0x6e, 0x6e, 0x49, 0x70, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x07, 0x52, 0x06, 0x63, 0x6f, 0x6e,
0x6e, 0x49, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x6e, 0x50, 0x6f, 0x72, 0x74, 0x18,
0x0d, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x6e, 0x50, 0x6f, 0x72, 0x74, 0x12,
0x20, 0x0a, 0x0b, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x49, 0x70, 0x18, 0x0e,
0x20, 0x01, 0x28, 0x07, 0x52, 0x0b, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x49,
0x70, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66, 0x61, 0x63, 0x65, 0x50, 0x6f,
0x72, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x66,
0x61, 0x63, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x63, 0x74, 0x75, 0x61,
0x6c, 0x49, 0x70, 0x18, 0x10, 0x20, 0x01, 0x28, 0x07, 0x52, 0x08, 0x61, 0x63, 0x74, 0x75, 0x61,
0x6c, 0x49, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x11, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x04, 0x66, 0x6c, 0x61, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73,
0x74, 0x61, 0x6d, 0x70, 0x18, 0x12, 0x20, 0x01, 0x28, 0x07, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65,
0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x18,
0x13, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x12, 0x16, 0x0a,
0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72,
0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x15,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69,
0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73,
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x17, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09,
0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x64, 0x63,
0x49, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x69, 0x64, 0x63, 0x49, 0x64, 0x22,
0xc1, 0x01, 0x0a, 0x09, 0x44, 0x65, 0x6c, 0x74, 0x61, 0x48, 0x65, 0x61, 0x64, 0x12, 0x1a, 0x0a,
0x08, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x4c, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
0x08, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x4c, 0x65, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x6b, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03,
0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x63, 0x6b, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12,
0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x6b, 0x43, 0x6f,
0x6f, 0x6b, 0x69, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x61, 0x63, 0x6b, 0x43,
0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x14, 0x0a,
0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x66, 0x6c,
0x61, 0x67, 0x73, 0x22, 0xaf, 0x02, 0x0a, 0x06, 0x49, 0x4d, 0x48, 0x65, 0x61, 0x64, 0x12, 0x1a,
0x0a, 0x08, 0x68, 0x65, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x08, 0x68, 0x65, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x06, 0x63, 0x73,
0x48, 0x65, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x43, 0x53, 0x48,
0x65, 0x61, 0x64, 0x52, 0x06, 0x63, 0x73, 0x48, 0x65, 0x61, 0x64, 0x12, 0x22, 0x0a, 0x07, 0x73,
0x32, 0x43, 0x48, 0x65, 0x61, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x53,
0x32, 0x43, 0x48, 0x65, 0x61, 0x64, 0x52, 0x07, 0x73, 0x32, 0x43, 0x48, 0x65, 0x61, 0x64, 0x12,
0x31, 0x0a, 0x0c, 0x68, 0x74, 0x74, 0x70, 0x63, 0x6f, 0x6e, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f, 0x6e, 0x6e,
0x48, 0x65, 0x61, 0x64, 0x52, 0x0c, 0x68, 0x74, 0x74, 0x70, 0x63, 0x6f, 0x6e, 0x6e, 0x48, 0x65,
0x61, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x69, 0x6e, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x61, 0x69, 0x6e, 0x74, 0x46, 0x6c, 0x61, 0x67,
0x12, 0x25, 0x0a, 0x08, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x18, 0x06, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x09, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x52, 0x08, 0x6c,
0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x12, 0x28, 0x0a, 0x09, 0x64, 0x65, 0x6c, 0x74, 0x61,
0x48, 0x65, 0x61, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x44, 0x65, 0x6c,
0x74, 0x61, 0x48, 0x65, 0x61, 0x64, 0x52, 0x09, 0x64, 0x65, 0x6c, 0x74, 0x61, 0x48, 0x65, 0x61,
0x64, 0x12, 0x22, 0x0a, 0x07, 0x63, 0x32, 0x43, 0x48, 0x65, 0x61, 0x64, 0x18, 0x08, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x08, 0x2e, 0x43, 0x32, 0x43, 0x48, 0x65, 0x61, 0x64, 0x52, 0x07, 0x63, 0x32,
0x43, 0x48, 0x65, 0x61, 0x64, 0x22, 0xda, 0x05, 0x0a, 0x0c, 0x48, 0x74, 0x74, 0x70, 0x43, 0x6f,
0x6e, 0x6e, 0x48, 0x65, 0x61, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x01, 0x20,
0x01, 0x28, 0x04, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d,
0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
0x6e, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x43, 0x6f, 0x6d, 0x6d, 0x61,
0x6e, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x03, 0x73, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1e,
0x0a, 0x0a, 0x72, 0x65, 0x74, 0x72, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x06, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0a, 0x72, 0x65, 0x74, 0x72, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x1e,
0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14,
0x0a, 0x05, 0x70, 0x75, 0x62, 0x4e, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x70,
0x75, 0x62, 0x4e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x18,
0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x1a,
0x0a, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6c,
0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x07, 0x52, 0x08, 0x63, 0x6c,
0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
0x50, 0x6f, 0x72, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65,
0x6e, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x71, 0x7a, 0x68, 0x74, 0x74, 0x70,
0x49, 0x70, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x07, 0x52, 0x08, 0x71, 0x7a, 0x68, 0x74, 0x74, 0x70,
0x49, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x71, 0x7a, 0x68, 0x74, 0x74, 0x70, 0x50, 0x6f, 0x72, 0x74,
0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x71, 0x7a, 0x68, 0x74, 0x74, 0x70, 0x50, 0x6f,
0x72, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x70, 0x70, 0x49, 0x70, 0x18, 0x0f, 0x20, 0x01, 0x28,
0x07, 0x52, 0x05, 0x73, 0x70, 0x70, 0x49, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x70, 0x70, 0x50,
0x6f, 0x72, 0x74, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x73, 0x70, 0x70, 0x50, 0x6f,
0x72, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x04, 0x66, 0x6c, 0x61, 0x67, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x12, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70,
0x72, 0x65, 0x73, 0x73, 0x54, 0x79, 0x70, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c,
0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x0a, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x09,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x08, 0x72, 0x65,
0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x52,
0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x4d, 0x73, 0x67, 0x52, 0x08, 0x72, 0x65, 0x64, 0x69,
0x72, 0x65, 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x49,
0x64, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6d, 0x64,
0x69, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x43, 0x6d, 0x64, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x08, 0x6f, 0x69, 0x64, 0x62, 0x68, 0x65,
0x61, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73,
0x4f, 0x69, 0x64, 0x62, 0x48, 0x65, 0x61, 0x64, 0x52, 0x08, 0x6f, 0x69, 0x64, 0x62, 0x68, 0x65,
0x61, 0x64, 0x22, 0x30, 0x0a, 0x08, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x12, 0x12,
0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x74, 0x79,
0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x03, 0x73, 0x69, 0x67, 0x22, 0xcb, 0x01, 0x0a, 0x0b, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63,
0x74, 0x4d, 0x73, 0x67, 0x12, 0x26, 0x0a, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x64, 0x69,
0x72, 0x65, 0x63, 0x74, 0x49, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0e, 0x6c, 0x61,
0x73, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x49, 0x70, 0x12, 0x2a, 0x0a, 0x10,
0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x50, 0x6f, 0x72, 0x74,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x64, 0x69,
0x72, 0x65, 0x63, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x65, 0x64, 0x69,
0x72, 0x65, 0x63, 0x74, 0x49, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0a, 0x72, 0x65,
0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x49, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x72, 0x65, 0x64, 0x69,
0x72, 0x65, 0x63, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c,
0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x24, 0x0a, 0x0d,
0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x0d, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75,
0x6e, 0x74, 0x22, 0xc1, 0x01, 0x0a, 0x07, 0x53, 0x32, 0x43, 0x48, 0x65, 0x61, 0x64, 0x12, 0x1e,
0x0a, 0x0a, 0x73, 0x75, 0x62, 0x4d, 0x73, 0x67, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x4d, 0x73, 0x67, 0x74, 0x79, 0x70, 0x65, 0x12, 0x18,
0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x72, 0x6f, 0x6d,
0x55, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x72, 0x6f, 0x6d, 0x55,
0x69, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x6c, 0x61,
0x79, 0x49, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x07, 0x52, 0x07, 0x72, 0x65, 0x6c, 0x61, 0x79,
0x49, 0x70, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x72, 0x74, 0x18,
0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x50, 0x6f, 0x72, 0x74,
0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x55, 0x69, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52,
0x05, 0x74, 0x6f, 0x55, 0x69, 0x6e, 0x22, 0x7f, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x4f,
0x69, 0x64, 0x62, 0x48, 0x65, 0x61, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61,
0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e,
0x64, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54,
0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x2f, 0x3b, 0x6d, 0x73,
0x67,
}
var (
file_head_proto_rawDescOnce sync.Once
file_head_proto_rawDescData = file_head_proto_rawDesc
)
func file_head_proto_rawDescGZIP() []byte {
file_head_proto_rawDescOnce.Do(func() {
file_head_proto_rawDescData = protoimpl.X.CompressGZIP(file_head_proto_rawDescData)
})
return file_head_proto_rawDescData
}
var file_head_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
var file_head_proto_goTypes = []interface{}{
(*C2CHead)(nil), // 0: C2CHead
(*CSHead)(nil), // 1: CSHead
(*DeltaHead)(nil), // 2: DeltaHead
(*IMHead)(nil), // 3: IMHead
(*HttpConnHead)(nil), // 4: HttpConnHead
(*LoginSig)(nil), // 5: LoginSig
(*RedirectMsg)(nil), // 6: RedirectMsg
(*S2CHead)(nil), // 7: S2CHead
(*TransOidbHead)(nil), // 8: TransOidbHead
}
var file_head_proto_depIdxs = []int32{
1, // 0: IMHead.csHead:type_name -> CSHead
7, // 1: IMHead.s2CHead:type_name -> S2CHead
4, // 2: IMHead.httpconnHead:type_name -> HttpConnHead
5, // 3: IMHead.loginSig:type_name -> LoginSig
2, // 4: IMHead.deltaHead:type_name -> DeltaHead
0, // 5: IMHead.c2CHead:type_name -> C2CHead
6, // 6: HttpConnHead.redirect:type_name -> RedirectMsg
8, // 7: HttpConnHead.oidbhead:type_name -> TransOidbHead
8, // [8:8] is the sub-list for method output_type
8, // [8:8] is the sub-list for method input_type
8, // [8:8] is the sub-list for extension type_name
8, // [8:8] is the sub-list for extension extendee
0, // [0:8] is the sub-list for field type_name
}
func init() { file_head_proto_init() }
func file_head_proto_init() {
if File_head_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_head_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*C2CHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CSHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeltaHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IMHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HttpConnHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LoginSig); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RedirectMsg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*S2CHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_head_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TransOidbHead); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_head_proto_rawDesc,
NumEnums: 0,
NumMessages: 9,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_head_proto_goTypes,
DependencyIndexes: file_head_proto_depIdxs,
MessageInfos: file_head_proto_msgTypes,
}.Build()
File_head_proto = out.File
file_head_proto_rawDesc = nil
file_head_proto_goTypes = nil
file_head_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,66 +1,12 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: objmsg.proto // source: objmsg.proto
package msg package msg
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type MsgPic struct { type MsgPic struct {
state protoimpl.MessageState SmallPicUrl []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache OriginalPicUrl []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields LocalPicId int32 `protobuf:"varint,3,opt"`
SmallPicUrl []byte `protobuf:"bytes,1,opt,name=smallPicUrl,proto3" json:"smallPicUrl,omitempty"`
OriginalPicUrl []byte `protobuf:"bytes,2,opt,name=originalPicUrl,proto3" json:"originalPicUrl,omitempty"`
LocalPicId int32 `protobuf:"varint,3,opt,name=localPicId,proto3" json:"localPicId,omitempty"`
}
func (x *MsgPic) Reset() {
*x = MsgPic{}
if protoimpl.UnsafeEnabled {
mi := &file_objmsg_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgPic) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgPic) ProtoMessage() {}
func (x *MsgPic) ProtoReflect() protoreflect.Message {
mi := &file_objmsg_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgPic.ProtoReflect.Descriptor instead.
func (*MsgPic) Descriptor() ([]byte, []int) {
return file_objmsg_proto_rawDescGZIP(), []int{0}
} }
func (x *MsgPic) GetSmallPicUrl() []byte { func (x *MsgPic) GetSmallPicUrl() []byte {
@ -85,49 +31,13 @@ func (x *MsgPic) GetLocalPicId() int32 {
} }
type ObjMsg struct { type ObjMsg struct {
state protoimpl.MessageState MsgType int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Title []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields BytesAbstact []byte `protobuf:"bytes,3,opt"`
TitleExt []byte `protobuf:"bytes,5,opt"`
MsgType int32 `protobuf:"varint,1,opt,name=msgType,proto3" json:"msgType,omitempty"` MsgPic []*MsgPic `protobuf:"bytes,6,rep"`
Title []byte `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"` MsgContentInfo []*MsgContentInfo `protobuf:"bytes,7,rep"`
BytesAbstact []byte `protobuf:"bytes,3,opt,name=bytesAbstact,proto3" json:"bytesAbstact,omitempty"` ReportIdShow int32 `protobuf:"varint,8,opt"`
TitleExt []byte `protobuf:"bytes,5,opt,name=titleExt,proto3" json:"titleExt,omitempty"`
MsgPic []*MsgPic `protobuf:"bytes,6,rep,name=msgPic,proto3" json:"msgPic,omitempty"`
MsgContentInfo []*MsgContentInfo `protobuf:"bytes,7,rep,name=msgContentInfo,proto3" json:"msgContentInfo,omitempty"`
ReportIdShow int32 `protobuf:"varint,8,opt,name=reportIdShow,proto3" json:"reportIdShow,omitempty"`
}
func (x *ObjMsg) Reset() {
*x = ObjMsg{}
if protoimpl.UnsafeEnabled {
mi := &file_objmsg_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ObjMsg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ObjMsg) ProtoMessage() {}
func (x *ObjMsg) ProtoReflect() protoreflect.Message {
mi := &file_objmsg_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ObjMsg.ProtoReflect.Descriptor instead.
func (*ObjMsg) Descriptor() ([]byte, []int) {
return file_objmsg_proto_rawDescGZIP(), []int{1}
} }
func (x *ObjMsg) GetMsgType() int32 { func (x *ObjMsg) GetMsgType() int32 {
@ -180,44 +90,8 @@ func (x *ObjMsg) GetReportIdShow() int32 {
} }
type MsgContentInfo struct { type MsgContentInfo struct {
state protoimpl.MessageState ContentInfoId []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache MsgFile *MsgFile `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
ContentInfoId []byte `protobuf:"bytes,1,opt,name=contentInfoId,proto3" json:"contentInfoId,omitempty"`
MsgFile *MsgFile `protobuf:"bytes,2,opt,name=msgFile,proto3" json:"msgFile,omitempty"`
}
func (x *MsgContentInfo) Reset() {
*x = MsgContentInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_objmsg_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgContentInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgContentInfo) ProtoMessage() {}
func (x *MsgContentInfo) ProtoReflect() protoreflect.Message {
mi := &file_objmsg_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgContentInfo.ProtoReflect.Descriptor instead.
func (*MsgContentInfo) Descriptor() ([]byte, []int) {
return file_objmsg_proto_rawDescGZIP(), []int{2}
} }
func (x *MsgContentInfo) GetContentInfoId() []byte { func (x *MsgContentInfo) GetContentInfoId() []byte {
@ -235,49 +109,13 @@ func (x *MsgContentInfo) GetMsgFile() *MsgFile {
} }
type MsgFile struct { type MsgFile struct {
state protoimpl.MessageState BusId int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache FilePath []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields FileSize int64 `protobuf:"varint,3,opt"`
FileName string `protobuf:"bytes,4,opt"`
BusId int32 `protobuf:"varint,1,opt,name=busId,proto3" json:"busId,omitempty"` Int64DeadTime int64 `protobuf:"varint,5,opt"`
FilePath []byte `protobuf:"bytes,2,opt,name=filePath,proto3" json:"filePath,omitempty"` FileSha1 []byte `protobuf:"bytes,6,opt"`
FileSize int64 `protobuf:"varint,3,opt,name=fileSize,proto3" json:"fileSize,omitempty"` Ext []byte `protobuf:"bytes,7,opt"`
FileName string `protobuf:"bytes,4,opt,name=fileName,proto3" json:"fileName,omitempty"`
Int64DeadTime int64 `protobuf:"varint,5,opt,name=int64DeadTime,proto3" json:"int64DeadTime,omitempty"`
FileSha1 []byte `protobuf:"bytes,6,opt,name=fileSha1,proto3" json:"fileSha1,omitempty"`
Ext []byte `protobuf:"bytes,7,opt,name=ext,proto3" json:"ext,omitempty"`
}
func (x *MsgFile) Reset() {
*x = MsgFile{}
if protoimpl.UnsafeEnabled {
mi := &file_objmsg_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MsgFile) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MsgFile) ProtoMessage() {}
func (x *MsgFile) ProtoReflect() protoreflect.Message {
mi := &file_objmsg_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MsgFile.ProtoReflect.Descriptor instead.
func (*MsgFile) Descriptor() ([]byte, []int) {
return file_objmsg_proto_rawDescGZIP(), []int{3}
} }
func (x *MsgFile) GetBusId() int32 { func (x *MsgFile) GetBusId() int32 {
@ -328,157 +166,3 @@ func (x *MsgFile) GetExt() []byte {
} }
return nil return nil
} }
var File_objmsg_proto protoreflect.FileDescriptor
var file_objmsg_proto_rawDesc = []byte{
0x0a, 0x0c, 0x6f, 0x62, 0x6a, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x72,
0x0a, 0x06, 0x4d, 0x73, 0x67, 0x50, 0x69, 0x63, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x6d, 0x61, 0x6c,
0x6c, 0x50, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x73,
0x6d, 0x61, 0x6c, 0x6c, 0x50, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x72,
0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x50, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x0e, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x50, 0x69, 0x63, 0x55,
0x72, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x69, 0x63, 0x49, 0x64,
0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x69, 0x63,
0x49, 0x64, 0x22, 0xf6, 0x01, 0x0a, 0x06, 0x4f, 0x62, 0x6a, 0x4d, 0x73, 0x67, 0x12, 0x18, 0x0a,
0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x22, 0x0a,
0x0c, 0x62, 0x79, 0x74, 0x65, 0x73, 0x41, 0x62, 0x73, 0x74, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x0c, 0x62, 0x79, 0x74, 0x65, 0x73, 0x41, 0x62, 0x73, 0x74, 0x61, 0x63,
0x74, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x18, 0x05, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x08, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x12, 0x1f, 0x0a,
0x06, 0x6d, 0x73, 0x67, 0x50, 0x69, 0x63, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07, 0x2e,
0x4d, 0x73, 0x67, 0x50, 0x69, 0x63, 0x52, 0x06, 0x6d, 0x73, 0x67, 0x50, 0x69, 0x63, 0x12, 0x37,
0x0a, 0x0e, 0x6d, 0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x4d, 0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0e, 0x6d, 0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x72, 0x65, 0x70, 0x6f, 0x72,
0x74, 0x49, 0x64, 0x53, 0x68, 0x6f, 0x77, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x72,
0x65, 0x70, 0x6f, 0x72, 0x74, 0x49, 0x64, 0x53, 0x68, 0x6f, 0x77, 0x22, 0x5a, 0x0a, 0x0e, 0x4d,
0x73, 0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a,
0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x4d, 0x73, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x07,
0x6d, 0x73, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x22, 0xc7, 0x01, 0x0a, 0x07, 0x4d, 0x73, 0x67, 0x46,
0x69, 0x6c, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c,
0x65, 0x50, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x66, 0x69, 0x6c,
0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a,
0x0d, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x44, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05,
0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x44, 0x65, 0x61, 0x64, 0x54,
0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x68, 0x61, 0x31, 0x18,
0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x68, 0x61, 0x31, 0x12,
0x10, 0x0a, 0x03, 0x65, 0x78, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x65, 0x78,
0x74, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x2f, 0x3b, 0x6d, 0x73, 0x67, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
file_objmsg_proto_rawDescOnce sync.Once
file_objmsg_proto_rawDescData = file_objmsg_proto_rawDesc
)
func file_objmsg_proto_rawDescGZIP() []byte {
file_objmsg_proto_rawDescOnce.Do(func() {
file_objmsg_proto_rawDescData = protoimpl.X.CompressGZIP(file_objmsg_proto_rawDescData)
})
return file_objmsg_proto_rawDescData
}
var file_objmsg_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
var file_objmsg_proto_goTypes = []interface{}{
(*MsgPic)(nil), // 0: MsgPic
(*ObjMsg)(nil), // 1: ObjMsg
(*MsgContentInfo)(nil), // 2: MsgContentInfo
(*MsgFile)(nil), // 3: MsgFile
}
var file_objmsg_proto_depIdxs = []int32{
0, // 0: ObjMsg.msgPic:type_name -> MsgPic
2, // 1: ObjMsg.msgContentInfo:type_name -> MsgContentInfo
3, // 2: MsgContentInfo.msgFile:type_name -> MsgFile
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_objmsg_proto_init() }
func file_objmsg_proto_init() {
if File_objmsg_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_objmsg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgPic); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_objmsg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ObjMsg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_objmsg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgContentInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_objmsg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MsgFile); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_objmsg_proto_rawDesc,
NumEnums: 0,
NumMessages: 4,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_objmsg_proto_goTypes,
DependencyIndexes: file_objmsg_proto_depIdxs,
MessageInfos: file_objmsg_proto_msgTypes,
}.Build()
File_objmsg_proto = out.File
file_objmsg_proto_rawDesc = nil
file_objmsg_proto_goTypes = nil
file_objmsg_proto_depIdxs = nil
}

View File

@ -1,66 +1,12 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: report.proto // source: report.proto
package msg package msg
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type PbMsgReadedReportReq struct { type PbMsgReadedReportReq struct {
state protoimpl.MessageState GrpReadReport []*PbGroupReadedReportReq `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache DisReadReport []*PbDiscussReadedReportReq `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields C2CReadReport *PbC2CReadedReportReq `protobuf:"bytes,3,opt"` //optional PbBindUinMsgReadedConfirmReq bindUinReadReport = 4;
GrpReadReport []*PbGroupReadedReportReq `protobuf:"bytes,1,rep,name=grpReadReport" json:"grpReadReport,omitempty"`
DisReadReport []*PbDiscussReadedReportReq `protobuf:"bytes,2,rep,name=disReadReport" json:"disReadReport,omitempty"`
C2CReadReport *PbC2CReadedReportReq `protobuf:"bytes,3,opt,name=c2CReadReport" json:"c2CReadReport,omitempty"` //optional PbBindUinMsgReadedConfirmReq bindUinReadReport = 4;
}
func (x *PbMsgReadedReportReq) Reset() {
*x = PbMsgReadedReportReq{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbMsgReadedReportReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbMsgReadedReportReq) ProtoMessage() {}
func (x *PbMsgReadedReportReq) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbMsgReadedReportReq.ProtoReflect.Descriptor instead.
func (*PbMsgReadedReportReq) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{0}
} }
func (x *PbMsgReadedReportReq) GetGrpReadReport() []*PbGroupReadedReportReq { func (x *PbMsgReadedReportReq) GetGrpReadReport() []*PbGroupReadedReportReq {
@ -85,45 +31,9 @@ func (x *PbMsgReadedReportReq) GetC2CReadReport() *PbC2CReadedReportReq {
} }
type PbMsgReadedReportResp struct { type PbMsgReadedReportResp struct {
state protoimpl.MessageState GrpReadReport []*PbGroupReadedReportResp `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache DisReadReport []*PbDiscussReadedReportResp `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields C2CReadReport *PbC2CReadedReportResp `protobuf:"bytes,3,opt"` //optional PbBindUinMsgReadedConfirmResp bindUinReadReport = 4;
GrpReadReport []*PbGroupReadedReportResp `protobuf:"bytes,1,rep,name=grpReadReport" json:"grpReadReport,omitempty"`
DisReadReport []*PbDiscussReadedReportResp `protobuf:"bytes,2,rep,name=disReadReport" json:"disReadReport,omitempty"`
C2CReadReport *PbC2CReadedReportResp `protobuf:"bytes,3,opt,name=c2CReadReport" json:"c2CReadReport,omitempty"` //optional PbBindUinMsgReadedConfirmResp bindUinReadReport = 4;
}
func (x *PbMsgReadedReportResp) Reset() {
*x = PbMsgReadedReportResp{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbMsgReadedReportResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbMsgReadedReportResp) ProtoMessage() {}
func (x *PbMsgReadedReportResp) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbMsgReadedReportResp.ProtoReflect.Descriptor instead.
func (*PbMsgReadedReportResp) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{1}
} }
func (x *PbMsgReadedReportResp) GetGrpReadReport() []*PbGroupReadedReportResp { func (x *PbMsgReadedReportResp) GetGrpReadReport() []*PbGroupReadedReportResp {
@ -148,44 +58,8 @@ func (x *PbMsgReadedReportResp) GetC2CReadReport() *PbC2CReadedReportResp {
} }
type PbGroupReadedReportReq struct { type PbGroupReadedReportReq struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache LastReadSeq *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"`
LastReadSeq *uint64 `protobuf:"varint,2,opt,name=lastReadSeq" json:"lastReadSeq,omitempty"`
}
func (x *PbGroupReadedReportReq) Reset() {
*x = PbGroupReadedReportReq{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbGroupReadedReportReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbGroupReadedReportReq) ProtoMessage() {}
func (x *PbGroupReadedReportReq) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbGroupReadedReportReq.ProtoReflect.Descriptor instead.
func (*PbGroupReadedReportReq) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{2}
} }
func (x *PbGroupReadedReportReq) GetGroupCode() uint64 { func (x *PbGroupReadedReportReq) GetGroupCode() uint64 {
@ -203,44 +77,8 @@ func (x *PbGroupReadedReportReq) GetLastReadSeq() uint64 {
} }
type PbDiscussReadedReportReq struct { type PbDiscussReadedReportReq struct {
state protoimpl.MessageState ConfUin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache LastReadSeq *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
ConfUin *uint64 `protobuf:"varint,1,opt,name=confUin" json:"confUin,omitempty"`
LastReadSeq *uint64 `protobuf:"varint,2,opt,name=lastReadSeq" json:"lastReadSeq,omitempty"`
}
func (x *PbDiscussReadedReportReq) Reset() {
*x = PbDiscussReadedReportReq{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbDiscussReadedReportReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbDiscussReadedReportReq) ProtoMessage() {}
func (x *PbDiscussReadedReportReq) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbDiscussReadedReportReq.ProtoReflect.Descriptor instead.
func (*PbDiscussReadedReportReq) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{3}
} }
func (x *PbDiscussReadedReportReq) GetConfUin() uint64 { func (x *PbDiscussReadedReportReq) GetConfUin() uint64 {
@ -258,44 +96,8 @@ func (x *PbDiscussReadedReportReq) GetLastReadSeq() uint64 {
} }
type PbC2CReadedReportReq struct { type PbC2CReadedReportReq struct {
state protoimpl.MessageState SyncCookie []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache PairInfo []*UinPairReadInfo `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields
SyncCookie []byte `protobuf:"bytes,1,opt,name=syncCookie" json:"syncCookie,omitempty"`
PairInfo []*UinPairReadInfo `protobuf:"bytes,2,rep,name=pairInfo" json:"pairInfo,omitempty"`
}
func (x *PbC2CReadedReportReq) Reset() {
*x = PbC2CReadedReportReq{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbC2CReadedReportReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbC2CReadedReportReq) ProtoMessage() {}
func (x *PbC2CReadedReportReq) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbC2CReadedReportReq.ProtoReflect.Descriptor instead.
func (*PbC2CReadedReportReq) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{4}
} }
func (x *PbC2CReadedReportReq) GetSyncCookie() []byte { func (x *PbC2CReadedReportReq) GetSyncCookie() []byte {
@ -313,50 +115,14 @@ func (x *PbC2CReadedReportReq) GetPairInfo() []*UinPairReadInfo {
} }
type UinPairReadInfo struct { type UinPairReadInfo struct {
state protoimpl.MessageState PeerUin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache LastReadTime *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields CrmSig []byte `protobuf:"bytes,3,opt"`
PeerType *uint32 `protobuf:"varint,4,opt"`
PeerUin *uint64 `protobuf:"varint,1,opt,name=peerUin" json:"peerUin,omitempty"` ChatType *uint32 `protobuf:"varint,5,opt"`
LastReadTime *uint32 `protobuf:"varint,2,opt,name=lastReadTime" json:"lastReadTime,omitempty"` Cpid *uint64 `protobuf:"varint,6,opt"`
CrmSig []byte `protobuf:"bytes,3,opt,name=crmSig" json:"crmSig,omitempty"` AioType *uint32 `protobuf:"varint,7,opt"`
PeerType *uint32 `protobuf:"varint,4,opt,name=peerType" json:"peerType,omitempty"` ToTinyId *uint64 `protobuf:"varint,9,opt"`
ChatType *uint32 `protobuf:"varint,5,opt,name=chatType" json:"chatType,omitempty"`
Cpid *uint64 `protobuf:"varint,6,opt,name=cpid" json:"cpid,omitempty"`
AioType *uint32 `protobuf:"varint,7,opt,name=aioType" json:"aioType,omitempty"`
ToTinyId *uint64 `protobuf:"varint,9,opt,name=toTinyId" json:"toTinyId,omitempty"`
}
func (x *UinPairReadInfo) Reset() {
*x = UinPairReadInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UinPairReadInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UinPairReadInfo) ProtoMessage() {}
func (x *UinPairReadInfo) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UinPairReadInfo.ProtoReflect.Descriptor instead.
func (*UinPairReadInfo) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{5}
} }
func (x *UinPairReadInfo) GetPeerUin() uint64 { func (x *UinPairReadInfo) GetPeerUin() uint64 {
@ -416,47 +182,11 @@ func (x *UinPairReadInfo) GetToTinyId() uint64 {
} }
type PbGroupReadedReportResp struct { type PbGroupReadedReportResp struct {
state protoimpl.MessageState Result *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Errmsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields GroupCode *uint64 `protobuf:"varint,3,opt"`
MemberSeq *uint64 `protobuf:"varint,4,opt"`
Result *uint32 `protobuf:"varint,1,opt,name=result" json:"result,omitempty"` GroupMsgSeq *uint64 `protobuf:"varint,5,opt"`
Errmsg *string `protobuf:"bytes,2,opt,name=errmsg" json:"errmsg,omitempty"`
GroupCode *uint64 `protobuf:"varint,3,opt,name=groupCode" json:"groupCode,omitempty"`
MemberSeq *uint64 `protobuf:"varint,4,opt,name=memberSeq" json:"memberSeq,omitempty"`
GroupMsgSeq *uint64 `protobuf:"varint,5,opt,name=groupMsgSeq" json:"groupMsgSeq,omitempty"`
}
func (x *PbGroupReadedReportResp) Reset() {
*x = PbGroupReadedReportResp{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbGroupReadedReportResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbGroupReadedReportResp) ProtoMessage() {}
func (x *PbGroupReadedReportResp) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbGroupReadedReportResp.ProtoReflect.Descriptor instead.
func (*PbGroupReadedReportResp) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{6}
} }
func (x *PbGroupReadedReportResp) GetResult() uint32 { func (x *PbGroupReadedReportResp) GetResult() uint32 {
@ -495,47 +225,11 @@ func (x *PbGroupReadedReportResp) GetGroupMsgSeq() uint64 {
} }
type PbDiscussReadedReportResp struct { type PbDiscussReadedReportResp struct {
state protoimpl.MessageState Result *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Errmsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ConfUin *uint64 `protobuf:"varint,3,opt"`
MemberSeq *uint64 `protobuf:"varint,4,opt"`
Result *uint32 `protobuf:"varint,1,opt,name=result" json:"result,omitempty"` ConfSeq *uint64 `protobuf:"varint,5,opt"`
Errmsg *string `protobuf:"bytes,2,opt,name=errmsg" json:"errmsg,omitempty"`
ConfUin *uint64 `protobuf:"varint,3,opt,name=confUin" json:"confUin,omitempty"`
MemberSeq *uint64 `protobuf:"varint,4,opt,name=memberSeq" json:"memberSeq,omitempty"`
ConfSeq *uint64 `protobuf:"varint,5,opt,name=confSeq" json:"confSeq,omitempty"`
}
func (x *PbDiscussReadedReportResp) Reset() {
*x = PbDiscussReadedReportResp{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbDiscussReadedReportResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbDiscussReadedReportResp) ProtoMessage() {}
func (x *PbDiscussReadedReportResp) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbDiscussReadedReportResp.ProtoReflect.Descriptor instead.
func (*PbDiscussReadedReportResp) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{7}
} }
func (x *PbDiscussReadedReportResp) GetResult() uint32 { func (x *PbDiscussReadedReportResp) GetResult() uint32 {
@ -574,45 +268,9 @@ func (x *PbDiscussReadedReportResp) GetConfSeq() uint64 {
} }
type PbC2CReadedReportResp struct { type PbC2CReadedReportResp struct {
state protoimpl.MessageState Result *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Errmsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields SyncCookie []byte `protobuf:"bytes,3,opt"`
Result *uint32 `protobuf:"varint,1,opt,name=result" json:"result,omitempty"`
Errmsg *string `protobuf:"bytes,2,opt,name=errmsg" json:"errmsg,omitempty"`
SyncCookie []byte `protobuf:"bytes,3,opt,name=syncCookie" json:"syncCookie,omitempty"`
}
func (x *PbC2CReadedReportResp) Reset() {
*x = PbC2CReadedReportResp{}
if protoimpl.UnsafeEnabled {
mi := &file_report_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *PbC2CReadedReportResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*PbC2CReadedReportResp) ProtoMessage() {}
func (x *PbC2CReadedReportResp) ProtoReflect() protoreflect.Message {
mi := &file_report_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use PbC2CReadedReportResp.ProtoReflect.Descriptor instead.
func (*PbC2CReadedReportResp) Descriptor() ([]byte, []int) {
return file_report_proto_rawDescGZIP(), []int{8}
} }
func (x *PbC2CReadedReportResp) GetResult() uint32 { func (x *PbC2CReadedReportResp) GetResult() uint32 {
@ -635,270 +293,3 @@ func (x *PbC2CReadedReportResp) GetSyncCookie() []byte {
} }
return nil return nil
} }
var File_report_proto protoreflect.FileDescriptor
var file_report_proto_rawDesc = []byte{
0x0a, 0x0c, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd3,
0x01, 0x0a, 0x14, 0x50, 0x62, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65,
0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x3d, 0x0a, 0x0d, 0x67, 0x72, 0x70, 0x52, 0x65,
0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17,
0x2e, 0x50, 0x62, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65,
0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x52, 0x0d, 0x67, 0x72, 0x70, 0x52, 0x65, 0x61, 0x64,
0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3f, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x52, 0x65, 0x61,
0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e,
0x50, 0x62, 0x44, 0x69, 0x73, 0x63, 0x75, 0x73, 0x73, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52,
0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x52, 0x0d, 0x64, 0x69, 0x73, 0x52, 0x65, 0x61,
0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3b, 0x0a, 0x0d, 0x63, 0x32, 0x43, 0x52, 0x65,
0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15,
0x2e, 0x50, 0x62, 0x43, 0x32, 0x43, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f,
0x72, 0x74, 0x52, 0x65, 0x71, 0x52, 0x0d, 0x63, 0x32, 0x43, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65,
0x70, 0x6f, 0x72, 0x74, 0x22, 0xd7, 0x01, 0x0a, 0x15, 0x50, 0x62, 0x4d, 0x73, 0x67, 0x52, 0x65,
0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3e,
0x0a, 0x0d, 0x67, 0x72, 0x70, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x50, 0x62, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52,
0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x52,
0x0d, 0x67, 0x72, 0x70, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x40,
0x0a, 0x0d, 0x64, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x18,
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x50, 0x62, 0x44, 0x69, 0x73, 0x63, 0x75, 0x73,
0x73, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73,
0x70, 0x52, 0x0d, 0x64, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74,
0x12, 0x3c, 0x0a, 0x0d, 0x63, 0x32, 0x43, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72,
0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x50, 0x62, 0x43, 0x32, 0x43, 0x52,
0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x52,
0x0d, 0x63, 0x32, 0x43, 0x52, 0x65, 0x61, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x22, 0x58,
0x0a, 0x16, 0x50, 0x62, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52,
0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65,
0x61, 0x64, 0x53, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x6c, 0x61, 0x73,
0x74, 0x52, 0x65, 0x61, 0x64, 0x53, 0x65, 0x71, 0x22, 0x56, 0x0a, 0x18, 0x50, 0x62, 0x44, 0x69,
0x73, 0x63, 0x75, 0x73, 0x73, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72,
0x74, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x55, 0x69, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x55, 0x69, 0x6e, 0x12, 0x20,
0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x53, 0x65, 0x71, 0x18, 0x02, 0x20,
0x01, 0x28, 0x04, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x53, 0x65, 0x71,
0x22, 0x64, 0x0a, 0x14, 0x50, 0x62, 0x43, 0x32, 0x43, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52,
0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x79, 0x6e, 0x63,
0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x79,
0x6e, 0x63, 0x43, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x2c, 0x0a, 0x08, 0x70, 0x61, 0x69, 0x72,
0x49, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x55, 0x69, 0x6e,
0x50, 0x61, 0x69, 0x72, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x70, 0x61,
0x69, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xe9, 0x01, 0x0a, 0x0f, 0x55, 0x69, 0x6e, 0x50, 0x61,
0x69, 0x72, 0x52, 0x65, 0x61, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x65,
0x65, 0x72, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x70, 0x65, 0x65,
0x72, 0x55, 0x69, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64,
0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x6c, 0x61, 0x73, 0x74,
0x52, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x6d, 0x53,
0x69, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x72, 0x6d, 0x53, 0x69, 0x67,
0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x08, 0x70, 0x65, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08,
0x63, 0x68, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
0x63, 0x68, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x70, 0x69, 0x64,
0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x63, 0x70, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
0x61, 0x69, 0x6f, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x61,
0x69, 0x6f, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x6f, 0x54, 0x69, 0x6e, 0x79,
0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x74, 0x6f, 0x54, 0x69, 0x6e, 0x79,
0x49, 0x64, 0x22, 0xa7, 0x01, 0x0a, 0x17, 0x50, 0x62, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x65,
0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16,
0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x12, 0x1c,
0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09,
0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
0x09, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x71, 0x12, 0x20, 0x0a, 0x0b, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x4d, 0x73, 0x67, 0x53, 0x65, 0x71, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
0x0b, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4d, 0x73, 0x67, 0x53, 0x65, 0x71, 0x22, 0x9d, 0x01, 0x0a,
0x19, 0x50, 0x62, 0x44, 0x69, 0x73, 0x63, 0x75, 0x73, 0x73, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64,
0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75,
0x6c, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
0x6e, 0x66, 0x55, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x63, 0x6f, 0x6e,
0x66, 0x55, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65,
0x71, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53,
0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x53, 0x65, 0x71, 0x18, 0x05, 0x20,
0x01, 0x28, 0x04, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x66, 0x53, 0x65, 0x71, 0x22, 0x67, 0x0a, 0x15,
0x50, 0x62, 0x43, 0x32, 0x43, 0x52, 0x65, 0x61, 0x64, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72,
0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x16, 0x0a,
0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65,
0x72, 0x72, 0x6d, 0x73, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x79, 0x6e, 0x63, 0x43, 0x6f, 0x6f,
0x6b, 0x69, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x79, 0x6e, 0x63, 0x43,
0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x2f, 0x3b, 0x6d, 0x73, 0x67,
}
var (
file_report_proto_rawDescOnce sync.Once
file_report_proto_rawDescData = file_report_proto_rawDesc
)
func file_report_proto_rawDescGZIP() []byte {
file_report_proto_rawDescOnce.Do(func() {
file_report_proto_rawDescData = protoimpl.X.CompressGZIP(file_report_proto_rawDescData)
})
return file_report_proto_rawDescData
}
var file_report_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
var file_report_proto_goTypes = []interface{}{
(*PbMsgReadedReportReq)(nil), // 0: PbMsgReadedReportReq
(*PbMsgReadedReportResp)(nil), // 1: PbMsgReadedReportResp
(*PbGroupReadedReportReq)(nil), // 2: PbGroupReadedReportReq
(*PbDiscussReadedReportReq)(nil), // 3: PbDiscussReadedReportReq
(*PbC2CReadedReportReq)(nil), // 4: PbC2CReadedReportReq
(*UinPairReadInfo)(nil), // 5: UinPairReadInfo
(*PbGroupReadedReportResp)(nil), // 6: PbGroupReadedReportResp
(*PbDiscussReadedReportResp)(nil), // 7: PbDiscussReadedReportResp
(*PbC2CReadedReportResp)(nil), // 8: PbC2CReadedReportResp
}
var file_report_proto_depIdxs = []int32{
2, // 0: PbMsgReadedReportReq.grpReadReport:type_name -> PbGroupReadedReportReq
3, // 1: PbMsgReadedReportReq.disReadReport:type_name -> PbDiscussReadedReportReq
4, // 2: PbMsgReadedReportReq.c2CReadReport:type_name -> PbC2CReadedReportReq
6, // 3: PbMsgReadedReportResp.grpReadReport:type_name -> PbGroupReadedReportResp
7, // 4: PbMsgReadedReportResp.disReadReport:type_name -> PbDiscussReadedReportResp
8, // 5: PbMsgReadedReportResp.c2CReadReport:type_name -> PbC2CReadedReportResp
5, // 6: PbC2CReadedReportReq.pairInfo:type_name -> UinPairReadInfo
7, // [7:7] is the sub-list for method output_type
7, // [7:7] is the sub-list for method input_type
7, // [7:7] is the sub-list for extension type_name
7, // [7:7] is the sub-list for extension extendee
0, // [0:7] is the sub-list for field type_name
}
func init() { file_report_proto_init() }
func file_report_proto_init() {
if File_report_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_report_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbMsgReadedReportReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbMsgReadedReportResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbGroupReadedReportReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbDiscussReadedReportReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbC2CReadedReportReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UinPairReadInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbGroupReadedReportResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbDiscussReadedReportResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_report_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PbC2CReadedReportResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_report_proto_rawDesc,
NumEnums: 0,
NumMessages: 9,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_report_proto_goTypes,
DependencyIndexes: file_report_proto_depIdxs,
MessageInfos: file_report_proto_msgTypes,
}.Build()
File_report_proto = out.File
file_report_proto_rawDesc = nil
file_report_proto_goTypes = nil
file_report_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,64 +1,10 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: multimsg.proto // source: multimsg.proto
package multimsg package multimsg
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type ExternMsg struct { type ExternMsg struct {
state protoimpl.MessageState ChannelType int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ChannelType int32 `protobuf:"varint,1,opt,name=channelType,proto3" json:"channelType,omitempty"`
}
func (x *ExternMsg) Reset() {
*x = ExternMsg{}
if protoimpl.UnsafeEnabled {
mi := &file_multimsg_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExternMsg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExternMsg) ProtoMessage() {}
func (x *ExternMsg) ProtoReflect() protoreflect.Message {
mi := &file_multimsg_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExternMsg.ProtoReflect.Descriptor instead.
func (*ExternMsg) Descriptor() ([]byte, []int) {
return file_multimsg_proto_rawDescGZIP(), []int{0}
} }
func (x *ExternMsg) GetChannelType() int32 { func (x *ExternMsg) GetChannelType() int32 {
@ -69,45 +15,9 @@ func (x *ExternMsg) GetChannelType() int32 {
} }
type MultiMsgApplyDownReq struct { type MultiMsgApplyDownReq struct {
state protoimpl.MessageState MsgResid []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache MsgType int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields SrcUin int64 `protobuf:"varint,3,opt"`
MsgResid []byte `protobuf:"bytes,1,opt,name=msgResid,proto3" json:"msgResid,omitempty"`
MsgType int32 `protobuf:"varint,2,opt,name=msgType,proto3" json:"msgType,omitempty"`
SrcUin int64 `protobuf:"varint,3,opt,name=srcUin,proto3" json:"srcUin,omitempty"`
}
func (x *MultiMsgApplyDownReq) Reset() {
*x = MultiMsgApplyDownReq{}
if protoimpl.UnsafeEnabled {
mi := &file_multimsg_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MultiMsgApplyDownReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MultiMsgApplyDownReq) ProtoMessage() {}
func (x *MultiMsgApplyDownReq) ProtoReflect() protoreflect.Message {
mi := &file_multimsg_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MultiMsgApplyDownReq.ProtoReflect.Descriptor instead.
func (*MultiMsgApplyDownReq) Descriptor() ([]byte, []int) {
return file_multimsg_proto_rawDescGZIP(), []int{1}
} }
func (x *MultiMsgApplyDownReq) GetMsgResid() []byte { func (x *MultiMsgApplyDownReq) GetMsgResid() []byte {
@ -132,51 +42,15 @@ func (x *MultiMsgApplyDownReq) GetSrcUin() int64 {
} }
type MultiMsgApplyDownRsp struct { type MultiMsgApplyDownRsp struct {
state protoimpl.MessageState Result int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ThumbDownPara []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields MsgKey []byte `protobuf:"bytes,3,opt"`
Uint32DownIp []int32 `protobuf:"varint,4,rep"`
Result int32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"` Uint32DownPort []int32 `protobuf:"varint,5,rep"`
ThumbDownPara []byte `protobuf:"bytes,2,opt,name=thumbDownPara,proto3" json:"thumbDownPara,omitempty"` MsgResid []byte `protobuf:"bytes,6,opt"`
MsgKey []byte `protobuf:"bytes,3,opt,name=msgKey,proto3" json:"msgKey,omitempty"` MsgExternInfo *ExternMsg `protobuf:"bytes,7,opt"`
Uint32DownIp []int32 `protobuf:"varint,4,rep,packed,name=uint32DownIp,proto3" json:"uint32DownIp,omitempty"` BytesDownIpV6 [][]byte `protobuf:"bytes,8,rep"`
Uint32DownPort []int32 `protobuf:"varint,5,rep,packed,name=uint32DownPort,proto3" json:"uint32DownPort,omitempty"` Uint32DownV6Port []int32 `protobuf:"varint,9,rep"`
MsgResid []byte `protobuf:"bytes,6,opt,name=msgResid,proto3" json:"msgResid,omitempty"`
MsgExternInfo *ExternMsg `protobuf:"bytes,7,opt,name=msgExternInfo,proto3" json:"msgExternInfo,omitempty"`
BytesDownIpV6 [][]byte `protobuf:"bytes,8,rep,name=bytesDownIpV6,proto3" json:"bytesDownIpV6,omitempty"`
Uint32DownV6Port []int32 `protobuf:"varint,9,rep,packed,name=uint32DownV6Port,proto3" json:"uint32DownV6Port,omitempty"`
}
func (x *MultiMsgApplyDownRsp) Reset() {
*x = MultiMsgApplyDownRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_multimsg_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MultiMsgApplyDownRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MultiMsgApplyDownRsp) ProtoMessage() {}
func (x *MultiMsgApplyDownRsp) ProtoReflect() protoreflect.Message {
mi := &file_multimsg_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MultiMsgApplyDownRsp.ProtoReflect.Descriptor instead.
func (*MultiMsgApplyDownRsp) Descriptor() ([]byte, []int) {
return file_multimsg_proto_rawDescGZIP(), []int{2}
} }
func (x *MultiMsgApplyDownRsp) GetResult() int32 { func (x *MultiMsgApplyDownRsp) GetResult() int32 {
@ -243,47 +117,11 @@ func (x *MultiMsgApplyDownRsp) GetUint32DownV6Port() []int32 {
} }
type MultiMsgApplyUpReq struct { type MultiMsgApplyUpReq struct {
state protoimpl.MessageState DstUin int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgSize int64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MsgMd5 []byte `protobuf:"bytes,3,opt"`
MsgType int32 `protobuf:"varint,4,opt"`
DstUin int64 `protobuf:"varint,1,opt,name=dstUin,proto3" json:"dstUin,omitempty"` ApplyId int32 `protobuf:"varint,5,opt"`
MsgSize int64 `protobuf:"varint,2,opt,name=msgSize,proto3" json:"msgSize,omitempty"`
MsgMd5 []byte `protobuf:"bytes,3,opt,name=msgMd5,proto3" json:"msgMd5,omitempty"`
MsgType int32 `protobuf:"varint,4,opt,name=msgType,proto3" json:"msgType,omitempty"`
ApplyId int32 `protobuf:"varint,5,opt,name=applyId,proto3" json:"applyId,omitempty"`
}
func (x *MultiMsgApplyUpReq) Reset() {
*x = MultiMsgApplyUpReq{}
if protoimpl.UnsafeEnabled {
mi := &file_multimsg_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MultiMsgApplyUpReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MultiMsgApplyUpReq) ProtoMessage() {}
func (x *MultiMsgApplyUpReq) ProtoReflect() protoreflect.Message {
mi := &file_multimsg_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MultiMsgApplyUpReq.ProtoReflect.Descriptor instead.
func (*MultiMsgApplyUpReq) Descriptor() ([]byte, []int) {
return file_multimsg_proto_rawDescGZIP(), []int{3}
} }
func (x *MultiMsgApplyUpReq) GetDstUin() int64 { func (x *MultiMsgApplyUpReq) GetDstUin() int64 {
@ -322,55 +160,19 @@ func (x *MultiMsgApplyUpReq) GetApplyId() int32 {
} }
type MultiMsgApplyUpRsp struct { type MultiMsgApplyUpRsp struct {
state protoimpl.MessageState Result int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MsgResid string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields MsgUkey []byte `protobuf:"bytes,3,opt"`
Uint32UpIp []int32 `protobuf:"varint,4,rep"`
Result int32 `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"` Uint32UpPort []int32 `protobuf:"varint,5,rep"`
MsgResid string `protobuf:"bytes,2,opt,name=msgResid,proto3" json:"msgResid,omitempty"` BlockSize int64 `protobuf:"varint,6,opt"`
MsgUkey []byte `protobuf:"bytes,3,opt,name=msgUkey,proto3" json:"msgUkey,omitempty"` UpOffset int64 `protobuf:"varint,7,opt"`
Uint32UpIp []int32 `protobuf:"varint,4,rep,packed,name=uint32UpIp,proto3" json:"uint32UpIp,omitempty"` ApplyId int32 `protobuf:"varint,8,opt"`
Uint32UpPort []int32 `protobuf:"varint,5,rep,packed,name=uint32UpPort,proto3" json:"uint32UpPort,omitempty"` MsgKey []byte `protobuf:"bytes,9,opt"`
BlockSize int64 `protobuf:"varint,6,opt,name=blockSize,proto3" json:"blockSize,omitempty"` MsgSig []byte `protobuf:"bytes,10,opt"`
UpOffset int64 `protobuf:"varint,7,opt,name=upOffset,proto3" json:"upOffset,omitempty"` MsgExternInfo *ExternMsg `protobuf:"bytes,11,opt"`
ApplyId int32 `protobuf:"varint,8,opt,name=applyId,proto3" json:"applyId,omitempty"` BytesUpIpV6 [][]byte `protobuf:"bytes,12,rep"`
MsgKey []byte `protobuf:"bytes,9,opt,name=msgKey,proto3" json:"msgKey,omitempty"` Uint32UpV6Port []int32 `protobuf:"varint,13,rep"`
MsgSig []byte `protobuf:"bytes,10,opt,name=msgSig,proto3" json:"msgSig,omitempty"`
MsgExternInfo *ExternMsg `protobuf:"bytes,11,opt,name=msgExternInfo,proto3" json:"msgExternInfo,omitempty"`
BytesUpIpV6 [][]byte `protobuf:"bytes,12,rep,name=bytesUpIpV6,proto3" json:"bytesUpIpV6,omitempty"`
Uint32UpV6Port []int32 `protobuf:"varint,13,rep,packed,name=uint32UpV6Port,proto3" json:"uint32UpV6Port,omitempty"`
}
func (x *MultiMsgApplyUpRsp) Reset() {
*x = MultiMsgApplyUpRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_multimsg_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MultiMsgApplyUpRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MultiMsgApplyUpRsp) ProtoMessage() {}
func (x *MultiMsgApplyUpRsp) ProtoReflect() protoreflect.Message {
mi := &file_multimsg_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MultiMsgApplyUpRsp.ProtoReflect.Descriptor instead.
func (*MultiMsgApplyUpRsp) Descriptor() ([]byte, []int) {
return file_multimsg_proto_rawDescGZIP(), []int{4}
} }
func (x *MultiMsgApplyUpRsp) GetResult() int32 { func (x *MultiMsgApplyUpRsp) GetResult() int32 {
@ -465,51 +267,15 @@ func (x *MultiMsgApplyUpRsp) GetUint32UpV6Port() []int32 {
} }
type MultiReqBody struct { type MultiReqBody struct {
state protoimpl.MessageState Subcmd int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache TermType int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields PlatformType int32 `protobuf:"varint,3,opt"`
NetType int32 `protobuf:"varint,4,opt"`
Subcmd int32 `protobuf:"varint,1,opt,name=subcmd,proto3" json:"subcmd,omitempty"` BuildVer string `protobuf:"bytes,5,opt"`
TermType int32 `protobuf:"varint,2,opt,name=termType,proto3" json:"termType,omitempty"` MultimsgApplyupReq []*MultiMsgApplyUpReq `protobuf:"bytes,6,rep"`
PlatformType int32 `protobuf:"varint,3,opt,name=platformType,proto3" json:"platformType,omitempty"` MultimsgApplydownReq []*MultiMsgApplyDownReq `protobuf:"bytes,7,rep"`
NetType int32 `protobuf:"varint,4,opt,name=netType,proto3" json:"netType,omitempty"` BuType int32 `protobuf:"varint,8,opt"`
BuildVer string `protobuf:"bytes,5,opt,name=buildVer,proto3" json:"buildVer,omitempty"` ReqChannelType int32 `protobuf:"varint,9,opt"`
MultimsgApplyupReq []*MultiMsgApplyUpReq `protobuf:"bytes,6,rep,name=multimsgApplyupReq,proto3" json:"multimsgApplyupReq,omitempty"`
MultimsgApplydownReq []*MultiMsgApplyDownReq `protobuf:"bytes,7,rep,name=multimsgApplydownReq,proto3" json:"multimsgApplydownReq,omitempty"`
BuType int32 `protobuf:"varint,8,opt,name=buType,proto3" json:"buType,omitempty"`
ReqChannelType int32 `protobuf:"varint,9,opt,name=reqChannelType,proto3" json:"reqChannelType,omitempty"`
}
func (x *MultiReqBody) Reset() {
*x = MultiReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_multimsg_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MultiReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MultiReqBody) ProtoMessage() {}
func (x *MultiReqBody) ProtoReflect() protoreflect.Message {
mi := &file_multimsg_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MultiReqBody.ProtoReflect.Descriptor instead.
func (*MultiReqBody) Descriptor() ([]byte, []int) {
return file_multimsg_proto_rawDescGZIP(), []int{5}
} }
func (x *MultiReqBody) GetSubcmd() int32 { func (x *MultiReqBody) GetSubcmd() int32 {
@ -576,45 +342,9 @@ func (x *MultiReqBody) GetReqChannelType() int32 {
} }
type MultiRspBody struct { type MultiRspBody struct {
state protoimpl.MessageState Subcmd int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache MultimsgApplyupRsp []*MultiMsgApplyUpRsp `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields MultimsgApplydownRsp []*MultiMsgApplyDownRsp `protobuf:"bytes,3,rep"`
Subcmd int32 `protobuf:"varint,1,opt,name=subcmd,proto3" json:"subcmd,omitempty"`
MultimsgApplyupRsp []*MultiMsgApplyUpRsp `protobuf:"bytes,2,rep,name=multimsgApplyupRsp,proto3" json:"multimsgApplyupRsp,omitempty"`
MultimsgApplydownRsp []*MultiMsgApplyDownRsp `protobuf:"bytes,3,rep,name=multimsgApplydownRsp,proto3" json:"multimsgApplydownRsp,omitempty"`
}
func (x *MultiRspBody) Reset() {
*x = MultiRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_multimsg_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MultiRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MultiRspBody) ProtoMessage() {}
func (x *MultiRspBody) ProtoReflect() protoreflect.Message {
mi := &file_multimsg_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MultiRspBody.ProtoReflect.Descriptor instead.
func (*MultiRspBody) Descriptor() ([]byte, []int) {
return file_multimsg_proto_rawDescGZIP(), []int{6}
} }
func (x *MultiRspBody) GetSubcmd() int32 { func (x *MultiRspBody) GetSubcmd() int32 {
@ -637,259 +367,3 @@ func (x *MultiRspBody) GetMultimsgApplydownRsp() []*MultiMsgApplyDownRsp {
} }
return nil return nil
} }
var File_multimsg_proto protoreflect.FileDescriptor
var file_multimsg_proto_rawDesc = []byte{
0x0a, 0x0e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x22, 0x2d, 0x0a, 0x09, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a,
0x0b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x22,
0x64, 0x0a, 0x14, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79,
0x44, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65,
0x73, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65,
0x73, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,
0x06, 0x73, 0x72, 0x63, 0x55, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73,
0x72, 0x63, 0x55, 0x69, 0x6e, 0x22, 0xd8, 0x02, 0x0a, 0x14, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4d,
0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x73, 0x70, 0x12, 0x16,
0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x44,
0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x74,
0x68, 0x75, 0x6d, 0x62, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x12, 0x16, 0x0a, 0x06,
0x6d, 0x73, 0x67, 0x4b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x6d, 0x73,
0x67, 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f,
0x77, 0x6e, 0x49, 0x70, 0x18, 0x04, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0c, 0x75, 0x69, 0x6e, 0x74,
0x33, 0x32, 0x44, 0x6f, 0x77, 0x6e, 0x49, 0x70, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x69, 0x6e, 0x74,
0x33, 0x32, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05,
0x52, 0x0e, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x77, 0x6e, 0x50, 0x6f, 0x72, 0x74,
0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64, 0x12, 0x30, 0x0a, 0x0d,
0x6d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x07, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x4d, 0x73, 0x67, 0x52,
0x0d, 0x6d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24,
0x0a, 0x0d, 0x62, 0x79, 0x74, 0x65, 0x73, 0x44, 0x6f, 0x77, 0x6e, 0x49, 0x70, 0x56, 0x36, 0x18,
0x08, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0d, 0x62, 0x79, 0x74, 0x65, 0x73, 0x44, 0x6f, 0x77, 0x6e,
0x49, 0x70, 0x56, 0x36, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f,
0x77, 0x6e, 0x56, 0x36, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x05, 0x52, 0x10,
0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x77, 0x6e, 0x56, 0x36, 0x50, 0x6f, 0x72, 0x74,
0x22, 0x92, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4d, 0x73, 0x67, 0x41, 0x70, 0x70,
0x6c, 0x79, 0x55, 0x70, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x73, 0x74, 0x55, 0x69,
0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x64, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x12,
0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
0x52, 0x07, 0x6d, 0x73, 0x67, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x73, 0x67,
0x4d, 0x64, 0x35, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x6d, 0x73, 0x67, 0x4d, 0x64,
0x35, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
0x28, 0x05, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61,
0x70, 0x70, 0x6c, 0x79, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x61, 0x70,
0x70, 0x6c, 0x79, 0x49, 0x64, 0x22, 0xa6, 0x03, 0x0a, 0x12, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4d,
0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x55, 0x70, 0x52, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x52, 0x65, 0x73, 0x69, 0x64,
0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x55, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
0x0c, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x55, 0x6b, 0x65, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x69,
0x6e, 0x74, 0x33, 0x32, 0x55, 0x70, 0x49, 0x70, 0x18, 0x04, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a,
0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x70, 0x49, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x69,
0x6e, 0x74, 0x33, 0x32, 0x55, 0x70, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05,
0x52, 0x0c, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x70, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x1c,
0x0a, 0x09, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
0x03, 0x52, 0x09, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1a, 0x0a, 0x08,
0x75, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
0x75, 0x70, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x6c,
0x79, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x61, 0x70, 0x70, 0x6c, 0x79,
0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x73, 0x67, 0x4b, 0x65, 0x79, 0x18, 0x09, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x06, 0x6d, 0x73, 0x67, 0x4b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x73,
0x67, 0x53, 0x69, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x6d, 0x73, 0x67, 0x53,
0x69, 0x67, 0x12, 0x30, 0x0a, 0x0d, 0x6d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x49,
0x6e, 0x66, 0x6f, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x45, 0x78, 0x74, 0x65,
0x72, 0x6e, 0x4d, 0x73, 0x67, 0x52, 0x0d, 0x6d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e,
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x79, 0x74, 0x65, 0x73, 0x55, 0x70, 0x49,
0x70, 0x56, 0x36, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0b, 0x62, 0x79, 0x74, 0x65, 0x73,
0x55, 0x70, 0x49, 0x70, 0x56, 0x36, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32,
0x55, 0x70, 0x56, 0x36, 0x50, 0x6f, 0x72, 0x74, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0e,
0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x70, 0x56, 0x36, 0x50, 0x6f, 0x72, 0x74, 0x22, 0xec,
0x02, 0x0a, 0x0c, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12,
0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x72, 0x6d, 0x54,
0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x74, 0x65, 0x72, 0x6d, 0x54,
0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x54,
0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x70, 0x6c, 0x61, 0x74, 0x66,
0x6f, 0x72, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x65, 0x74, 0x54, 0x79,
0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x54, 0x79, 0x70,
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x65, 0x72, 0x18, 0x05, 0x20,
0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x56, 0x65, 0x72, 0x12, 0x43, 0x0a,
0x12, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x75, 0x70,
0x52, 0x65, 0x71, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x4d, 0x75, 0x6c, 0x74,
0x69, 0x4d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x55, 0x70, 0x52, 0x65, 0x71, 0x52, 0x12,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x75, 0x70, 0x52,
0x65, 0x71, 0x12, 0x49, 0x0a, 0x14, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73, 0x67, 0x41, 0x70,
0x70, 0x6c, 0x79, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x15, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79,
0x44, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x52, 0x14, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73,
0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
0x06, 0x62, 0x75, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x62,
0x75, 0x54, 0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x72, 0x65, 0x71, 0x43, 0x68, 0x61, 0x6e,
0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72,
0x65, 0x71, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x22, 0xb6, 0x01,
0x0a, 0x0c, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x16,
0x0a, 0x06, 0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
0x73, 0x75, 0x62, 0x63, 0x6d, 0x64, 0x12, 0x43, 0x0a, 0x12, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d,
0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x75, 0x70, 0x52, 0x73, 0x70, 0x18, 0x02, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x13, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4d, 0x73, 0x67, 0x41, 0x70, 0x70,
0x6c, 0x79, 0x55, 0x70, 0x52, 0x73, 0x70, 0x52, 0x12, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73,
0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x75, 0x70, 0x52, 0x73, 0x70, 0x12, 0x49, 0x0a, 0x14, 0x6d,
0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x64, 0x6f, 0x77, 0x6e,
0x52, 0x73, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x4d, 0x75, 0x6c, 0x74,
0x69, 0x4d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x44, 0x6f, 0x77, 0x6e, 0x52, 0x73, 0x70,
0x52, 0x14, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x6d, 0x73, 0x67, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x64,
0x6f, 0x77, 0x6e, 0x52, 0x73, 0x70, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x3b, 0x6d, 0x75, 0x6c,
0x74, 0x69, 0x6d, 0x73, 0x67, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_multimsg_proto_rawDescOnce sync.Once
file_multimsg_proto_rawDescData = file_multimsg_proto_rawDesc
)
func file_multimsg_proto_rawDescGZIP() []byte {
file_multimsg_proto_rawDescOnce.Do(func() {
file_multimsg_proto_rawDescData = protoimpl.X.CompressGZIP(file_multimsg_proto_rawDescData)
})
return file_multimsg_proto_rawDescData
}
var file_multimsg_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
var file_multimsg_proto_goTypes = []interface{}{
(*ExternMsg)(nil), // 0: ExternMsg
(*MultiMsgApplyDownReq)(nil), // 1: MultiMsgApplyDownReq
(*MultiMsgApplyDownRsp)(nil), // 2: MultiMsgApplyDownRsp
(*MultiMsgApplyUpReq)(nil), // 3: MultiMsgApplyUpReq
(*MultiMsgApplyUpRsp)(nil), // 4: MultiMsgApplyUpRsp
(*MultiReqBody)(nil), // 5: MultiReqBody
(*MultiRspBody)(nil), // 6: MultiRspBody
}
var file_multimsg_proto_depIdxs = []int32{
0, // 0: MultiMsgApplyDownRsp.msgExternInfo:type_name -> ExternMsg
0, // 1: MultiMsgApplyUpRsp.msgExternInfo:type_name -> ExternMsg
3, // 2: MultiReqBody.multimsgApplyupReq:type_name -> MultiMsgApplyUpReq
1, // 3: MultiReqBody.multimsgApplydownReq:type_name -> MultiMsgApplyDownReq
4, // 4: MultiRspBody.multimsgApplyupRsp:type_name -> MultiMsgApplyUpRsp
2, // 5: MultiRspBody.multimsgApplydownRsp:type_name -> MultiMsgApplyDownRsp
6, // [6:6] is the sub-list for method output_type
6, // [6:6] is the sub-list for method input_type
6, // [6:6] is the sub-list for extension type_name
6, // [6:6] is the sub-list for extension extendee
0, // [0:6] is the sub-list for field type_name
}
func init() { file_multimsg_proto_init() }
func file_multimsg_proto_init() {
if File_multimsg_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_multimsg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExternMsg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_multimsg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MultiMsgApplyDownReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_multimsg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MultiMsgApplyDownRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_multimsg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MultiMsgApplyUpReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_multimsg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MultiMsgApplyUpRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_multimsg_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MultiReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_multimsg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MultiRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_multimsg_proto_rawDesc,
NumEnums: 0,
NumMessages: 7,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_multimsg_proto_goTypes,
DependencyIndexes: file_multimsg_proto_depIdxs,
MessageInfos: file_multimsg_proto_msgTypes,
}.Build()
File_multimsg_proto = out.File
file_multimsg_proto_rawDesc = nil
file_multimsg_proto_goTypes = nil
file_multimsg_proto_depIdxs = nil
}

View File

@ -1,69 +1,15 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: group0x857.proto // source: group0x857.proto
package notify package notify
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type NotifyMsgBody struct { type NotifyMsgBody struct {
state protoimpl.MessageState OptMsgGrayTips *AIOGrayTipsInfo `protobuf:"bytes,5,opt"`
sizeCache protoimpl.SizeCache OptMsgRedTips *RedGrayTipsInfo `protobuf:"bytes,9,opt"`
unknownFields protoimpl.UnknownFields OptMsgRecall *MessageRecallReminder `protobuf:"bytes,11,opt"`
OptGeneralGrayTip *GeneralGrayTipInfo `protobuf:"bytes,26,opt"`
OptMsgGrayTips *AIOGrayTipsInfo `protobuf:"bytes,5,opt,name=optMsgGrayTips,proto3" json:"optMsgGrayTips,omitempty"` QqGroupDigestMsg *QQGroupDigestMsg `protobuf:"bytes,33,opt"`
OptMsgRedTips *RedGrayTipsInfo `protobuf:"bytes,9,opt,name=optMsgRedTips,proto3" json:"optMsgRedTips,omitempty"` ServiceType int32 `protobuf:"varint,13,opt"`
OptMsgRecall *MessageRecallReminder `protobuf:"bytes,11,opt,name=optMsgRecall,proto3" json:"optMsgRecall,omitempty"`
OptGeneralGrayTip *GeneralGrayTipInfo `protobuf:"bytes,26,opt,name=optGeneralGrayTip,proto3" json:"optGeneralGrayTip,omitempty"`
QqGroupDigestMsg *QQGroupDigestMsg `protobuf:"bytes,33,opt,name=qqGroupDigestMsg,proto3" json:"qqGroupDigestMsg,omitempty"`
ServiceType int32 `protobuf:"varint,13,opt,name=serviceType,proto3" json:"serviceType,omitempty"`
}
func (x *NotifyMsgBody) Reset() {
*x = NotifyMsgBody{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *NotifyMsgBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*NotifyMsgBody) ProtoMessage() {}
func (x *NotifyMsgBody) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use NotifyMsgBody.ProtoReflect.Descriptor instead.
func (*NotifyMsgBody) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{0}
} }
func (x *NotifyMsgBody) GetOptMsgGrayTips() *AIOGrayTipsInfo { func (x *NotifyMsgBody) GetOptMsgGrayTips() *AIOGrayTipsInfo {
@ -109,48 +55,12 @@ func (x *NotifyMsgBody) GetServiceType() int32 {
} }
type AIOGrayTipsInfo struct { type AIOGrayTipsInfo struct {
state protoimpl.MessageState ShowLatest uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Content []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Remind uint32 `protobuf:"varint,3,opt"`
Brief []byte `protobuf:"bytes,4,opt"`
ShowLatest uint32 `protobuf:"varint,1,opt,name=showLatest,proto3" json:"showLatest,omitempty"` ReceiverUin uint64 `protobuf:"varint,5,opt"`
Content []byte `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"` ReliaoAdminOpt uint32 `protobuf:"varint,6,opt"`
Remind uint32 `protobuf:"varint,3,opt,name=remind,proto3" json:"remind,omitempty"`
Brief []byte `protobuf:"bytes,4,opt,name=brief,proto3" json:"brief,omitempty"`
ReceiverUin uint64 `protobuf:"varint,5,opt,name=receiverUin,proto3" json:"receiverUin,omitempty"`
ReliaoAdminOpt uint32 `protobuf:"varint,6,opt,name=reliaoAdminOpt,proto3" json:"reliaoAdminOpt,omitempty"`
}
func (x *AIOGrayTipsInfo) Reset() {
*x = AIOGrayTipsInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *AIOGrayTipsInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AIOGrayTipsInfo) ProtoMessage() {}
func (x *AIOGrayTipsInfo) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use AIOGrayTipsInfo.ProtoReflect.Descriptor instead.
func (*AIOGrayTipsInfo) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{1}
} }
func (x *AIOGrayTipsInfo) GetShowLatest() uint32 { func (x *AIOGrayTipsInfo) GetShowLatest() uint32 {
@ -196,50 +106,14 @@ func (x *AIOGrayTipsInfo) GetReliaoAdminOpt() uint32 {
} }
type GeneralGrayTipInfo struct { type GeneralGrayTipInfo struct {
state protoimpl.MessageState BusiType uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache BusiId uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields CtrlFlag uint32 `protobuf:"varint,3,opt"`
C2CType uint32 `protobuf:"varint,4,opt"`
BusiType uint64 `protobuf:"varint,1,opt,name=busiType,proto3" json:"busiType,omitempty"` ServiceType uint32 `protobuf:"varint,5,opt"`
BusiId uint64 `protobuf:"varint,2,opt,name=busiId,proto3" json:"busiId,omitempty"` TemplId uint64 `protobuf:"varint,6,opt"`
CtrlFlag uint32 `protobuf:"varint,3,opt,name=ctrlFlag,proto3" json:"ctrlFlag,omitempty"` MsgTemplParam []*TemplParam `protobuf:"bytes,7,rep"`
C2CType uint32 `protobuf:"varint,4,opt,name=c2cType,proto3" json:"c2cType,omitempty"` Content string `protobuf:"bytes,8,opt"`
ServiceType uint32 `protobuf:"varint,5,opt,name=serviceType,proto3" json:"serviceType,omitempty"`
TemplId uint64 `protobuf:"varint,6,opt,name=templId,proto3" json:"templId,omitempty"`
MsgTemplParam []*TemplParam `protobuf:"bytes,7,rep,name=msgTemplParam,proto3" json:"msgTemplParam,omitempty"`
Content string `protobuf:"bytes,8,opt,name=content,proto3" json:"content,omitempty"`
}
func (x *GeneralGrayTipInfo) Reset() {
*x = GeneralGrayTipInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GeneralGrayTipInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GeneralGrayTipInfo) ProtoMessage() {}
func (x *GeneralGrayTipInfo) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GeneralGrayTipInfo.ProtoReflect.Descriptor instead.
func (*GeneralGrayTipInfo) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{2}
} }
func (x *GeneralGrayTipInfo) GetBusiType() uint64 { func (x *GeneralGrayTipInfo) GetBusiType() uint64 {
@ -299,44 +173,8 @@ func (x *GeneralGrayTipInfo) GetContent() string {
} }
type TemplParam struct { type TemplParam struct {
state protoimpl.MessageState Name string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Value string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
}
func (x *TemplParam) Reset() {
*x = TemplParam{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TemplParam) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TemplParam) ProtoMessage() {}
func (x *TemplParam) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TemplParam.ProtoReflect.Descriptor instead.
func (*TemplParam) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{3}
} }
func (x *TemplParam) GetName() string { func (x *TemplParam) GetName() string {
@ -354,49 +192,13 @@ func (x *TemplParam) GetValue() string {
} }
type MessageRecallReminder struct { type MessageRecallReminder struct {
state protoimpl.MessageState Uin int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Nickname []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields RecalledMsgList []*RecalledMessageMeta `protobuf:"bytes,3,rep"`
ReminderContent []byte `protobuf:"bytes,4,opt"`
Uin int64 `protobuf:"varint,1,opt,name=uin,proto3" json:"uin,omitempty"` Userdef []byte `protobuf:"bytes,5,opt"`
Nickname []byte `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"` GroupType int32 `protobuf:"varint,6,opt"`
RecalledMsgList []*RecalledMessageMeta `protobuf:"bytes,3,rep,name=recalledMsgList,proto3" json:"recalledMsgList,omitempty"` OpType int32 `protobuf:"varint,7,opt"`
ReminderContent []byte `protobuf:"bytes,4,opt,name=reminderContent,proto3" json:"reminderContent,omitempty"`
Userdef []byte `protobuf:"bytes,5,opt,name=userdef,proto3" json:"userdef,omitempty"`
GroupType int32 `protobuf:"varint,6,opt,name=groupType,proto3" json:"groupType,omitempty"`
OpType int32 `protobuf:"varint,7,opt,name=opType,proto3" json:"opType,omitempty"`
}
func (x *MessageRecallReminder) Reset() {
*x = MessageRecallReminder{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MessageRecallReminder) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MessageRecallReminder) ProtoMessage() {}
func (x *MessageRecallReminder) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MessageRecallReminder.ProtoReflect.Descriptor instead.
func (*MessageRecallReminder) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{4}
} }
func (x *MessageRecallReminder) GetUin() int64 { func (x *MessageRecallReminder) GetUin() int64 {
@ -449,48 +251,12 @@ func (x *MessageRecallReminder) GetOpType() int32 {
} }
type RecalledMessageMeta struct { type RecalledMessageMeta struct {
state protoimpl.MessageState Seq int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Time int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MsgRandom int32 `protobuf:"varint,3,opt"`
MsgType int32 `protobuf:"varint,4,opt"`
Seq int32 `protobuf:"varint,1,opt,name=seq,proto3" json:"seq,omitempty"` MsgFlag int32 `protobuf:"varint,5,opt"`
Time int32 `protobuf:"varint,2,opt,name=time,proto3" json:"time,omitempty"` AuthorUin int64 `protobuf:"varint,6,opt"`
MsgRandom int32 `protobuf:"varint,3,opt,name=msgRandom,proto3" json:"msgRandom,omitempty"`
MsgType int32 `protobuf:"varint,4,opt,name=msgType,proto3" json:"msgType,omitempty"`
MsgFlag int32 `protobuf:"varint,5,opt,name=msgFlag,proto3" json:"msgFlag,omitempty"`
AuthorUin int64 `protobuf:"varint,6,opt,name=authorUin,proto3" json:"authorUin,omitempty"`
}
func (x *RecalledMessageMeta) Reset() {
*x = RecalledMessageMeta{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RecalledMessageMeta) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RecalledMessageMeta) ProtoMessage() {}
func (x *RecalledMessageMeta) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RecalledMessageMeta.ProtoReflect.Descriptor instead.
func (*RecalledMessageMeta) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{5}
} }
func (x *RecalledMessageMeta) GetSeq() int32 { func (x *RecalledMessageMeta) GetSeq() int32 {
@ -536,52 +302,16 @@ func (x *RecalledMessageMeta) GetAuthorUin() int64 {
} }
type RedGrayTipsInfo struct { type RedGrayTipsInfo struct {
state protoimpl.MessageState ShowLatest uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache SenderUin uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields ReceiverUin uint64 `protobuf:"varint,3,opt"`
SenderRichContent string `protobuf:"bytes,4,opt"`
ShowLatest uint32 `protobuf:"varint,1,opt,name=showLatest,proto3" json:"showLatest,omitempty"` ReceiverRichContent string `protobuf:"bytes,5,opt"`
SenderUin uint64 `protobuf:"varint,2,opt,name=senderUin,proto3" json:"senderUin,omitempty"` AuthKey []byte `protobuf:"bytes,6,opt"`
ReceiverUin uint64 `protobuf:"varint,3,opt,name=receiverUin,proto3" json:"receiverUin,omitempty"` MsgType int32 `protobuf:"zigzag32,7,opt"`
SenderRichContent string `protobuf:"bytes,4,opt,name=senderRichContent,proto3" json:"senderRichContent,omitempty"` LuckyFlag uint32 `protobuf:"varint,8,opt"`
ReceiverRichContent string `protobuf:"bytes,5,opt,name=receiverRichContent,proto3" json:"receiverRichContent,omitempty"` HideFlag uint32 `protobuf:"varint,9,opt"`
AuthKey []byte `protobuf:"bytes,6,opt,name=authKey,proto3" json:"authKey,omitempty"` LuckyUin uint64 `protobuf:"varint,12,opt"`
MsgType int32 `protobuf:"zigzag32,7,opt,name=msgType,proto3" json:"msgType,omitempty"`
LuckyFlag uint32 `protobuf:"varint,8,opt,name=luckyFlag,proto3" json:"luckyFlag,omitempty"`
HideFlag uint32 `protobuf:"varint,9,opt,name=hideFlag,proto3" json:"hideFlag,omitempty"`
LuckyUin uint64 `protobuf:"varint,12,opt,name=luckyUin,proto3" json:"luckyUin,omitempty"`
}
func (x *RedGrayTipsInfo) Reset() {
*x = RedGrayTipsInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RedGrayTipsInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RedGrayTipsInfo) ProtoMessage() {}
func (x *RedGrayTipsInfo) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RedGrayTipsInfo.ProtoReflect.Descriptor instead.
func (*RedGrayTipsInfo) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{6}
} }
func (x *RedGrayTipsInfo) GetShowLatest() uint32 { func (x *RedGrayTipsInfo) GetShowLatest() uint32 {
@ -655,53 +385,17 @@ func (x *RedGrayTipsInfo) GetLuckyUin() uint64 {
} }
type QQGroupDigestMsg struct { type QQGroupDigestMsg struct {
state protoimpl.MessageState GroupCode uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Seq uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Random uint32 `protobuf:"varint,3,opt"`
OpType int32 `protobuf:"varint,4,opt"`
GroupCode uint64 `protobuf:"varint,1,opt,name=groupCode,proto3" json:"groupCode,omitempty"` Sender uint64 `protobuf:"varint,5,opt"`
Seq uint32 `protobuf:"varint,2,opt,name=seq,proto3" json:"seq,omitempty"` DigestOper uint64 `protobuf:"varint,6,opt"`
Random uint32 `protobuf:"varint,3,opt,name=random,proto3" json:"random,omitempty"` OpTime uint32 `protobuf:"varint,7,opt"`
OpType int32 `protobuf:"varint,4,opt,name=opType,proto3" json:"opType,omitempty"` LastestMsgSeq uint32 `protobuf:"varint,8,opt"`
Sender uint64 `protobuf:"varint,5,opt,name=sender,proto3" json:"sender,omitempty"` OperNick []byte `protobuf:"bytes,9,opt"`
DigestOper uint64 `protobuf:"varint,6,opt,name=digestOper,proto3" json:"digestOper,omitempty"` SenderNick []byte `protobuf:"bytes,10,opt"`
OpTime uint32 `protobuf:"varint,7,opt,name=opTime,proto3" json:"opTime,omitempty"` ExtInfo int32 `protobuf:"varint,11,opt"`
LastestMsgSeq uint32 `protobuf:"varint,8,opt,name=lastestMsgSeq,proto3" json:"lastestMsgSeq,omitempty"`
OperNick []byte `protobuf:"bytes,9,opt,name=operNick,proto3" json:"operNick,omitempty"`
SenderNick []byte `protobuf:"bytes,10,opt,name=senderNick,proto3" json:"senderNick,omitempty"`
ExtInfo int32 `protobuf:"varint,11,opt,name=extInfo,proto3" json:"extInfo,omitempty"`
}
func (x *QQGroupDigestMsg) Reset() {
*x = QQGroupDigestMsg{}
if protoimpl.UnsafeEnabled {
mi := &file_group0x857_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QQGroupDigestMsg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QQGroupDigestMsg) ProtoMessage() {}
func (x *QQGroupDigestMsg) ProtoReflect() protoreflect.Message {
mi := &file_group0x857_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QQGroupDigestMsg.ProtoReflect.Descriptor instead.
func (*QQGroupDigestMsg) Descriptor() ([]byte, []int) {
return file_group0x857_proto_rawDescGZIP(), []int{7}
} }
func (x *QQGroupDigestMsg) GetGroupCode() uint64 { func (x *QQGroupDigestMsg) GetGroupCode() uint64 {
@ -780,296 +474,3 @@ func (x *QQGroupDigestMsg) GetExtInfo() int32 {
} }
return 0 return 0
} }
var File_group0x857_proto protoreflect.FileDescriptor
var file_group0x857_proto_rawDesc = []byte{
0x0a, 0x10, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x30, 0x78, 0x38, 0x35, 0x37, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x22, 0xe1, 0x02, 0x0a, 0x0d, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x4d, 0x73, 0x67,
0x42, 0x6f, 0x64, 0x79, 0x12, 0x38, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x47, 0x72,
0x61, 0x79, 0x54, 0x69, 0x70, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x41,
0x49, 0x4f, 0x47, 0x72, 0x61, 0x79, 0x54, 0x69, 0x70, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0e,
0x6f, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x47, 0x72, 0x61, 0x79, 0x54, 0x69, 0x70, 0x73, 0x12, 0x36,
0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x54, 0x69, 0x70, 0x73, 0x18,
0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x52, 0x65, 0x64, 0x47, 0x72, 0x61, 0x79, 0x54,
0x69, 0x70, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x52,
0x65, 0x64, 0x54, 0x69, 0x70, 0x73, 0x12, 0x3a, 0x0a, 0x0c, 0x6f, 0x70, 0x74, 0x4d, 0x73, 0x67,
0x52, 0x65, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x4d,
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x63, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x6d, 0x69,
0x6e, 0x64, 0x65, 0x72, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x63, 0x61,
0x6c, 0x6c, 0x12, 0x41, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
0x47, 0x72, 0x61, 0x79, 0x54, 0x69, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e,
0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x79, 0x54, 0x69, 0x70, 0x49, 0x6e,
0x66, 0x6f, 0x52, 0x11, 0x6f, 0x70, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x47, 0x72,
0x61, 0x79, 0x54, 0x69, 0x70, 0x12, 0x3d, 0x0a, 0x10, 0x71, 0x71, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x44, 0x69, 0x67, 0x65, 0x73, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x11, 0x2e, 0x51, 0x51, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44, 0x69, 0x67, 0x65, 0x73, 0x74, 0x4d,
0x73, 0x67, 0x52, 0x10, 0x71, 0x71, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44, 0x69, 0x67, 0x65, 0x73,
0x74, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54,
0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69,
0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0xc3, 0x01, 0x0a, 0x0f, 0x41, 0x49, 0x4f, 0x47, 0x72,
0x61, 0x79, 0x54, 0x69, 0x70, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x68,
0x6f, 0x77, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a,
0x73, 0x68, 0x6f, 0x77, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x63, 0x6f, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x18, 0x03,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05,
0x62, 0x72, 0x69, 0x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x62, 0x72, 0x69,
0x65, 0x66, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x55, 0x69,
0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
0x72, 0x55, 0x69, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x72, 0x65, 0x6c, 0x69, 0x61, 0x6f, 0x41, 0x64,
0x6d, 0x69, 0x6e, 0x4f, 0x70, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65,
0x6c, 0x69, 0x61, 0x6f, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x4f, 0x70, 0x74, 0x22, 0x87, 0x02, 0x0a,
0x12, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x47, 0x72, 0x61, 0x79, 0x54, 0x69, 0x70, 0x49,
0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x54, 0x79, 0x70, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x54, 0x79, 0x70, 0x65, 0x12,
0x16, 0x0a, 0x06, 0x62, 0x75, 0x73, 0x69, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
0x06, 0x62, 0x75, 0x73, 0x69, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x74, 0x72, 0x6c, 0x46,
0x6c, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x63, 0x74, 0x72, 0x6c, 0x46,
0x6c, 0x61, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x32, 0x63, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x32, 0x63, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a,
0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
0x18, 0x0a, 0x07, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04,
0x52, 0x07, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x49, 0x64, 0x12, 0x31, 0x0a, 0x0d, 0x6d, 0x73, 0x67,
0x54, 0x65, 0x6d, 0x70, 0x6c, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x0b, 0x2e, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x52, 0x0d, 0x6d,
0x73, 0x67, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x18, 0x0a, 0x07,
0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0x36, 0x0a, 0x0a, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x50,
0x61, 0x72, 0x61, 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xff,
0x01, 0x0a, 0x15, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x63, 0x61, 0x6c, 0x6c,
0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6e, 0x69,
0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x3e, 0x0a, 0x0f, 0x72, 0x65, 0x63, 0x61, 0x6c, 0x6c,
0x65, 0x64, 0x4d, 0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x14, 0x2e, 0x52, 0x65, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4d,
0x73, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x0f, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64,
0x65, 0x72, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x0f, 0x72, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x64, 0x65, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28,
0x0c, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x64, 0x65, 0x66, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x54, 0x79,
0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x70, 0x54, 0x79, 0x70, 0x65,
0x22, 0xab, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x63, 0x61, 0x6c, 0x6c, 0x65, 0x64, 0x4d, 0x65, 0x73,
0x73, 0x61, 0x67, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x69,
0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1c,
0x0a, 0x09, 0x6d, 0x73, 0x67, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28,
0x05, 0x52, 0x09, 0x6d, 0x73, 0x67, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x12, 0x18, 0x0a, 0x07,
0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6d,
0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x46, 0x6c, 0x61, 0x67,
0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x55, 0x69, 0x6e, 0x18, 0x06, 0x20,
0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x55, 0x69, 0x6e, 0x22, 0xdb,
0x02, 0x0a, 0x0f, 0x52, 0x65, 0x64, 0x47, 0x72, 0x61, 0x79, 0x54, 0x69, 0x70, 0x73, 0x49, 0x6e,
0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x68, 0x6f, 0x77, 0x4c, 0x61, 0x74, 0x65, 0x73, 0x74,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x73, 0x68, 0x6f, 0x77, 0x4c, 0x61, 0x74, 0x65,
0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x55, 0x69, 0x6e, 0x18,
0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x55, 0x69, 0x6e,
0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x55, 0x69, 0x6e, 0x18,
0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x55,
0x69, 0x6e, 0x12, 0x2c, 0x0a, 0x11, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x69, 0x63, 0x68,
0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x73,
0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x69, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
0x12, 0x30, 0x0a, 0x13, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x69, 0x63, 0x68,
0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x72,
0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x52, 0x69, 0x63, 0x68, 0x43, 0x6f, 0x6e, 0x74, 0x65,
0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x75, 0x74, 0x68, 0x4b, 0x65, 0x79, 0x18, 0x06, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x07, 0x61, 0x75, 0x74, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x18, 0x0a, 0x07,
0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x11, 0x52, 0x07, 0x6d,
0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x75, 0x63, 0x6b, 0x79, 0x46,
0x6c, 0x61, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6c, 0x75, 0x63, 0x6b, 0x79,
0x46, 0x6c, 0x61, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x69, 0x64, 0x65, 0x46, 0x6c, 0x61, 0x67,
0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x68, 0x69, 0x64, 0x65, 0x46, 0x6c, 0x61, 0x67,
0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x75, 0x63, 0x6b, 0x79, 0x55, 0x69, 0x6e, 0x18, 0x0c, 0x20, 0x01,
0x28, 0x04, 0x52, 0x08, 0x6c, 0x75, 0x63, 0x6b, 0x79, 0x55, 0x69, 0x6e, 0x22, 0xbe, 0x02, 0x0a,
0x10, 0x51, 0x51, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44, 0x69, 0x67, 0x65, 0x73, 0x74, 0x4d, 0x73,
0x67, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12,
0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x73, 0x65,
0x71, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x06, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x54,
0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6f, 0x70, 0x54, 0x79, 0x70,
0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
0x04, 0x52, 0x06, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x69, 0x67,
0x65, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x64,
0x69, 0x67, 0x65, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x54,
0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x6f, 0x70, 0x54, 0x69, 0x6d,
0x65, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x65, 0x73, 0x74, 0x4d, 0x73, 0x67, 0x53,
0x65, 0x71, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x65, 0x73,
0x74, 0x4d, 0x73, 0x67, 0x53, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x4e,
0x69, 0x63, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x4e,
0x69, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x69, 0x63,
0x6b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x4e,
0x69, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x78, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x0b,
0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x65, 0x78, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x0b, 0x5a,
0x09, 0x2e, 0x2f, 0x3b, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
file_group0x857_proto_rawDescOnce sync.Once
file_group0x857_proto_rawDescData = file_group0x857_proto_rawDesc
)
func file_group0x857_proto_rawDescGZIP() []byte {
file_group0x857_proto_rawDescOnce.Do(func() {
file_group0x857_proto_rawDescData = protoimpl.X.CompressGZIP(file_group0x857_proto_rawDescData)
})
return file_group0x857_proto_rawDescData
}
var file_group0x857_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
var file_group0x857_proto_goTypes = []interface{}{
(*NotifyMsgBody)(nil), // 0: NotifyMsgBody
(*AIOGrayTipsInfo)(nil), // 1: AIOGrayTipsInfo
(*GeneralGrayTipInfo)(nil), // 2: GeneralGrayTipInfo
(*TemplParam)(nil), // 3: TemplParam
(*MessageRecallReminder)(nil), // 4: MessageRecallReminder
(*RecalledMessageMeta)(nil), // 5: RecalledMessageMeta
(*RedGrayTipsInfo)(nil), // 6: RedGrayTipsInfo
(*QQGroupDigestMsg)(nil), // 7: QQGroupDigestMsg
}
var file_group0x857_proto_depIdxs = []int32{
1, // 0: NotifyMsgBody.optMsgGrayTips:type_name -> AIOGrayTipsInfo
6, // 1: NotifyMsgBody.optMsgRedTips:type_name -> RedGrayTipsInfo
4, // 2: NotifyMsgBody.optMsgRecall:type_name -> MessageRecallReminder
2, // 3: NotifyMsgBody.optGeneralGrayTip:type_name -> GeneralGrayTipInfo
7, // 4: NotifyMsgBody.qqGroupDigestMsg:type_name -> QQGroupDigestMsg
3, // 5: GeneralGrayTipInfo.msgTemplParam:type_name -> TemplParam
5, // 6: MessageRecallReminder.recalledMsgList:type_name -> RecalledMessageMeta
7, // [7:7] is the sub-list for method output_type
7, // [7:7] is the sub-list for method input_type
7, // [7:7] is the sub-list for extension type_name
7, // [7:7] is the sub-list for extension extendee
0, // [0:7] is the sub-list for field type_name
}
func init() { file_group0x857_proto_init() }
func file_group0x857_proto_init() {
if File_group0x857_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_group0x857_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NotifyMsgBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group0x857_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AIOGrayTipsInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group0x857_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GeneralGrayTipInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group0x857_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TemplParam); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group0x857_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MessageRecallReminder); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group0x857_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RecalledMessageMeta); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group0x857_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RedGrayTipsInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_group0x857_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QQGroupDigestMsg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_group0x857_proto_rawDesc,
NumEnums: 0,
NumMessages: 8,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_group0x857_proto_goTypes,
DependencyIndexes: file_group0x857_proto_depIdxs,
MessageInfos: file_group0x857_proto_msgTypes,
}.Build()
File_group0x857_proto = out.File
file_group0x857_proto_rawDesc = nil
file_group0x857_proto_goTypes = nil
file_group0x857_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,143 +1,89 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0x5eb.proto // source: oidb0x5eb.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type D5EBReqBody struct { type D5EBReqBody struct {
state protoimpl.MessageState Uins []uint64 `protobuf:"varint,1,rep"`
sizeCache protoimpl.SizeCache MaxPackageSize *uint32 `protobuf:"varint,3,opt"`
unknownFields protoimpl.UnknownFields Openid [][]byte `protobuf:"bytes,4,rep"`
Appid *uint32 `protobuf:"varint,5,opt"`
Uins []uint64 `protobuf:"varint,1,rep,name=uins" json:"uins,omitempty"` ReqNick *uint32 `protobuf:"varint,20002,opt"`
MaxPackageSize *uint32 `protobuf:"varint,3,opt,name=max_package_size,json=maxPackageSize" json:"max_package_size,omitempty"` ReqCountry *uint32 `protobuf:"varint,20003,opt"`
Openid [][]byte `protobuf:"bytes,4,rep,name=openid" json:"openid,omitempty"` ReqProvince *int32 `protobuf:"varint,20004,opt"`
Appid *uint32 `protobuf:"varint,5,opt,name=appid" json:"appid,omitempty"` ReqGender *int32 `protobuf:"varint,20009,opt"`
ReqNick *uint32 `protobuf:"varint,20002,opt,name=reqNick" json:"reqNick,omitempty"` ReqAllow *int32 `protobuf:"varint,20014,opt"`
ReqCountry *uint32 `protobuf:"varint,20003,opt,name=reqCountry" json:"reqCountry,omitempty"` ReqFaceId *int32 `protobuf:"varint,20015,opt"`
ReqProvince *int32 `protobuf:"varint,20004,opt,name=reqProvince" json:"reqProvince,omitempty"` ReqCity *int32 `protobuf:"varint,20020,opt"`
ReqGender *int32 `protobuf:"varint,20009,opt,name=reqGender" json:"reqGender,omitempty"` ReqConstellation *int32 `protobuf:"varint,20022,opt"`
ReqAllow *int32 `protobuf:"varint,20014,opt,name=reqAllow" json:"reqAllow,omitempty"` ReqCommonPlace1 *int32 `protobuf:"varint,20027,opt"`
ReqFaceId *int32 `protobuf:"varint,20015,opt,name=reqFaceId" json:"reqFaceId,omitempty"` ReqMss3Bitmapextra *int32 `protobuf:"varint,20030,opt"`
ReqCity *int32 `protobuf:"varint,20020,opt,name=reqCity" json:"reqCity,omitempty"` ReqBirthday *int32 `protobuf:"varint,20031,opt"`
ReqConstellation *int32 `protobuf:"varint,20022,opt,name=reqConstellation" json:"reqConstellation,omitempty"` ReqCityId *int32 `protobuf:"varint,20032,opt"`
ReqCommonPlace1 *int32 `protobuf:"varint,20027,opt,name=reqCommonPlace1" json:"reqCommonPlace1,omitempty"` ReqLang1 *int32 `protobuf:"varint,20033,opt"`
ReqMss3Bitmapextra *int32 `protobuf:"varint,20030,opt,name=reqMss3Bitmapextra" json:"reqMss3Bitmapextra,omitempty"` ReqLang2 *int32 `protobuf:"varint,20034,opt"`
ReqBirthday *int32 `protobuf:"varint,20031,opt,name=reqBirthday" json:"reqBirthday,omitempty"` ReqLang3 *int32 `protobuf:"varint,20035,opt"`
ReqCityId *int32 `protobuf:"varint,20032,opt,name=reqCityId" json:"reqCityId,omitempty"` ReqAge *int32 `protobuf:"varint,20037,opt"`
ReqLang1 *int32 `protobuf:"varint,20033,opt,name=reqLang1" json:"reqLang1,omitempty"` ReqCityZoneId *int32 `protobuf:"varint,20041,opt"`
ReqLang2 *int32 `protobuf:"varint,20034,opt,name=reqLang2" json:"reqLang2,omitempty"` ReqOin *int32 `protobuf:"varint,20056,opt"`
ReqLang3 *int32 `protobuf:"varint,20035,opt,name=reqLang3" json:"reqLang3,omitempty"` ReqBubbleId *int32 `protobuf:"varint,20059,opt"`
ReqAge *int32 `protobuf:"varint,20037,opt,name=reqAge" json:"reqAge,omitempty"` ReqMss2Identity *int32 `protobuf:"varint,21001,opt"`
ReqCityZoneId *int32 `protobuf:"varint,20041,opt,name=reqCityZoneId" json:"reqCityZoneId,omitempty"` ReqMss1Service *int32 `protobuf:"varint,21002,opt"`
ReqOin *int32 `protobuf:"varint,20056,opt,name=reqOin" json:"reqOin,omitempty"` ReqLflag *int32 `protobuf:"varint,21003,opt"`
ReqBubbleId *int32 `protobuf:"varint,20059,opt,name=reqBubbleId" json:"reqBubbleId,omitempty"` ReqExtFlag *int32 `protobuf:"varint,21004,opt"`
ReqMss2Identity *int32 `protobuf:"varint,21001,opt,name=reqMss2Identity" json:"reqMss2Identity,omitempty"` ReqBasicSvrFlag *int32 `protobuf:"varint,21006,opt"`
ReqMss1Service *int32 `protobuf:"varint,21002,opt,name=reqMss1Service" json:"reqMss1Service,omitempty"` ReqBasicCliFlag *int32 `protobuf:"varint,21007,opt"`
ReqLflag *int32 `protobuf:"varint,21003,opt,name=reqLflag" json:"reqLflag,omitempty"` ReqFullBirthday *int32 `protobuf:"varint,26004,opt"`
ReqExtFlag *int32 `protobuf:"varint,21004,opt,name=reqExtFlag" json:"reqExtFlag,omitempty"` ReqFullAge *int32 `protobuf:"varint,26005,opt"`
ReqBasicSvrFlag *int32 `protobuf:"varint,21006,opt,name=reqBasicSvrFlag" json:"reqBasicSvrFlag,omitempty"` ReqSimpleUpdateTime *int32 `protobuf:"varint,26010,opt"`
ReqBasicCliFlag *int32 `protobuf:"varint,21007,opt,name=reqBasicCliFlag" json:"reqBasicCliFlag,omitempty"` ReqMssUpdateTime *int32 `protobuf:"varint,26011,opt"`
ReqFullBirthday *int32 `protobuf:"varint,26004,opt,name=reqFullBirthday" json:"reqFullBirthday,omitempty"` ReqPstnMultiCallTime *int32 `protobuf:"varint,26012,opt"`
ReqFullAge *int32 `protobuf:"varint,26005,opt,name=reqFullAge" json:"reqFullAge,omitempty"` ReqPstnMultiLastGuideRechargeTime *int32 `protobuf:"varint,26013,opt"`
ReqSimpleUpdateTime *int32 `protobuf:"varint,26010,opt,name=reqSimpleUpdateTime" json:"reqSimpleUpdateTime,omitempty"` ReqPstnC2CCallTime *int32 `protobuf:"varint,26014,opt"`
ReqMssUpdateTime *int32 `protobuf:"varint,26011,opt,name=reqMssUpdateTime" json:"reqMssUpdateTime,omitempty"` ReqPstnC2CLastGuideRechargeTime *int32 `protobuf:"varint,26015,opt"`
ReqPstnMultiCallTime *int32 `protobuf:"varint,26012,opt,name=reqPstnMultiCallTime" json:"reqPstnMultiCallTime,omitempty"` ReqGroupMemCreditFlag *int32 `protobuf:"varint,27022,opt"`
ReqPstnMultiLastGuideRechargeTime *int32 `protobuf:"varint,26013,opt,name=reqPstnMultiLastGuideRechargeTime" json:"reqPstnMultiLastGuideRechargeTime,omitempty"` ReqFaceAddonId *int32 `protobuf:"varint,27025,opt"`
ReqPstnC2CCallTime *int32 `protobuf:"varint,26014,opt,name=reqPstnC2cCallTime" json:"reqPstnC2cCallTime,omitempty"` ReqMusicGene *int32 `protobuf:"varint,27026,opt"`
ReqPstnC2CLastGuideRechargeTime *int32 `protobuf:"varint,26015,opt,name=reqPstnC2cLastGuideRechargeTime" json:"reqPstnC2cLastGuideRechargeTime,omitempty"` ReqStrangerNick *int32 `protobuf:"varint,27034,opt"`
ReqGroupMemCreditFlag *int32 `protobuf:"varint,27022,opt,name=reqGroupMemCreditFlag" json:"reqGroupMemCreditFlag,omitempty"` ReqStrangerDeclare *int32 `protobuf:"varint,27035,opt"`
ReqFaceAddonId *int32 `protobuf:"varint,27025,opt,name=reqFaceAddonId" json:"reqFaceAddonId,omitempty"` ReqLoveStatus *int32 `protobuf:"varint,27036,opt"`
ReqMusicGene *int32 `protobuf:"varint,27026,opt,name=reqMusicGene" json:"reqMusicGene,omitempty"` ReqProfession *int32 `protobuf:"varint,27037,opt"`
ReqStrangerNick *int32 `protobuf:"varint,27034,opt,name=reqStrangerNick" json:"reqStrangerNick,omitempty"` ReqVasColorringFlag *int32 `protobuf:"varint,27041,opt"`
ReqStrangerDeclare *int32 `protobuf:"varint,27035,opt,name=reqStrangerDeclare" json:"reqStrangerDeclare,omitempty"` ReqCharm *int32 `protobuf:"varint,27052,opt"`
ReqLoveStatus *int32 `protobuf:"varint,27036,opt,name=reqLoveStatus" json:"reqLoveStatus,omitempty"` ReqApolloTimestamp *int32 `protobuf:"varint,27059,opt"`
ReqProfession *int32 `protobuf:"varint,27037,opt,name=reqProfession" json:"reqProfession,omitempty"` ReqVasFontIdFlag *int32 `protobuf:"varint,27201,opt"`
ReqVasColorringFlag *int32 `protobuf:"varint,27041,opt,name=reqVasColorringFlag" json:"reqVasColorringFlag,omitempty"` ReqGlobalGroupLevel *int32 `protobuf:"varint,27208,opt"`
ReqCharm *int32 `protobuf:"varint,27052,opt,name=reqCharm" json:"reqCharm,omitempty"` ReqInvite2GroupAutoAgreeFlag *int32 `protobuf:"varint,40346,opt"`
ReqApolloTimestamp *int32 `protobuf:"varint,27059,opt,name=reqApolloTimestamp" json:"reqApolloTimestamp,omitempty"` ReqSubaccountDisplayThirdQqFlag *int32 `protobuf:"varint,40348,opt"`
ReqVasFontIdFlag *int32 `protobuf:"varint,27201,opt,name=reqVasFontIdFlag" json:"reqVasFontIdFlag,omitempty"` NotifyPartakeLikeRankingListFlag *int32 `protobuf:"varint,40350,opt"`
ReqGlobalGroupLevel *int32 `protobuf:"varint,27208,opt,name=reqGlobalGroupLevel" json:"reqGlobalGroupLevel,omitempty"` ReqLightalkSwitch *int32 `protobuf:"varint,40506,opt"`
ReqInvite2GroupAutoAgreeFlag *int32 `protobuf:"varint,40346,opt,name=reqInvite2groupAutoAgreeFlag" json:"reqInvite2groupAutoAgreeFlag,omitempty"` ReqMusicRingVisible *int32 `protobuf:"varint,40507,opt"`
ReqSubaccountDisplayThirdQqFlag *int32 `protobuf:"varint,40348,opt,name=reqSubaccountDisplayThirdQqFlag" json:"reqSubaccountDisplayThirdQqFlag,omitempty"` ReqMusicRingAutoplay *int32 `protobuf:"varint,40508,opt"`
NotifyPartakeLikeRankingListFlag *int32 `protobuf:"varint,40350,opt,name=notifyPartakeLikeRankingListFlag" json:"notifyPartakeLikeRankingListFlag,omitempty"` ReqMusicRingRedpoint *int32 `protobuf:"varint,40509,opt"`
ReqLightalkSwitch *int32 `protobuf:"varint,40506,opt,name=reqLightalkSwitch" json:"reqLightalkSwitch,omitempty"` TorchDisableFlag *int32 `protobuf:"varint,40525,opt"`
ReqMusicRingVisible *int32 `protobuf:"varint,40507,opt,name=reqMusicRingVisible" json:"reqMusicRingVisible,omitempty"` ReqVasMagicfontFlag *int32 `protobuf:"varint,40530,opt"`
ReqMusicRingAutoplay *int32 `protobuf:"varint,40508,opt,name=reqMusicRingAutoplay" json:"reqMusicRingAutoplay,omitempty"` ReqVipFlag *int32 `protobuf:"varint,41756,opt"`
ReqMusicRingRedpoint *int32 `protobuf:"varint,40509,opt,name=reqMusicRingRedpoint" json:"reqMusicRingRedpoint,omitempty"` ReqAuthFlag *int32 `protobuf:"varint,41783,opt"`
TorchDisableFlag *int32 `protobuf:"varint,40525,opt,name=torchDisableFlag" json:"torchDisableFlag,omitempty"` ReqForbidFlag *int32 `protobuf:"varint,41784,opt"`
ReqVasMagicfontFlag *int32 `protobuf:"varint,40530,opt,name=reqVasMagicfontFlag" json:"reqVasMagicfontFlag,omitempty"` ReqGodForbid *int32 `protobuf:"varint,41804,opt"`
ReqVipFlag *int32 `protobuf:"varint,41756,opt,name=reqVipFlag" json:"reqVipFlag,omitempty"` ReqGodFlag *int32 `protobuf:"varint,41805,opt"`
ReqAuthFlag *int32 `protobuf:"varint,41783,opt,name=reqAuthFlag" json:"reqAuthFlag,omitempty"` ReqCharmLevel *int32 `protobuf:"varint,41950,opt"`
ReqForbidFlag *int32 `protobuf:"varint,41784,opt,name=reqForbidFlag" json:"reqForbidFlag,omitempty"` ReqCharmShown *int32 `protobuf:"varint,41973,opt"`
ReqGodForbid *int32 `protobuf:"varint,41804,opt,name=reqGodForbid" json:"reqGodForbid,omitempty"` ReqFreshnewsNotifyFlag *int32 `protobuf:"varint,41993,opt"`
ReqGodFlag *int32 `protobuf:"varint,41805,opt,name=reqGodFlag" json:"reqGodFlag,omitempty"` ReqApolloVipLevel *int32 `protobuf:"varint,41999,opt"`
ReqCharmLevel *int32 `protobuf:"varint,41950,opt,name=reqCharmLevel" json:"reqCharmLevel,omitempty"` ReqApolloVipFlag *int32 `protobuf:"varint,42003,opt"`
ReqCharmShown *int32 `protobuf:"varint,41973,opt,name=reqCharmShown" json:"reqCharmShown,omitempty"` ReqPstnC2CVip *int32 `protobuf:"varint,42005,opt"`
ReqFreshnewsNotifyFlag *int32 `protobuf:"varint,41993,opt,name=reqFreshnewsNotifyFlag" json:"reqFreshnewsNotifyFlag,omitempty"` ReqPstnMultiVip *int32 `protobuf:"varint,42006,opt"`
ReqApolloVipLevel *int32 `protobuf:"varint,41999,opt,name=reqApolloVipLevel" json:"reqApolloVipLevel,omitempty"` ReqPstnEverC2CVip *int32 `protobuf:"varint,42007,opt"`
ReqApolloVipFlag *int32 `protobuf:"varint,42003,opt,name=reqApolloVipFlag" json:"reqApolloVipFlag,omitempty"` ReqPstnEverMultiVip *int32 `protobuf:"varint,42008,opt"`
ReqPstnC2CVip *int32 `protobuf:"varint,42005,opt,name=reqPstnC2cVip" json:"reqPstnC2cVip,omitempty"` ReqPstnMultiTryFlag *int32 `protobuf:"varint,42011,opt"`
ReqPstnMultiVip *int32 `protobuf:"varint,42006,opt,name=reqPstnMultiVip" json:"reqPstnMultiVip,omitempty"` ReqPstnC2CTryFlag *int32 `protobuf:"varint,42012,opt"`
ReqPstnEverC2CVip *int32 `protobuf:"varint,42007,opt,name=reqPstnEverC2cVip" json:"reqPstnEverC2cVip,omitempty"` ReqSubscribeNearbyassistantSwitch *int32 `protobuf:"varint,42024,opt"`
ReqPstnEverMultiVip *int32 `protobuf:"varint,42008,opt,name=reqPstnEverMultiVip" json:"reqPstnEverMultiVip,omitempty"` ReqTorchbearerFlag *int32 `protobuf:"varint,42051,opt"`
ReqPstnMultiTryFlag *int32 `protobuf:"varint,42011,opt,name=reqPstnMultiTryFlag" json:"reqPstnMultiTryFlag,omitempty"` PreloadDisableFlag *int32 `protobuf:"varint,42073,opt"`
ReqPstnC2CTryFlag *int32 `protobuf:"varint,42012,opt,name=reqPstnC2cTryFlag" json:"reqPstnC2cTryFlag,omitempty"` ReqMedalwallFlag *int32 `protobuf:"varint,42075,opt"`
ReqSubscribeNearbyassistantSwitch *int32 `protobuf:"varint,42024,opt,name=reqSubscribeNearbyassistantSwitch" json:"reqSubscribeNearbyassistantSwitch,omitempty"` NotifyOnLikeRankingListFlag *int32 `protobuf:"varint,42092,opt"`
ReqTorchbearerFlag *int32 `protobuf:"varint,42051,opt,name=reqTorchbearerFlag" json:"reqTorchbearerFlag,omitempty"` ReqApolloStatus *int32 `protobuf:"varint,42980,opt"`
PreloadDisableFlag *int32 `protobuf:"varint,42073,opt,name=preloadDisableFlag" json:"preloadDisableFlag,omitempty"`
ReqMedalwallFlag *int32 `protobuf:"varint,42075,opt,name=reqMedalwallFlag" json:"reqMedalwallFlag,omitempty"`
NotifyOnLikeRankingListFlag *int32 `protobuf:"varint,42092,opt,name=notifyOnLikeRankingListFlag" json:"notifyOnLikeRankingListFlag,omitempty"`
ReqApolloStatus *int32 `protobuf:"varint,42980,opt,name=reqApolloStatus" json:"reqApolloStatus,omitempty"`
}
func (x *D5EBReqBody) Reset() {
*x = D5EBReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x5eb_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D5EBReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D5EBReqBody) ProtoMessage() {}
func (x *D5EBReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x5eb_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D5EBReqBody.ProtoReflect.Descriptor instead.
func (*D5EBReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x5eb_proto_rawDescGZIP(), []int{0}
} }
func (x *D5EBReqBody) GetUins() []uint64 { func (x *D5EBReqBody) GetUins() []uint64 {
@ -701,44 +647,8 @@ func (x *D5EBReqBody) GetReqApolloStatus() int32 {
} }
type D5EBRspBody struct { type D5EBRspBody struct {
state protoimpl.MessageState UinData []*UdcUinData `protobuf:"bytes,11,rep"`
sizeCache protoimpl.SizeCache UnfinishedUins []int64 `protobuf:"varint,12,rep"`
unknownFields protoimpl.UnknownFields
UinData []*UdcUinData `protobuf:"bytes,11,rep,name=uinData" json:"uinData,omitempty"`
UnfinishedUins []int64 `protobuf:"varint,12,rep,name=unfinishedUins" json:"unfinishedUins,omitempty"`
}
func (x *D5EBRspBody) Reset() {
*x = D5EBRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x5eb_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D5EBRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D5EBRspBody) ProtoMessage() {}
func (x *D5EBRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x5eb_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D5EBRspBody.ProtoReflect.Descriptor instead.
func (*D5EBRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x5eb_proto_rawDescGZIP(), []int{1}
} }
func (x *D5EBRspBody) GetUinData() []*UdcUinData { func (x *D5EBRspBody) GetUinData() []*UdcUinData {
@ -756,120 +666,84 @@ func (x *D5EBRspBody) GetUnfinishedUins() []int64 {
} }
type UdcUinData struct { type UdcUinData struct {
state protoimpl.MessageState Uin *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Openid []byte `protobuf:"bytes,4,opt"`
unknownFields protoimpl.UnknownFields Nick []byte `protobuf:"bytes,20002,opt"`
Country []byte `protobuf:"bytes,20003,opt"`
Uin *int64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"` Province []byte `protobuf:"bytes,20004,opt"`
Openid []byte `protobuf:"bytes,4,opt,name=openid" json:"openid,omitempty"` Gender *int32 `protobuf:"varint,20009,opt"`
Nick []byte `protobuf:"bytes,20002,opt,name=nick" json:"nick,omitempty"` Allow *int32 `protobuf:"varint,20014,opt"`
Country []byte `protobuf:"bytes,20003,opt,name=country" json:"country,omitempty"` FaceId *int32 `protobuf:"varint,20015,opt"`
Province []byte `protobuf:"bytes,20004,opt,name=province" json:"province,omitempty"` City []byte `protobuf:"bytes,20020,opt"`
Gender *int32 `protobuf:"varint,20009,opt,name=gender" json:"gender,omitempty"` Constellation *int32 `protobuf:"varint,20022,opt"`
Allow *int32 `protobuf:"varint,20014,opt,name=allow" json:"allow,omitempty"` CommonPlace1 *int32 `protobuf:"varint,20027,opt"`
FaceId *int32 `protobuf:"varint,20015,opt,name=faceId" json:"faceId,omitempty"` Mss3Bitmapextra []byte `protobuf:"bytes,20030,opt"`
City []byte `protobuf:"bytes,20020,opt,name=city" json:"city,omitempty"` Birthday []byte `protobuf:"bytes,20031,opt"`
Constellation *int32 `protobuf:"varint,20022,opt,name=constellation" json:"constellation,omitempty"` CityId []byte `protobuf:"bytes,20032,opt"`
CommonPlace1 *int32 `protobuf:"varint,20027,opt,name=commonPlace1" json:"commonPlace1,omitempty"` Lang1 *int32 `protobuf:"varint,20033,opt"`
Mss3Bitmapextra []byte `protobuf:"bytes,20030,opt,name=mss3Bitmapextra" json:"mss3Bitmapextra,omitempty"` Lang2 *int32 `protobuf:"varint,20034,opt"`
Birthday []byte `protobuf:"bytes,20031,opt,name=birthday" json:"birthday,omitempty"` Lang3 *int32 `protobuf:"varint,20035,opt"`
CityId []byte `protobuf:"bytes,20032,opt,name=cityId" json:"cityId,omitempty"` Age *int32 `protobuf:"varint,20037,opt"`
Lang1 *int32 `protobuf:"varint,20033,opt,name=lang1" json:"lang1,omitempty"` CityZoneId *int32 `protobuf:"varint,20041,opt"`
Lang2 *int32 `protobuf:"varint,20034,opt,name=lang2" json:"lang2,omitempty"` Oin *int32 `protobuf:"varint,20056,opt"`
Lang3 *int32 `protobuf:"varint,20035,opt,name=lang3" json:"lang3,omitempty"` BubbleId *int32 `protobuf:"varint,20059,opt"`
Age *int32 `protobuf:"varint,20037,opt,name=age" json:"age,omitempty"` Mss2Identity []byte `protobuf:"bytes,21001,opt"`
CityZoneId *int32 `protobuf:"varint,20041,opt,name=cityZoneId" json:"cityZoneId,omitempty"` Mss1Service []byte `protobuf:"bytes,21002,opt"`
Oin *int32 `protobuf:"varint,20056,opt,name=oin" json:"oin,omitempty"` Lflag *int32 `protobuf:"varint,21003,opt"`
BubbleId *int32 `protobuf:"varint,20059,opt,name=bubbleId" json:"bubbleId,omitempty"` ExtFlag *int32 `protobuf:"varint,21004,opt"`
Mss2Identity []byte `protobuf:"bytes,21001,opt,name=mss2Identity" json:"mss2Identity,omitempty"` BasicSvrFlag []byte `protobuf:"bytes,21006,opt"`
Mss1Service []byte `protobuf:"bytes,21002,opt,name=mss1Service" json:"mss1Service,omitempty"` BasicCliFlag []byte `protobuf:"bytes,21007,opt"`
Lflag *int32 `protobuf:"varint,21003,opt,name=lflag" json:"lflag,omitempty"` FullBirthday []byte `protobuf:"bytes,26004,opt"`
ExtFlag *int32 `protobuf:"varint,21004,opt,name=extFlag" json:"extFlag,omitempty"` FullAge []byte `protobuf:"bytes,26005,opt"`
BasicSvrFlag []byte `protobuf:"bytes,21006,opt,name=basicSvrFlag" json:"basicSvrFlag,omitempty"` SimpleUpdateTime *int32 `protobuf:"varint,26010,opt"`
BasicCliFlag []byte `protobuf:"bytes,21007,opt,name=basicCliFlag" json:"basicCliFlag,omitempty"` MssUpdateTime *int32 `protobuf:"varint,26011,opt"`
FullBirthday []byte `protobuf:"bytes,26004,opt,name=fullBirthday" json:"fullBirthday,omitempty"` PstnMultiCallTime *int32 `protobuf:"varint,26012,opt"`
FullAge []byte `protobuf:"bytes,26005,opt,name=fullAge" json:"fullAge,omitempty"` PstnMultiLastGuideRechargeTime *int32 `protobuf:"varint,26013,opt"`
SimpleUpdateTime *int32 `protobuf:"varint,26010,opt,name=simpleUpdateTime" json:"simpleUpdateTime,omitempty"` PstnC2CCallTime *int32 `protobuf:"varint,26014,opt"`
MssUpdateTime *int32 `protobuf:"varint,26011,opt,name=mssUpdateTime" json:"mssUpdateTime,omitempty"` PstnC2CLastGuideRechargeTime *int32 `protobuf:"varint,26015,opt"`
PstnMultiCallTime *int32 `protobuf:"varint,26012,opt,name=pstnMultiCallTime" json:"pstnMultiCallTime,omitempty"` GroupMemCreditFlag *int32 `protobuf:"varint,27022,opt"`
PstnMultiLastGuideRechargeTime *int32 `protobuf:"varint,26013,opt,name=pstnMultiLastGuideRechargeTime" json:"pstnMultiLastGuideRechargeTime,omitempty"` FaceAddonId *int64 `protobuf:"varint,27025,opt"`
PstnC2CCallTime *int32 `protobuf:"varint,26014,opt,name=pstnC2cCallTime" json:"pstnC2cCallTime,omitempty"` MusicGene []byte `protobuf:"bytes,27026,opt"`
PstnC2CLastGuideRechargeTime *int32 `protobuf:"varint,26015,opt,name=pstnC2cLastGuideRechargeTime" json:"pstnC2cLastGuideRechargeTime,omitempty"` StrangerNick []byte `protobuf:"bytes,27034,opt"`
GroupMemCreditFlag *int32 `protobuf:"varint,27022,opt,name=groupMemCreditFlag" json:"groupMemCreditFlag,omitempty"` StrangerDeclare []byte `protobuf:"bytes,27035,opt"`
FaceAddonId *int64 `protobuf:"varint,27025,opt,name=faceAddonId" json:"faceAddonId,omitempty"` LoveStatus *int32 `protobuf:"varint,27036,opt"`
MusicGene []byte `protobuf:"bytes,27026,opt,name=musicGene" json:"musicGene,omitempty"` Profession *int32 `protobuf:"varint,27037,opt"`
StrangerNick []byte `protobuf:"bytes,27034,opt,name=strangerNick" json:"strangerNick,omitempty"` VasColorringId *int32 `protobuf:"varint,27041,opt"`
StrangerDeclare []byte `protobuf:"bytes,27035,opt,name=strangerDeclare" json:"strangerDeclare,omitempty"` Charm *int32 `protobuf:"varint,27052,opt"`
LoveStatus *int32 `protobuf:"varint,27036,opt,name=loveStatus" json:"loveStatus,omitempty"` ApolloTimestamp *int32 `protobuf:"varint,27059,opt"`
Profession *int32 `protobuf:"varint,27037,opt,name=profession" json:"profession,omitempty"` VasFontId *int32 `protobuf:"varint,27201,opt"`
VasColorringId *int32 `protobuf:"varint,27041,opt,name=vasColorringId" json:"vasColorringId,omitempty"` GlobalGroupLevel *int32 `protobuf:"varint,27208,opt"`
Charm *int32 `protobuf:"varint,27052,opt,name=charm" json:"charm,omitempty"` ReqInvite2GroupAutoAgreeFlag *int32 `protobuf:"varint,40346,opt"`
ApolloTimestamp *int32 `protobuf:"varint,27059,opt,name=apolloTimestamp" json:"apolloTimestamp,omitempty"` SubaccountDisplayThirdQqFlag *int32 `protobuf:"varint,40348,opt"`
VasFontId *int32 `protobuf:"varint,27201,opt,name=vasFontId" json:"vasFontId,omitempty"` NotifyPartakeLikeRankingListFlag *int32 `protobuf:"varint,40350,opt"`
GlobalGroupLevel *int32 `protobuf:"varint,27208,opt,name=globalGroupLevel" json:"globalGroupLevel,omitempty"` LightalkSwitch *int32 `protobuf:"varint,40506,opt"`
ReqInvite2GroupAutoAgreeFlag *int32 `protobuf:"varint,40346,opt,name=reqInvite2groupAutoAgreeFlag" json:"reqInvite2groupAutoAgreeFlag,omitempty"` MusicRingVisible *int32 `protobuf:"varint,40507,opt"`
SubaccountDisplayThirdQqFlag *int32 `protobuf:"varint,40348,opt,name=subaccountDisplayThirdQqFlag" json:"subaccountDisplayThirdQqFlag,omitempty"` MusicRingAutoplay *int32 `protobuf:"varint,40508,opt"`
NotifyPartakeLikeRankingListFlag *int32 `protobuf:"varint,40350,opt,name=notifyPartakeLikeRankingListFlag" json:"notifyPartakeLikeRankingListFlag,omitempty"` MusicRingRedpoint *int32 `protobuf:"varint,40509,opt"`
LightalkSwitch *int32 `protobuf:"varint,40506,opt,name=lightalkSwitch" json:"lightalkSwitch,omitempty"` TorchDisableFlag *int32 `protobuf:"varint,40525,opt"`
MusicRingVisible *int32 `protobuf:"varint,40507,opt,name=musicRingVisible" json:"musicRingVisible,omitempty"` VasMagicfontFlag *int32 `protobuf:"varint,40530,opt"`
MusicRingAutoplay *int32 `protobuf:"varint,40508,opt,name=musicRingAutoplay" json:"musicRingAutoplay,omitempty"` VipFlag *int32 `protobuf:"varint,41756,opt"`
MusicRingRedpoint *int32 `protobuf:"varint,40509,opt,name=musicRingRedpoint" json:"musicRingRedpoint,omitempty"` AuthFlag *int32 `protobuf:"varint,41783,opt"`
TorchDisableFlag *int32 `protobuf:"varint,40525,opt,name=torchDisableFlag" json:"torchDisableFlag,omitempty"` ForbidFlag *int32 `protobuf:"varint,41784,opt"`
VasMagicfontFlag *int32 `protobuf:"varint,40530,opt,name=vasMagicfontFlag" json:"vasMagicfontFlag,omitempty"` GodForbid *int32 `protobuf:"varint,41804,opt"`
VipFlag *int32 `protobuf:"varint,41756,opt,name=vipFlag" json:"vipFlag,omitempty"` GodFlag *int32 `protobuf:"varint,41805,opt"`
AuthFlag *int32 `protobuf:"varint,41783,opt,name=authFlag" json:"authFlag,omitempty"` CharmLevel *int32 `protobuf:"varint,41950,opt"`
ForbidFlag *int32 `protobuf:"varint,41784,opt,name=forbidFlag" json:"forbidFlag,omitempty"` CharmShown *int32 `protobuf:"varint,41973,opt"`
GodForbid *int32 `protobuf:"varint,41804,opt,name=godForbid" json:"godForbid,omitempty"` FreshnewsNotifyFlag *int32 `protobuf:"varint,41993,opt"`
GodFlag *int32 `protobuf:"varint,41805,opt,name=godFlag" json:"godFlag,omitempty"` ApolloVipLevel *int32 `protobuf:"varint,41999,opt"`
CharmLevel *int32 `protobuf:"varint,41950,opt,name=charmLevel" json:"charmLevel,omitempty"` ApolloVipFlag *int32 `protobuf:"varint,42003,opt"`
CharmShown *int32 `protobuf:"varint,41973,opt,name=charmShown" json:"charmShown,omitempty"` PstnC2CVip *int32 `protobuf:"varint,42005,opt"`
FreshnewsNotifyFlag *int32 `protobuf:"varint,41993,opt,name=freshnewsNotifyFlag" json:"freshnewsNotifyFlag,omitempty"` PstnMultiVip *int32 `protobuf:"varint,42006,opt"`
ApolloVipLevel *int32 `protobuf:"varint,41999,opt,name=apolloVipLevel" json:"apolloVipLevel,omitempty"` PstnEverC2CVip *int32 `protobuf:"varint,42007,opt"`
ApolloVipFlag *int32 `protobuf:"varint,42003,opt,name=apolloVipFlag" json:"apolloVipFlag,omitempty"` PstnEverMultiVip *int32 `protobuf:"varint,42008,opt"`
PstnC2CVip *int32 `protobuf:"varint,42005,opt,name=pstnC2cVip" json:"pstnC2cVip,omitempty"` PstnMultiTryFlag *int32 `protobuf:"varint,42011,opt"`
PstnMultiVip *int32 `protobuf:"varint,42006,opt,name=pstnMultiVip" json:"pstnMultiVip,omitempty"` PstnC2CTryFlag *int32 `protobuf:"varint,42012,opt"`
PstnEverC2CVip *int32 `protobuf:"varint,42007,opt,name=pstnEverC2cVip" json:"pstnEverC2cVip,omitempty"` SubscribeNearbyassistantSwitch *int32 `protobuf:"varint,42024,opt"`
PstnEverMultiVip *int32 `protobuf:"varint,42008,opt,name=pstnEverMultiVip" json:"pstnEverMultiVip,omitempty"` TorchbearerFlag *int32 `protobuf:"varint,42051,opt"`
PstnMultiTryFlag *int32 `protobuf:"varint,42011,opt,name=pstnMultiTryFlag" json:"pstnMultiTryFlag,omitempty"` PreloadDisableFlag *int32 `protobuf:"varint,42073,opt"`
PstnC2CTryFlag *int32 `protobuf:"varint,42012,opt,name=pstnC2cTryFlag" json:"pstnC2cTryFlag,omitempty"` ReqMedalwallFlag *int32 `protobuf:"varint,42075,opt"`
SubscribeNearbyassistantSwitch *int32 `protobuf:"varint,42024,opt,name=subscribeNearbyassistantSwitch" json:"subscribeNearbyassistantSwitch,omitempty"` NotifyOnLikeRankingListFlag *int32 `protobuf:"varint,42092,opt"`
TorchbearerFlag *int32 `protobuf:"varint,42051,opt,name=torchbearerFlag" json:"torchbearerFlag,omitempty"` ApolloStatus *int32 `protobuf:"varint,42980,opt"`
PreloadDisableFlag *int32 `protobuf:"varint,42073,opt,name=preloadDisableFlag" json:"preloadDisableFlag,omitempty"`
ReqMedalwallFlag *int32 `protobuf:"varint,42075,opt,name=reqMedalwallFlag" json:"reqMedalwallFlag,omitempty"`
NotifyOnLikeRankingListFlag *int32 `protobuf:"varint,42092,opt,name=notifyOnLikeRankingListFlag" json:"notifyOnLikeRankingListFlag,omitempty"`
ApolloStatus *int32 `protobuf:"varint,42980,opt,name=apolloStatus" json:"apolloStatus,omitempty"`
}
func (x *UdcUinData) Reset() {
*x = UdcUinData{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x5eb_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UdcUinData) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UdcUinData) ProtoMessage() {}
func (x *UdcUinData) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x5eb_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UdcUinData.ProtoReflect.Descriptor instead.
func (*UdcUinData) Descriptor() ([]byte, []int) {
return file_oidb0x5eb_proto_rawDescGZIP(), []int{2}
} }
func (x *UdcUinData) GetUin() int64 { func (x *UdcUinData) GetUin() int64 {
@ -1417,519 +1291,3 @@ func (x *UdcUinData) GetApolloStatus() int32 {
} }
return 0 return 0
} }
var File_oidb0x5eb_proto protoreflect.FileDescriptor
var file_oidb0x5eb_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x35, 0x65, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xdb, 0x1b, 0x0a, 0x0b, 0x44, 0x35, 0x45, 0x42, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x69, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x04, 0x52,
0x04, 0x75, 0x69, 0x6e, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x6d, 0x61, 0x78, 0x5f, 0x70, 0x61, 0x63,
0x6b, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x0e, 0x6d, 0x61, 0x78, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0c, 0x52,
0x06, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64,
0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1a, 0x0a,
0x07, 0x72, 0x65, 0x71, 0x4e, 0x69, 0x63, 0x6b, 0x18, 0xa2, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x07, 0x72, 0x65, 0x71, 0x4e, 0x69, 0x63, 0x6b, 0x12, 0x20, 0x0a, 0x0a, 0x72, 0x65, 0x71,
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0xa3, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x0a, 0x72, 0x65, 0x71, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x22, 0x0a, 0x0b, 0x72,
0x65, 0x71, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0xa4, 0x9c, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12,
0x1e, 0x0a, 0x09, 0x72, 0x65, 0x71, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0xa9, 0x9c, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x72, 0x65, 0x71, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12,
0x1c, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x18, 0xae, 0x9c, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x08, 0x72, 0x65, 0x71, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x1e, 0x0a,
0x09, 0x72, 0x65, 0x71, 0x46, 0x61, 0x63, 0x65, 0x49, 0x64, 0x18, 0xaf, 0x9c, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x09, 0x72, 0x65, 0x71, 0x46, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a,
0x07, 0x72, 0x65, 0x71, 0x43, 0x69, 0x74, 0x79, 0x18, 0xb4, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x07, 0x72, 0x65, 0x71, 0x43, 0x69, 0x74, 0x79, 0x12, 0x2c, 0x0a, 0x10, 0x72, 0x65, 0x71,
0x43, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xb6, 0x9c,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x72, 0x65, 0x71, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x65,
0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x43, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x31, 0x18, 0xbb, 0x9c, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0f, 0x72, 0x65, 0x71, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x6c, 0x61,
0x63, 0x65, 0x31, 0x12, 0x30, 0x0a, 0x12, 0x72, 0x65, 0x71, 0x4d, 0x73, 0x73, 0x33, 0x42, 0x69,
0x74, 0x6d, 0x61, 0x70, 0x65, 0x78, 0x74, 0x72, 0x61, 0x18, 0xbe, 0x9c, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x12, 0x72, 0x65, 0x71, 0x4d, 0x73, 0x73, 0x33, 0x42, 0x69, 0x74, 0x6d, 0x61, 0x70,
0x65, 0x78, 0x74, 0x72, 0x61, 0x12, 0x22, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x42, 0x69, 0x72, 0x74,
0x68, 0x64, 0x61, 0x79, 0x18, 0xbf, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x72, 0x65,
0x71, 0x42, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x1e, 0x0a, 0x09, 0x72, 0x65, 0x71,
0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x18, 0xc0, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
0x72, 0x65, 0x71, 0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x08, 0x72, 0x65, 0x71,
0x4c, 0x61, 0x6e, 0x67, 0x31, 0x18, 0xc1, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72,
0x65, 0x71, 0x4c, 0x61, 0x6e, 0x67, 0x31, 0x12, 0x1c, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x4c, 0x61,
0x6e, 0x67, 0x32, 0x18, 0xc2, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72, 0x65, 0x71,
0x4c, 0x61, 0x6e, 0x67, 0x32, 0x12, 0x1c, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x4c, 0x61, 0x6e, 0x67,
0x33, 0x18, 0xc3, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72, 0x65, 0x71, 0x4c, 0x61,
0x6e, 0x67, 0x33, 0x12, 0x18, 0x0a, 0x06, 0x72, 0x65, 0x71, 0x41, 0x67, 0x65, 0x18, 0xc5, 0x9c,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72, 0x65, 0x71, 0x41, 0x67, 0x65, 0x12, 0x26, 0x0a,
0x0d, 0x72, 0x65, 0x71, 0x43, 0x69, 0x74, 0x79, 0x5a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x18, 0xc9,
0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x43, 0x69, 0x74, 0x79, 0x5a,
0x6f, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x06, 0x72, 0x65, 0x71, 0x4f, 0x69, 0x6e, 0x18,
0xd8, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72, 0x65, 0x71, 0x4f, 0x69, 0x6e, 0x12,
0x22, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x42, 0x75, 0x62, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x18, 0xdb,
0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x42, 0x75, 0x62, 0x62, 0x6c,
0x65, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x4d, 0x73, 0x73, 0x32, 0x49, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x89, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f,
0x72, 0x65, 0x71, 0x4d, 0x73, 0x73, 0x32, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12,
0x28, 0x0a, 0x0e, 0x72, 0x65, 0x71, 0x4d, 0x73, 0x73, 0x31, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x18, 0x8a, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65, 0x71, 0x4d, 0x73,
0x73, 0x31, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x08, 0x72, 0x65, 0x71,
0x4c, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x8b, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72,
0x65, 0x71, 0x4c, 0x66, 0x6c, 0x61, 0x67, 0x12, 0x20, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x45, 0x78,
0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8c, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x72,
0x65, 0x71, 0x45, 0x78, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x0f, 0x72, 0x65, 0x71,
0x42, 0x61, 0x73, 0x69, 0x63, 0x53, 0x76, 0x72, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8e, 0xa4, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x72, 0x65, 0x71, 0x42, 0x61, 0x73, 0x69, 0x63, 0x53, 0x76,
0x72, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x42, 0x61, 0x73, 0x69,
0x63, 0x43, 0x6c, 0x69, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8f, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x0f, 0x72, 0x65, 0x71, 0x42, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6c, 0x69, 0x46, 0x6c, 0x61,
0x67, 0x12, 0x2a, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x46, 0x75, 0x6c, 0x6c, 0x42, 0x69, 0x72, 0x74,
0x68, 0x64, 0x61, 0x79, 0x18, 0x94, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x72, 0x65,
0x71, 0x46, 0x75, 0x6c, 0x6c, 0x42, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x20, 0x0a,
0x0a, 0x72, 0x65, 0x71, 0x46, 0x75, 0x6c, 0x6c, 0x41, 0x67, 0x65, 0x18, 0x95, 0xcb, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x0a, 0x72, 0x65, 0x71, 0x46, 0x75, 0x6c, 0x6c, 0x41, 0x67, 0x65, 0x12,
0x32, 0x0a, 0x13, 0x72, 0x65, 0x71, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x55, 0x70, 0x64, 0x61,
0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9a, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13,
0x72, 0x65, 0x71, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54,
0x69, 0x6d, 0x65, 0x12, 0x2c, 0x0a, 0x10, 0x72, 0x65, 0x71, 0x4d, 0x73, 0x73, 0x55, 0x70, 0x64,
0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9b, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x10, 0x72, 0x65, 0x71, 0x4d, 0x73, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
0x65, 0x12, 0x34, 0x0a, 0x14, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74,
0x69, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9c, 0xcb, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x14, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x43,
0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x4e, 0x0a, 0x21, 0x72, 0x65, 0x71, 0x50, 0x73,
0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4c, 0x61, 0x73, 0x74, 0x47, 0x75, 0x69, 0x64, 0x65,
0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9d, 0xcb, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x21, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c,
0x74, 0x69, 0x4c, 0x61, 0x73, 0x74, 0x47, 0x75, 0x69, 0x64, 0x65, 0x52, 0x65, 0x63, 0x68, 0x61,
0x72, 0x67, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x30, 0x0a, 0x12, 0x72, 0x65, 0x71, 0x50, 0x73,
0x74, 0x6e, 0x43, 0x32, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9e, 0xcb,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x43, 0x32,
0x63, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x4a, 0x0a, 0x1f, 0x72, 0x65, 0x71,
0x50, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x4c, 0x61, 0x73, 0x74, 0x47, 0x75, 0x69, 0x64, 0x65,
0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9f, 0xcb, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x1f, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63,
0x4c, 0x61, 0x73, 0x74, 0x47, 0x75, 0x69, 0x64, 0x65, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x36, 0x0a, 0x15, 0x72, 0x65, 0x71, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x4d, 0x65, 0x6d, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8e,
0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x72, 0x65, 0x71, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x4d, 0x65, 0x6d, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x28, 0x0a,
0x0e, 0x72, 0x65, 0x71, 0x46, 0x61, 0x63, 0x65, 0x41, 0x64, 0x64, 0x6f, 0x6e, 0x49, 0x64, 0x18,
0x91, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65, 0x71, 0x46, 0x61, 0x63, 0x65,
0x41, 0x64, 0x64, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x4d, 0x75,
0x73, 0x69, 0x63, 0x47, 0x65, 0x6e, 0x65, 0x18, 0x92, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x0c, 0x72, 0x65, 0x71, 0x4d, 0x75, 0x73, 0x69, 0x63, 0x47, 0x65, 0x6e, 0x65, 0x12, 0x2a, 0x0a,
0x0f, 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x72, 0x4e, 0x69, 0x63, 0x6b,
0x18, 0x9a, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x72, 0x65, 0x71, 0x53, 0x74, 0x72,
0x61, 0x6e, 0x67, 0x65, 0x72, 0x4e, 0x69, 0x63, 0x6b, 0x12, 0x30, 0x0a, 0x12, 0x72, 0x65, 0x71,
0x53, 0x74, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x72, 0x44, 0x65, 0x63, 0x6c, 0x61, 0x72, 0x65, 0x18,
0x9b, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, 0x61,
0x6e, 0x67, 0x65, 0x72, 0x44, 0x65, 0x63, 0x6c, 0x61, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0d, 0x72,
0x65, 0x71, 0x4c, 0x6f, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x9c, 0xd3, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x4c, 0x6f, 0x76, 0x65, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x50, 0x72, 0x6f, 0x66, 0x65, 0x73,
0x73, 0x69, 0x6f, 0x6e, 0x18, 0x9d, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65,
0x71, 0x50, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x13, 0x72,
0x65, 0x71, 0x56, 0x61, 0x73, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x6c,
0x61, 0x67, 0x18, 0xa1, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x72, 0x65, 0x71, 0x56,
0x61, 0x73, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x6c, 0x61, 0x67, 0x12,
0x1c, 0x0a, 0x08, 0x72, 0x65, 0x71, 0x43, 0x68, 0x61, 0x72, 0x6d, 0x18, 0xac, 0xd3, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x08, 0x72, 0x65, 0x71, 0x43, 0x68, 0x61, 0x72, 0x6d, 0x12, 0x30, 0x0a,
0x12, 0x72, 0x65, 0x71, 0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
0x61, 0x6d, 0x70, 0x18, 0xb3, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x72, 0x65, 0x71,
0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12,
0x2c, 0x0a, 0x10, 0x72, 0x65, 0x71, 0x56, 0x61, 0x73, 0x46, 0x6f, 0x6e, 0x74, 0x49, 0x64, 0x46,
0x6c, 0x61, 0x67, 0x18, 0xc1, 0xd4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x72, 0x65, 0x71,
0x56, 0x61, 0x73, 0x46, 0x6f, 0x6e, 0x74, 0x49, 0x64, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x32, 0x0a,
0x13, 0x72, 0x65, 0x71, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c,
0x65, 0x76, 0x65, 0x6c, 0x18, 0xc8, 0xd4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x72, 0x65,
0x71, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65,
0x6c, 0x12, 0x44, 0x0a, 0x1c, 0x72, 0x65, 0x71, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x32, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x41, 0x75, 0x74, 0x6f, 0x41, 0x67, 0x72, 0x65, 0x65, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x9a, 0xbb, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1c, 0x72, 0x65, 0x71, 0x49, 0x6e,
0x76, 0x69, 0x74, 0x65, 0x32, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x75, 0x74, 0x6f, 0x41, 0x67,
0x72, 0x65, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x4a, 0x0a, 0x1f, 0x72, 0x65, 0x71, 0x53, 0x75,
0x62, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x54,
0x68, 0x69, 0x72, 0x64, 0x51, 0x71, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x9c, 0xbb, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x1f, 0x72, 0x65, 0x71, 0x53, 0x75, 0x62, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x54, 0x68, 0x69, 0x72, 0x64, 0x51, 0x71, 0x46,
0x6c, 0x61, 0x67, 0x12, 0x4c, 0x0a, 0x20, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x50, 0x61, 0x72,
0x74, 0x61, 0x6b, 0x65, 0x4c, 0x69, 0x6b, 0x65, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x4c,
0x69, 0x73, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x9e, 0xbb, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x20, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x50, 0x61, 0x72, 0x74, 0x61, 0x6b, 0x65, 0x4c, 0x69,
0x6b, 0x65, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x61,
0x67, 0x12, 0x2e, 0x0a, 0x11, 0x72, 0x65, 0x71, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x6c, 0x6b,
0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0xba, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11,
0x72, 0x65, 0x71, 0x4c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x6c, 0x6b, 0x53, 0x77, 0x69, 0x74, 0x63,
0x68, 0x12, 0x32, 0x0a, 0x13, 0x72, 0x65, 0x71, 0x4d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e,
0x67, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x18, 0xbb, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x13, 0x72, 0x65, 0x71, 0x4d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x56, 0x69,
0x73, 0x69, 0x62, 0x6c, 0x65, 0x12, 0x34, 0x0a, 0x14, 0x72, 0x65, 0x71, 0x4d, 0x75, 0x73, 0x69,
0x63, 0x52, 0x69, 0x6e, 0x67, 0x41, 0x75, 0x74, 0x6f, 0x70, 0x6c, 0x61, 0x79, 0x18, 0xbc, 0xbc,
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x14, 0x72, 0x65, 0x71, 0x4d, 0x75, 0x73, 0x69, 0x63, 0x52,
0x69, 0x6e, 0x67, 0x41, 0x75, 0x74, 0x6f, 0x70, 0x6c, 0x61, 0x79, 0x12, 0x34, 0x0a, 0x14, 0x72,
0x65, 0x71, 0x4d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x64, 0x70, 0x6f,
0x69, 0x6e, 0x74, 0x18, 0xbd, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x14, 0x72, 0x65, 0x71,
0x4d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x64, 0x70, 0x6f, 0x69, 0x6e,
0x74, 0x12, 0x2c, 0x0a, 0x10, 0x74, 0x6f, 0x72, 0x63, 0x68, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
0x65, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xcd, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x74,
0x6f, 0x72, 0x63, 0x68, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x12,
0x32, 0x0a, 0x13, 0x72, 0x65, 0x71, 0x56, 0x61, 0x73, 0x4d, 0x61, 0x67, 0x69, 0x63, 0x66, 0x6f,
0x6e, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xd2, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13,
0x72, 0x65, 0x71, 0x56, 0x61, 0x73, 0x4d, 0x61, 0x67, 0x69, 0x63, 0x66, 0x6f, 0x6e, 0x74, 0x46,
0x6c, 0x61, 0x67, 0x12, 0x20, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x56, 0x69, 0x70, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x9c, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x72, 0x65, 0x71, 0x56, 0x69,
0x70, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x22, 0x0a, 0x0b, 0x72, 0x65, 0x71, 0x41, 0x75, 0x74, 0x68,
0x46, 0x6c, 0x61, 0x67, 0x18, 0xb7, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x72, 0x65,
0x71, 0x41, 0x75, 0x74, 0x68, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x26, 0x0a, 0x0d, 0x72, 0x65, 0x71,
0x46, 0x6f, 0x72, 0x62, 0x69, 0x64, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xb8, 0xc6, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x46, 0x6f, 0x72, 0x62, 0x69, 0x64, 0x46, 0x6c, 0x61,
0x67, 0x12, 0x24, 0x0a, 0x0c, 0x72, 0x65, 0x71, 0x47, 0x6f, 0x64, 0x46, 0x6f, 0x72, 0x62, 0x69,
0x64, 0x18, 0xcc, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x47, 0x6f,
0x64, 0x46, 0x6f, 0x72, 0x62, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x47, 0x6f,
0x64, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xcd, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x72,
0x65, 0x71, 0x47, 0x6f, 0x64, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x26, 0x0a, 0x0d, 0x72, 0x65, 0x71,
0x43, 0x68, 0x61, 0x72, 0x6d, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0xde, 0xc7, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x43, 0x68, 0x61, 0x72, 0x6d, 0x4c, 0x65, 0x76, 0x65,
0x6c, 0x12, 0x26, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x43, 0x68, 0x61, 0x72, 0x6d, 0x53, 0x68, 0x6f,
0x77, 0x6e, 0x18, 0xf5, 0xc7, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x43,
0x68, 0x61, 0x72, 0x6d, 0x53, 0x68, 0x6f, 0x77, 0x6e, 0x12, 0x38, 0x0a, 0x16, 0x72, 0x65, 0x71,
0x46, 0x72, 0x65, 0x73, 0x68, 0x6e, 0x65, 0x77, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x46,
0x6c, 0x61, 0x67, 0x18, 0x89, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x72, 0x65, 0x71,
0x46, 0x72, 0x65, 0x73, 0x68, 0x6e, 0x65, 0x77, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x46,
0x6c, 0x61, 0x67, 0x12, 0x2e, 0x0a, 0x11, 0x72, 0x65, 0x71, 0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f,
0x56, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x8f, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x11, 0x72, 0x65, 0x71, 0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x56, 0x69, 0x70, 0x4c, 0x65,
0x76, 0x65, 0x6c, 0x12, 0x2c, 0x0a, 0x10, 0x72, 0x65, 0x71, 0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f,
0x56, 0x69, 0x70, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x93, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x10, 0x72, 0x65, 0x71, 0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x56, 0x69, 0x70, 0x46, 0x6c, 0x61,
0x67, 0x12, 0x26, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x56,
0x69, 0x70, 0x18, 0x95, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x50,
0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x56, 0x69, 0x70, 0x12, 0x2a, 0x0a, 0x0f, 0x72, 0x65, 0x71,
0x50, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x56, 0x69, 0x70, 0x18, 0x96, 0xc8, 0x02,
0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c,
0x74, 0x69, 0x56, 0x69, 0x70, 0x12, 0x2e, 0x0a, 0x11, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e,
0x45, 0x76, 0x65, 0x72, 0x43, 0x32, 0x63, 0x56, 0x69, 0x70, 0x18, 0x97, 0xc8, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x11, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x45, 0x76, 0x65, 0x72, 0x43,
0x32, 0x63, 0x56, 0x69, 0x70, 0x12, 0x32, 0x0a, 0x13, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e,
0x45, 0x76, 0x65, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x56, 0x69, 0x70, 0x18, 0x98, 0xc8, 0x02,
0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x45, 0x76, 0x65,
0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x56, 0x69, 0x70, 0x12, 0x32, 0x0a, 0x13, 0x72, 0x65, 0x71,
0x50, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x54, 0x72, 0x79, 0x46, 0x6c, 0x61, 0x67,
0x18, 0x9b, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74,
0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x54, 0x72, 0x79, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x2e, 0x0a,
0x11, 0x72, 0x65, 0x71, 0x50, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x54, 0x72, 0x79, 0x46, 0x6c,
0x61, 0x67, 0x18, 0x9c, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x72, 0x65, 0x71, 0x50,
0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x54, 0x72, 0x79, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x4e, 0x0a,
0x21, 0x72, 0x65, 0x71, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4e, 0x65, 0x61,
0x72, 0x62, 0x79, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x77, 0x69, 0x74,
0x63, 0x68, 0x18, 0xa8, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x21, 0x72, 0x65, 0x71, 0x53,
0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x61, 0x73,
0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x30, 0x0a,
0x12, 0x72, 0x65, 0x71, 0x54, 0x6f, 0x72, 0x63, 0x68, 0x62, 0x65, 0x61, 0x72, 0x65, 0x72, 0x46,
0x6c, 0x61, 0x67, 0x18, 0xc3, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x72, 0x65, 0x71,
0x54, 0x6f, 0x72, 0x63, 0x68, 0x62, 0x65, 0x61, 0x72, 0x65, 0x72, 0x46, 0x6c, 0x61, 0x67, 0x12,
0x30, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c,
0x65, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xd9, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x70,
0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x6c, 0x61,
0x67, 0x12, 0x2c, 0x0a, 0x10, 0x72, 0x65, 0x71, 0x4d, 0x65, 0x64, 0x61, 0x6c, 0x77, 0x61, 0x6c,
0x6c, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xdb, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x72,
0x65, 0x71, 0x4d, 0x65, 0x64, 0x61, 0x6c, 0x77, 0x61, 0x6c, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x12,
0x42, 0x0a, 0x1b, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x4f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x52,
0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xec,
0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1b, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x4f, 0x6e,
0x4c, 0x69, 0x6b, 0x65, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x46,
0x6c, 0x61, 0x67, 0x12, 0x2a, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0xe4, 0xcf, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f,
0x72, 0x65, 0x71, 0x41, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22,
0x5c, 0x0a, 0x0b, 0x44, 0x35, 0x45, 0x42, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x25,
0x0a, 0x07, 0x75, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x0b, 0x2e, 0x55, 0x64, 0x63, 0x55, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x52, 0x07, 0x75, 0x69,
0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x6e, 0x66, 0x69, 0x6e, 0x69, 0x73,
0x68, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0e, 0x75,
0x6e, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x73, 0x22, 0xe8, 0x17,
0x0a, 0x0a, 0x55, 0x64, 0x63, 0x55, 0x69, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x12, 0x10, 0x0a, 0x03,
0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x16,
0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06,
0x6f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x18, 0xa2,
0x9c, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x69, 0x63, 0x6b, 0x12, 0x1a, 0x0a, 0x07,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0xa3, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1c, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76,
0x69, 0x6e, 0x63, 0x65, 0x18, 0xa4, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x70, 0x72,
0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72,
0x18, 0xa9, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72,
0x12, 0x16, 0x0a, 0x05, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x18, 0xae, 0x9c, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x05, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x18, 0x0a, 0x06, 0x66, 0x61, 0x63, 0x65,
0x49, 0x64, 0x18, 0xaf, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x61, 0x63, 0x65,
0x49, 0x64, 0x12, 0x14, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0xb4, 0x9c, 0x01, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x26, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xb6, 0x9c, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x12, 0x24, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x31,
0x18, 0xbb, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x50, 0x6c, 0x61, 0x63, 0x65, 0x31, 0x12, 0x2a, 0x0a, 0x0f, 0x6d, 0x73, 0x73, 0x33, 0x42, 0x69,
0x74, 0x6d, 0x61, 0x70, 0x65, 0x78, 0x74, 0x72, 0x61, 0x18, 0xbe, 0x9c, 0x01, 0x20, 0x01, 0x28,
0x0c, 0x52, 0x0f, 0x6d, 0x73, 0x73, 0x33, 0x42, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x65, 0x78, 0x74,
0x72, 0x61, 0x12, 0x1c, 0x0a, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x18, 0xbf,
0x9c, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79,
0x12, 0x18, 0x0a, 0x06, 0x63, 0x69, 0x74, 0x79, 0x49, 0x64, 0x18, 0xc0, 0x9c, 0x01, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x06, 0x63, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x05, 0x6c, 0x61,
0x6e, 0x67, 0x31, 0x18, 0xc1, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x61, 0x6e,
0x67, 0x31, 0x12, 0x16, 0x0a, 0x05, 0x6c, 0x61, 0x6e, 0x67, 0x32, 0x18, 0xc2, 0x9c, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x61, 0x6e, 0x67, 0x32, 0x12, 0x16, 0x0a, 0x05, 0x6c, 0x61,
0x6e, 0x67, 0x33, 0x18, 0xc3, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x61, 0x6e,
0x67, 0x33, 0x12, 0x12, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0xc5, 0x9c, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x20, 0x0a, 0x0a, 0x63, 0x69, 0x74, 0x79, 0x5a, 0x6f,
0x6e, 0x65, 0x49, 0x64, 0x18, 0xc9, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x63, 0x69,
0x74, 0x79, 0x5a, 0x6f, 0x6e, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x03, 0x6f, 0x69, 0x6e, 0x18,
0xd8, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6f, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x08,
0x62, 0x75, 0x62, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x18, 0xdb, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x08, 0x62, 0x75, 0x62, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0c, 0x6d, 0x73,
0x73, 0x32, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x18, 0x89, 0xa4, 0x01, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x0c, 0x6d, 0x73, 0x73, 0x32, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79,
0x12, 0x22, 0x0a, 0x0b, 0x6d, 0x73, 0x73, 0x31, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18,
0x8a, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x6d, 0x73, 0x73, 0x31, 0x53, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x05, 0x6c, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x8b, 0xa4,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x66, 0x6c, 0x61, 0x67, 0x12, 0x1a, 0x0a, 0x07,
0x65, 0x78, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8c, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x07, 0x65, 0x78, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x24, 0x0a, 0x0c, 0x62, 0x61, 0x73, 0x69,
0x63, 0x53, 0x76, 0x72, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8e, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x0c,
0x52, 0x0c, 0x62, 0x61, 0x73, 0x69, 0x63, 0x53, 0x76, 0x72, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x24,
0x0a, 0x0c, 0x62, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6c, 0x69, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8f,
0xa4, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x62, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6c, 0x69,
0x46, 0x6c, 0x61, 0x67, 0x12, 0x24, 0x0a, 0x0c, 0x66, 0x75, 0x6c, 0x6c, 0x42, 0x69, 0x72, 0x74,
0x68, 0x64, 0x61, 0x79, 0x18, 0x94, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x66, 0x75,
0x6c, 0x6c, 0x42, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x79, 0x12, 0x1a, 0x0a, 0x07, 0x66, 0x75,
0x6c, 0x6c, 0x41, 0x67, 0x65, 0x18, 0x95, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x66,
0x75, 0x6c, 0x6c, 0x41, 0x67, 0x65, 0x12, 0x2c, 0x0a, 0x10, 0x73, 0x69, 0x6d, 0x70, 0x6c, 0x65,
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9a, 0xcb, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x10, 0x73, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0d, 0x6d, 0x73, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74,
0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9b, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6d,
0x73, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x11,
0x70, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d,
0x65, 0x18, 0x9c, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x70, 0x73, 0x74, 0x6e, 0x4d,
0x75, 0x6c, 0x74, 0x69, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x1e,
0x70, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x4c, 0x61, 0x73, 0x74, 0x47, 0x75, 0x69,
0x64, 0x65, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9d,
0xcb, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1e, 0x70, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74,
0x69, 0x4c, 0x61, 0x73, 0x74, 0x47, 0x75, 0x69, 0x64, 0x65, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
0x67, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x0f, 0x70, 0x73, 0x74, 0x6e, 0x43, 0x32,
0x63, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x9e, 0xcb, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x0f, 0x70, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x69,
0x6d, 0x65, 0x12, 0x44, 0x0a, 0x1c, 0x70, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x4c, 0x61, 0x73,
0x74, 0x47, 0x75, 0x69, 0x64, 0x65, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x69,
0x6d, 0x65, 0x18, 0x9f, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1c, 0x70, 0x73, 0x74, 0x6e,
0x43, 0x32, 0x63, 0x4c, 0x61, 0x73, 0x74, 0x47, 0x75, 0x69, 0x64, 0x65, 0x52, 0x65, 0x63, 0x68,
0x61, 0x72, 0x67, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x30, 0x0a, 0x12, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x4d, 0x65, 0x6d, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x8e,
0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4d, 0x65, 0x6d,
0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x22, 0x0a, 0x0b, 0x66, 0x61,
0x63, 0x65, 0x41, 0x64, 0x64, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x91, 0xd3, 0x01, 0x20, 0x01, 0x28,
0x03, 0x52, 0x0b, 0x66, 0x61, 0x63, 0x65, 0x41, 0x64, 0x64, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e,
0x0a, 0x09, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x47, 0x65, 0x6e, 0x65, 0x18, 0x92, 0xd3, 0x01, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x09, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x47, 0x65, 0x6e, 0x65, 0x12, 0x24,
0x0a, 0x0c, 0x73, 0x74, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x72, 0x4e, 0x69, 0x63, 0x6b, 0x18, 0x9a,
0xd3, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x73, 0x74, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x72,
0x4e, 0x69, 0x63, 0x6b, 0x12, 0x2a, 0x0a, 0x0f, 0x73, 0x74, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x72,
0x44, 0x65, 0x63, 0x6c, 0x61, 0x72, 0x65, 0x18, 0x9b, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x0f, 0x73, 0x74, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x72, 0x44, 0x65, 0x63, 0x6c, 0x61, 0x72, 0x65,
0x12, 0x20, 0x0a, 0x0a, 0x6c, 0x6f, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x9c,
0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x6c, 0x6f, 0x76, 0x65, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x12, 0x20, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
0x18, 0x9d, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x66, 0x65, 0x73,
0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x0e, 0x76, 0x61, 0x73, 0x43, 0x6f, 0x6c, 0x6f, 0x72,
0x72, 0x69, 0x6e, 0x67, 0x49, 0x64, 0x18, 0xa1, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e,
0x76, 0x61, 0x73, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x72, 0x69, 0x6e, 0x67, 0x49, 0x64, 0x12, 0x16,
0x0a, 0x05, 0x63, 0x68, 0x61, 0x72, 0x6d, 0x18, 0xac, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x05, 0x63, 0x68, 0x61, 0x72, 0x6d, 0x12, 0x2a, 0x0a, 0x0f, 0x61, 0x70, 0x6f, 0x6c, 0x6c, 0x6f,
0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0xb3, 0xd3, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x0f, 0x61, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
0x6d, 0x70, 0x12, 0x1e, 0x0a, 0x09, 0x76, 0x61, 0x73, 0x46, 0x6f, 0x6e, 0x74, 0x49, 0x64, 0x18,
0xc1, 0xd4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x61, 0x73, 0x46, 0x6f, 0x6e, 0x74,
0x49, 0x64, 0x12, 0x2c, 0x0a, 0x10, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0xc8, 0xd4, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10,
0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x12, 0x44, 0x0a, 0x1c, 0x72, 0x65, 0x71, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x32, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x41, 0x75, 0x74, 0x6f, 0x41, 0x67, 0x72, 0x65, 0x65, 0x46, 0x6c, 0x61, 0x67,
0x18, 0x9a, 0xbb, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1c, 0x72, 0x65, 0x71, 0x49, 0x6e, 0x76,
0x69, 0x74, 0x65, 0x32, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x75, 0x74, 0x6f, 0x41, 0x67, 0x72,
0x65, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x44, 0x0a, 0x1c, 0x73, 0x75, 0x62, 0x61, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x54, 0x68, 0x69, 0x72, 0x64,
0x51, 0x71, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x9c, 0xbb, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1c,
0x73, 0x75, 0x62, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61,
0x79, 0x54, 0x68, 0x69, 0x72, 0x64, 0x51, 0x71, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x4c, 0x0a, 0x20,
0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x50, 0x61, 0x72, 0x74, 0x61, 0x6b, 0x65, 0x4c, 0x69, 0x6b,
0x65, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x61, 0x67,
0x18, 0x9e, 0xbb, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x20, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79,
0x50, 0x61, 0x72, 0x74, 0x61, 0x6b, 0x65, 0x4c, 0x69, 0x6b, 0x65, 0x52, 0x61, 0x6e, 0x6b, 0x69,
0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x28, 0x0a, 0x0e, 0x6c, 0x69,
0x67, 0x68, 0x74, 0x61, 0x6c, 0x6b, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0xba, 0xbc, 0x02,
0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x61, 0x6c, 0x6b, 0x53, 0x77,
0x69, 0x74, 0x63, 0x68, 0x12, 0x2c, 0x0a, 0x10, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e,
0x67, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x18, 0xbb, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x10, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x56, 0x69, 0x73, 0x69, 0x62,
0x6c, 0x65, 0x12, 0x2e, 0x0a, 0x11, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x41,
0x75, 0x74, 0x6f, 0x70, 0x6c, 0x61, 0x79, 0x18, 0xbc, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x11, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x41, 0x75, 0x74, 0x6f, 0x70, 0x6c,
0x61, 0x79, 0x12, 0x2e, 0x0a, 0x11, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x52,
0x65, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0xbd, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x11, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x52, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x64, 0x70, 0x6f, 0x69,
0x6e, 0x74, 0x12, 0x2c, 0x0a, 0x10, 0x74, 0x6f, 0x72, 0x63, 0x68, 0x44, 0x69, 0x73, 0x61, 0x62,
0x6c, 0x65, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xcd, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10,
0x74, 0x6f, 0x72, 0x63, 0x68, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x6c, 0x61, 0x67,
0x12, 0x2c, 0x0a, 0x10, 0x76, 0x61, 0x73, 0x4d, 0x61, 0x67, 0x69, 0x63, 0x66, 0x6f, 0x6e, 0x74,
0x46, 0x6c, 0x61, 0x67, 0x18, 0xd2, 0xbc, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x76, 0x61,
0x73, 0x4d, 0x61, 0x67, 0x69, 0x63, 0x66, 0x6f, 0x6e, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x1a,
0x0a, 0x07, 0x76, 0x69, 0x70, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x9c, 0xc6, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x07, 0x76, 0x69, 0x70, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x1c, 0x0a, 0x08, 0x61, 0x75,
0x74, 0x68, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xb7, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
0x61, 0x75, 0x74, 0x68, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x20, 0x0a, 0x0a, 0x66, 0x6f, 0x72, 0x62,
0x69, 0x64, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xb8, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
0x66, 0x6f, 0x72, 0x62, 0x69, 0x64, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x1e, 0x0a, 0x09, 0x67, 0x6f,
0x64, 0x46, 0x6f, 0x72, 0x62, 0x69, 0x64, 0x18, 0xcc, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x09, 0x67, 0x6f, 0x64, 0x46, 0x6f, 0x72, 0x62, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x07, 0x67, 0x6f,
0x64, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xcd, 0xc6, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x67,
0x6f, 0x64, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x20, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x72, 0x6d, 0x4c,
0x65, 0x76, 0x65, 0x6c, 0x18, 0xde, 0xc7, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x63, 0x68,
0x61, 0x72, 0x6d, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x72,
0x6d, 0x53, 0x68, 0x6f, 0x77, 0x6e, 0x18, 0xf5, 0xc7, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
0x63, 0x68, 0x61, 0x72, 0x6d, 0x53, 0x68, 0x6f, 0x77, 0x6e, 0x12, 0x32, 0x0a, 0x13, 0x66, 0x72,
0x65, 0x73, 0x68, 0x6e, 0x65, 0x77, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x89, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x66, 0x72, 0x65, 0x73, 0x68,
0x6e, 0x65, 0x77, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x28,
0x0a, 0x0e, 0x61, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x56, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x18, 0x8f, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x61, 0x70, 0x6f, 0x6c, 0x6c, 0x6f,
0x56, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x26, 0x0a, 0x0d, 0x61, 0x70, 0x6f, 0x6c,
0x6c, 0x6f, 0x56, 0x69, 0x70, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x93, 0xc8, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x0d, 0x61, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x56, 0x69, 0x70, 0x46, 0x6c, 0x61, 0x67,
0x12, 0x20, 0x0a, 0x0a, 0x70, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x56, 0x69, 0x70, 0x18, 0x95,
0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x56,
0x69, 0x70, 0x12, 0x24, 0x0a, 0x0c, 0x70, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x56,
0x69, 0x70, 0x18, 0x96, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x70, 0x73, 0x74, 0x6e,
0x4d, 0x75, 0x6c, 0x74, 0x69, 0x56, 0x69, 0x70, 0x12, 0x28, 0x0a, 0x0e, 0x70, 0x73, 0x74, 0x6e,
0x45, 0x76, 0x65, 0x72, 0x43, 0x32, 0x63, 0x56, 0x69, 0x70, 0x18, 0x97, 0xc8, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0e, 0x70, 0x73, 0x74, 0x6e, 0x45, 0x76, 0x65, 0x72, 0x43, 0x32, 0x63, 0x56,
0x69, 0x70, 0x12, 0x2c, 0x0a, 0x10, 0x70, 0x73, 0x74, 0x6e, 0x45, 0x76, 0x65, 0x72, 0x4d, 0x75,
0x6c, 0x74, 0x69, 0x56, 0x69, 0x70, 0x18, 0x98, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10,
0x70, 0x73, 0x74, 0x6e, 0x45, 0x76, 0x65, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x56, 0x69, 0x70,
0x12, 0x2c, 0x0a, 0x10, 0x70, 0x73, 0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x54, 0x72, 0x79,
0x46, 0x6c, 0x61, 0x67, 0x18, 0x9b, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x70, 0x73,
0x74, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x54, 0x72, 0x79, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x28,
0x0a, 0x0e, 0x70, 0x73, 0x74, 0x6e, 0x43, 0x32, 0x63, 0x54, 0x72, 0x79, 0x46, 0x6c, 0x61, 0x67,
0x18, 0x9c, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x70, 0x73, 0x74, 0x6e, 0x43, 0x32,
0x63, 0x54, 0x72, 0x79, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x48, 0x0a, 0x1e, 0x73, 0x75, 0x62, 0x73,
0x63, 0x72, 0x69, 0x62, 0x65, 0x4e, 0x65, 0x61, 0x72, 0x62, 0x79, 0x61, 0x73, 0x73, 0x69, 0x73,
0x74, 0x61, 0x6e, 0x74, 0x53, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0xa8, 0xc8, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x1e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x4e, 0x65, 0x61,
0x72, 0x62, 0x79, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x77, 0x69, 0x74,
0x63, 0x68, 0x12, 0x2a, 0x0a, 0x0f, 0x74, 0x6f, 0x72, 0x63, 0x68, 0x62, 0x65, 0x61, 0x72, 0x65,
0x72, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xc3, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x74,
0x6f, 0x72, 0x63, 0x68, 0x62, 0x65, 0x61, 0x72, 0x65, 0x72, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x30,
0x0a, 0x12, 0x70, 0x72, 0x65, 0x6c, 0x6f, 0x61, 0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
0x46, 0x6c, 0x61, 0x67, 0x18, 0xd9, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x70, 0x72,
0x65, 0x6c, 0x6f, 0x61, 0x64, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x46, 0x6c, 0x61, 0x67,
0x12, 0x2c, 0x0a, 0x10, 0x72, 0x65, 0x71, 0x4d, 0x65, 0x64, 0x61, 0x6c, 0x77, 0x61, 0x6c, 0x6c,
0x46, 0x6c, 0x61, 0x67, 0x18, 0xdb, 0xc8, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x72, 0x65,
0x71, 0x4d, 0x65, 0x64, 0x61, 0x6c, 0x77, 0x61, 0x6c, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x42,
0x0a, 0x1b, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x4f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x52, 0x61,
0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x18, 0xec, 0xc8,
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1b, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x4f, 0x6e, 0x4c,
0x69, 0x6b, 0x65, 0x52, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c,
0x61, 0x67, 0x12, 0x24, 0x0a, 0x0c, 0x61, 0x70, 0x6f, 0x6c, 0x6c, 0x6f, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x18, 0xe4, 0xcf, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x61, 0x70, 0x6f, 0x6c,
0x6c, 0x6f, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f,
0x69, 0x64, 0x62,
}
var (
file_oidb0x5eb_proto_rawDescOnce sync.Once
file_oidb0x5eb_proto_rawDescData = file_oidb0x5eb_proto_rawDesc
)
func file_oidb0x5eb_proto_rawDescGZIP() []byte {
file_oidb0x5eb_proto_rawDescOnce.Do(func() {
file_oidb0x5eb_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0x5eb_proto_rawDescData)
})
return file_oidb0x5eb_proto_rawDescData
}
var file_oidb0x5eb_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
var file_oidb0x5eb_proto_goTypes = []interface{}{
(*D5EBReqBody)(nil), // 0: D5EBReqBody
(*D5EBRspBody)(nil), // 1: D5EBRspBody
(*UdcUinData)(nil), // 2: UdcUinData
}
var file_oidb0x5eb_proto_depIdxs = []int32{
2, // 0: D5EBRspBody.uinData:type_name -> UdcUinData
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
1, // [1:1] is the sub-list for extension extendee
0, // [0:1] is the sub-list for field type_name
}
func init() { file_oidb0x5eb_proto_init() }
func file_oidb0x5eb_proto_init() {
if File_oidb0x5eb_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0x5eb_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D5EBReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x5eb_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D5EBRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x5eb_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UdcUinData); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0x5eb_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0x5eb_proto_goTypes,
DependencyIndexes: file_oidb0x5eb_proto_depIdxs,
MessageInfos: file_oidb0x5eb_proto_msgTypes,
}.Build()
File_oidb0x5eb_proto = out.File
file_oidb0x5eb_proto_rawDesc = nil
file_oidb0x5eb_proto_goTypes = nil
file_oidb0x5eb_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,67 +1,13 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0x6d7.proto // source: oidb0x6d7.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type CreateFolderReqBody struct { type CreateFolderReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields ParentFolderId *string `protobuf:"bytes,3,opt"`
FolderName *string `protobuf:"bytes,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"`
ParentFolderId *string `protobuf:"bytes,3,opt,name=parentFolderId" json:"parentFolderId,omitempty"`
FolderName *string `protobuf:"bytes,4,opt,name=folderName" json:"folderName,omitempty"`
}
func (x *CreateFolderReqBody) Reset() {
*x = CreateFolderReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateFolderReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateFolderReqBody) ProtoMessage() {}
func (x *CreateFolderReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateFolderReqBody.ProtoReflect.Descriptor instead.
func (*CreateFolderReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{0}
} }
func (x *CreateFolderReqBody) GetGroupCode() uint64 { func (x *CreateFolderReqBody) GetGroupCode() uint64 {
@ -93,45 +39,9 @@ func (x *CreateFolderReqBody) GetFolderName() string {
} }
type CreateFolderRspBody struct { type CreateFolderRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"` // optional group_file_common.FolderInfo folderInfo = 4;
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"` // optional group_file_common.FolderInfo folderInfo = 4;
}
func (x *CreateFolderRspBody) Reset() {
*x = CreateFolderRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CreateFolderRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CreateFolderRspBody) ProtoMessage() {}
func (x *CreateFolderRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CreateFolderRspBody.ProtoReflect.Descriptor instead.
func (*CreateFolderRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{1}
} }
func (x *CreateFolderRspBody) GetRetCode() int32 { func (x *CreateFolderRspBody) GetRetCode() int32 {
@ -156,45 +66,9 @@ func (x *CreateFolderRspBody) GetClientWording() string {
} }
type DeleteFolderReqBody struct { type DeleteFolderReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields FolderId *string `protobuf:"bytes,3,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"`
FolderId *string `protobuf:"bytes,3,opt,name=folderId" json:"folderId,omitempty"`
}
func (x *DeleteFolderReqBody) Reset() {
*x = DeleteFolderReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteFolderReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteFolderReqBody) ProtoMessage() {}
func (x *DeleteFolderReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteFolderReqBody.ProtoReflect.Descriptor instead.
func (*DeleteFolderReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{2}
} }
func (x *DeleteFolderReqBody) GetGroupCode() uint64 { func (x *DeleteFolderReqBody) GetGroupCode() uint64 {
@ -219,45 +93,9 @@ func (x *DeleteFolderReqBody) GetFolderId() string {
} }
type DeleteFolderRspBody struct { type DeleteFolderRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"`
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"`
}
func (x *DeleteFolderRspBody) Reset() {
*x = DeleteFolderRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DeleteFolderRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DeleteFolderRspBody) ProtoMessage() {}
func (x *DeleteFolderRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DeleteFolderRspBody.ProtoReflect.Descriptor instead.
func (*DeleteFolderRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{3}
} }
func (x *DeleteFolderRspBody) GetRetCode() int32 { func (x *DeleteFolderRspBody) GetRetCode() int32 {
@ -282,47 +120,11 @@ func (x *DeleteFolderRspBody) GetClientWording() string {
} }
type MoveFolderReqBody struct { type MoveFolderReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields FolderId *string `protobuf:"bytes,3,opt"`
ParentFolderId *string `protobuf:"bytes,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"` DestFolderId *string `protobuf:"bytes,5,opt"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"`
FolderId *string `protobuf:"bytes,3,opt,name=folderId" json:"folderId,omitempty"`
ParentFolderId *string `protobuf:"bytes,4,opt,name=parentFolderId" json:"parentFolderId,omitempty"`
DestFolderId *string `protobuf:"bytes,5,opt,name=destFolderId" json:"destFolderId,omitempty"`
}
func (x *MoveFolderReqBody) Reset() {
*x = MoveFolderReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MoveFolderReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MoveFolderReqBody) ProtoMessage() {}
func (x *MoveFolderReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MoveFolderReqBody.ProtoReflect.Descriptor instead.
func (*MoveFolderReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{4}
} }
func (x *MoveFolderReqBody) GetGroupCode() uint64 { func (x *MoveFolderReqBody) GetGroupCode() uint64 {
@ -361,45 +163,9 @@ func (x *MoveFolderReqBody) GetDestFolderId() string {
} }
type MoveFolderRspBody struct { type MoveFolderRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"` // optional group_file_common.FolderInfo folderInfo = 4;
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"` // optional group_file_common.FolderInfo folderInfo = 4;
}
func (x *MoveFolderRspBody) Reset() {
*x = MoveFolderRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *MoveFolderRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*MoveFolderRspBody) ProtoMessage() {}
func (x *MoveFolderRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use MoveFolderRspBody.ProtoReflect.Descriptor instead.
func (*MoveFolderRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{5}
} }
func (x *MoveFolderRspBody) GetRetCode() int32 { func (x *MoveFolderRspBody) GetRetCode() int32 {
@ -424,46 +190,10 @@ func (x *MoveFolderRspBody) GetClientWording() string {
} }
type RenameFolderReqBody struct { type RenameFolderReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields FolderId *string `protobuf:"bytes,3,opt"`
NewFolderName *string `protobuf:"bytes,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"`
FolderId *string `protobuf:"bytes,3,opt,name=folderId" json:"folderId,omitempty"`
NewFolderName *string `protobuf:"bytes,4,opt,name=newFolderName" json:"newFolderName,omitempty"`
}
func (x *RenameFolderReqBody) Reset() {
*x = RenameFolderReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RenameFolderReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RenameFolderReqBody) ProtoMessage() {}
func (x *RenameFolderReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RenameFolderReqBody.ProtoReflect.Descriptor instead.
func (*RenameFolderReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{6}
} }
func (x *RenameFolderReqBody) GetGroupCode() uint64 { func (x *RenameFolderReqBody) GetGroupCode() uint64 {
@ -495,45 +225,9 @@ func (x *RenameFolderReqBody) GetNewFolderName() string {
} }
type RenameFolderRspBody struct { type RenameFolderRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"` // optional group_file_common.FolderInfo folderInfo = 4;
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"` // optional group_file_common.FolderInfo folderInfo = 4;
}
func (x *RenameFolderRspBody) Reset() {
*x = RenameFolderRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *RenameFolderRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*RenameFolderRspBody) ProtoMessage() {}
func (x *RenameFolderRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use RenameFolderRspBody.ProtoReflect.Descriptor instead.
func (*RenameFolderRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{7}
} }
func (x *RenameFolderRspBody) GetRetCode() int32 { func (x *RenameFolderRspBody) GetRetCode() int32 {
@ -558,46 +252,10 @@ func (x *RenameFolderRspBody) GetClientWording() string {
} }
type D6D7ReqBody struct { type D6D7ReqBody struct {
state protoimpl.MessageState CreateFolderReq *CreateFolderReqBody `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache DeleteFolderReq *DeleteFolderReqBody `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields RenameFolderReq *RenameFolderReqBody `protobuf:"bytes,3,opt"`
MoveFolderReq *MoveFolderReqBody `protobuf:"bytes,4,opt"`
CreateFolderReq *CreateFolderReqBody `protobuf:"bytes,1,opt,name=createFolderReq" json:"createFolderReq,omitempty"`
DeleteFolderReq *DeleteFolderReqBody `protobuf:"bytes,2,opt,name=deleteFolderReq" json:"deleteFolderReq,omitempty"`
RenameFolderReq *RenameFolderReqBody `protobuf:"bytes,3,opt,name=renameFolderReq" json:"renameFolderReq,omitempty"`
MoveFolderReq *MoveFolderReqBody `protobuf:"bytes,4,opt,name=moveFolderReq" json:"moveFolderReq,omitempty"`
}
func (x *D6D7ReqBody) Reset() {
*x = D6D7ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D6D7ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D6D7ReqBody) ProtoMessage() {}
func (x *D6D7ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D6D7ReqBody.ProtoReflect.Descriptor instead.
func (*D6D7ReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{8}
} }
func (x *D6D7ReqBody) GetCreateFolderReq() *CreateFolderReqBody { func (x *D6D7ReqBody) GetCreateFolderReq() *CreateFolderReqBody {
@ -629,46 +287,10 @@ func (x *D6D7ReqBody) GetMoveFolderReq() *MoveFolderReqBody {
} }
type D6D7RspBody struct { type D6D7RspBody struct {
state protoimpl.MessageState CreateFolderRsp *CreateFolderRspBody `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache DeleteFolderRsp *DeleteFolderRspBody `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields RenameFolderRsp *RenameFolderRspBody `protobuf:"bytes,3,opt"`
MoveFolderRsp *MoveFolderRspBody `protobuf:"bytes,4,opt"`
CreateFolderRsp *CreateFolderRspBody `protobuf:"bytes,1,opt,name=createFolderRsp" json:"createFolderRsp,omitempty"`
DeleteFolderRsp *DeleteFolderRspBody `protobuf:"bytes,2,opt,name=deleteFolderRsp" json:"deleteFolderRsp,omitempty"`
RenameFolderRsp *RenameFolderRspBody `protobuf:"bytes,3,opt,name=renameFolderRsp" json:"renameFolderRsp,omitempty"`
MoveFolderRsp *MoveFolderRspBody `protobuf:"bytes,4,opt,name=moveFolderRsp" json:"moveFolderRsp,omitempty"`
}
func (x *D6D7RspBody) Reset() {
*x = D6D7RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d7_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D6D7RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D6D7RspBody) ProtoMessage() {}
func (x *D6D7RspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d7_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D6D7RspBody.ProtoReflect.Descriptor instead.
func (*D6D7RspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d7_proto_rawDescGZIP(), []int{9}
} }
func (x *D6D7RspBody) GetCreateFolderRsp() *CreateFolderRspBody { func (x *D6D7RspBody) GetCreateFolderRsp() *CreateFolderRspBody {
@ -698,295 +320,3 @@ func (x *D6D7RspBody) GetMoveFolderRsp() *MoveFolderRspBody {
} }
return nil return nil
} }
var File_oidb0x6d7_proto protoreflect.FileDescriptor
var file_oidb0x6d7_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x36, 0x64, 0x37, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0x91, 0x01, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x26, 0x0a,
0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x46, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x4e,
0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x6f, 0x6c, 0x64, 0x65,
0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x6d, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46,
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a, 0x07,
0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72,
0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73, 0x67,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x12, 0x24,
0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72,
0x64, 0x69, 0x6e, 0x67, 0x22, 0x65, 0x0a, 0x13, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x6f,
0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09,
0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
0x1a, 0x0a, 0x08, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x08, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6d, 0x0a, 0x13, 0x44,
0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f,
0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06,
0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65,
0x74, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f,
0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x22, 0xaf, 0x01, 0x0a, 0x11, 0x4d,
0x6f, 0x76, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79,
0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14,
0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61,
0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64,
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64,
0x12, 0x26, 0x0a, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x74,
0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
0x64, 0x65, 0x73, 0x74, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x11,
0x4d, 0x6f, 0x76, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72,
0x65, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x74,
0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72,
0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6c, 0x69, 0x65,
0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x22, 0x8b, 0x01, 0x0a, 0x13, 0x52, 0x65,
0x6e, 0x61, 0x6d, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12,
0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05,
0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49,
0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49,
0x64, 0x12, 0x24, 0x0a, 0x0d, 0x6e, 0x65, 0x77, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x4e, 0x61,
0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6e, 0x65, 0x77, 0x46, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x6d, 0x0a, 0x13, 0x52, 0x65, 0x6e, 0x61, 0x6d,
0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18,
0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x74, 0x4d,
0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73, 0x67,
0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e,
0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57,
0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x22, 0x87, 0x02, 0x0a, 0x0b, 0x44, 0x36, 0x44, 0x37, 0x52,
0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x3e, 0x0a, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x14, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65,
0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x3e, 0x0a, 0x0f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x14, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65,
0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x3e, 0x0a, 0x0f, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65,
0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x14, 0x2e, 0x52, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65,
0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0f, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x38, 0x0a, 0x0d, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x6f,
0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e,
0x4d, 0x6f, 0x76, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x52, 0x0d, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71,
0x22, 0x87, 0x02, 0x0a, 0x0b, 0x44, 0x36, 0x44, 0x37, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79,
0x12, 0x3e, 0x0a, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x52, 0x73, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x43, 0x72, 0x65, 0x61,
0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52,
0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70,
0x12, 0x3e, 0x0a, 0x0f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x52, 0x73, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x44, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52,
0x0f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70,
0x12, 0x3e, 0x0a, 0x0f, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x52, 0x73, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x52, 0x65, 0x6e, 0x61,
0x6d, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52,
0x0f, 0x72, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70,
0x12, 0x38, 0x0a, 0x0d, 0x6d, 0x6f, 0x76, 0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73,
0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x4d, 0x6f, 0x76, 0x65, 0x46, 0x6f,
0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0d, 0x6d, 0x6f, 0x76,
0x65, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x52, 0x73, 0x70, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f,
0x3b, 0x6f, 0x69, 0x64, 0x62,
}
var (
file_oidb0x6d7_proto_rawDescOnce sync.Once
file_oidb0x6d7_proto_rawDescData = file_oidb0x6d7_proto_rawDesc
)
func file_oidb0x6d7_proto_rawDescGZIP() []byte {
file_oidb0x6d7_proto_rawDescOnce.Do(func() {
file_oidb0x6d7_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0x6d7_proto_rawDescData)
})
return file_oidb0x6d7_proto_rawDescData
}
var file_oidb0x6d7_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
var file_oidb0x6d7_proto_goTypes = []interface{}{
(*CreateFolderReqBody)(nil), // 0: CreateFolderReqBody
(*CreateFolderRspBody)(nil), // 1: CreateFolderRspBody
(*DeleteFolderReqBody)(nil), // 2: DeleteFolderReqBody
(*DeleteFolderRspBody)(nil), // 3: DeleteFolderRspBody
(*MoveFolderReqBody)(nil), // 4: MoveFolderReqBody
(*MoveFolderRspBody)(nil), // 5: MoveFolderRspBody
(*RenameFolderReqBody)(nil), // 6: RenameFolderReqBody
(*RenameFolderRspBody)(nil), // 7: RenameFolderRspBody
(*D6D7ReqBody)(nil), // 8: D6D7ReqBody
(*D6D7RspBody)(nil), // 9: D6D7RspBody
}
var file_oidb0x6d7_proto_depIdxs = []int32{
0, // 0: D6D7ReqBody.createFolderReq:type_name -> CreateFolderReqBody
2, // 1: D6D7ReqBody.deleteFolderReq:type_name -> DeleteFolderReqBody
6, // 2: D6D7ReqBody.renameFolderReq:type_name -> RenameFolderReqBody
4, // 3: D6D7ReqBody.moveFolderReq:type_name -> MoveFolderReqBody
1, // 4: D6D7RspBody.createFolderRsp:type_name -> CreateFolderRspBody
3, // 5: D6D7RspBody.deleteFolderRsp:type_name -> DeleteFolderRspBody
7, // 6: D6D7RspBody.renameFolderRsp:type_name -> RenameFolderRspBody
5, // 7: D6D7RspBody.moveFolderRsp:type_name -> MoveFolderRspBody
8, // [8:8] is the sub-list for method output_type
8, // [8:8] is the sub-list for method input_type
8, // [8:8] is the sub-list for extension type_name
8, // [8:8] is the sub-list for extension extendee
0, // [0:8] is the sub-list for field type_name
}
func init() { file_oidb0x6d7_proto_init() }
func file_oidb0x6d7_proto_init() {
if File_oidb0x6d7_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0x6d7_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateFolderReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CreateFolderRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeleteFolderReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeleteFolderRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MoveFolderReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MoveFolderRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RenameFolderReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RenameFolderRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D6D7ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d7_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D6D7RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0x6d7_proto_rawDesc,
NumEnums: 0,
NumMessages: 10,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0x6d7_proto_goTypes,
DependencyIndexes: file_oidb0x6d7_proto_depIdxs,
MessageInfos: file_oidb0x6d7_proto_msgTypes,
}.Build()
File_oidb0x6d7_proto = out.File
file_oidb0x6d7_proto_rawDesc = nil
file_oidb0x6d7_proto_goTypes = nil
file_oidb0x6d7_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,68 +1,14 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0x6d9.proto // source: oidb0x6d9.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type GroupFileFeedsInfo struct { type GroupFileFeedsInfo struct {
state protoimpl.MessageState BusId *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache FileId *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields MsgRandom *uint32 `protobuf:"varint,3,opt"`
Ext []byte `protobuf:"bytes,4,opt"`
BusId *uint32 `protobuf:"varint,1,opt,name=busId" json:"busId,omitempty"` FeedFlag *uint32 `protobuf:"varint,5,opt"`
FileId *string `protobuf:"bytes,2,opt,name=fileId" json:"fileId,omitempty"`
MsgRandom *uint32 `protobuf:"varint,3,opt,name=msgRandom" json:"msgRandom,omitempty"`
Ext []byte `protobuf:"bytes,4,opt,name=ext" json:"ext,omitempty"`
FeedFlag *uint32 `protobuf:"varint,5,opt,name=feedFlag" json:"feedFlag,omitempty"`
}
func (x *GroupFileFeedsInfo) Reset() {
*x = GroupFileFeedsInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GroupFileFeedsInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GroupFileFeedsInfo) ProtoMessage() {}
func (x *GroupFileFeedsInfo) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GroupFileFeedsInfo.ProtoReflect.Descriptor instead.
func (*GroupFileFeedsInfo) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{0}
} }
func (x *GroupFileFeedsInfo) GetBusId() uint32 { func (x *GroupFileFeedsInfo) GetBusId() uint32 {
@ -101,54 +47,18 @@ func (x *GroupFileFeedsInfo) GetFeedFlag() uint32 {
} }
type CopyFromReqBody struct { type CopyFromReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields SrcBusId *uint32 `protobuf:"varint,3,opt"`
SrcParentFolder []byte `protobuf:"bytes,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"` SrcFilePath []byte `protobuf:"bytes,5,opt"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"` DstBusId *uint32 `protobuf:"varint,6,opt"`
SrcBusId *uint32 `protobuf:"varint,3,opt,name=srcBusId" json:"srcBusId,omitempty"` DstFolderId []byte `protobuf:"bytes,7,opt"`
SrcParentFolder []byte `protobuf:"bytes,4,opt,name=srcParentFolder" json:"srcParentFolder,omitempty"` FileSize *uint64 `protobuf:"varint,8,opt"`
SrcFilePath []byte `protobuf:"bytes,5,opt,name=srcFilePath" json:"srcFilePath,omitempty"` LocalPath *string `protobuf:"bytes,9,opt"`
DstBusId *uint32 `protobuf:"varint,6,opt,name=dstBusId" json:"dstBusId,omitempty"` FileName *string `protobuf:"bytes,10,opt"`
DstFolderId []byte `protobuf:"bytes,7,opt,name=dstFolderId" json:"dstFolderId,omitempty"` SrcUin *uint64 `protobuf:"varint,11,opt"`
FileSize *uint64 `protobuf:"varint,8,opt,name=fileSize" json:"fileSize,omitempty"` Md5 []byte `protobuf:"bytes,12,opt"`
LocalPath *string `protobuf:"bytes,9,opt,name=localPath" json:"localPath,omitempty"`
FileName *string `protobuf:"bytes,10,opt,name=fileName" json:"fileName,omitempty"`
SrcUin *uint64 `protobuf:"varint,11,opt,name=srcUin" json:"srcUin,omitempty"`
Md5 []byte `protobuf:"bytes,12,opt,name=md5" json:"md5,omitempty"`
}
func (x *CopyFromReqBody) Reset() {
*x = CopyFromReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CopyFromReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CopyFromReqBody) ProtoMessage() {}
func (x *CopyFromReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CopyFromReqBody.ProtoReflect.Descriptor instead.
func (*CopyFromReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{1}
} }
func (x *CopyFromReqBody) GetGroupCode() uint64 { func (x *CopyFromReqBody) GetGroupCode() uint64 {
@ -236,47 +146,11 @@ func (x *CopyFromReqBody) GetMd5() []byte {
} }
type CopyFromRspBody struct { type CopyFromRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"`
SaveFilePath []byte `protobuf:"bytes,4,opt"`
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"` BusId *uint32 `protobuf:"varint,5,opt"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"`
SaveFilePath []byte `protobuf:"bytes,4,opt,name=saveFilePath" json:"saveFilePath,omitempty"`
BusId *uint32 `protobuf:"varint,5,opt,name=busId" json:"busId,omitempty"`
}
func (x *CopyFromRspBody) Reset() {
*x = CopyFromRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CopyFromRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CopyFromRspBody) ProtoMessage() {}
func (x *CopyFromRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CopyFromRspBody.ProtoReflect.Descriptor instead.
func (*CopyFromRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{2}
} }
func (x *CopyFromRspBody) GetRetCode() int32 { func (x *CopyFromRspBody) GetRetCode() int32 {
@ -315,53 +189,17 @@ func (x *CopyFromRspBody) GetBusId() uint32 {
} }
type CopyToReqBody struct { type CopyToReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields SrcBusId *uint32 `protobuf:"varint,3,opt"`
SrcFileId *string `protobuf:"bytes,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"` DstBusId *uint32 `protobuf:"varint,5,opt"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"` DstUin *uint64 `protobuf:"varint,6,opt"`
SrcBusId *uint32 `protobuf:"varint,3,opt,name=srcBusId" json:"srcBusId,omitempty"` NewFileName *string `protobuf:"bytes,40,opt"`
SrcFileId *string `protobuf:"bytes,4,opt,name=srcFileId" json:"srcFileId,omitempty"` TimCloudPdirKey []byte `protobuf:"bytes,100,opt"`
DstBusId *uint32 `protobuf:"varint,5,opt,name=dstBusId" json:"dstBusId,omitempty"` TimCloudPpdirKey []byte `protobuf:"bytes,101,opt"`
DstUin *uint64 `protobuf:"varint,6,opt,name=dstUin" json:"dstUin,omitempty"` TimCloudExtensionInfo []byte `protobuf:"bytes,102,opt"`
NewFileName *string `protobuf:"bytes,40,opt,name=newFileName" json:"newFileName,omitempty"` TimFileExistOption *uint32 `protobuf:"varint,103,opt"`
TimCloudPdirKey []byte `protobuf:"bytes,100,opt,name=timCloudPdirKey" json:"timCloudPdirKey,omitempty"`
TimCloudPpdirKey []byte `protobuf:"bytes,101,opt,name=timCloudPpdirKey" json:"timCloudPpdirKey,omitempty"`
TimCloudExtensionInfo []byte `protobuf:"bytes,102,opt,name=timCloudExtensionInfo" json:"timCloudExtensionInfo,omitempty"`
TimFileExistOption *uint32 `protobuf:"varint,103,opt,name=timFileExistOption" json:"timFileExistOption,omitempty"`
}
func (x *CopyToReqBody) Reset() {
*x = CopyToReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CopyToReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CopyToReqBody) ProtoMessage() {}
func (x *CopyToReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CopyToReqBody.ProtoReflect.Descriptor instead.
func (*CopyToReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{3}
} }
func (x *CopyToReqBody) GetGroupCode() uint64 { func (x *CopyToReqBody) GetGroupCode() uint64 {
@ -442,48 +280,12 @@ func (x *CopyToReqBody) GetTimFileExistOption() uint32 {
} }
type CopyToRspBody struct { type CopyToRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"`
SaveFilePath *string `protobuf:"bytes,4,opt"`
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"` BusId *uint32 `protobuf:"varint,5,opt"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"` FileName *string `protobuf:"bytes,40,opt"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"`
SaveFilePath *string `protobuf:"bytes,4,opt,name=saveFilePath" json:"saveFilePath,omitempty"`
BusId *uint32 `protobuf:"varint,5,opt,name=busId" json:"busId,omitempty"`
FileName *string `protobuf:"bytes,40,opt,name=fileName" json:"fileName,omitempty"`
}
func (x *CopyToRspBody) Reset() {
*x = CopyToRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CopyToRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CopyToRspBody) ProtoMessage() {}
func (x *CopyToRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CopyToRspBody.ProtoReflect.Descriptor instead.
func (*CopyToRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{4}
} }
func (x *CopyToRspBody) GetRetCode() int32 { func (x *CopyToRspBody) GetRetCode() int32 {
@ -529,46 +331,10 @@ func (x *CopyToRspBody) GetFileName() string {
} }
type FeedsReqBody struct { type FeedsReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields FeedsInfoList []*GroupFileFeedsInfo `protobuf:"bytes,3,rep"`
MultiSendSeq *uint32 `protobuf:"varint,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"`
FeedsInfoList []*GroupFileFeedsInfo `protobuf:"bytes,3,rep,name=feedsInfoList" json:"feedsInfoList,omitempty"`
MultiSendSeq *uint32 `protobuf:"varint,4,opt,name=multiSendSeq" json:"multiSendSeq,omitempty"`
}
func (x *FeedsReqBody) Reset() {
*x = FeedsReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FeedsReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FeedsReqBody) ProtoMessage() {}
func (x *FeedsReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FeedsReqBody.ProtoReflect.Descriptor instead.
func (*FeedsReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{5}
} }
func (x *FeedsReqBody) GetGroupCode() uint64 { func (x *FeedsReqBody) GetGroupCode() uint64 {
@ -600,47 +366,11 @@ func (x *FeedsReqBody) GetMultiSendSeq() uint32 {
} }
type FeedsRspBody struct { type FeedsRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"`
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"`
//repeated C8639group_file_common.FeedsResult feedsResultList = 4; //repeated C8639group_file_common.FeedsResult feedsResultList = 4;
SvrbusyWaitTime *uint32 `protobuf:"varint,5,opt,name=svrbusyWaitTime" json:"svrbusyWaitTime,omitempty"` SvrbusyWaitTime *uint32 `protobuf:"varint,5,opt"`
}
func (x *FeedsRspBody) Reset() {
*x = FeedsRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *FeedsRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*FeedsRspBody) ProtoMessage() {}
func (x *FeedsRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use FeedsRspBody.ProtoReflect.Descriptor instead.
func (*FeedsRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{6}
} }
func (x *FeedsRspBody) GetRetCode() int32 { func (x *FeedsRspBody) GetRetCode() int32 {
@ -672,46 +402,10 @@ func (x *FeedsRspBody) GetSvrbusyWaitTime() uint32 {
} }
type D6D9ReqBody struct { type D6D9ReqBody struct {
state protoimpl.MessageState TransFileReq *TransFileReqBody `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache CopyFromReq *CopyFromReqBody `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields CopyToReq *CopyToReqBody `protobuf:"bytes,3,opt"`
FeedsInfoReq *FeedsReqBody `protobuf:"bytes,5,opt"`
TransFileReq *TransFileReqBody `protobuf:"bytes,1,opt,name=transFileReq" json:"transFileReq,omitempty"`
CopyFromReq *CopyFromReqBody `protobuf:"bytes,2,opt,name=copyFromReq" json:"copyFromReq,omitempty"`
CopyToReq *CopyToReqBody `protobuf:"bytes,3,opt,name=copyToReq" json:"copyToReq,omitempty"`
FeedsInfoReq *FeedsReqBody `protobuf:"bytes,5,opt,name=feedsInfoReq" json:"feedsInfoReq,omitempty"`
}
func (x *D6D9ReqBody) Reset() {
*x = D6D9ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D6D9ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D6D9ReqBody) ProtoMessage() {}
func (x *D6D9ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D6D9ReqBody.ProtoReflect.Descriptor instead.
func (*D6D9ReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{7}
} }
func (x *D6D9ReqBody) GetTransFileReq() *TransFileReqBody { func (x *D6D9ReqBody) GetTransFileReq() *TransFileReqBody {
@ -743,46 +437,10 @@ func (x *D6D9ReqBody) GetFeedsInfoReq() *FeedsReqBody {
} }
type D6D9RspBody struct { type D6D9RspBody struct {
state protoimpl.MessageState TransFileRsp *TransFileRspBody `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache CopyFromRsp *CopyFromRspBody `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields CopyToRsp *CopyToRspBody `protobuf:"bytes,3,opt"`
FeedsInfoRsp *FeedsRspBody `protobuf:"bytes,5,opt"`
TransFileRsp *TransFileRspBody `protobuf:"bytes,1,opt,name=transFileRsp" json:"transFileRsp,omitempty"`
CopyFromRsp *CopyFromRspBody `protobuf:"bytes,2,opt,name=copyFromRsp" json:"copyFromRsp,omitempty"`
CopyToRsp *CopyToRspBody `protobuf:"bytes,3,opt,name=copyToRsp" json:"copyToRsp,omitempty"`
FeedsInfoRsp *FeedsRspBody `protobuf:"bytes,5,opt,name=feedsInfoRsp" json:"feedsInfoRsp,omitempty"`
}
func (x *D6D9RspBody) Reset() {
*x = D6D9RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D6D9RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D6D9RspBody) ProtoMessage() {}
func (x *D6D9RspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D6D9RspBody.ProtoReflect.Descriptor instead.
func (*D6D9RspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{8}
} }
func (x *D6D9RspBody) GetTransFileRsp() *TransFileRspBody { func (x *D6D9RspBody) GetTransFileRsp() *TransFileRspBody {
@ -814,46 +472,10 @@ func (x *D6D9RspBody) GetFeedsInfoRsp() *FeedsRspBody {
} }
type TransFileReqBody struct { type TransFileReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppId *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields BusId *uint32 `protobuf:"varint,3,opt"`
FileId *string `protobuf:"bytes,4,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"`
AppId *uint32 `protobuf:"varint,2,opt,name=appId" json:"appId,omitempty"`
BusId *uint32 `protobuf:"varint,3,opt,name=busId" json:"busId,omitempty"`
FileId *string `protobuf:"bytes,4,opt,name=fileId" json:"fileId,omitempty"`
}
func (x *TransFileReqBody) Reset() {
*x = TransFileReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TransFileReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TransFileReqBody) ProtoMessage() {}
func (x *TransFileReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TransFileReqBody.ProtoReflect.Descriptor instead.
func (*TransFileReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{9}
} }
func (x *TransFileReqBody) GetGroupCode() uint64 { func (x *TransFileReqBody) GetGroupCode() uint64 {
@ -885,47 +507,11 @@ func (x *TransFileReqBody) GetFileId() string {
} }
type TransFileRspBody struct { type TransFileRspBody struct {
state protoimpl.MessageState RetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetMsg *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields ClientWording *string `protobuf:"bytes,3,opt"`
SaveBusId *uint32 `protobuf:"varint,4,opt"`
RetCode *int32 `protobuf:"varint,1,opt,name=retCode" json:"retCode,omitempty"` SaveFilePath *string `protobuf:"bytes,5,opt"`
RetMsg *string `protobuf:"bytes,2,opt,name=retMsg" json:"retMsg,omitempty"`
ClientWording *string `protobuf:"bytes,3,opt,name=clientWording" json:"clientWording,omitempty"`
SaveBusId *uint32 `protobuf:"varint,4,opt,name=saveBusId" json:"saveBusId,omitempty"`
SaveFilePath *string `protobuf:"bytes,5,opt,name=saveFilePath" json:"saveFilePath,omitempty"`
}
func (x *TransFileRspBody) Reset() {
*x = TransFileRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x6d9_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TransFileRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TransFileRspBody) ProtoMessage() {}
func (x *TransFileRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x6d9_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TransFileRspBody.ProtoReflect.Descriptor instead.
func (*TransFileRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x6d9_proto_rawDescGZIP(), []int{10}
} }
func (x *TransFileRspBody) GetRetCode() int32 { func (x *TransFileRspBody) GetRetCode() int32 {
@ -962,357 +548,3 @@ func (x *TransFileRspBody) GetSaveFilePath() string {
} }
return "" return ""
} }
var File_oidb0x6d9_proto protoreflect.FileDescriptor
var file_oidb0x6d9_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x36, 0x64, 0x39, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0x8e, 0x01, 0x0a, 0x12, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x46,
0x65, 0x65, 0x64, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x73, 0x49,
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x12, 0x16,
0x0a, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x73, 0x67, 0x52, 0x61, 0x6e,
0x64, 0x6f, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6d, 0x73, 0x67, 0x52, 0x61,
0x6e, 0x64, 0x6f, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
0x0c, 0x52, 0x03, 0x65, 0x78, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c,
0x61, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c,
0x61, 0x67, 0x22, 0xeb, 0x02, 0x0a, 0x0f, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x52,
0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43,
0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70,
0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x72,
0x63, 0x42, 0x75, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x72,
0x63, 0x42, 0x75, 0x73, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x73, 0x72, 0x63, 0x50, 0x61, 0x72,
0x65, 0x6e, 0x74, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x0f, 0x73, 0x72, 0x63, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x12, 0x20, 0x0a, 0x0b, 0x73, 0x72, 0x63, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x73, 0x72, 0x63, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61,
0x74, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x73, 0x74, 0x42, 0x75, 0x73, 0x49, 0x64, 0x18, 0x06,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x64, 0x73, 0x74, 0x42, 0x75, 0x73, 0x49, 0x64, 0x12, 0x20,
0x0a, 0x0b, 0x64, 0x73, 0x74, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x07, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x0b, 0x64, 0x73, 0x74, 0x46, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x49, 0x64,
0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x08, 0x20, 0x01,
0x28, 0x04, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x09,
0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x61, 0x74, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69,
0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69,
0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x72, 0x63, 0x55, 0x69, 0x6e,
0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x73, 0x72, 0x63, 0x55, 0x69, 0x6e, 0x12, 0x10,
0x0a, 0x03, 0x6d, 0x64, 0x35, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6d, 0x64, 0x35,
0x22, 0xa3, 0x01, 0x0a, 0x0f, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x73, 0x70,
0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16,
0x0a, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x22, 0x0a, 0x0c,
0x73, 0x61, 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x0c, 0x73, 0x61, 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68,
0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x22, 0x8f, 0x03, 0x0a, 0x0d, 0x43, 0x6f, 0x70, 0x79, 0x54,
0x6f, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18,
0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
0x73, 0x72, 0x63, 0x42, 0x75, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08,
0x73, 0x72, 0x63, 0x42, 0x75, 0x73, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x72, 0x63, 0x46,
0x69, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x72, 0x63,
0x46, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x73, 0x74, 0x42, 0x75, 0x73,
0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x64, 0x73, 0x74, 0x42, 0x75, 0x73,
0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01,
0x28, 0x04, 0x52, 0x06, 0x64, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x65,
0x77, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x28, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0b, 0x6e, 0x65, 0x77, 0x46, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x0f,
0x74, 0x69, 0x6d, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x50, 0x64, 0x69, 0x72, 0x4b, 0x65, 0x79, 0x18,
0x64, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0f, 0x74, 0x69, 0x6d, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x50,
0x64, 0x69, 0x72, 0x4b, 0x65, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x74, 0x69, 0x6d, 0x43, 0x6c, 0x6f,
0x75, 0x64, 0x50, 0x70, 0x64, 0x69, 0x72, 0x4b, 0x65, 0x79, 0x18, 0x65, 0x20, 0x01, 0x28, 0x0c,
0x52, 0x10, 0x74, 0x69, 0x6d, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x50, 0x70, 0x64, 0x69, 0x72, 0x4b,
0x65, 0x79, 0x12, 0x34, 0x0a, 0x15, 0x74, 0x69, 0x6d, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x45, 0x78,
0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x66, 0x20, 0x01, 0x28,
0x0c, 0x52, 0x15, 0x74, 0x69, 0x6d, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2e, 0x0a, 0x12, 0x74, 0x69, 0x6d, 0x46,
0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x67,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x12, 0x74, 0x69, 0x6d, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
0x73, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbd, 0x01, 0x0a, 0x0d, 0x43, 0x6f, 0x70,
0x79, 0x54, 0x6f, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74,
0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x02,
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x0d,
0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69,
0x6e, 0x67, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x61, 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61,
0x74, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x61, 0x76, 0x65, 0x46, 0x69,
0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x28, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xa1, 0x01, 0x0a, 0x0c, 0x46, 0x65, 0x65,
0x64, 0x73, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x39, 0x0a,
0x0d, 0x66, 0x65, 0x65, 0x64, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x65,
0x46, 0x65, 0x65, 0x64, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x73,
0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x75, 0x6c, 0x74,
0x69, 0x53, 0x65, 0x6e, 0x64, 0x53, 0x65, 0x71, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c,
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x53, 0x65, 0x6e, 0x64, 0x53, 0x65, 0x71, 0x22, 0x90, 0x01, 0x0a,
0x0c, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a,
0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73,
0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x12,
0x24, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67,
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f,
0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x73, 0x76, 0x72, 0x62, 0x75, 0x73, 0x79,
0x57, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f,
0x73, 0x76, 0x72, 0x62, 0x75, 0x73, 0x79, 0x57, 0x61, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x22,
0xd9, 0x01, 0x0a, 0x0b, 0x44, 0x36, 0x44, 0x39, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12,
0x35, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x46, 0x69, 0x6c,
0x65, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x46,
0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x32, 0x0a, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x46, 0x72,
0x6f, 0x6d, 0x52, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x43, 0x6f,
0x70, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0b, 0x63,
0x6f, 0x70, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x65, 0x71, 0x12, 0x2c, 0x0a, 0x09, 0x63, 0x6f,
0x70, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x71, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e,
0x43, 0x6f, 0x70, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x09, 0x63,
0x6f, 0x70, 0x79, 0x54, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x31, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d,
0x2e, 0x46, 0x65, 0x65, 0x64, 0x73, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0c, 0x66,
0x65, 0x65, 0x64, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x22, 0xd9, 0x01, 0x0a, 0x0b,
0x44, 0x36, 0x44, 0x39, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x35, 0x0a, 0x0c, 0x74,
0x72, 0x61, 0x6e, 0x73, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x73, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x11, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x73, 0x70,
0x42, 0x6f, 0x64, 0x79, 0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x46, 0x69, 0x6c, 0x65, 0x52,
0x73, 0x70, 0x12, 0x32, 0x0a, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x46, 0x72, 0x6f, 0x6d, 0x52, 0x73,
0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x43, 0x6f, 0x70, 0x79, 0x46, 0x72,
0x6f, 0x6d, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0b, 0x63, 0x6f, 0x70, 0x79, 0x46,
0x72, 0x6f, 0x6d, 0x52, 0x73, 0x70, 0x12, 0x2c, 0x0a, 0x09, 0x63, 0x6f, 0x70, 0x79, 0x54, 0x6f,
0x52, 0x73, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x43, 0x6f, 0x70, 0x79,
0x54, 0x6f, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x09, 0x63, 0x6f, 0x70, 0x79, 0x54,
0x6f, 0x52, 0x73, 0x70, 0x12, 0x31, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x73, 0x49, 0x6e, 0x66,
0x6f, 0x52, 0x73, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x46, 0x65, 0x65,
0x64, 0x73, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x73,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x22, 0x74, 0x0a, 0x10, 0x54, 0x72, 0x61, 0x6e, 0x73,
0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09,
0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
0x14, 0x0a, 0x05, 0x62, 0x75, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05,
0x62, 0x75, 0x73, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x18,
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x65, 0x49, 0x64, 0x22, 0xac, 0x01,
0x0a, 0x10, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x73, 0x70, 0x42, 0x6f,
0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06,
0x72, 0x65, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65,
0x74, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x57, 0x6f,
0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x61,
0x76, 0x65, 0x42, 0x75, 0x73, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x73,
0x61, 0x76, 0x65, 0x42, 0x75, 0x73, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x61, 0x76, 0x65,
0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
0x73, 0x61, 0x76, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x42, 0x09, 0x5a, 0x07,
0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62,
}
var (
file_oidb0x6d9_proto_rawDescOnce sync.Once
file_oidb0x6d9_proto_rawDescData = file_oidb0x6d9_proto_rawDesc
)
func file_oidb0x6d9_proto_rawDescGZIP() []byte {
file_oidb0x6d9_proto_rawDescOnce.Do(func() {
file_oidb0x6d9_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0x6d9_proto_rawDescData)
})
return file_oidb0x6d9_proto_rawDescData
}
var file_oidb0x6d9_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
var file_oidb0x6d9_proto_goTypes = []interface{}{
(*GroupFileFeedsInfo)(nil), // 0: GroupFileFeedsInfo
(*CopyFromReqBody)(nil), // 1: CopyFromReqBody
(*CopyFromRspBody)(nil), // 2: CopyFromRspBody
(*CopyToReqBody)(nil), // 3: CopyToReqBody
(*CopyToRspBody)(nil), // 4: CopyToRspBody
(*FeedsReqBody)(nil), // 5: FeedsReqBody
(*FeedsRspBody)(nil), // 6: FeedsRspBody
(*D6D9ReqBody)(nil), // 7: D6D9ReqBody
(*D6D9RspBody)(nil), // 8: D6D9RspBody
(*TransFileReqBody)(nil), // 9: TransFileReqBody
(*TransFileRspBody)(nil), // 10: TransFileRspBody
}
var file_oidb0x6d9_proto_depIdxs = []int32{
0, // 0: FeedsReqBody.feedsInfoList:type_name -> GroupFileFeedsInfo
9, // 1: D6D9ReqBody.transFileReq:type_name -> TransFileReqBody
1, // 2: D6D9ReqBody.copyFromReq:type_name -> CopyFromReqBody
3, // 3: D6D9ReqBody.copyToReq:type_name -> CopyToReqBody
5, // 4: D6D9ReqBody.feedsInfoReq:type_name -> FeedsReqBody
10, // 5: D6D9RspBody.transFileRsp:type_name -> TransFileRspBody
2, // 6: D6D9RspBody.copyFromRsp:type_name -> CopyFromRspBody
4, // 7: D6D9RspBody.copyToRsp:type_name -> CopyToRspBody
6, // 8: D6D9RspBody.feedsInfoRsp:type_name -> FeedsRspBody
9, // [9:9] is the sub-list for method output_type
9, // [9:9] is the sub-list for method input_type
9, // [9:9] is the sub-list for extension type_name
9, // [9:9] is the sub-list for extension extendee
0, // [0:9] is the sub-list for field type_name
}
func init() { file_oidb0x6d9_proto_init() }
func file_oidb0x6d9_proto_init() {
if File_oidb0x6d9_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0x6d9_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GroupFileFeedsInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CopyFromReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CopyFromRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CopyToReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CopyToRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedsReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedsRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D6D9ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D6D9RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TransFileReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x6d9_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TransFileRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0x6d9_proto_rawDesc,
NumEnums: 0,
NumMessages: 11,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0x6d9_proto_goTypes,
DependencyIndexes: file_oidb0x6d9_proto_depIdxs,
MessageInfos: file_oidb0x6d9_proto_msgTypes,
}.Build()
File_oidb0x6d9_proto = out.File
file_oidb0x6d9_proto_rawDesc = nil
file_oidb0x6d9_proto_goTypes = nil
file_oidb0x6d9_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,68 +1,14 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0x8a7.proto // source: oidb0x8a7.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type D8A7ReqBody struct { type D8A7ReqBody struct {
state protoimpl.MessageState SubCmd *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache LimitIntervalTypeForUin *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields LimitIntervalTypeForGroup *uint32 `protobuf:"varint,3,opt"`
Uin *uint64 `protobuf:"varint,4,opt"`
SubCmd *uint32 `protobuf:"varint,1,opt,name=subCmd" json:"subCmd,omitempty"` GroupCode *uint64 `protobuf:"varint,5,opt"`
LimitIntervalTypeForUin *uint32 `protobuf:"varint,2,opt,name=limitIntervalTypeForUin" json:"limitIntervalTypeForUin,omitempty"`
LimitIntervalTypeForGroup *uint32 `protobuf:"varint,3,opt,name=limitIntervalTypeForGroup" json:"limitIntervalTypeForGroup,omitempty"`
Uin *uint64 `protobuf:"varint,4,opt,name=uin" json:"uin,omitempty"`
GroupCode *uint64 `protobuf:"varint,5,opt,name=groupCode" json:"groupCode,omitempty"`
}
func (x *D8A7ReqBody) Reset() {
*x = D8A7ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8a7_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8A7ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8A7ReqBody) ProtoMessage() {}
func (x *D8A7ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8a7_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8A7ReqBody.ProtoReflect.Descriptor instead.
func (*D8A7ReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x8a7_proto_rawDescGZIP(), []int{0}
} }
func (x *D8A7ReqBody) GetSubCmd() uint32 { func (x *D8A7ReqBody) GetSubCmd() uint32 {
@ -101,47 +47,11 @@ func (x *D8A7ReqBody) GetGroupCode() uint64 {
} }
type D8A7RspBody struct { type D8A7RspBody struct {
state protoimpl.MessageState CanAtAll *bool `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RemainAtAllCountForUin *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields RemainAtAllCountForGroup *uint32 `protobuf:"varint,3,opt"`
PromptMsg1 []byte `protobuf:"bytes,4,opt"`
CanAtAll *bool `protobuf:"varint,1,opt,name=canAtAll" json:"canAtAll,omitempty"` PromptMsg2 []byte `protobuf:"bytes,5,opt"`
RemainAtAllCountForUin *uint32 `protobuf:"varint,2,opt,name=remainAtAllCountForUin" json:"remainAtAllCountForUin,omitempty"`
RemainAtAllCountForGroup *uint32 `protobuf:"varint,3,opt,name=remainAtAllCountForGroup" json:"remainAtAllCountForGroup,omitempty"`
PromptMsg1 []byte `protobuf:"bytes,4,opt,name=promptMsg1" json:"promptMsg1,omitempty"`
PromptMsg2 []byte `protobuf:"bytes,5,opt,name=promptMsg2" json:"promptMsg2,omitempty"`
}
func (x *D8A7RspBody) Reset() {
*x = D8A7RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8a7_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8A7RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8A7RspBody) ProtoMessage() {}
func (x *D8A7RspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8a7_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8A7RspBody.ProtoReflect.Descriptor instead.
func (*D8A7RspBody) Descriptor() ([]byte, []int) {
return file_oidb0x8a7_proto_rawDescGZIP(), []int{1}
} }
func (x *D8A7RspBody) GetCanAtAll() bool { func (x *D8A7RspBody) GetCanAtAll() bool {
@ -178,113 +88,3 @@ func (x *D8A7RspBody) GetPromptMsg2() []byte {
} }
return nil return nil
} }
var File_oidb0x8a7_proto protoreflect.FileDescriptor
var file_oidb0x8a7_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x38, 0x61, 0x37, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xcd, 0x01, 0x0a, 0x0b, 0x44, 0x38, 0x41, 0x37, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x12, 0x38, 0x0a, 0x17, 0x6c, 0x69, 0x6d,
0x69, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f,
0x72, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x17, 0x6c, 0x69, 0x6d, 0x69,
0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f, 0x72,
0x55, 0x69, 0x6e, 0x12, 0x3c, 0x0a, 0x19, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x49, 0x6e, 0x74, 0x65,
0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x19, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x49, 0x6e, 0x74,
0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03,
0x75, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65,
0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64,
0x65, 0x22, 0xdd, 0x01, 0x0a, 0x0b, 0x44, 0x38, 0x41, 0x37, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x61, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x18, 0x01, 0x20,
0x01, 0x28, 0x08, 0x52, 0x08, 0x63, 0x61, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x12, 0x36, 0x0a,
0x16, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e,
0x74, 0x46, 0x6f, 0x72, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x16, 0x72,
0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46,
0x6f, 0x72, 0x55, 0x69, 0x6e, 0x12, 0x3a, 0x0a, 0x18, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41,
0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x18, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41,
0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x31, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67,
0x31, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x32, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67,
0x32, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62,
}
var (
file_oidb0x8a7_proto_rawDescOnce sync.Once
file_oidb0x8a7_proto_rawDescData = file_oidb0x8a7_proto_rawDesc
)
func file_oidb0x8a7_proto_rawDescGZIP() []byte {
file_oidb0x8a7_proto_rawDescOnce.Do(func() {
file_oidb0x8a7_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0x8a7_proto_rawDescData)
})
return file_oidb0x8a7_proto_rawDescData
}
var file_oidb0x8a7_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_oidb0x8a7_proto_goTypes = []interface{}{
(*D8A7ReqBody)(nil), // 0: D8A7ReqBody
(*D8A7RspBody)(nil), // 1: D8A7RspBody
}
var file_oidb0x8a7_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
0, // [0:0] is the sub-list for extension extendee
0, // [0:0] is the sub-list for field type_name
}
func init() { file_oidb0x8a7_proto_init() }
func file_oidb0x8a7_proto_init() {
if File_oidb0x8a7_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0x8a7_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8A7ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x8a7_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8A7RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0x8a7_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0x8a7_proto_goTypes,
DependencyIndexes: file_oidb0x8a7_proto_depIdxs,
MessageInfos: file_oidb0x8a7_proto_msgTypes,
}.Build()
File_oidb0x8a7_proto = out.File
file_oidb0x8a7_proto_rawDesc = nil
file_oidb0x8a7_proto_goTypes = nil
file_oidb0x8a7_proto_depIdxs = nil
}

View File

@ -1,72 +1,18 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0x8fc.proto // source: oidb0x8fc.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type D8FCReqBody struct { type D8FCReqBody struct {
state protoimpl.MessageState GroupCode *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ShowFlag *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MemLevelInfo []*D8FCMemberInfo `protobuf:"bytes,3,rep"`
LevelName []*D8FCLevelName `protobuf:"bytes,4,rep"`
GroupCode *int64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"` UpdateTime *int32 `protobuf:"varint,5,opt"`
ShowFlag *int32 `protobuf:"varint,2,opt,name=showFlag" json:"showFlag,omitempty"` OfficeMode *int32 `protobuf:"varint,6,opt"`
MemLevelInfo []*D8FCMemberInfo `protobuf:"bytes,3,rep,name=memLevelInfo" json:"memLevelInfo,omitempty"` GroupOpenAppid *int32 `protobuf:"varint,7,opt"`
LevelName []*D8FCLevelName `protobuf:"bytes,4,rep,name=levelName" json:"levelName,omitempty"` MsgClientInfo *D8FCClientInfo `protobuf:"bytes,8,opt"`
UpdateTime *int32 `protobuf:"varint,5,opt,name=updateTime" json:"updateTime,omitempty"` AuthKey []byte `protobuf:"bytes,9,opt"`
OfficeMode *int32 `protobuf:"varint,6,opt,name=officeMode" json:"officeMode,omitempty"`
GroupOpenAppid *int32 `protobuf:"varint,7,opt,name=groupOpenAppid" json:"groupOpenAppid,omitempty"`
MsgClientInfo *D8FCClientInfo `protobuf:"bytes,8,opt,name=msgClientInfo" json:"msgClientInfo,omitempty"`
AuthKey []byte `protobuf:"bytes,9,opt,name=authKey" json:"authKey,omitempty"`
}
func (x *D8FCReqBody) Reset() {
*x = D8FCReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8fc_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8FCReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8FCReqBody) ProtoMessage() {}
func (x *D8FCReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8fc_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8FCReqBody.ProtoReflect.Descriptor instead.
func (*D8FCReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x8fc_proto_rawDescGZIP(), []int{0}
} }
func (x *D8FCReqBody) GetGroupCode() int64 { func (x *D8FCReqBody) GetGroupCode() int64 {
@ -133,59 +79,23 @@ func (x *D8FCReqBody) GetAuthKey() []byte {
} }
type D8FCMemberInfo struct { type D8FCMemberInfo struct {
state protoimpl.MessageState Uin *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Point *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields ActiveDay *int32 `protobuf:"varint,3,opt"`
Level *int32 `protobuf:"varint,4,opt"`
Uin *int64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"` SpecialTitle []byte `protobuf:"bytes,5,opt"`
Point *int32 `protobuf:"varint,2,opt,name=point" json:"point,omitempty"` SpecialTitleExpireTime *int32 `protobuf:"varint,6,opt"`
ActiveDay *int32 `protobuf:"varint,3,opt,name=activeDay" json:"activeDay,omitempty"` UinName []byte `protobuf:"bytes,7,opt"`
Level *int32 `protobuf:"varint,4,opt,name=level" json:"level,omitempty"` MemberCardName []byte `protobuf:"bytes,8,opt"`
SpecialTitle []byte `protobuf:"bytes,5,opt,name=specialTitle" json:"specialTitle,omitempty"` Phone []byte `protobuf:"bytes,9,opt"`
SpecialTitleExpireTime *int32 `protobuf:"varint,6,opt,name=specialTitleExpireTime" json:"specialTitleExpireTime,omitempty"` Email []byte `protobuf:"bytes,10,opt"`
UinName []byte `protobuf:"bytes,7,opt,name=uinName" json:"uinName,omitempty"` Remark []byte `protobuf:"bytes,11,opt"`
MemberCardName []byte `protobuf:"bytes,8,opt,name=memberCardName" json:"memberCardName,omitempty"` Gender *int32 `protobuf:"varint,12,opt"`
Phone []byte `protobuf:"bytes,9,opt,name=phone" json:"phone,omitempty"` Job []byte `protobuf:"bytes,13,opt"`
Email []byte `protobuf:"bytes,10,opt,name=email" json:"email,omitempty"` TribeLevel *int32 `protobuf:"varint,14,opt"`
Remark []byte `protobuf:"bytes,11,opt,name=remark" json:"remark,omitempty"` TribePoint *int32 `protobuf:"varint,15,opt"`
Gender *int32 `protobuf:"varint,12,opt,name=gender" json:"gender,omitempty"` RichCardName []*D8FCCardNameElem `protobuf:"bytes,16,rep"`
Job []byte `protobuf:"bytes,13,opt,name=job" json:"job,omitempty"` CommRichCardName []byte `protobuf:"bytes,17,opt"`
TribeLevel *int32 `protobuf:"varint,14,opt,name=tribeLevel" json:"tribeLevel,omitempty"`
TribePoint *int32 `protobuf:"varint,15,opt,name=tribePoint" json:"tribePoint,omitempty"`
RichCardName []*D8FCCardNameElem `protobuf:"bytes,16,rep,name=richCardName" json:"richCardName,omitempty"`
CommRichCardName []byte `protobuf:"bytes,17,opt,name=commRichCardName" json:"commRichCardName,omitempty"`
}
func (x *D8FCMemberInfo) Reset() {
*x = D8FCMemberInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8fc_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8FCMemberInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8FCMemberInfo) ProtoMessage() {}
func (x *D8FCMemberInfo) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8fc_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8FCMemberInfo.ProtoReflect.Descriptor instead.
func (*D8FCMemberInfo) Descriptor() ([]byte, []int) {
return file_oidb0x8fc_proto_rawDescGZIP(), []int{1}
} }
func (x *D8FCMemberInfo) GetUin() int64 { func (x *D8FCMemberInfo) GetUin() int64 {
@ -308,44 +218,8 @@ func (x *D8FCMemberInfo) GetCommRichCardName() []byte {
} }
type D8FCCardNameElem struct { type D8FCCardNameElem struct {
state protoimpl.MessageState EnumCardType *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Value []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
EnumCardType *int32 `protobuf:"varint,1,opt,name=enumCardType" json:"enumCardType,omitempty"`
Value []byte `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
}
func (x *D8FCCardNameElem) Reset() {
*x = D8FCCardNameElem{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8fc_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8FCCardNameElem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8FCCardNameElem) ProtoMessage() {}
func (x *D8FCCardNameElem) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8fc_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8FCCardNameElem.ProtoReflect.Descriptor instead.
func (*D8FCCardNameElem) Descriptor() ([]byte, []int) {
return file_oidb0x8fc_proto_rawDescGZIP(), []int{2}
} }
func (x *D8FCCardNameElem) GetEnumCardType() int32 { func (x *D8FCCardNameElem) GetEnumCardType() int32 {
@ -363,44 +237,8 @@ func (x *D8FCCardNameElem) GetValue() []byte {
} }
type D8FCLevelName struct { type D8FCLevelName struct {
state protoimpl.MessageState Level *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Name *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Level *int32 `protobuf:"varint,1,opt,name=level" json:"level,omitempty"`
Name *string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
}
func (x *D8FCLevelName) Reset() {
*x = D8FCLevelName{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8fc_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8FCLevelName) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8FCLevelName) ProtoMessage() {}
func (x *D8FCLevelName) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8fc_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8FCLevelName.ProtoReflect.Descriptor instead.
func (*D8FCLevelName) Descriptor() ([]byte, []int) {
return file_oidb0x8fc_proto_rawDescGZIP(), []int{3}
} }
func (x *D8FCLevelName) GetLevel() int32 { func (x *D8FCLevelName) GetLevel() int32 {
@ -418,44 +256,8 @@ func (x *D8FCLevelName) GetName() string {
} }
type D8FCClientInfo struct { type D8FCClientInfo struct {
state protoimpl.MessageState Implat *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache IngClientver *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Implat *int32 `protobuf:"varint,1,opt,name=implat" json:"implat,omitempty"`
IngClientver *string `protobuf:"bytes,2,opt,name=ingClientver" json:"ingClientver,omitempty"`
}
func (x *D8FCClientInfo) Reset() {
*x = D8FCClientInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8fc_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8FCClientInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8FCClientInfo) ProtoMessage() {}
func (x *D8FCClientInfo) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8fc_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8FCClientInfo.ProtoReflect.Descriptor instead.
func (*D8FCClientInfo) Descriptor() ([]byte, []int) {
return file_oidb0x8fc_proto_rawDescGZIP(), []int{4}
} }
func (x *D8FCClientInfo) GetImplat() int32 { func (x *D8FCClientInfo) GetImplat() int32 {
@ -473,43 +275,7 @@ func (x *D8FCClientInfo) GetIngClientver() string {
} }
type D8FCCommCardNameBuf struct { type D8FCCommCardNameBuf struct {
state protoimpl.MessageState RichCardName []*D8FCRichCardNameElem `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
RichCardName []*D8FCRichCardNameElem `protobuf:"bytes,1,rep,name=richCardName" json:"richCardName,omitempty"`
}
func (x *D8FCCommCardNameBuf) Reset() {
*x = D8FCCommCardNameBuf{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8fc_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8FCCommCardNameBuf) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8FCCommCardNameBuf) ProtoMessage() {}
func (x *D8FCCommCardNameBuf) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8fc_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8FCCommCardNameBuf.ProtoReflect.Descriptor instead.
func (*D8FCCommCardNameBuf) Descriptor() ([]byte, []int) {
return file_oidb0x8fc_proto_rawDescGZIP(), []int{5}
} }
func (x *D8FCCommCardNameBuf) GetRichCardName() []*D8FCRichCardNameElem { func (x *D8FCCommCardNameBuf) GetRichCardName() []*D8FCRichCardNameElem {
@ -520,44 +286,8 @@ func (x *D8FCCommCardNameBuf) GetRichCardName() []*D8FCRichCardNameElem {
} }
type D8FCRichCardNameElem struct { type D8FCRichCardNameElem struct {
state protoimpl.MessageState Ctrl []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Text []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Ctrl []byte `protobuf:"bytes,1,opt,name=ctrl" json:"ctrl,omitempty"`
Text []byte `protobuf:"bytes,2,opt,name=text" json:"text,omitempty"`
}
func (x *D8FCRichCardNameElem) Reset() {
*x = D8FCRichCardNameElem{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x8fc_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D8FCRichCardNameElem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D8FCRichCardNameElem) ProtoMessage() {}
func (x *D8FCRichCardNameElem) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x8fc_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D8FCRichCardNameElem.ProtoReflect.Descriptor instead.
func (*D8FCRichCardNameElem) Descriptor() ([]byte, []int) {
return file_oidb0x8fc_proto_rawDescGZIP(), []int{6}
} }
func (x *D8FCRichCardNameElem) GetCtrl() []byte { func (x *D8FCRichCardNameElem) GetCtrl() []byte {
@ -573,235 +303,3 @@ func (x *D8FCRichCardNameElem) GetText() []byte {
} }
return nil return nil
} }
var File_oidb0x8fc_proto protoreflect.FileDescriptor
var file_oidb0x8fc_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x38, 0x66, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xe3, 0x02, 0x0a, 0x0b, 0x44, 0x38, 0x46, 0x43, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12,
0x1a, 0x0a, 0x08, 0x73, 0x68, 0x6f, 0x77, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x08, 0x73, 0x68, 0x6f, 0x77, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x33, 0x0a, 0x0c, 0x6d,
0x65, 0x6d, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x0f, 0x2e, 0x44, 0x38, 0x46, 0x43, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x49, 0x6e,
0x66, 0x6f, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x2c, 0x0a, 0x09, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x44, 0x38, 0x46, 0x43, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4e,
0x61, 0x6d, 0x65, 0x52, 0x09, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e,
0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e,
0x0a, 0x0a, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x06, 0x20, 0x01,
0x28, 0x05, 0x52, 0x0a, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x26,
0x0a, 0x0e, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65, 0x6e, 0x41, 0x70, 0x70, 0x69, 0x64,
0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x4f, 0x70, 0x65,
0x6e, 0x41, 0x70, 0x70, 0x69, 0x64, 0x12, 0x35, 0x0a, 0x0d, 0x6d, 0x73, 0x67, 0x43, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e,
0x44, 0x38, 0x46, 0x43, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0d,
0x6d, 0x73, 0x67, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a,
0x07, 0x61, 0x75, 0x74, 0x68, 0x4b, 0x65, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07,
0x61, 0x75, 0x74, 0x68, 0x4b, 0x65, 0x79, 0x22, 0x9b, 0x04, 0x0a, 0x0e, 0x44, 0x38, 0x46, 0x43,
0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69,
0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x14, 0x0a, 0x05,
0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x6f, 0x69,
0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x61, 0x79, 0x18,
0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x61, 0x79,
0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52,
0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x70, 0x65, 0x63, 0x69, 0x61,
0x6c, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0c, 0x73, 0x70,
0x65, 0x63, 0x69, 0x61, 0x6c, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x36, 0x0a, 0x16, 0x73, 0x70,
0x65, 0x63, 0x69, 0x61, 0x6c, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65,
0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x73, 0x70, 0x65, 0x63,
0x69, 0x61, 0x6c, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x54, 0x69,
0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x07, 0x75, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e,
0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x08,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x61, 0x72, 0x64,
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x09, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d,
0x61, 0x69, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,
0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0c,
0x52, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64,
0x65, 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72,
0x12, 0x10, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6a,
0x6f, 0x62, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x72, 0x69, 0x62, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x72, 0x69, 0x62, 0x65, 0x4c, 0x65, 0x76,
0x65, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x72, 0x69, 0x62, 0x65, 0x50, 0x6f, 0x69, 0x6e, 0x74,
0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x72, 0x69, 0x62, 0x65, 0x50, 0x6f, 0x69,
0x6e, 0x74, 0x12, 0x35, 0x0a, 0x0c, 0x72, 0x69, 0x63, 0x68, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61,
0x6d, 0x65, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x44, 0x38, 0x46, 0x43, 0x43,
0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x52, 0x0c, 0x72, 0x69, 0x63,
0x68, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x6f, 0x6d,
0x6d, 0x52, 0x69, 0x63, 0x68, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x6d, 0x52, 0x69, 0x63, 0x68, 0x43, 0x61, 0x72,
0x64, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x4c, 0x0a, 0x10, 0x44, 0x38, 0x46, 0x43, 0x43, 0x61, 0x72,
0x64, 0x4e, 0x61, 0x6d, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x65, 0x6e, 0x75,
0x6d, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x0c, 0x65, 0x6e, 0x75, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a,
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61,
0x6c, 0x75, 0x65, 0x22, 0x39, 0x0a, 0x0d, 0x44, 0x38, 0x46, 0x43, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01, 0x20,
0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x4c,
0x0a, 0x0e, 0x44, 0x38, 0x46, 0x43, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x16, 0x0a, 0x06, 0x69, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x06, 0x69, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x67, 0x43,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
0x69, 0x6e, 0x67, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x76, 0x65, 0x72, 0x22, 0x50, 0x0a, 0x13,
0x44, 0x38, 0x46, 0x43, 0x43, 0x6f, 0x6d, 0x6d, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65,
0x42, 0x75, 0x66, 0x12, 0x39, 0x0a, 0x0c, 0x72, 0x69, 0x63, 0x68, 0x43, 0x61, 0x72, 0x64, 0x4e,
0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x44, 0x38, 0x46, 0x43,
0x52, 0x69, 0x63, 0x68, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x45, 0x6c, 0x65, 0x6d,
0x52, 0x0c, 0x72, 0x69, 0x63, 0x68, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x3e,
0x0a, 0x14, 0x44, 0x38, 0x46, 0x43, 0x52, 0x69, 0x63, 0x68, 0x43, 0x61, 0x72, 0x64, 0x4e, 0x61,
0x6d, 0x65, 0x45, 0x6c, 0x65, 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x74, 0x72, 0x6c, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x63, 0x74, 0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65,
0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x42, 0x09,
0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62,
}
var (
file_oidb0x8fc_proto_rawDescOnce sync.Once
file_oidb0x8fc_proto_rawDescData = file_oidb0x8fc_proto_rawDesc
)
func file_oidb0x8fc_proto_rawDescGZIP() []byte {
file_oidb0x8fc_proto_rawDescOnce.Do(func() {
file_oidb0x8fc_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0x8fc_proto_rawDescData)
})
return file_oidb0x8fc_proto_rawDescData
}
var file_oidb0x8fc_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
var file_oidb0x8fc_proto_goTypes = []interface{}{
(*D8FCReqBody)(nil), // 0: D8FCReqBody
(*D8FCMemberInfo)(nil), // 1: D8FCMemberInfo
(*D8FCCardNameElem)(nil), // 2: D8FCCardNameElem
(*D8FCLevelName)(nil), // 3: D8FCLevelName
(*D8FCClientInfo)(nil), // 4: D8FCClientInfo
(*D8FCCommCardNameBuf)(nil), // 5: D8FCCommCardNameBuf
(*D8FCRichCardNameElem)(nil), // 6: D8FCRichCardNameElem
}
var file_oidb0x8fc_proto_depIdxs = []int32{
1, // 0: D8FCReqBody.memLevelInfo:type_name -> D8FCMemberInfo
3, // 1: D8FCReqBody.levelName:type_name -> D8FCLevelName
4, // 2: D8FCReqBody.msgClientInfo:type_name -> D8FCClientInfo
2, // 3: D8FCMemberInfo.richCardName:type_name -> D8FCCardNameElem
6, // 4: D8FCCommCardNameBuf.richCardName:type_name -> D8FCRichCardNameElem
5, // [5:5] is the sub-list for method output_type
5, // [5:5] is the sub-list for method input_type
5, // [5:5] is the sub-list for extension type_name
5, // [5:5] is the sub-list for extension extendee
0, // [0:5] is the sub-list for field type_name
}
func init() { file_oidb0x8fc_proto_init() }
func file_oidb0x8fc_proto_init() {
if File_oidb0x8fc_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0x8fc_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8FCReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x8fc_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8FCMemberInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x8fc_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8FCCardNameElem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x8fc_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8FCLevelName); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x8fc_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8FCClientInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x8fc_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8FCCommCardNameBuf); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x8fc_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D8FCRichCardNameElem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0x8fc_proto_rawDesc,
NumEnums: 0,
NumMessages: 7,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0x8fc_proto_goTypes,
DependencyIndexes: file_oidb0x8fc_proto_depIdxs,
MessageInfos: file_oidb0x8fc_proto_msgTypes,
}.Build()
File_oidb0x8fc_proto = out.File
file_oidb0x8fc_proto_rawDesc = nil
file_oidb0x8fc_proto_goTypes = nil
file_oidb0x8fc_proto_depIdxs = nil
}

View File

@ -1,65 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0x990.proto // source: oidb0x990.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type TranslateReqBody struct { type TranslateReqBody struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// TranslateReq translate_req = 1; // TranslateReq translate_req = 1;
BatchTranslateReq *BatchTranslateReq `protobuf:"bytes,2,opt,name=batch_translate_req,json=batchTranslateReq,proto3" json:"batch_translate_req,omitempty"` BatchTranslateReq *BatchTranslateReq `protobuf:"bytes,2,opt"`
}
func (x *TranslateReqBody) Reset() {
*x = TranslateReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x990_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TranslateReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TranslateReqBody) ProtoMessage() {}
func (x *TranslateReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x990_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TranslateReqBody.ProtoReflect.Descriptor instead.
func (*TranslateReqBody) Descriptor() ([]byte, []int) {
return file_oidb0x990_proto_rawDescGZIP(), []int{0}
} }
func (x *TranslateReqBody) GetBatchTranslateReq() *BatchTranslateReq { func (x *TranslateReqBody) GetBatchTranslateReq() *BatchTranslateReq {
@ -70,44 +16,8 @@ func (x *TranslateReqBody) GetBatchTranslateReq() *BatchTranslateReq {
} }
type TranslateRspBody struct { type TranslateRspBody struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// TranslateRsp translate_rsp = 1; // TranslateRsp translate_rsp = 1;
BatchTranslateRsp *BatchTranslateRsp `protobuf:"bytes,2,opt,name=batch_translate_rsp,json=batchTranslateRsp,proto3" json:"batch_translate_rsp,omitempty"` BatchTranslateRsp *BatchTranslateRsp `protobuf:"bytes,2,opt"`
}
func (x *TranslateRspBody) Reset() {
*x = TranslateRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x990_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TranslateRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TranslateRspBody) ProtoMessage() {}
func (x *TranslateRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x990_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TranslateRspBody.ProtoReflect.Descriptor instead.
func (*TranslateRspBody) Descriptor() ([]byte, []int) {
return file_oidb0x990_proto_rawDescGZIP(), []int{1}
} }
func (x *TranslateRspBody) GetBatchTranslateRsp() *BatchTranslateRsp { func (x *TranslateRspBody) GetBatchTranslateRsp() *BatchTranslateRsp {
@ -118,45 +28,9 @@ func (x *TranslateRspBody) GetBatchTranslateRsp() *BatchTranslateRsp {
} }
type BatchTranslateReq struct { type BatchTranslateReq struct {
state protoimpl.MessageState SrcLanguage string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache DstLanguage string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields SrcTextList []string `protobuf:"bytes,3,rep"`
SrcLanguage string `protobuf:"bytes,1,opt,name=src_language,json=srcLanguage,proto3" json:"src_language,omitempty"`
DstLanguage string `protobuf:"bytes,2,opt,name=dst_language,json=dstLanguage,proto3" json:"dst_language,omitempty"`
SrcTextList []string `protobuf:"bytes,3,rep,name=src_text_list,json=srcTextList,proto3" json:"src_text_list,omitempty"`
}
func (x *BatchTranslateReq) Reset() {
*x = BatchTranslateReq{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x990_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BatchTranslateReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BatchTranslateReq) ProtoMessage() {}
func (x *BatchTranslateReq) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x990_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BatchTranslateReq.ProtoReflect.Descriptor instead.
func (*BatchTranslateReq) Descriptor() ([]byte, []int) {
return file_oidb0x990_proto_rawDescGZIP(), []int{2}
} }
func (x *BatchTranslateReq) GetSrcLanguage() string { func (x *BatchTranslateReq) GetSrcLanguage() string {
@ -181,48 +55,12 @@ func (x *BatchTranslateReq) GetSrcTextList() []string {
} }
type BatchTranslateRsp struct { type BatchTranslateRsp struct {
state protoimpl.MessageState ErrorCode int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ErrorMsg []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields SrcLanguage string `protobuf:"bytes,3,opt"`
DstLanguage string `protobuf:"bytes,4,opt"`
ErrorCode int32 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"` SrcTextList []string `protobuf:"bytes,5,rep"`
ErrorMsg []byte `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"` DstTextList []string `protobuf:"bytes,6,rep"`
SrcLanguage string `protobuf:"bytes,3,opt,name=src_language,json=srcLanguage,proto3" json:"src_language,omitempty"`
DstLanguage string `protobuf:"bytes,4,opt,name=dst_language,json=dstLanguage,proto3" json:"dst_language,omitempty"`
SrcTextList []string `protobuf:"bytes,5,rep,name=src_text_list,json=srcTextList,proto3" json:"src_text_list,omitempty"`
DstTextList []string `protobuf:"bytes,6,rep,name=dst_text_list,json=dstTextList,proto3" json:"dst_text_list,omitempty"`
}
func (x *BatchTranslateRsp) Reset() {
*x = BatchTranslateRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0x990_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BatchTranslateRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BatchTranslateRsp) ProtoMessage() {}
func (x *BatchTranslateRsp) ProtoReflect() protoreflect.Message {
mi := &file_oidb0x990_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BatchTranslateRsp.ProtoReflect.Descriptor instead.
func (*BatchTranslateRsp) Descriptor() ([]byte, []int) {
return file_oidb0x990_proto_rawDescGZIP(), []int{3}
} }
func (x *BatchTranslateRsp) GetErrorCode() int32 { func (x *BatchTranslateRsp) GetErrorCode() int32 {
@ -266,148 +104,3 @@ func (x *BatchTranslateRsp) GetDstTextList() []string {
} }
return nil return nil
} }
var File_oidb0x990_proto protoreflect.FileDescriptor
var file_oidb0x990_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x39, 0x39, 0x30, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0x56, 0x0a, 0x10, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65,
0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x42, 0x0a, 0x13, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74,
0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x12, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c,
0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x52, 0x11, 0x62, 0x61, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61,
0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x22, 0x56, 0x0a, 0x10, 0x54, 0x72, 0x61,
0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x42, 0x0a,
0x13, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65,
0x5f, 0x72, 0x73, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x42, 0x61, 0x74,
0x63, 0x68, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x52, 0x11,
0x62, 0x61, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x73,
0x70, 0x22, 0x7d, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c,
0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x72, 0x63, 0x5f, 0x6c, 0x61,
0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x72,
0x63, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x73, 0x74,
0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0b, 0x64, 0x73, 0x74, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x0d,
0x73, 0x72, 0x63, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20,
0x03, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x72, 0x63, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74,
0x22, 0xdd, 0x01, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x63, 0x68, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c,
0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d,
0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d,
0x73, 0x67, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x72, 0x63, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61,
0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x72, 0x63, 0x4c, 0x61, 0x6e,
0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x73, 0x74, 0x5f, 0x6c, 0x61, 0x6e,
0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x73, 0x74,
0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x73, 0x72, 0x63, 0x5f,
0x74, 0x65, 0x78, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52,
0x0b, 0x73, 0x72, 0x63, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d,
0x64, 0x73, 0x74, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x06, 0x20,
0x03, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x73, 0x74, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74,
0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
file_oidb0x990_proto_rawDescOnce sync.Once
file_oidb0x990_proto_rawDescData = file_oidb0x990_proto_rawDesc
)
func file_oidb0x990_proto_rawDescGZIP() []byte {
file_oidb0x990_proto_rawDescOnce.Do(func() {
file_oidb0x990_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0x990_proto_rawDescData)
})
return file_oidb0x990_proto_rawDescData
}
var file_oidb0x990_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
var file_oidb0x990_proto_goTypes = []interface{}{
(*TranslateReqBody)(nil), // 0: TranslateReqBody
(*TranslateRspBody)(nil), // 1: TranslateRspBody
(*BatchTranslateReq)(nil), // 2: BatchTranslateReq
(*BatchTranslateRsp)(nil), // 3: BatchTranslateRsp
}
var file_oidb0x990_proto_depIdxs = []int32{
2, // 0: TranslateReqBody.batch_translate_req:type_name -> BatchTranslateReq
3, // 1: TranslateRspBody.batch_translate_rsp:type_name -> BatchTranslateRsp
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
2, // [2:2] is the sub-list for extension extendee
0, // [0:2] is the sub-list for field type_name
}
func init() { file_oidb0x990_proto_init() }
func file_oidb0x990_proto_init() {
if File_oidb0x990_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0x990_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TranslateReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x990_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TranslateRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x990_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BatchTranslateReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0x990_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BatchTranslateRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0x990_proto_rawDesc,
NumEnums: 0,
NumMessages: 4,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0x990_proto_goTypes,
DependencyIndexes: file_oidb0x990_proto_depIdxs,
MessageInfos: file_oidb0x990_proto_msgTypes,
}.Build()
File_oidb0x990_proto = out.File
file_oidb0x990_proto_rawDesc = nil
file_oidb0x990_proto_goTypes = nil
file_oidb0x990_proto_depIdxs = nil
}

View File

@ -1,73 +1,19 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0xb77.proto // source: oidb0xb77.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type DB77ReqBody struct { type DB77ReqBody struct {
state protoimpl.MessageState AppId uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AppType uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields MsgStyle uint32 `protobuf:"varint,3,opt"`
SenderUin uint64 `protobuf:"varint,4,opt"`
AppId uint64 `protobuf:"varint,1,opt,name=appId,proto3" json:"appId,omitempty"` ClientInfo *DB77ClientInfo `protobuf:"bytes,5,opt"`
AppType uint32 `protobuf:"varint,2,opt,name=appType,proto3" json:"appType,omitempty"` TextMsg string `protobuf:"bytes,6,opt"`
MsgStyle uint32 `protobuf:"varint,3,opt,name=msgStyle,proto3" json:"msgStyle,omitempty"` ExtInfo *DB77ExtInfo `protobuf:"bytes,7,opt"`
SenderUin uint64 `protobuf:"varint,4,opt,name=senderUin,proto3" json:"senderUin,omitempty"` SendType uint32 `protobuf:"varint,10,opt"`
ClientInfo *DB77ClientInfo `protobuf:"bytes,5,opt,name=clientInfo,proto3" json:"clientInfo,omitempty"` RecvUin uint64 `protobuf:"varint,11,opt"`
TextMsg string `protobuf:"bytes,6,opt,name=textMsg,proto3" json:"textMsg,omitempty"` RichMsgBody *DB77RichMsgBody `protobuf:"bytes,12,opt"`
ExtInfo *DB77ExtInfo `protobuf:"bytes,7,opt,name=extInfo,proto3" json:"extInfo,omitempty"`
SendType uint32 `protobuf:"varint,10,opt,name=sendType,proto3" json:"sendType,omitempty"`
RecvUin uint64 `protobuf:"varint,11,opt,name=recvUin,proto3" json:"recvUin,omitempty"`
RichMsgBody *DB77RichMsgBody `protobuf:"bytes,12,opt,name=richMsgBody,proto3" json:"richMsgBody,omitempty"`
}
func (x *DB77ReqBody) Reset() {
*x = DB77ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xb77_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DB77ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DB77ReqBody) ProtoMessage() {}
func (x *DB77ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xb77_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DB77ReqBody.ProtoReflect.Descriptor instead.
func (*DB77ReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xb77_proto_rawDescGZIP(), []int{0}
} }
func (x *DB77ReqBody) GetAppId() uint64 { func (x *DB77ReqBody) GetAppId() uint64 {
@ -141,48 +87,12 @@ func (x *DB77ReqBody) GetRichMsgBody() *DB77RichMsgBody {
} }
type DB77ClientInfo struct { type DB77ClientInfo struct {
state protoimpl.MessageState Platform uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache SdkVersion string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields AndroidPackageName string `protobuf:"bytes,3,opt"`
AndroidSignature string `protobuf:"bytes,4,opt"`
Platform uint32 `protobuf:"varint,1,opt,name=platform,proto3" json:"platform,omitempty"` IosBundleId string `protobuf:"bytes,5,opt"`
SdkVersion string `protobuf:"bytes,2,opt,name=sdkVersion,proto3" json:"sdkVersion,omitempty"` PcSign string `protobuf:"bytes,6,opt"`
AndroidPackageName string `protobuf:"bytes,3,opt,name=androidPackageName,proto3" json:"androidPackageName,omitempty"`
AndroidSignature string `protobuf:"bytes,4,opt,name=androidSignature,proto3" json:"androidSignature,omitempty"`
IosBundleId string `protobuf:"bytes,5,opt,name=iosBundleId,proto3" json:"iosBundleId,omitempty"`
PcSign string `protobuf:"bytes,6,opt,name=pcSign,proto3" json:"pcSign,omitempty"`
}
func (x *DB77ClientInfo) Reset() {
*x = DB77ClientInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xb77_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DB77ClientInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DB77ClientInfo) ProtoMessage() {}
func (x *DB77ClientInfo) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xb77_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DB77ClientInfo.ProtoReflect.Descriptor instead.
func (*DB77ClientInfo) Descriptor() ([]byte, []int) {
return file_oidb0xb77_proto_rawDescGZIP(), []int{1}
} }
func (x *DB77ClientInfo) GetPlatform() uint32 { func (x *DB77ClientInfo) GetPlatform() uint32 {
@ -228,47 +138,11 @@ func (x *DB77ClientInfo) GetPcSign() string {
} }
type DB77ExtInfo struct { type DB77ExtInfo struct {
state protoimpl.MessageState CustomFeatureId []uint32 `protobuf:"varint,11,rep"`
sizeCache protoimpl.SizeCache ApnsWording string `protobuf:"bytes,12,opt"`
unknownFields protoimpl.UnknownFields GroupSaveDbFlag uint32 `protobuf:"varint,13,opt"`
ReceiverAppId uint32 `protobuf:"varint,14,opt"`
CustomFeatureId []uint32 `protobuf:"varint,11,rep,packed,name=customFeatureId,proto3" json:"customFeatureId,omitempty"` MsgSeq uint64 `protobuf:"varint,15,opt"`
ApnsWording string `protobuf:"bytes,12,opt,name=apnsWording,proto3" json:"apnsWording,omitempty"`
GroupSaveDbFlag uint32 `protobuf:"varint,13,opt,name=groupSaveDbFlag,proto3" json:"groupSaveDbFlag,omitempty"`
ReceiverAppId uint32 `protobuf:"varint,14,opt,name=receiverAppId,proto3" json:"receiverAppId,omitempty"`
MsgSeq uint64 `protobuf:"varint,15,opt,name=msgSeq,proto3" json:"msgSeq,omitempty"`
}
func (x *DB77ExtInfo) Reset() {
*x = DB77ExtInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xb77_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DB77ExtInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DB77ExtInfo) ProtoMessage() {}
func (x *DB77ExtInfo) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xb77_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DB77ExtInfo.ProtoReflect.Descriptor instead.
func (*DB77ExtInfo) Descriptor() ([]byte, []int) {
return file_oidb0xb77_proto_rawDescGZIP(), []int{2}
} }
func (x *DB77ExtInfo) GetCustomFeatureId() []uint32 { func (x *DB77ExtInfo) GetCustomFeatureId() []uint32 {
@ -307,49 +181,13 @@ func (x *DB77ExtInfo) GetMsgSeq() uint64 {
} }
type DB77RichMsgBody struct { type DB77RichMsgBody struct {
state protoimpl.MessageState Title string `protobuf:"bytes,10,opt"`
sizeCache protoimpl.SizeCache Summary string `protobuf:"bytes,11,opt"`
unknownFields protoimpl.UnknownFields Brief string `protobuf:"bytes,12,opt"`
Url string `protobuf:"bytes,13,opt"`
Title string `protobuf:"bytes,10,opt,name=title,proto3" json:"title,omitempty"` PictureUrl string `protobuf:"bytes,14,opt"`
Summary string `protobuf:"bytes,11,opt,name=summary,proto3" json:"summary,omitempty"` Action string `protobuf:"bytes,15,opt"`
Brief string `protobuf:"bytes,12,opt,name=brief,proto3" json:"brief,omitempty"` MusicUrl string `protobuf:"bytes,16,opt"` //ImageInfo imageInfo = 17;
Url string `protobuf:"bytes,13,opt,name=url,proto3" json:"url,omitempty"`
PictureUrl string `protobuf:"bytes,14,opt,name=pictureUrl,proto3" json:"pictureUrl,omitempty"`
Action string `protobuf:"bytes,15,opt,name=action,proto3" json:"action,omitempty"`
MusicUrl string `protobuf:"bytes,16,opt,name=musicUrl,proto3" json:"musicUrl,omitempty"` //ImageInfo imageInfo = 17;
}
func (x *DB77RichMsgBody) Reset() {
*x = DB77RichMsgBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xb77_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DB77RichMsgBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DB77RichMsgBody) ProtoMessage() {}
func (x *DB77RichMsgBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xb77_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DB77RichMsgBody.ProtoReflect.Descriptor instead.
func (*DB77RichMsgBody) Descriptor() ([]byte, []int) {
return file_oidb0xb77_proto_rawDescGZIP(), []int{3}
} }
func (x *DB77RichMsgBody) GetTitle() string { func (x *DB77RichMsgBody) GetTitle() string {
@ -400,176 +238,3 @@ func (x *DB77RichMsgBody) GetMusicUrl() string {
} }
return "" return ""
} }
var File_oidb0xb77_proto protoreflect.FileDescriptor
var file_oidb0xb77_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x62, 0x37, 0x37, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xd4, 0x02, 0x0a, 0x0b, 0x44, 0x42, 0x37, 0x37, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79,
0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70,
0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x73, 0x67, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0d, 0x52, 0x08, 0x6d, 0x73, 0x67, 0x53, 0x74, 0x79, 0x6c, 0x65, 0x12, 0x1c, 0x0a,
0x09, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x55, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04,
0x52, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x55, 0x69, 0x6e, 0x12, 0x2f, 0x0a, 0x0a, 0x63,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x0f, 0x2e, 0x44, 0x42, 0x37, 0x37, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x52, 0x0a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07,
0x74, 0x65, 0x78, 0x74, 0x4d, 0x73, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74,
0x65, 0x78, 0x74, 0x4d, 0x73, 0x67, 0x12, 0x26, 0x0a, 0x07, 0x65, 0x78, 0x74, 0x49, 0x6e, 0x66,
0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x44, 0x42, 0x37, 0x37, 0x45, 0x78,
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x65, 0x78, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a,
0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
0x63, 0x76, 0x55, 0x69, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x72, 0x65, 0x63,
0x76, 0x55, 0x69, 0x6e, 0x12, 0x32, 0x0a, 0x0b, 0x72, 0x69, 0x63, 0x68, 0x4d, 0x73, 0x67, 0x42,
0x6f, 0x64, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x42, 0x37, 0x37,
0x52, 0x69, 0x63, 0x68, 0x4d, 0x73, 0x67, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0b, 0x72, 0x69, 0x63,
0x68, 0x4d, 0x73, 0x67, 0x42, 0x6f, 0x64, 0x79, 0x22, 0xe2, 0x01, 0x0a, 0x0e, 0x44, 0x42, 0x37,
0x37, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70,
0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x70,
0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x64, 0x6b, 0x56, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x64, 0x6b,
0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x6e, 0x64, 0x72, 0x6f,
0x69, 0x64, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x12, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x61, 0x63, 0x6b,
0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x61, 0x6e, 0x64, 0x72, 0x6f,
0x69, 0x64, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x10, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74,
0x75, 0x72, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6f, 0x73, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65,
0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6f, 0x73, 0x42, 0x75, 0x6e,
0x64, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x63, 0x53, 0x69, 0x67, 0x6e, 0x18,
0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x63, 0x53, 0x69, 0x67, 0x6e, 0x22, 0xc1, 0x01,
0x0a, 0x0b, 0x44, 0x42, 0x37, 0x37, 0x45, 0x78, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x28, 0x0a,
0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64,
0x18, 0x0b, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x65,
0x61, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x70, 0x6e, 0x73, 0x57,
0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x70,
0x6e, 0x73, 0x57, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x28, 0x0a, 0x0f, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x53, 0x61, 0x76, 0x65, 0x44, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x0d, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x61, 0x76, 0x65, 0x44, 0x62, 0x46,
0x6c, 0x61, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x41,
0x70, 0x70, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x72, 0x65, 0x63, 0x65,
0x69, 0x76, 0x65, 0x72, 0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x73, 0x67,
0x53, 0x65, 0x71, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6d, 0x73, 0x67, 0x53, 0x65,
0x71, 0x22, 0xbd, 0x01, 0x0a, 0x0f, 0x44, 0x42, 0x37, 0x37, 0x52, 0x69, 0x63, 0x68, 0x4d, 0x73,
0x67, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x0a,
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73,
0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75,
0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x72, 0x69, 0x65, 0x66, 0x18, 0x0c,
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x62, 0x72, 0x69, 0x65, 0x66, 0x12, 0x10, 0x0a, 0x03, 0x75,
0x72, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x1e, 0x0a,
0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x16, 0x0a,
0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x55, 0x72,
0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x75, 0x73, 0x69, 0x63, 0x55, 0x72,
0x6c, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
file_oidb0xb77_proto_rawDescOnce sync.Once
file_oidb0xb77_proto_rawDescData = file_oidb0xb77_proto_rawDesc
)
func file_oidb0xb77_proto_rawDescGZIP() []byte {
file_oidb0xb77_proto_rawDescOnce.Do(func() {
file_oidb0xb77_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0xb77_proto_rawDescData)
})
return file_oidb0xb77_proto_rawDescData
}
var file_oidb0xb77_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
var file_oidb0xb77_proto_goTypes = []interface{}{
(*DB77ReqBody)(nil), // 0: DB77ReqBody
(*DB77ClientInfo)(nil), // 1: DB77ClientInfo
(*DB77ExtInfo)(nil), // 2: DB77ExtInfo
(*DB77RichMsgBody)(nil), // 3: DB77RichMsgBody
}
var file_oidb0xb77_proto_depIdxs = []int32{
1, // 0: DB77ReqBody.clientInfo:type_name -> DB77ClientInfo
2, // 1: DB77ReqBody.extInfo:type_name -> DB77ExtInfo
3, // 2: DB77ReqBody.richMsgBody:type_name -> DB77RichMsgBody
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_oidb0xb77_proto_init() }
func file_oidb0xb77_proto_init() {
if File_oidb0xb77_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0xb77_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DB77ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xb77_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DB77ClientInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xb77_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DB77ExtInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xb77_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DB77RichMsgBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0xb77_proto_rawDesc,
NumEnums: 0,
NumMessages: 4,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0xb77_proto_goTypes,
DependencyIndexes: file_oidb0xb77_proto_depIdxs,
MessageInfos: file_oidb0xb77_proto_msgTypes,
}.Build()
File_oidb0xb77_proto = out.File
file_oidb0xb77_proto_rawDesc = nil
file_oidb0xb77_proto_goTypes = nil
file_oidb0xb77_proto_depIdxs = nil
}

View File

@ -1,80 +1,26 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0xbcb.proto // source: oidb0xbcb.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type CheckUrlReq struct { type CheckUrlReq struct {
state protoimpl.MessageState Url []string `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache Refer *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Plateform *string `protobuf:"bytes,3,opt"`
QqPfTo *string `protobuf:"bytes,4,opt"`
Url []string `protobuf:"bytes,1,rep,name=url" json:"url,omitempty"` Type *uint32 `protobuf:"varint,5,opt"`
Refer *string `protobuf:"bytes,2,opt,name=refer" json:"refer,omitempty"` From *uint32 `protobuf:"varint,6,opt"`
Plateform *string `protobuf:"bytes,3,opt,name=plateform" json:"plateform,omitempty"` Chatid *uint64 `protobuf:"varint,7,opt"`
QqPfTo *string `protobuf:"bytes,4,opt,name=qqPfTo" json:"qqPfTo,omitempty"` ServiceType *uint64 `protobuf:"varint,8,opt"`
Type *uint32 `protobuf:"varint,5,opt,name=type" json:"type,omitempty"` SendUin *uint64 `protobuf:"varint,9,opt"`
From *uint32 `protobuf:"varint,6,opt,name=from" json:"from,omitempty"` ReqType *string `protobuf:"bytes,10,opt"`
Chatid *uint64 `protobuf:"varint,7,opt,name=chatid" json:"chatid,omitempty"` OriginalUrl *string `protobuf:"bytes,11,opt"`
ServiceType *uint64 `protobuf:"varint,8,opt,name=serviceType" json:"serviceType,omitempty"` IsArk *bool `protobuf:"varint,12,opt"`
SendUin *uint64 `protobuf:"varint,9,opt,name=sendUin" json:"sendUin,omitempty"` ArkName *string `protobuf:"bytes,13,opt"`
ReqType *string `protobuf:"bytes,10,opt,name=reqType" json:"reqType,omitempty"` IsFinish *bool `protobuf:"varint,14,opt"`
OriginalUrl *string `protobuf:"bytes,11,opt,name=originalUrl" json:"originalUrl,omitempty"` SrcUrls []string `protobuf:"bytes,15,rep"`
IsArk *bool `protobuf:"varint,12,opt,name=isArk" json:"isArk,omitempty"` SrcPlatform *uint32 `protobuf:"varint,16,opt"`
ArkName *string `protobuf:"bytes,13,opt,name=arkName" json:"arkName,omitempty"` Qua *string `protobuf:"bytes,17,opt"`
IsFinish *bool `protobuf:"varint,14,opt,name=isFinish" json:"isFinish,omitempty"`
SrcUrls []string `protobuf:"bytes,15,rep,name=srcUrls" json:"srcUrls,omitempty"`
SrcPlatform *uint32 `protobuf:"varint,16,opt,name=srcPlatform" json:"srcPlatform,omitempty"`
Qua *string `protobuf:"bytes,17,opt,name=qua" json:"qua,omitempty"`
}
func (x *CheckUrlReq) Reset() {
*x = CheckUrlReq{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xbcb_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CheckUrlReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CheckUrlReq) ProtoMessage() {}
func (x *CheckUrlReq) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xbcb_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CheckUrlReq.ProtoReflect.Descriptor instead.
func (*CheckUrlReq) Descriptor() ([]byte, []int) {
return file_oidb0xbcb_proto_rawDescGZIP(), []int{0}
} }
func (x *CheckUrlReq) GetUrl() []string { func (x *CheckUrlReq) GetUrl() []string {
@ -197,52 +143,16 @@ func (x *CheckUrlReq) GetQua() string {
} }
type CheckUrlReqItem struct { type CheckUrlReqItem struct {
state protoimpl.MessageState Url *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Refer *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Plateform *string `protobuf:"bytes,3,opt"`
QqPfTo *string `protobuf:"bytes,4,opt"`
Url *string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"` Type *uint32 `protobuf:"varint,5,opt"`
Refer *string `protobuf:"bytes,2,opt,name=refer" json:"refer,omitempty"` From *uint32 `protobuf:"varint,6,opt"`
Plateform *string `protobuf:"bytes,3,opt,name=plateform" json:"plateform,omitempty"` Chatid *uint64 `protobuf:"varint,7,opt"`
QqPfTo *string `protobuf:"bytes,4,opt,name=qqPfTo" json:"qqPfTo,omitempty"` ServiceType *uint64 `protobuf:"varint,8,opt"`
Type *uint32 `protobuf:"varint,5,opt,name=type" json:"type,omitempty"` SendUin *uint64 `protobuf:"varint,9,opt"`
From *uint32 `protobuf:"varint,6,opt,name=from" json:"from,omitempty"` ReqType *string `protobuf:"bytes,10,opt"`
Chatid *uint64 `protobuf:"varint,7,opt,name=chatid" json:"chatid,omitempty"`
ServiceType *uint64 `protobuf:"varint,8,opt,name=serviceType" json:"serviceType,omitempty"`
SendUin *uint64 `protobuf:"varint,9,opt,name=sendUin" json:"sendUin,omitempty"`
ReqType *string `protobuf:"bytes,10,opt,name=reqType" json:"reqType,omitempty"`
}
func (x *CheckUrlReqItem) Reset() {
*x = CheckUrlReqItem{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xbcb_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CheckUrlReqItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CheckUrlReqItem) ProtoMessage() {}
func (x *CheckUrlReqItem) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xbcb_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CheckUrlReqItem.ProtoReflect.Descriptor instead.
func (*CheckUrlReqItem) Descriptor() ([]byte, []int) {
return file_oidb0xbcb_proto_rawDescGZIP(), []int{1}
} }
func (x *CheckUrlReqItem) GetUrl() string { func (x *CheckUrlReqItem) GetUrl() string {
@ -316,44 +226,8 @@ func (x *CheckUrlReqItem) GetReqType() string {
} }
type CheckUrlRsp struct { type CheckUrlRsp struct {
state protoimpl.MessageState Results []*UrlCheckResult `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache NextReqDuration *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
Results []*UrlCheckResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"`
NextReqDuration *uint32 `protobuf:"varint,2,opt,name=nextReqDuration" json:"nextReqDuration,omitempty"`
}
func (x *CheckUrlRsp) Reset() {
*x = CheckUrlRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xbcb_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *CheckUrlRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*CheckUrlRsp) ProtoMessage() {}
func (x *CheckUrlRsp) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xbcb_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use CheckUrlRsp.ProtoReflect.Descriptor instead.
func (*CheckUrlRsp) Descriptor() ([]byte, []int) {
return file_oidb0xbcb_proto_rawDescGZIP(), []int{2}
} }
func (x *CheckUrlRsp) GetResults() []*UrlCheckResult { func (x *CheckUrlRsp) GetResults() []*UrlCheckResult {
@ -371,44 +245,8 @@ func (x *CheckUrlRsp) GetNextReqDuration() uint32 {
} }
type DBCBReqBody struct { type DBCBReqBody struct {
state protoimpl.MessageState NotUseCache *int32 `protobuf:"varint,9,opt"`
sizeCache protoimpl.SizeCache CheckUrlReq *CheckUrlReq `protobuf:"bytes,10,opt"`
unknownFields protoimpl.UnknownFields
NotUseCache *int32 `protobuf:"varint,9,opt,name=notUseCache" json:"notUseCache,omitempty"`
CheckUrlReq *CheckUrlReq `protobuf:"bytes,10,opt,name=checkUrlReq" json:"checkUrlReq,omitempty"`
}
func (x *DBCBReqBody) Reset() {
*x = DBCBReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xbcb_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DBCBReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DBCBReqBody) ProtoMessage() {}
func (x *DBCBReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xbcb_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DBCBReqBody.ProtoReflect.Descriptor instead.
func (*DBCBReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xbcb_proto_rawDescGZIP(), []int{3}
} }
func (x *DBCBReqBody) GetNotUseCache() int32 { func (x *DBCBReqBody) GetNotUseCache() int32 {
@ -426,44 +264,8 @@ func (x *DBCBReqBody) GetCheckUrlReq() *CheckUrlReq {
} }
type DBCBRspBody struct { type DBCBRspBody struct {
state protoimpl.MessageState Wording *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache CheckUrlRsp *CheckUrlRsp `protobuf:"bytes,10,opt"`
unknownFields protoimpl.UnknownFields
Wording *string `protobuf:"bytes,1,opt,name=wording" json:"wording,omitempty"`
CheckUrlRsp *CheckUrlRsp `protobuf:"bytes,10,opt,name=checkUrlRsp" json:"checkUrlRsp,omitempty"`
}
func (x *DBCBRspBody) Reset() {
*x = DBCBRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xbcb_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DBCBRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DBCBRspBody) ProtoMessage() {}
func (x *DBCBRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xbcb_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DBCBRspBody.ProtoReflect.Descriptor instead.
func (*DBCBRspBody) Descriptor() ([]byte, []int) {
return file_oidb0xbcb_proto_rawDescGZIP(), []int{4}
} }
func (x *DBCBRspBody) GetWording() string { func (x *DBCBRspBody) GetWording() string {
@ -481,51 +283,15 @@ func (x *DBCBRspBody) GetCheckUrlRsp() *CheckUrlRsp {
} }
type UrlCheckResult struct { type UrlCheckResult struct {
state protoimpl.MessageState Url *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Result *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields JumpResult *uint32 `protobuf:"varint,3,opt"`
JumpUrl *string `protobuf:"bytes,4,opt"`
Url *string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"` Level *uint32 `protobuf:"varint,5,opt"`
Result *uint32 `protobuf:"varint,2,opt,name=result" json:"result,omitempty"` SubLevel *uint32 `protobuf:"varint,6,opt"`
JumpResult *uint32 `protobuf:"varint,3,opt,name=jumpResult" json:"jumpResult,omitempty"` Umrtype *uint32 `protobuf:"varint,7,opt"`
JumpUrl *string `protobuf:"bytes,4,opt,name=jumpUrl" json:"jumpUrl,omitempty"` RetFrom *uint32 `protobuf:"varint,8,opt"`
Level *uint32 `protobuf:"varint,5,opt,name=level" json:"level,omitempty"` OperationBit *uint64 `protobuf:"varint,9,opt"`
SubLevel *uint32 `protobuf:"varint,6,opt,name=subLevel" json:"subLevel,omitempty"`
Umrtype *uint32 `protobuf:"varint,7,opt,name=umrtype" json:"umrtype,omitempty"`
RetFrom *uint32 `protobuf:"varint,8,opt,name=retFrom" json:"retFrom,omitempty"`
OperationBit *uint64 `protobuf:"varint,9,opt,name=operationBit" json:"operationBit,omitempty"`
}
func (x *UrlCheckResult) Reset() {
*x = UrlCheckResult{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xbcb_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UrlCheckResult) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UrlCheckResult) ProtoMessage() {}
func (x *UrlCheckResult) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xbcb_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UrlCheckResult.ProtoReflect.Descriptor instead.
func (*UrlCheckResult) Descriptor() ([]byte, []int) {
return file_oidb0xbcb_proto_rawDescGZIP(), []int{5}
} }
func (x *UrlCheckResult) GetUrl() string { func (x *UrlCheckResult) GetUrl() string {
@ -590,220 +356,3 @@ func (x *UrlCheckResult) GetOperationBit() uint64 {
} }
return 0 return 0
} }
var File_oidb0xbcb_proto protoreflect.FileDescriptor
var file_oidb0xbcb_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x62, 0x63, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xbd, 0x03, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x72, 0x6c, 0x52, 0x65,
0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03,
0x75, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x66, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x05, 0x72, 0x65, 0x66, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6c, 0x61,
0x74, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x6c,
0x61, 0x74, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x71, 0x71, 0x50, 0x66, 0x54,
0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x71, 0x71, 0x50, 0x66, 0x54, 0x6f, 0x12,
0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x74,
0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x68, 0x61, 0x74, 0x69,
0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x63, 0x68, 0x61, 0x74, 0x69, 0x64, 0x12,
0x20, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x08,
0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70,
0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x69, 0x6e, 0x18, 0x09, 0x20, 0x01,
0x28, 0x04, 0x52, 0x07, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x72,
0x65, 0x71, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65,
0x71, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61,
0x6c, 0x55, 0x72, 0x6c, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6f, 0x72, 0x69, 0x67,
0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x41, 0x72, 0x6b,
0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x41, 0x72, 0x6b, 0x12, 0x18, 0x0a,
0x07, 0x61, 0x72, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
0x61, 0x72, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x46, 0x69, 0x6e,
0x69, 0x73, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x69, 0x6e,
0x69, 0x73, 0x68, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x72, 0x63, 0x55, 0x72, 0x6c, 0x73, 0x18, 0x0f,
0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x72, 0x63, 0x55, 0x72, 0x6c, 0x73, 0x12, 0x20, 0x0a,
0x0b, 0x73, 0x72, 0x63, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x10, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0b, 0x73, 0x72, 0x63, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12,
0x10, 0x0a, 0x03, 0x71, 0x75, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x71, 0x75,
0x61, 0x22, 0x85, 0x02, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x72, 0x6c, 0x52, 0x65,
0x71, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x66, 0x65, 0x72,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x65, 0x66, 0x65, 0x72, 0x12, 0x1c, 0x0a,
0x09, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x09, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x71,
0x71, 0x50, 0x66, 0x54, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x71, 0x71, 0x50,
0x66, 0x54, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18,
0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x63,
0x68, 0x61, 0x74, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x63, 0x68, 0x61,
0x74, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79,
0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x69, 0x6e,
0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x73, 0x65, 0x6e, 0x64, 0x55, 0x69, 0x6e, 0x12,
0x18, 0x0a, 0x07, 0x72, 0x65, 0x71, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
0x52, 0x07, 0x72, 0x65, 0x71, 0x54, 0x79, 0x70, 0x65, 0x22, 0x62, 0x0a, 0x0b, 0x43, 0x68, 0x65,
0x63, 0x6b, 0x55, 0x72, 0x6c, 0x52, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75,
0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x55, 0x72, 0x6c, 0x43,
0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75,
0x6c, 0x74, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x52, 0x65, 0x71, 0x44, 0x75,
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x6e, 0x65,
0x78, 0x74, 0x52, 0x65, 0x71, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x5f, 0x0a,
0x0b, 0x44, 0x42, 0x43, 0x42, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x20, 0x0a, 0x0b,
0x6e, 0x6f, 0x74, 0x55, 0x73, 0x65, 0x43, 0x61, 0x63, 0x68, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
0x05, 0x52, 0x0b, 0x6e, 0x6f, 0x74, 0x55, 0x73, 0x65, 0x43, 0x61, 0x63, 0x68, 0x65, 0x12, 0x2e,
0x0a, 0x0b, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x18, 0x0a, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x72, 0x6c, 0x52, 0x65,
0x71, 0x52, 0x0b, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x72, 0x6c, 0x52, 0x65, 0x71, 0x22, 0x57,
0x0a, 0x0b, 0x44, 0x42, 0x43, 0x42, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a,
0x07, 0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x2e, 0x0a, 0x0b, 0x63, 0x68, 0x65, 0x63, 0x6b,
0x55, 0x72, 0x6c, 0x52, 0x73, 0x70, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x43,
0x68, 0x65, 0x63, 0x6b, 0x55, 0x72, 0x6c, 0x52, 0x73, 0x70, 0x52, 0x0b, 0x63, 0x68, 0x65, 0x63,
0x6b, 0x55, 0x72, 0x6c, 0x52, 0x73, 0x70, 0x22, 0xfe, 0x01, 0x0a, 0x0e, 0x55, 0x72, 0x6c, 0x43,
0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72,
0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x52, 0x65, 0x73, 0x75,
0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x52, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6a, 0x75, 0x6d, 0x70, 0x55, 0x72, 0x6c, 0x18,
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a, 0x75, 0x6d, 0x70, 0x55, 0x72, 0x6c, 0x12, 0x14,
0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x6c,
0x65, 0x76, 0x65, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x75, 0x62, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x73, 0x75, 0x62, 0x4c, 0x65, 0x76, 0x65, 0x6c,
0x12, 0x18, 0x0a, 0x07, 0x75, 0x6d, 0x72, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x07, 0x75, 0x6d, 0x72, 0x74, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65,
0x74, 0x46, 0x72, 0x6f, 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x72, 0x65, 0x74,
0x46, 0x72, 0x6f, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x42, 0x69, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x6f, 0x70, 0x65, 0x72,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x69, 0x74, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f,
0x69, 0x64, 0x62,
}
var (
file_oidb0xbcb_proto_rawDescOnce sync.Once
file_oidb0xbcb_proto_rawDescData = file_oidb0xbcb_proto_rawDesc
)
func file_oidb0xbcb_proto_rawDescGZIP() []byte {
file_oidb0xbcb_proto_rawDescOnce.Do(func() {
file_oidb0xbcb_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0xbcb_proto_rawDescData)
})
return file_oidb0xbcb_proto_rawDescData
}
var file_oidb0xbcb_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
var file_oidb0xbcb_proto_goTypes = []interface{}{
(*CheckUrlReq)(nil), // 0: CheckUrlReq
(*CheckUrlReqItem)(nil), // 1: CheckUrlReqItem
(*CheckUrlRsp)(nil), // 2: CheckUrlRsp
(*DBCBReqBody)(nil), // 3: DBCBReqBody
(*DBCBRspBody)(nil), // 4: DBCBRspBody
(*UrlCheckResult)(nil), // 5: UrlCheckResult
}
var file_oidb0xbcb_proto_depIdxs = []int32{
5, // 0: CheckUrlRsp.results:type_name -> UrlCheckResult
0, // 1: DBCBReqBody.checkUrlReq:type_name -> CheckUrlReq
2, // 2: DBCBRspBody.checkUrlRsp:type_name -> CheckUrlRsp
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_oidb0xbcb_proto_init() }
func file_oidb0xbcb_proto_init() {
if File_oidb0xbcb_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0xbcb_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CheckUrlReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xbcb_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CheckUrlReqItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xbcb_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CheckUrlRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xbcb_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DBCBReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xbcb_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DBCBRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xbcb_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UrlCheckResult); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0xbcb_proto_rawDesc,
NumEnums: 0,
NumMessages: 6,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0xbcb_proto_goTypes,
DependencyIndexes: file_oidb0xbcb_proto_depIdxs,
MessageInfos: file_oidb0xbcb_proto_msgTypes,
}.Build()
File_oidb0xbcb_proto = out.File
file_oidb0xbcb_proto_rawDesc = nil
file_oidb0xbcb_proto_goTypes = nil
file_oidb0xbcb_proto_depIdxs = nil
}

View File

@ -1,70 +1,16 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0xD79.proto // source: oidb0xD79.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type D79ReqBody struct { type D79ReqBody struct {
state protoimpl.MessageState Seq uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Uin uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields CompressFlag uint32 `protobuf:"varint,3,opt"`
Content []byte `protobuf:"bytes,4,opt"`
Seq uint64 `protobuf:"varint,1,opt,name=seq,proto3" json:"seq,omitempty"` SenderUin uint64 `protobuf:"varint,5,opt"`
Uin uint64 `protobuf:"varint,2,opt,name=uin,proto3" json:"uin,omitempty"` Qua []byte `protobuf:"bytes,6,opt"`
CompressFlag uint32 `protobuf:"varint,3,opt,name=compress_flag,json=compressFlag,proto3" json:"compress_flag,omitempty"` WordExt []byte `protobuf:"bytes,7,opt"`
Content []byte `protobuf:"bytes,4,opt,name=content,proto3" json:"content,omitempty"`
SenderUin uint64 `protobuf:"varint,5,opt,name=sender_uin,json=senderUin,proto3" json:"sender_uin,omitempty"`
Qua []byte `protobuf:"bytes,6,opt,name=qua,proto3" json:"qua,omitempty"`
WordExt []byte `protobuf:"bytes,7,opt,name=word_ext,json=wordExt,proto3" json:"word_ext,omitempty"`
}
func (x *D79ReqBody) Reset() {
*x = D79ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xD79_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D79ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D79ReqBody) ProtoMessage() {}
func (x *D79ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xD79_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D79ReqBody.ProtoReflect.Descriptor instead.
func (*D79ReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xD79_proto_rawDescGZIP(), []int{0}
} }
func (x *D79ReqBody) GetSeq() uint64 { func (x *D79ReqBody) GetSeq() uint64 {
@ -117,47 +63,11 @@ func (x *D79ReqBody) GetWordExt() []byte {
} }
type D79RspBody struct { type D79RspBody struct {
state protoimpl.MessageState Ret uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Seq uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Uin uint64 `protobuf:"varint,3,opt"`
CompressFlag uint32 `protobuf:"varint,4,opt"`
Ret uint32 `protobuf:"varint,1,opt,name=ret,proto3" json:"ret,omitempty"` Content *D79Content `protobuf:"bytes,5,opt"`
Seq uint64 `protobuf:"varint,2,opt,name=seq,proto3" json:"seq,omitempty"`
Uin uint64 `protobuf:"varint,3,opt,name=uin,proto3" json:"uin,omitempty"`
CompressFlag uint32 `protobuf:"varint,4,opt,name=compress_flag,json=compressFlag,proto3" json:"compress_flag,omitempty"`
Content *D79Content `protobuf:"bytes,5,opt,name=content,proto3" json:"content,omitempty"`
}
func (x *D79RspBody) Reset() {
*x = D79RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xD79_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D79RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D79RspBody) ProtoMessage() {}
func (x *D79RspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xD79_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D79RspBody.ProtoReflect.Descriptor instead.
func (*D79RspBody) Descriptor() ([]byte, []int) {
return file_oidb0xD79_proto_rawDescGZIP(), []int{1}
} }
func (x *D79RspBody) GetRet() uint32 { func (x *D79RspBody) GetRet() uint32 {
@ -196,43 +106,7 @@ func (x *D79RspBody) GetContent() *D79Content {
} }
type D79Content struct { type D79Content struct {
state protoimpl.MessageState SliceContent [][]byte `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
SliceContent [][]byte `protobuf:"bytes,1,rep,name=slice_content,json=sliceContent,proto3" json:"slice_content,omitempty"`
}
func (x *D79Content) Reset() {
*x = D79Content{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xD79_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *D79Content) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*D79Content) ProtoMessage() {}
func (x *D79Content) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xD79_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use D79Content.ProtoReflect.Descriptor instead.
func (*D79Content) Descriptor() ([]byte, []int) {
return file_oidb0xD79_proto_rawDescGZIP(), []int{2}
} }
func (x *D79Content) GetSliceContent() [][]byte { func (x *D79Content) GetSliceContent() [][]byte {
@ -241,125 +115,3 @@ func (x *D79Content) GetSliceContent() [][]byte {
} }
return nil return nil
} }
var File_oidb0xD79_proto protoreflect.FileDescriptor
var file_oidb0xD79_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x44, 0x37, 0x39, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xbb, 0x01, 0x0a, 0x0a, 0x44, 0x37, 0x39, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79,
0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x73,
0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
0x03, 0x75, 0x69, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
0x5f, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x63, 0x6f, 0x6d,
0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x75, 0x69,
0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x55,
0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x71, 0x75, 0x61, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x03, 0x71, 0x75, 0x61, 0x12, 0x19, 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x65, 0x78, 0x74,
0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x78, 0x74, 0x22,
0x8e, 0x01, 0x0a, 0x0a, 0x44, 0x37, 0x39, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x10,
0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x72, 0x65, 0x74,
0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x73,
0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
0x03, 0x75, 0x69, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
0x5f, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x63, 0x6f, 0x6d,
0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x25, 0x0a, 0x07, 0x63, 0x6f, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x44, 0x37, 0x39,
0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
0x22, 0x31, 0x0a, 0x0a, 0x44, 0x37, 0x39, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x23,
0x0a, 0x0d, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0c, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_oidb0xD79_proto_rawDescOnce sync.Once
file_oidb0xD79_proto_rawDescData = file_oidb0xD79_proto_rawDesc
)
func file_oidb0xD79_proto_rawDescGZIP() []byte {
file_oidb0xD79_proto_rawDescOnce.Do(func() {
file_oidb0xD79_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0xD79_proto_rawDescData)
})
return file_oidb0xD79_proto_rawDescData
}
var file_oidb0xD79_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
var file_oidb0xD79_proto_goTypes = []interface{}{
(*D79ReqBody)(nil), // 0: D79ReqBody
(*D79RspBody)(nil), // 1: D79RspBody
(*D79Content)(nil), // 2: D79Content
}
var file_oidb0xD79_proto_depIdxs = []int32{
2, // 0: D79RspBody.content:type_name -> D79Content
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
1, // [1:1] is the sub-list for extension extendee
0, // [0:1] is the sub-list for field type_name
}
func init() { file_oidb0xD79_proto_init() }
func file_oidb0xD79_proto_init() {
if File_oidb0xD79_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0xD79_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D79ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xD79_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D79RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xD79_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*D79Content); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0xD79_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0xD79_proto_goTypes,
DependencyIndexes: file_oidb0xD79_proto_depIdxs,
MessageInfos: file_oidb0xD79_proto_msgTypes,
}.Build()
File_oidb0xD79_proto = out.File
file_oidb0xD79_proto_rawDesc = nil
file_oidb0xD79_proto_goTypes = nil
file_oidb0xD79_proto_depIdxs = nil
}

View File

@ -1,67 +1,13 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0xe07.proto // source: oidb0xe07.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type DE07ReqBody struct { type DE07ReqBody struct {
state protoimpl.MessageState Version int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Client int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Entrance int32 `protobuf:"varint,3,opt"`
OcrReqBody *OCRReqBody `protobuf:"bytes,10,opt"`
Version int32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
Client int32 `protobuf:"varint,2,opt,name=client,proto3" json:"client,omitempty"`
Entrance int32 `protobuf:"varint,3,opt,name=entrance,proto3" json:"entrance,omitempty"`
OcrReqBody *OCRReqBody `protobuf:"bytes,10,opt,name=ocrReqBody,proto3" json:"ocrReqBody,omitempty"`
}
func (x *DE07ReqBody) Reset() {
*x = DE07ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DE07ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DE07ReqBody) ProtoMessage() {}
func (x *DE07ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DE07ReqBody.ProtoReflect.Descriptor instead.
func (*DE07ReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{0}
} }
func (x *DE07ReqBody) GetVersion() int32 { func (x *DE07ReqBody) GetVersion() int32 {
@ -93,51 +39,15 @@ func (x *DE07ReqBody) GetOcrReqBody() *OCRReqBody {
} }
type OCRReqBody struct { type OCRReqBody struct {
state protoimpl.MessageState ImageUrl string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache LanguageType string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Scene string `protobuf:"bytes,3,opt"`
OriginMd5 string `protobuf:"bytes,10,opt"`
ImageUrl string `protobuf:"bytes,1,opt,name=imageUrl,proto3" json:"imageUrl,omitempty"` AfterCompressMd5 string `protobuf:"bytes,11,opt"`
LanguageType string `protobuf:"bytes,2,opt,name=languageType,proto3" json:"languageType,omitempty"` AfterCompressFileSize int32 `protobuf:"varint,12,opt"`
Scene string `protobuf:"bytes,3,opt,name=scene,proto3" json:"scene,omitempty"` AfterCompressWeight int32 `protobuf:"varint,13,opt"`
OriginMd5 string `protobuf:"bytes,10,opt,name=originMd5,proto3" json:"originMd5,omitempty"` AfterCompressHeight int32 `protobuf:"varint,14,opt"`
AfterCompressMd5 string `protobuf:"bytes,11,opt,name=afterCompressMd5,proto3" json:"afterCompressMd5,omitempty"` IsCut bool `protobuf:"varint,15,opt"`
AfterCompressFileSize int32 `protobuf:"varint,12,opt,name=afterCompressFileSize,proto3" json:"afterCompressFileSize,omitempty"`
AfterCompressWeight int32 `protobuf:"varint,13,opt,name=afterCompressWeight,proto3" json:"afterCompressWeight,omitempty"`
AfterCompressHeight int32 `protobuf:"varint,14,opt,name=afterCompressHeight,proto3" json:"afterCompressHeight,omitempty"`
IsCut bool `protobuf:"varint,15,opt,name=isCut,proto3" json:"isCut,omitempty"`
}
func (x *OCRReqBody) Reset() {
*x = OCRReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *OCRReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*OCRReqBody) ProtoMessage() {}
func (x *OCRReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use OCRReqBody.ProtoReflect.Descriptor instead.
func (*OCRReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{1}
} }
func (x *OCRReqBody) GetImageUrl() string { func (x *OCRReqBody) GetImageUrl() string {
@ -204,46 +114,10 @@ func (x *OCRReqBody) GetIsCut() bool {
} }
type DE07RspBody struct { type DE07RspBody struct {
state protoimpl.MessageState RetCode int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ErrMsg string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Wording string `protobuf:"bytes,3,opt"`
OcrRspBody *OCRRspBody `protobuf:"bytes,10,opt"`
RetCode int32 `protobuf:"varint,1,opt,name=retCode,proto3" json:"retCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
Wording string `protobuf:"bytes,3,opt,name=wording,proto3" json:"wording,omitempty"`
OcrRspBody *OCRRspBody `protobuf:"bytes,10,opt,name=ocrRspBody,proto3" json:"ocrRspBody,omitempty"`
}
func (x *DE07RspBody) Reset() {
*x = DE07RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DE07RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DE07RspBody) ProtoMessage() {}
func (x *DE07RspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DE07RspBody.ProtoReflect.Descriptor instead.
func (*DE07RspBody) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{2}
} }
func (x *DE07RspBody) GetRetCode() int32 { func (x *DE07RspBody) GetRetCode() int32 {
@ -275,46 +149,10 @@ func (x *DE07RspBody) GetOcrRspBody() *OCRRspBody {
} }
type TextDetection struct { type TextDetection struct {
state protoimpl.MessageState DetectedText string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Confidence int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Polygon *Polygon `protobuf:"bytes,3,opt"`
AdvancedInfo string `protobuf:"bytes,4,opt"`
DetectedText string `protobuf:"bytes,1,opt,name=detectedText,proto3" json:"detectedText,omitempty"`
Confidence int32 `protobuf:"varint,2,opt,name=confidence,proto3" json:"confidence,omitempty"`
Polygon *Polygon `protobuf:"bytes,3,opt,name=polygon,proto3" json:"polygon,omitempty"`
AdvancedInfo string `protobuf:"bytes,4,opt,name=advancedInfo,proto3" json:"advancedInfo,omitempty"`
}
func (x *TextDetection) Reset() {
*x = TextDetection{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TextDetection) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TextDetection) ProtoMessage() {}
func (x *TextDetection) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TextDetection.ProtoReflect.Descriptor instead.
func (*TextDetection) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{3}
} }
func (x *TextDetection) GetDetectedText() string { func (x *TextDetection) GetDetectedText() string {
@ -346,43 +184,7 @@ func (x *TextDetection) GetAdvancedInfo() string {
} }
type Polygon struct { type Polygon struct {
state protoimpl.MessageState Coordinates []*Coordinate `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Coordinates []*Coordinate `protobuf:"bytes,1,rep,name=coordinates,proto3" json:"coordinates,omitempty"`
}
func (x *Polygon) Reset() {
*x = Polygon{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Polygon) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Polygon) ProtoMessage() {}
func (x *Polygon) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Polygon.ProtoReflect.Descriptor instead.
func (*Polygon) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{4}
} }
func (x *Polygon) GetCoordinates() []*Coordinate { func (x *Polygon) GetCoordinates() []*Coordinate {
@ -393,44 +195,8 @@ func (x *Polygon) GetCoordinates() []*Coordinate {
} }
type Coordinate struct { type Coordinate struct {
state protoimpl.MessageState X int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Y int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
X int32 `protobuf:"varint,1,opt,name=X,proto3" json:"X,omitempty"`
Y int32 `protobuf:"varint,2,opt,name=Y,proto3" json:"Y,omitempty"`
}
func (x *Coordinate) Reset() {
*x = Coordinate{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Coordinate) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Coordinate) ProtoMessage() {}
func (x *Coordinate) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Coordinate.ProtoReflect.Descriptor instead.
func (*Coordinate) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{5}
} }
func (x *Coordinate) GetX() int32 { func (x *Coordinate) GetX() int32 {
@ -448,44 +214,8 @@ func (x *Coordinate) GetY() int32 {
} }
type Language struct { type Language struct {
state protoimpl.MessageState Language string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache LanguageDesc string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Language string `protobuf:"bytes,1,opt,name=language,proto3" json:"language,omitempty"`
LanguageDesc string `protobuf:"bytes,2,opt,name=languageDesc,proto3" json:"languageDesc,omitempty"`
}
func (x *Language) Reset() {
*x = Language{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Language) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Language) ProtoMessage() {}
func (x *Language) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Language.ProtoReflect.Descriptor instead.
func (*Language) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{6}
} }
func (x *Language) GetLanguage() string { func (x *Language) GetLanguage() string {
@ -503,50 +233,14 @@ func (x *Language) GetLanguageDesc() string {
} }
type OCRRspBody struct { type OCRRspBody struct {
state protoimpl.MessageState TextDetections []*TextDetection `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache Language string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields RequestId string `protobuf:"bytes,3,opt"`
OcrLanguageList []string `protobuf:"bytes,101,rep"`
TextDetections []*TextDetection `protobuf:"bytes,1,rep,name=textDetections,proto3" json:"textDetections,omitempty"` DstTranslateLanguageList []string `protobuf:"bytes,102,rep"`
Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"` LanguageList []*Language `protobuf:"bytes,103,rep"`
RequestId string `protobuf:"bytes,3,opt,name=requestId,proto3" json:"requestId,omitempty"` AfterCompressWeight int32 `protobuf:"varint,111,opt"`
OcrLanguageList []string `protobuf:"bytes,101,rep,name=ocrLanguageList,proto3" json:"ocrLanguageList,omitempty"` AfterCompressHeight int32 `protobuf:"varint,112,opt"`
DstTranslateLanguageList []string `protobuf:"bytes,102,rep,name=dstTranslateLanguageList,proto3" json:"dstTranslateLanguageList,omitempty"`
LanguageList []*Language `protobuf:"bytes,103,rep,name=languageList,proto3" json:"languageList,omitempty"`
AfterCompressWeight int32 `protobuf:"varint,111,opt,name=afterCompressWeight,proto3" json:"afterCompressWeight,omitempty"`
AfterCompressHeight int32 `protobuf:"varint,112,opt,name=afterCompressHeight,proto3" json:"afterCompressHeight,omitempty"`
}
func (x *OCRRspBody) Reset() {
*x = OCRRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe07_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *OCRRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*OCRRspBody) ProtoMessage() {}
func (x *OCRRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe07_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use OCRRspBody.ProtoReflect.Descriptor instead.
func (*OCRRspBody) Descriptor() ([]byte, []int) {
return file_oidb0xe07_proto_rawDescGZIP(), []int{7}
} }
func (x *OCRRspBody) GetTextDetections() []*TextDetection { func (x *OCRRspBody) GetTextDetections() []*TextDetection {
@ -604,254 +298,3 @@ func (x *OCRRspBody) GetAfterCompressHeight() int32 {
} }
return 0 return 0
} }
var File_oidb0xe07_proto protoreflect.FileDescriptor
var file_oidb0xe07_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x65, 0x30, 0x37, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0x88, 0x01, 0x0a, 0x0b, 0x44, 0x45, 0x30, 0x37, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x63, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x18,
0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x12,
0x2b, 0x0a, 0x0a, 0x6f, 0x63, 0x72, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x18, 0x0a, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x4f, 0x43, 0x52, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79,
0x52, 0x0a, 0x6f, 0x63, 0x72, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x22, 0xdc, 0x02, 0x0a,
0x0a, 0x4f, 0x43, 0x52, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x69,
0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69,
0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x22, 0x0a, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75,
0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c,
0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73,
0x63, 0x65, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x63, 0x65, 0x6e,
0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x4d, 0x64, 0x35, 0x18, 0x0a,
0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x4d, 0x64, 0x35, 0x12,
0x2a, 0x0a, 0x10, 0x61, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
0x4d, 0x64, 0x35, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x61, 0x66, 0x74, 0x65, 0x72,
0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x4d, 0x64, 0x35, 0x12, 0x34, 0x0a, 0x15, 0x61,
0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x69, 0x6c, 0x65,
0x53, 0x69, 0x7a, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x61, 0x66, 0x74, 0x65,
0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a,
0x65, 0x12, 0x30, 0x0a, 0x13, 0x61, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65,
0x73, 0x73, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13,
0x61, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x57, 0x65, 0x69,
0x67, 0x68, 0x74, 0x12, 0x30, 0x0a, 0x13, 0x61, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70,
0x72, 0x65, 0x73, 0x73, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05,
0x52, 0x13, 0x61, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x48,
0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x43, 0x75, 0x74, 0x18, 0x0f,
0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x43, 0x75, 0x74, 0x22, 0x86, 0x01, 0x0a, 0x0b,
0x44, 0x45, 0x30, 0x37, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x72,
0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x65,
0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18,
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x18, 0x0a,
0x07, 0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x2b, 0x0a, 0x0a, 0x6f, 0x63, 0x72, 0x52, 0x73,
0x70, 0x42, 0x6f, 0x64, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x4f, 0x43,
0x52, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x52, 0x0a, 0x6f, 0x63, 0x72, 0x52, 0x73, 0x70,
0x42, 0x6f, 0x64, 0x79, 0x22, 0x9b, 0x01, 0x0a, 0x0d, 0x54, 0x65, 0x78, 0x74, 0x44, 0x65, 0x74,
0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x22, 0x0a, 0x0c, 0x64, 0x65, 0x74, 0x65, 0x63, 0x74,
0x65, 0x64, 0x54, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x64, 0x65,
0x74, 0x65, 0x63, 0x74, 0x65, 0x64, 0x54, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f,
0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a,
0x63, 0x6f, 0x6e, 0x66, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x70, 0x6f,
0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x50, 0x6f,
0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x52, 0x07, 0x70, 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x12, 0x22,
0x0a, 0x0c, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x04,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x49, 0x6e,
0x66, 0x6f, 0x22, 0x38, 0x0a, 0x07, 0x50, 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x12, 0x2d, 0x0a,
0x0b, 0x63, 0x6f, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x43, 0x6f, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x52,
0x0b, 0x63, 0x6f, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x73, 0x22, 0x28, 0x0a, 0x0a,
0x43, 0x6f, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x61, 0x74, 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x58, 0x18,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x58, 0x12, 0x0c, 0x0a, 0x01, 0x59, 0x18, 0x02, 0x20,
0x01, 0x28, 0x05, 0x52, 0x01, 0x59, 0x22, 0x4a, 0x0a, 0x08, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x22,
0x0a, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x44, 0x65, 0x73, 0x63, 0x18, 0x02,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x44, 0x65,
0x73, 0x63, 0x22, 0xf7, 0x02, 0x0a, 0x0a, 0x4f, 0x43, 0x52, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
0x79, 0x12, 0x36, 0x0a, 0x0e, 0x74, 0x65, 0x78, 0x74, 0x44, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x54, 0x65, 0x78, 0x74,
0x44, 0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x74, 0x65, 0x78, 0x74, 0x44,
0x65, 0x74, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x6e,
0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x6e,
0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x6f, 0x63, 0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x65, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x6f, 0x63,
0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x3a, 0x0a,
0x18, 0x64, 0x73, 0x74, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x6e,
0x67, 0x75, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x66, 0x20, 0x03, 0x28, 0x09, 0x52,
0x18, 0x64, 0x73, 0x74, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x6e,
0x67, 0x75, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x0c, 0x6c, 0x61, 0x6e,
0x67, 0x75, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x09, 0x2e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x52, 0x0c, 0x6c, 0x61, 0x6e, 0x67,
0x75, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x13, 0x61, 0x66, 0x74, 0x65,
0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18,
0x6f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x61, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70,
0x72, 0x65, 0x73, 0x73, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x30, 0x0a, 0x13, 0x61, 0x66,
0x74, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x48, 0x65, 0x69, 0x67, 0x68,
0x74, 0x18, 0x70, 0x20, 0x01, 0x28, 0x05, 0x52, 0x13, 0x61, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6f,
0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x42, 0x09, 0x5a, 0x07,
0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_oidb0xe07_proto_rawDescOnce sync.Once
file_oidb0xe07_proto_rawDescData = file_oidb0xe07_proto_rawDesc
)
func file_oidb0xe07_proto_rawDescGZIP() []byte {
file_oidb0xe07_proto_rawDescOnce.Do(func() {
file_oidb0xe07_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0xe07_proto_rawDescData)
})
return file_oidb0xe07_proto_rawDescData
}
var file_oidb0xe07_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
var file_oidb0xe07_proto_goTypes = []interface{}{
(*DE07ReqBody)(nil), // 0: DE07ReqBody
(*OCRReqBody)(nil), // 1: OCRReqBody
(*DE07RspBody)(nil), // 2: DE07RspBody
(*TextDetection)(nil), // 3: TextDetection
(*Polygon)(nil), // 4: Polygon
(*Coordinate)(nil), // 5: Coordinate
(*Language)(nil), // 6: Language
(*OCRRspBody)(nil), // 7: OCRRspBody
}
var file_oidb0xe07_proto_depIdxs = []int32{
1, // 0: DE07ReqBody.ocrReqBody:type_name -> OCRReqBody
7, // 1: DE07RspBody.ocrRspBody:type_name -> OCRRspBody
4, // 2: TextDetection.polygon:type_name -> Polygon
5, // 3: Polygon.coordinates:type_name -> Coordinate
3, // 4: OCRRspBody.textDetections:type_name -> TextDetection
6, // 5: OCRRspBody.languageList:type_name -> Language
6, // [6:6] is the sub-list for method output_type
6, // [6:6] is the sub-list for method input_type
6, // [6:6] is the sub-list for extension type_name
6, // [6:6] is the sub-list for extension extendee
0, // [0:6] is the sub-list for field type_name
}
func init() { file_oidb0xe07_proto_init() }
func file_oidb0xe07_proto_init() {
if File_oidb0xe07_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0xe07_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DE07ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe07_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OCRReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe07_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DE07RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe07_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TextDetection); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe07_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Polygon); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe07_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Coordinate); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe07_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Language); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe07_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OCRRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0xe07_proto_rawDesc,
NumEnums: 0,
NumMessages: 8,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0xe07_proto_goTypes,
DependencyIndexes: file_oidb0xe07_proto_depIdxs,
MessageInfos: file_oidb0xe07_proto_msgTypes,
}.Build()
File_oidb0xe07_proto = out.File
file_oidb0xe07_proto_rawDesc = nil
file_oidb0xe07_proto_goTypes = nil
file_oidb0xe07_proto_depIdxs = nil
}

View File

@ -1,69 +1,15 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0xe5b.proto // source: oidb0xe5b.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type LifeAchievementItem struct { type LifeAchievementItem struct {
state protoimpl.MessageState AchievementId *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AchievementTitle *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields AchievementIcon *string `protobuf:"bytes,3,opt"`
HasPraised *bool `protobuf:"varint,4,opt"`
AchievementId *uint32 `protobuf:"varint,1,opt,name=achievementId" json:"achievementId,omitempty"` PraiseNum *uint32 `protobuf:"varint,5,opt"`
AchievementTitle *string `protobuf:"bytes,2,opt,name=achievementTitle" json:"achievementTitle,omitempty"` AchievementContent []byte `protobuf:"bytes,6,opt"`
AchievementIcon *string `protobuf:"bytes,3,opt,name=achievementIcon" json:"achievementIcon,omitempty"`
HasPraised *bool `protobuf:"varint,4,opt,name=hasPraised" json:"hasPraised,omitempty"`
PraiseNum *uint32 `protobuf:"varint,5,opt,name=praiseNum" json:"praiseNum,omitempty"`
AchievementContent []byte `protobuf:"bytes,6,opt,name=achievementContent" json:"achievementContent,omitempty"`
}
func (x *LifeAchievementItem) Reset() {
*x = LifeAchievementItem{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe5b_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LifeAchievementItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LifeAchievementItem) ProtoMessage() {}
func (x *LifeAchievementItem) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe5b_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use LifeAchievementItem.ProtoReflect.Descriptor instead.
func (*LifeAchievementItem) Descriptor() ([]byte, []int) {
return file_oidb0xe5b_proto_rawDescGZIP(), []int{0}
} }
func (x *LifeAchievementItem) GetAchievementId() uint32 { func (x *LifeAchievementItem) GetAchievementId() uint32 {
@ -109,46 +55,10 @@ func (x *LifeAchievementItem) GetAchievementContent() []byte {
} }
type DE5BReqBody struct { type DE5BReqBody struct {
state protoimpl.MessageState Uin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache AchievementId []uint32 `protobuf:"varint,2,rep"`
unknownFields protoimpl.UnknownFields MaxCount *uint32 `protobuf:"varint,3,opt"`
ReqAchievementContent *bool `protobuf:"varint,4,opt"`
Uin *uint64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"`
AchievementId []uint32 `protobuf:"varint,2,rep,name=achievementId" json:"achievementId,omitempty"`
MaxCount *uint32 `protobuf:"varint,3,opt,name=maxCount" json:"maxCount,omitempty"`
ReqAchievementContent *bool `protobuf:"varint,4,opt,name=reqAchievementContent" json:"reqAchievementContent,omitempty"`
}
func (x *DE5BReqBody) Reset() {
*x = DE5BReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe5b_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DE5BReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DE5BReqBody) ProtoMessage() {}
func (x *DE5BReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe5b_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DE5BReqBody.ProtoReflect.Descriptor instead.
func (*DE5BReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xe5b_proto_rawDescGZIP(), []int{1}
} }
func (x *DE5BReqBody) GetUin() uint64 { func (x *DE5BReqBody) GetUin() uint64 {
@ -180,45 +90,9 @@ func (x *DE5BReqBody) GetReqAchievementContent() bool {
} }
type DE5BRspBody struct { type DE5BRspBody struct {
state protoimpl.MessageState AchievementTotalCount *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache LifeAchItem []*LifeAchievementItem `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields AchievementOpenid *string `protobuf:"bytes,3,opt"`
AchievementTotalCount *uint32 `protobuf:"varint,1,opt,name=achievementTotalCount" json:"achievementTotalCount,omitempty"`
LifeAchItem []*LifeAchievementItem `protobuf:"bytes,2,rep,name=lifeAchItem" json:"lifeAchItem,omitempty"`
AchievementOpenid *string `protobuf:"bytes,3,opt,name=achievementOpenid" json:"achievementOpenid,omitempty"`
}
func (x *DE5BRspBody) Reset() {
*x = DE5BRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xe5b_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DE5BRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DE5BRspBody) ProtoMessage() {}
func (x *DE5BRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xe5b_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DE5BRspBody.ProtoReflect.Descriptor instead.
func (*DE5BRspBody) Descriptor() ([]byte, []int) {
return file_oidb0xe5b_proto_rawDescGZIP(), []int{2}
} }
func (x *DE5BRspBody) GetAchievementTotalCount() uint32 { func (x *DE5BRspBody) GetAchievementTotalCount() uint32 {
@ -241,137 +115,3 @@ func (x *DE5BRspBody) GetAchievementOpenid() string {
} }
return "" return ""
} }
var File_oidb0xe5b_proto protoreflect.FileDescriptor
var file_oidb0xe5b_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x65, 0x35, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xff, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x66, 0x65, 0x41, 0x63, 0x68, 0x69, 0x65, 0x76,
0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x68,
0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x0d, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12,
0x2a, 0x0a, 0x10, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x69,
0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x61, 0x63, 0x68, 0x69, 0x65,
0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x61,
0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x63, 0x6f, 0x6e, 0x18, 0x03,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e,
0x74, 0x49, 0x63, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x50, 0x72, 0x61, 0x69,
0x73, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x68, 0x61, 0x73, 0x50, 0x72,
0x61, 0x69, 0x73, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x61, 0x69, 0x73, 0x65, 0x4e,
0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x70, 0x72, 0x61, 0x69, 0x73, 0x65,
0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65,
0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52,
0x12, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x22, 0x97, 0x01, 0x0a, 0x0b, 0x44, 0x45, 0x35, 0x42, 0x52, 0x65, 0x71, 0x42,
0x6f, 0x64, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65,
0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0d, 0x61, 0x63,
0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6d,
0x61, 0x78, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x6d,
0x61, 0x78, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x34, 0x0a, 0x15, 0x72, 0x65, 0x71, 0x41, 0x63,
0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x72, 0x65, 0x71, 0x41, 0x63, 0x68, 0x69, 0x65,
0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x22, 0xa9, 0x01,
0x0a, 0x0b, 0x44, 0x45, 0x35, 0x42, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x34, 0x0a,
0x15, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61,
0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x15, 0x61, 0x63,
0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f,
0x75, 0x6e, 0x74, 0x12, 0x36, 0x0a, 0x0b, 0x6c, 0x69, 0x66, 0x65, 0x41, 0x63, 0x68, 0x49, 0x74,
0x65, 0x6d, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x4c, 0x69, 0x66, 0x65, 0x41,
0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x0b,
0x6c, 0x69, 0x66, 0x65, 0x41, 0x63, 0x68, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x61,
0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64,
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x61, 0x63, 0x68, 0x69, 0x65, 0x76, 0x65, 0x6d,
0x65, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x6e, 0x69, 0x64, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b,
0x6f, 0x69, 0x64, 0x62,
}
var (
file_oidb0xe5b_proto_rawDescOnce sync.Once
file_oidb0xe5b_proto_rawDescData = file_oidb0xe5b_proto_rawDesc
)
func file_oidb0xe5b_proto_rawDescGZIP() []byte {
file_oidb0xe5b_proto_rawDescOnce.Do(func() {
file_oidb0xe5b_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0xe5b_proto_rawDescData)
})
return file_oidb0xe5b_proto_rawDescData
}
var file_oidb0xe5b_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
var file_oidb0xe5b_proto_goTypes = []interface{}{
(*LifeAchievementItem)(nil), // 0: LifeAchievementItem
(*DE5BReqBody)(nil), // 1: DE5BReqBody
(*DE5BRspBody)(nil), // 2: DE5BRspBody
}
var file_oidb0xe5b_proto_depIdxs = []int32{
0, // 0: DE5BRspBody.lifeAchItem:type_name -> LifeAchievementItem
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
1, // [1:1] is the sub-list for extension extendee
0, // [0:1] is the sub-list for field type_name
}
func init() { file_oidb0xe5b_proto_init() }
func file_oidb0xe5b_proto_init() {
if File_oidb0xe5b_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0xe5b_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LifeAchievementItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe5b_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DE5BReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xe5b_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DE5BRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0xe5b_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0xe5b_proto_goTypes,
DependencyIndexes: file_oidb0xe5b_proto_depIdxs,
MessageInfos: file_oidb0xe5b_proto_msgTypes,
}.Build()
File_oidb0xe5b_proto = out.File
file_oidb0xe5b_proto_rawDesc = nil
file_oidb0xe5b_proto_goTypes = nil
file_oidb0xe5b_proto_depIdxs = nil
}

View File

@ -1,66 +1,12 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0xeac.proto // source: oidb0xeac.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type EACReqBody struct { type EACReqBody struct {
state protoimpl.MessageState GroupCode *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Seq *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Random *uint32 `protobuf:"varint,3,opt"`
GroupCode *uint64 `protobuf:"varint,1,opt,name=groupCode" json:"groupCode,omitempty"`
Seq *uint32 `protobuf:"varint,2,opt,name=seq" json:"seq,omitempty"`
Random *uint32 `protobuf:"varint,3,opt,name=random" json:"random,omitempty"`
}
func (x *EACReqBody) Reset() {
*x = EACReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xeac_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *EACReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*EACReqBody) ProtoMessage() {}
func (x *EACReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xeac_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use EACReqBody.ProtoReflect.Descriptor instead.
func (*EACReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xeac_proto_rawDescGZIP(), []int{0}
} }
func (x *EACReqBody) GetGroupCode() uint64 { func (x *EACReqBody) GetGroupCode() uint64 {
@ -85,47 +31,11 @@ func (x *EACReqBody) GetRandom() uint32 {
} }
type EACRspBody struct { type EACRspBody struct {
state protoimpl.MessageState Wording *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache DigestUin *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields DigestTime *uint32 `protobuf:"varint,3,opt"`
Wording *string `protobuf:"bytes,1,opt,name=wording" json:"wording,omitempty"`
DigestUin *uint64 `protobuf:"varint,2,opt,name=digestUin" json:"digestUin,omitempty"`
DigestTime *uint32 `protobuf:"varint,3,opt,name=digestTime" json:"digestTime,omitempty"`
//optional DigestMsg msg = 4; //optional DigestMsg msg = 4;
ErrorCode *uint32 `protobuf:"varint,10,opt,name=errorCode" json:"errorCode,omitempty"` ErrorCode *uint32 `protobuf:"varint,10,opt"`
}
func (x *EACRspBody) Reset() {
*x = EACRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xeac_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *EACRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*EACRspBody) ProtoMessage() {}
func (x *EACRspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xeac_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use EACRspBody.ProtoReflect.Descriptor instead.
func (*EACRspBody) Descriptor() ([]byte, []int) {
return file_oidb0xeac_proto_rawDescGZIP(), []int{1}
} }
func (x *EACRspBody) GetWording() string { func (x *EACRspBody) GetWording() string {
@ -155,100 +65,3 @@ func (x *EACRspBody) GetErrorCode() uint32 {
} }
return 0 return 0
} }
var File_oidb0xeac_proto protoreflect.FileDescriptor
var file_oidb0xeac_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x65, 0x61, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0x54, 0x0a, 0x0a, 0x45, 0x41, 0x43, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12,
0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a,
0x03, 0x73, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x73, 0x65, 0x71, 0x12,
0x16, 0x0a, 0x06, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x06, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x22, 0x82, 0x01, 0x0a, 0x0a, 0x45, 0x41, 0x43, 0x52,
0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e,
0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x77, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67,
0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x67, 0x65, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20,
0x01, 0x28, 0x04, 0x52, 0x09, 0x64, 0x69, 0x67, 0x65, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x12, 0x1e,
0x0a, 0x0a, 0x64, 0x69, 0x67, 0x65, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0a, 0x64, 0x69, 0x67, 0x65, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c,
0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x42, 0x09, 0x5a, 0x07,
0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62,
}
var (
file_oidb0xeac_proto_rawDescOnce sync.Once
file_oidb0xeac_proto_rawDescData = file_oidb0xeac_proto_rawDesc
)
func file_oidb0xeac_proto_rawDescGZIP() []byte {
file_oidb0xeac_proto_rawDescOnce.Do(func() {
file_oidb0xeac_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0xeac_proto_rawDescData)
})
return file_oidb0xeac_proto_rawDescData
}
var file_oidb0xeac_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_oidb0xeac_proto_goTypes = []interface{}{
(*EACReqBody)(nil), // 0: EACReqBody
(*EACRspBody)(nil), // 1: EACRspBody
}
var file_oidb0xeac_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
0, // [0:0] is the sub-list for extension extendee
0, // [0:0] is the sub-list for field type_name
}
func init() { file_oidb0xeac_proto_init() }
func file_oidb0xeac_proto_init() {
if File_oidb0xeac_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0xeac_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EACReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xeac_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EACRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0xeac_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0xeac_proto_goTypes,
DependencyIndexes: file_oidb0xeac_proto_depIdxs,
MessageInfos: file_oidb0xeac_proto_msgTypes,
}.Build()
File_oidb0xeac_proto = out.File
file_oidb0xeac_proto_rawDesc = nil
file_oidb0xeac_proto_goTypes = nil
file_oidb0xeac_proto_depIdxs = nil
}

View File

@ -1,70 +1,16 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: oidb0xec4.proto // source: oidb0xec4.proto
package oidb package oidb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type Comment struct { type Comment struct {
state protoimpl.MessageState Id *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Comment *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Time *uint64 `protobuf:"varint,3,opt"`
FromUin *uint64 `protobuf:"varint,4,opt"`
Id *string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` ToUin *uint64 `protobuf:"varint,5,opt"`
Comment *string `protobuf:"bytes,2,opt,name=comment" json:"comment,omitempty"` ReplyId *string `protobuf:"bytes,6,opt"`
Time *uint64 `protobuf:"varint,3,opt,name=time" json:"time,omitempty"` FromNick *string `protobuf:"bytes,7,opt"`
FromUin *uint64 `protobuf:"varint,4,opt,name=fromUin" json:"fromUin,omitempty"`
ToUin *uint64 `protobuf:"varint,5,opt,name=toUin" json:"toUin,omitempty"`
ReplyId *string `protobuf:"bytes,6,opt,name=replyId" json:"replyId,omitempty"`
FromNick *string `protobuf:"bytes,7,opt,name=fromNick" json:"fromNick,omitempty"`
}
func (x *Comment) Reset() {
*x = Comment{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xec4_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Comment) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Comment) ProtoMessage() {}
func (x *Comment) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xec4_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Comment.ProtoReflect.Descriptor instead.
func (*Comment) Descriptor() ([]byte, []int) {
return file_oidb0xec4_proto_rawDescGZIP(), []int{0}
} }
func (x *Comment) GetId() string { func (x *Comment) GetId() string {
@ -117,46 +63,10 @@ func (x *Comment) GetFromNick() string {
} }
type Praise struct { type Praise struct {
state protoimpl.MessageState FromUin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ToUin *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Time *uint64 `protobuf:"varint,3,opt"`
FromNick *string `protobuf:"bytes,4,opt"`
FromUin *uint64 `protobuf:"varint,1,opt,name=fromUin" json:"fromUin,omitempty"`
ToUin *uint64 `protobuf:"varint,2,opt,name=toUin" json:"toUin,omitempty"`
Time *uint64 `protobuf:"varint,3,opt,name=time" json:"time,omitempty"`
FromNick *string `protobuf:"bytes,4,opt,name=fromNick" json:"fromNick,omitempty"`
}
func (x *Praise) Reset() {
*x = Praise{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xec4_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Praise) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Praise) ProtoMessage() {}
func (x *Praise) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xec4_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Praise.ProtoReflect.Descriptor instead.
func (*Praise) Descriptor() ([]byte, []int) {
return file_oidb0xec4_proto_rawDescGZIP(), []int{1}
} }
func (x *Praise) GetFromUin() uint64 { func (x *Praise) GetFromUin() uint64 {
@ -188,59 +98,23 @@ func (x *Praise) GetFromNick() string {
} }
type Quest struct { type Quest struct {
state protoimpl.MessageState Id *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Quest *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields QuestUin *uint64 `protobuf:"varint,3,opt"`
Time *uint64 `protobuf:"varint,4,opt"`
Id *string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` Ans *string `protobuf:"bytes,5,opt"`
Quest *string `protobuf:"bytes,2,opt,name=quest" json:"quest,omitempty"` AnsTime *uint64 `protobuf:"varint,6,opt"`
QuestUin *uint64 `protobuf:"varint,3,opt,name=questUin" json:"questUin,omitempty"` Comment []*Comment `protobuf:"bytes,7,rep"`
Time *uint64 `protobuf:"varint,4,opt,name=time" json:"time,omitempty"` Praise []*Praise `protobuf:"bytes,8,rep"`
Ans *string `protobuf:"bytes,5,opt,name=ans" json:"ans,omitempty"` PraiseNum *uint64 `protobuf:"varint,9,opt"`
AnsTime *uint64 `protobuf:"varint,6,opt,name=ansTime" json:"ansTime,omitempty"` LikeKey *string `protobuf:"bytes,10,opt"`
Comment []*Comment `protobuf:"bytes,7,rep,name=comment" json:"comment,omitempty"` SystemId *uint64 `protobuf:"varint,11,opt"`
Praise []*Praise `protobuf:"bytes,8,rep,name=praise" json:"praise,omitempty"` CommentNum *uint64 `protobuf:"varint,12,opt"`
PraiseNum *uint64 `protobuf:"varint,9,opt,name=praiseNum" json:"praiseNum,omitempty"` ShowType *uint64 `protobuf:"varint,13,opt"`
LikeKey *string `protobuf:"bytes,10,opt,name=likeKey" json:"likeKey,omitempty"` ShowTimes *uint64 `protobuf:"varint,14,opt"`
SystemId *uint64 `protobuf:"varint,11,opt,name=systemId" json:"systemId,omitempty"` BeenPraised *uint64 `protobuf:"varint,15,opt"`
CommentNum *uint64 `protobuf:"varint,12,opt,name=commentNum" json:"commentNum,omitempty"` QuestRead *bool `protobuf:"varint,16,opt"`
ShowType *uint64 `protobuf:"varint,13,opt,name=showType" json:"showType,omitempty"` AnsShowType *uint64 `protobuf:"varint,17,opt"`
ShowTimes *uint64 `protobuf:"varint,14,opt,name=showTimes" json:"showTimes,omitempty"`
BeenPraised *uint64 `protobuf:"varint,15,opt,name=beenPraised" json:"beenPraised,omitempty"`
QuestRead *bool `protobuf:"varint,16,opt,name=questRead" json:"questRead,omitempty"`
AnsShowType *uint64 `protobuf:"varint,17,opt,name=ansShowType" json:"ansShowType,omitempty"`
}
func (x *Quest) Reset() {
*x = Quest{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xec4_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Quest) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Quest) ProtoMessage() {}
func (x *Quest) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xec4_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Quest.ProtoReflect.Descriptor instead.
func (*Quest) Descriptor() ([]byte, []int) {
return file_oidb0xec4_proto_rawDescGZIP(), []int{2}
} }
func (x *Quest) GetId() string { func (x *Quest) GetId() string {
@ -363,47 +237,11 @@ func (x *Quest) GetAnsShowType() uint64 {
} }
type DEC4ReqBody struct { type DEC4ReqBody struct {
state protoimpl.MessageState Uin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache QuestNum *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields CommentNum *uint64 `protobuf:"varint,3,opt"`
Cookie []byte `protobuf:"bytes,4,opt"`
Uin *uint64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"` FetchType *uint32 `protobuf:"varint,5,opt"`
QuestNum *uint64 `protobuf:"varint,2,opt,name=questNum" json:"questNum,omitempty"`
CommentNum *uint64 `protobuf:"varint,3,opt,name=commentNum" json:"commentNum,omitempty"`
Cookie []byte `protobuf:"bytes,4,opt,name=cookie" json:"cookie,omitempty"`
FetchType *uint32 `protobuf:"varint,5,opt,name=fetchType" json:"fetchType,omitempty"`
}
func (x *DEC4ReqBody) Reset() {
*x = DEC4ReqBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xec4_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DEC4ReqBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DEC4ReqBody) ProtoMessage() {}
func (x *DEC4ReqBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xec4_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DEC4ReqBody.ProtoReflect.Descriptor instead.
func (*DEC4ReqBody) Descriptor() ([]byte, []int) {
return file_oidb0xec4_proto_rawDescGZIP(), []int{3}
} }
func (x *DEC4ReqBody) GetUin() uint64 { func (x *DEC4ReqBody) GetUin() uint64 {
@ -442,48 +280,12 @@ func (x *DEC4ReqBody) GetFetchType() uint32 {
} }
type DEC4RspBody struct { type DEC4RspBody struct {
state protoimpl.MessageState Quest []*Quest `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache IsFetchOver *bool `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields TotalQuestNum *uint32 `protobuf:"varint,3,opt"`
Cookie []byte `protobuf:"bytes,4,opt"`
Quest []*Quest `protobuf:"bytes,1,rep,name=quest" json:"quest,omitempty"` Ret *uint32 `protobuf:"varint,5,opt"`
IsFetchOver *bool `protobuf:"varint,2,opt,name=isFetchOver" json:"isFetchOver,omitempty"` AnsweredQuestNum *uint32 `protobuf:"varint,6,opt"`
TotalQuestNum *uint32 `protobuf:"varint,3,opt,name=totalQuestNum" json:"totalQuestNum,omitempty"`
Cookie []byte `protobuf:"bytes,4,opt,name=cookie" json:"cookie,omitempty"`
Ret *uint32 `protobuf:"varint,5,opt,name=ret" json:"ret,omitempty"`
AnsweredQuestNum *uint32 `protobuf:"varint,6,opt,name=answeredQuestNum" json:"answeredQuestNum,omitempty"`
}
func (x *DEC4RspBody) Reset() {
*x = DEC4RspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_oidb0xec4_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DEC4RspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DEC4RspBody) ProtoMessage() {}
func (x *DEC4RspBody) ProtoReflect() protoreflect.Message {
mi := &file_oidb0xec4_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DEC4RspBody.ProtoReflect.Descriptor instead.
func (*DEC4RspBody) Descriptor() ([]byte, []int) {
return file_oidb0xec4_proto_rawDescGZIP(), []int{4}
} }
func (x *DEC4RspBody) GetQuest() []*Quest { func (x *DEC4RspBody) GetQuest() []*Quest {
@ -527,198 +329,3 @@ func (x *DEC4RspBody) GetAnsweredQuestNum() uint32 {
} }
return 0 return 0
} }
var File_oidb0xec4_proto protoreflect.FileDescriptor
var file_oidb0xec4_proto_rawDesc = []byte{
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x65, 0x63, 0x34, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0xad, 0x01, 0x0a, 0x07, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a,
0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a,
0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x18,
0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x66,
0x72, 0x6f, 0x6d, 0x55, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x72,
0x6f, 0x6d, 0x55, 0x69, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x55, 0x69, 0x6e, 0x18, 0x05,
0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x74, 0x6f, 0x55, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x72,
0x65, 0x70, 0x6c, 0x79, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65,
0x70, 0x6c, 0x79, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x69, 0x63,
0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x69, 0x63,
0x6b, 0x22, 0x68, 0x0a, 0x06, 0x50, 0x72, 0x61, 0x69, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x66,
0x72, 0x6f, 0x6d, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x66, 0x72,
0x6f, 0x6d, 0x55, 0x69, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x55, 0x69, 0x6e, 0x18, 0x02,
0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x74, 0x6f, 0x55, 0x69, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x74,
0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x12,
0x1a, 0x0a, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x69, 0x63, 0x6b, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x08, 0x66, 0x72, 0x6f, 0x6d, 0x4e, 0x69, 0x63, 0x6b, 0x22, 0xde, 0x03, 0x0a, 0x05,
0x51, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x02,
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x71,
0x75, 0x65, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x71,
0x75, 0x65, 0x73, 0x74, 0x55, 0x69, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x18,
0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61,
0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x61, 0x6e, 0x73, 0x12, 0x18, 0x0a,
0x07, 0x61, 0x6e, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07,
0x61, 0x6e, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x06, 0x70,
0x72, 0x61, 0x69, 0x73, 0x65, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x07, 0x2e, 0x50, 0x72,
0x61, 0x69, 0x73, 0x65, 0x52, 0x06, 0x70, 0x72, 0x61, 0x69, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09,
0x70, 0x72, 0x61, 0x69, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52,
0x09, 0x70, 0x72, 0x61, 0x69, 0x73, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x69,
0x6b, 0x65, 0x4b, 0x65, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x69, 0x6b,
0x65, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x64,
0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x49, 0x64,
0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x0c,
0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x75, 0x6d,
0x12, 0x1a, 0x0a, 0x08, 0x73, 0x68, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01,
0x28, 0x04, 0x52, 0x08, 0x73, 0x68, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09,
0x73, 0x68, 0x6f, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52,
0x09, 0x73, 0x68, 0x6f, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x65,
0x65, 0x6e, 0x50, 0x72, 0x61, 0x69, 0x73, 0x65, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x04, 0x52,
0x0b, 0x62, 0x65, 0x65, 0x6e, 0x50, 0x72, 0x61, 0x69, 0x73, 0x65, 0x64, 0x12, 0x1c, 0x0a, 0x09,
0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52,
0x09, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x6e,
0x73, 0x53, 0x68, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x04, 0x52,
0x0b, 0x61, 0x6e, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x54, 0x79, 0x70, 0x65, 0x22, 0x91, 0x01, 0x0a,
0x0b, 0x44, 0x45, 0x43, 0x34, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x10, 0x0a, 0x03,
0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x1a,
0x0a, 0x08, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
0x52, 0x08, 0x71, 0x75, 0x65, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f,
0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f,
0x6f, 0x6b, 0x69, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b,
0x69, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x65, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x66, 0x65, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65,
0x22, 0xc9, 0x01, 0x0a, 0x0b, 0x44, 0x45, 0x43, 0x34, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79,
0x12, 0x1c, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x06, 0x2e, 0x51, 0x75, 0x65, 0x73, 0x74, 0x52, 0x05, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20,
0x0a, 0x0b, 0x69, 0x73, 0x46, 0x65, 0x74, 0x63, 0x68, 0x4f, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20,
0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x46, 0x65, 0x74, 0x63, 0x68, 0x4f, 0x76, 0x65, 0x72,
0x12, 0x24, 0x0a, 0x0d, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x51, 0x75, 0x65, 0x73, 0x74, 0x4e, 0x75,
0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x51, 0x75,
0x65, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65,
0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x12, 0x10,
0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x72, 0x65, 0x74,
0x12, 0x2a, 0x0a, 0x10, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x65, 0x64, 0x51, 0x75, 0x65, 0x73,
0x74, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x10, 0x61, 0x6e, 0x73, 0x77,
0x65, 0x72, 0x65, 0x64, 0x51, 0x75, 0x65, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x42, 0x09, 0x5a, 0x07,
0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62,
}
var (
file_oidb0xec4_proto_rawDescOnce sync.Once
file_oidb0xec4_proto_rawDescData = file_oidb0xec4_proto_rawDesc
)
func file_oidb0xec4_proto_rawDescGZIP() []byte {
file_oidb0xec4_proto_rawDescOnce.Do(func() {
file_oidb0xec4_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0xec4_proto_rawDescData)
})
return file_oidb0xec4_proto_rawDescData
}
var file_oidb0xec4_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
var file_oidb0xec4_proto_goTypes = []interface{}{
(*Comment)(nil), // 0: Comment
(*Praise)(nil), // 1: Praise
(*Quest)(nil), // 2: Quest
(*DEC4ReqBody)(nil), // 3: DEC4ReqBody
(*DEC4RspBody)(nil), // 4: DEC4RspBody
}
var file_oidb0xec4_proto_depIdxs = []int32{
0, // 0: Quest.comment:type_name -> Comment
1, // 1: Quest.praise:type_name -> Praise
2, // 2: DEC4RspBody.quest:type_name -> Quest
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_oidb0xec4_proto_init() }
func file_oidb0xec4_proto_init() {
if File_oidb0xec4_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_oidb0xec4_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Comment); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xec4_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Praise); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xec4_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Quest); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xec4_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DEC4ReqBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_oidb0xec4_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DEC4RspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_oidb0xec4_proto_rawDesc,
NumEnums: 0,
NumMessages: 5,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_oidb0xec4_proto_goTypes,
DependencyIndexes: file_oidb0xec4_proto_depIdxs,
MessageInfos: file_oidb0xec4_proto_msgTypes,
}.Build()
File_oidb0xec4_proto = out.File
file_oidb0xec4_proto_rawDesc = nil
file_oidb0xec4_proto_goTypes = nil
file_oidb0xec4_proto_depIdxs = nil
}

View File

@ -1,65 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: accountsearch.proto // source: accountsearch.proto
package profilecard package profilecard
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type Location struct { type Location struct {
state protoimpl.MessageState Latitude *float64 `protobuf:"fixed64,1,opt"`
sizeCache protoimpl.SizeCache Longitude *float64 `protobuf:"fixed64,2,opt"`
unknownFields protoimpl.UnknownFields
Latitude *float64 `protobuf:"fixed64,1,opt,name=latitude" json:"latitude,omitempty"`
Longitude *float64 `protobuf:"fixed64,2,opt,name=longitude" json:"longitude,omitempty"`
}
func (x *Location) Reset() {
*x = Location{}
if protoimpl.UnsafeEnabled {
mi := &file_accountsearch_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Location) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Location) ProtoMessage() {}
func (x *Location) ProtoReflect() protoreflect.Message {
mi := &file_accountsearch_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Location.ProtoReflect.Descriptor instead.
func (*Location) Descriptor() ([]byte, []int) {
return file_accountsearch_proto_rawDescGZIP(), []int{0}
} }
func (x *Location) GetLatitude() float64 { func (x *Location) GetLatitude() float64 {
@ -77,56 +23,20 @@ func (x *Location) GetLongitude() float64 {
} }
type ResultItem struct { type ResultItem struct {
state protoimpl.MessageState FeedId []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Name []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields PicUrl []byte `protobuf:"bytes,3,opt"`
JmpUrl []byte `protobuf:"bytes,4,opt"`
FeedId []byte `protobuf:"bytes,1,opt,name=feedId" json:"feedId,omitempty"` FeedType []byte `protobuf:"bytes,5,opt"`
Name []byte `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"` Summary []byte `protobuf:"bytes,6,opt"`
PicUrl []byte `protobuf:"bytes,3,opt,name=picUrl" json:"picUrl,omitempty"` HasVideo []byte `protobuf:"bytes,7,opt"`
JmpUrl []byte `protobuf:"bytes,4,opt,name=jmpUrl" json:"jmpUrl,omitempty"` PhtotUpdate []byte `protobuf:"bytes,8,opt"`
FeedType []byte `protobuf:"bytes,5,opt,name=feedType" json:"feedType,omitempty"` Uin *uint64 `protobuf:"varint,9,opt"`
Summary []byte `protobuf:"bytes,6,opt,name=summary" json:"summary,omitempty"` ResultId []byte `protobuf:"bytes,10,opt"`
HasVideo []byte `protobuf:"bytes,7,opt,name=hasVideo" json:"hasVideo,omitempty"` Ftime *uint32 `protobuf:"varint,11,opt"`
PhtotUpdate []byte `protobuf:"bytes,8,opt,name=phtotUpdate" json:"phtotUpdate,omitempty"` NickName []byte `protobuf:"bytes,12,opt"`
Uin *uint64 `protobuf:"varint,9,opt,name=uin" json:"uin,omitempty"` PicUrlList [][]byte `protobuf:"bytes,13,rep"`
ResultId []byte `protobuf:"bytes,10,opt,name=resultId" json:"resultId,omitempty"` TotalPicNum *uint32 `protobuf:"varint,14,opt"`
Ftime *uint32 `protobuf:"varint,11,opt,name=ftime" json:"ftime,omitempty"`
NickName []byte `protobuf:"bytes,12,opt,name=nickName" json:"nickName,omitempty"`
PicUrlList [][]byte `protobuf:"bytes,13,rep,name=picUrlList" json:"picUrlList,omitempty"`
TotalPicNum *uint32 `protobuf:"varint,14,opt,name=totalPicNum" json:"totalPicNum,omitempty"`
}
func (x *ResultItem) Reset() {
*x = ResultItem{}
if protoimpl.UnsafeEnabled {
mi := &file_accountsearch_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ResultItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ResultItem) ProtoMessage() {}
func (x *ResultItem) ProtoReflect() protoreflect.Message {
mi := &file_accountsearch_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ResultItem.ProtoReflect.Descriptor instead.
func (*ResultItem) Descriptor() ([]byte, []int) {
return file_accountsearch_proto_rawDescGZIP(), []int{1}
} }
func (x *ResultItem) GetFeedId() []byte { func (x *ResultItem) GetFeedId() []byte {
@ -228,47 +138,11 @@ func (x *ResultItem) GetTotalPicNum() uint32 {
} }
type Hotwordrecord struct { type Hotwordrecord struct {
state protoimpl.MessageState Hotword *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache HotwordType *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields HotwordCoverUrl *string `protobuf:"bytes,3,opt"`
HotwordTitle *string `protobuf:"bytes,4,opt"`
Hotword *string `protobuf:"bytes,1,opt,name=hotword" json:"hotword,omitempty"` HotwordDescription *string `protobuf:"bytes,5,opt"`
HotwordType *uint32 `protobuf:"varint,2,opt,name=hotwordType" json:"hotwordType,omitempty"`
HotwordCoverUrl *string `protobuf:"bytes,3,opt,name=hotwordCoverUrl" json:"hotwordCoverUrl,omitempty"`
HotwordTitle *string `protobuf:"bytes,4,opt,name=hotwordTitle" json:"hotwordTitle,omitempty"`
HotwordDescription *string `protobuf:"bytes,5,opt,name=hotwordDescription" json:"hotwordDescription,omitempty"`
}
func (x *Hotwordrecord) Reset() {
*x = Hotwordrecord{}
if protoimpl.UnsafeEnabled {
mi := &file_accountsearch_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Hotwordrecord) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Hotwordrecord) ProtoMessage() {}
func (x *Hotwordrecord) ProtoReflect() protoreflect.Message {
mi := &file_accountsearch_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Hotwordrecord.ProtoReflect.Descriptor instead.
func (*Hotwordrecord) Descriptor() ([]byte, []int) {
return file_accountsearch_proto_rawDescGZIP(), []int{2}
} }
func (x *Hotwordrecord) GetHotword() string { func (x *Hotwordrecord) GetHotword() string {
@ -307,77 +181,41 @@ func (x *Hotwordrecord) GetHotwordDescription() string {
} }
type AccountSearchRecord struct { type AccountSearchRecord struct {
state protoimpl.MessageState Uin *uint64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Code *uint64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Source *uint32 `protobuf:"varint,3,opt"`
Name *string `protobuf:"bytes,4,opt"`
Uin *uint64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"` Sex *uint32 `protobuf:"varint,5,opt"`
Code *uint64 `protobuf:"varint,2,opt,name=code" json:"code,omitempty"` Age *uint32 `protobuf:"varint,6,opt"`
Source *uint32 `protobuf:"varint,3,opt,name=source" json:"source,omitempty"` Accout *string `protobuf:"bytes,7,opt"`
Name *string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"` Brief *string `protobuf:"bytes,8,opt"`
Sex *uint32 `protobuf:"varint,5,opt,name=sex" json:"sex,omitempty"` Number *uint32 `protobuf:"varint,9,opt"`
Age *uint32 `protobuf:"varint,6,opt,name=age" json:"age,omitempty"` Flag *uint64 `protobuf:"varint,10,opt"`
Accout *string `protobuf:"bytes,7,opt,name=accout" json:"accout,omitempty"` Relation *uint64 `protobuf:"varint,11,opt"`
Brief *string `protobuf:"bytes,8,opt,name=brief" json:"brief,omitempty"` Mobile *string `protobuf:"bytes,12,opt"`
Number *uint32 `protobuf:"varint,9,opt,name=number" json:"number,omitempty"` Sign []byte `protobuf:"bytes,13,opt"`
Flag *uint64 `protobuf:"varint,10,opt,name=flag" json:"flag,omitempty"` Country *uint32 `protobuf:"varint,14,opt"`
Relation *uint64 `protobuf:"varint,11,opt,name=relation" json:"relation,omitempty"` Province *uint32 `protobuf:"varint,15,opt"`
Mobile *string `protobuf:"bytes,12,opt,name=mobile" json:"mobile,omitempty"` City *uint32 `protobuf:"varint,16,opt"`
Sign []byte `protobuf:"bytes,13,opt,name=sign" json:"sign,omitempty"` ClassIndex *uint32 `protobuf:"varint,17,opt"`
Country *uint32 `protobuf:"varint,14,opt,name=country" json:"country,omitempty"` ClassName *string `protobuf:"bytes,18,opt"`
Province *uint32 `protobuf:"varint,15,opt,name=province" json:"province,omitempty"` CountryName *string `protobuf:"bytes,19,opt"`
City *uint32 `protobuf:"varint,16,opt,name=city" json:"city,omitempty"` ProvinceName *string `protobuf:"bytes,20,opt"`
ClassIndex *uint32 `protobuf:"varint,17,opt,name=classIndex" json:"classIndex,omitempty"` CityName *string `protobuf:"bytes,21,opt"`
ClassName *string `protobuf:"bytes,18,opt,name=className" json:"className,omitempty"` AccountFlag *uint32 `protobuf:"varint,22,opt"`
CountryName *string `protobuf:"bytes,19,opt,name=countryName" json:"countryName,omitempty"` TitleImage *string `protobuf:"bytes,23,opt"`
ProvinceName *string `protobuf:"bytes,20,opt,name=provinceName" json:"provinceName,omitempty"` ArticleShortUrl *string `protobuf:"bytes,24,opt"`
CityName *string `protobuf:"bytes,21,opt,name=cityName" json:"cityName,omitempty"` ArticleCreateTime *string `protobuf:"bytes,25,opt"`
AccountFlag *uint32 `protobuf:"varint,22,opt,name=accountFlag" json:"accountFlag,omitempty"` ArticleAuthor *string `protobuf:"bytes,26,opt"`
TitleImage *string `protobuf:"bytes,23,opt,name=titleImage" json:"titleImage,omitempty"` AccountId *uint64 `protobuf:"varint,27,opt"`
ArticleShortUrl *string `protobuf:"bytes,24,opt,name=articleShortUrl" json:"articleShortUrl,omitempty"`
ArticleCreateTime *string `protobuf:"bytes,25,opt,name=articleCreateTime" json:"articleCreateTime,omitempty"`
ArticleAuthor *string `protobuf:"bytes,26,opt,name=articleAuthor" json:"articleAuthor,omitempty"`
AccountId *uint64 `protobuf:"varint,27,opt,name=accountId" json:"accountId,omitempty"`
//repeated Label groupLabels = 30; //repeated Label groupLabels = 30;
VideoAccount *uint32 `protobuf:"varint,31,opt,name=videoAccount" json:"videoAccount,omitempty"` VideoAccount *uint32 `protobuf:"varint,31,opt"`
VideoArticle *uint32 `protobuf:"varint,32,opt,name=videoArticle" json:"videoArticle,omitempty"` VideoArticle *uint32 `protobuf:"varint,32,opt"`
UinPrivilege *int32 `protobuf:"varint,33,opt,name=uinPrivilege" json:"uinPrivilege,omitempty"` UinPrivilege *int32 `protobuf:"varint,33,opt"`
JoinGroupAuth []byte `protobuf:"bytes,34,opt,name=joinGroupAuth" json:"joinGroupAuth,omitempty"` JoinGroupAuth []byte `protobuf:"bytes,34,opt"`
Token []byte `protobuf:"bytes,500,opt,name=token" json:"token,omitempty"` Token []byte `protobuf:"bytes,500,opt"`
Richflag1_59 *uint32 `protobuf:"varint,40603,opt,name=richflag1_59,json=richflag159" json:"richflag1_59,omitempty"` Richflag1_59 *uint32 `protobuf:"varint,40603,opt"`
Richflag4_409 *uint32 `protobuf:"varint,42409,opt,name=richflag4_409,json=richflag4409" json:"richflag4_409,omitempty"` Richflag4_409 *uint32 `protobuf:"varint,42409,opt"`
}
func (x *AccountSearchRecord) Reset() {
*x = AccountSearchRecord{}
if protoimpl.UnsafeEnabled {
mi := &file_accountsearch_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *AccountSearchRecord) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AccountSearchRecord) ProtoMessage() {}
func (x *AccountSearchRecord) ProtoReflect() protoreflect.Message {
mi := &file_accountsearch_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use AccountSearchRecord.ProtoReflect.Descriptor instead.
func (*AccountSearchRecord) Descriptor() ([]byte, []int) {
return file_accountsearch_proto_rawDescGZIP(), []int{3}
} }
func (x *AccountSearchRecord) GetUin() uint64 { func (x *AccountSearchRecord) GetUin() uint64 {
@ -619,57 +457,21 @@ func (x *AccountSearchRecord) GetRichflag4_409() uint32 {
} }
type AccountSearch struct { type AccountSearch struct {
state protoimpl.MessageState Start *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Count *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields End *uint32 `protobuf:"varint,3,opt"`
Keyword *string `protobuf:"bytes,4,opt"`
Start *int32 `protobuf:"varint,1,opt,name=start" json:"start,omitempty"` List []*AccountSearchRecord `protobuf:"bytes,5,rep"`
Count *uint32 `protobuf:"varint,2,opt,name=count" json:"count,omitempty"` Highlight []string `protobuf:"bytes,6,rep"`
End *uint32 `protobuf:"varint,3,opt,name=end" json:"end,omitempty"` UserLocation *Location `protobuf:"bytes,10,opt"`
Keyword *string `protobuf:"bytes,4,opt,name=keyword" json:"keyword,omitempty"` LocationGroup *bool `protobuf:"varint,11,opt"`
List []*AccountSearchRecord `protobuf:"bytes,5,rep,name=list" json:"list,omitempty"` Filtertype *int32 `protobuf:"varint,12,opt"`
Highlight []string `protobuf:"bytes,6,rep,name=highlight" json:"highlight,omitempty"`
UserLocation *Location `protobuf:"bytes,10,opt,name=userLocation" json:"userLocation,omitempty"`
LocationGroup *bool `protobuf:"varint,11,opt,name=locationGroup" json:"locationGroup,omitempty"`
Filtertype *int32 `protobuf:"varint,12,opt,name=filtertype" json:"filtertype,omitempty"`
//repeated C33304record recommendList = 13; //repeated C33304record recommendList = 13;
HotwordRecord *Hotwordrecord `protobuf:"bytes,14,opt,name=hotwordRecord" json:"hotwordRecord,omitempty"` HotwordRecord *Hotwordrecord `protobuf:"bytes,14,opt"`
ArticleMoreUrl *string `protobuf:"bytes,15,opt,name=articleMoreUrl" json:"articleMoreUrl,omitempty"` ArticleMoreUrl *string `protobuf:"bytes,15,opt"`
ResultItems []*ResultItem `protobuf:"bytes,16,rep,name=resultItems" json:"resultItems,omitempty"` ResultItems []*ResultItem `protobuf:"bytes,16,rep"`
KeywordSuicide *bool `protobuf:"varint,17,opt,name=keywordSuicide" json:"keywordSuicide,omitempty"` KeywordSuicide *bool `protobuf:"varint,17,opt"`
ExactSearch *bool `protobuf:"varint,18,opt,name=exactSearch" json:"exactSearch,omitempty"` ExactSearch *bool `protobuf:"varint,18,opt"`
}
func (x *AccountSearch) Reset() {
*x = AccountSearch{}
if protoimpl.UnsafeEnabled {
mi := &file_accountsearch_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *AccountSearch) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AccountSearch) ProtoMessage() {}
func (x *AccountSearch) ProtoReflect() protoreflect.Message {
mi := &file_accountsearch_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use AccountSearch.ProtoReflect.Descriptor instead.
func (*AccountSearch) Descriptor() ([]byte, []int) {
return file_accountsearch_proto_rawDescGZIP(), []int{4}
} }
func (x *AccountSearch) GetStart() int32 { func (x *AccountSearch) GetStart() int32 {
@ -769,266 +571,3 @@ func (x *AccountSearch) GetExactSearch() bool {
} }
return false return false
} }
var File_accountsearch_proto protoreflect.FileDescriptor
var file_accountsearch_proto_rawDesc = []byte{
0x0a, 0x13, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x44, 0x0a, 0x08, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x01, 0x52, 0x08, 0x6c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x1c, 0x0a,
0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01,
0x52, 0x09, 0x6c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x22, 0xfe, 0x02, 0x0a, 0x0a,
0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x65,
0x65, 0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x66, 0x65, 0x65, 0x64,
0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c,
0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x69, 0x63, 0x55, 0x72, 0x6c,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x70, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x12, 0x16,
0x0a, 0x06, 0x6a, 0x6d, 0x70, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06,
0x6a, 0x6d, 0x70, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x65, 0x65, 0x64, 0x54, 0x79,
0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x54, 0x79,
0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x06, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x07, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08,
0x68, 0x61, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08,
0x68, 0x61, 0x73, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x68, 0x74, 0x6f,
0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x70,
0x68, 0x74, 0x6f, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69,
0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x74, 0x69, 0x6d,
0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x66, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1a,
0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0c,
0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69,
0x63, 0x55, 0x72, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0a,
0x70, 0x69, 0x63, 0x55, 0x72, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f,
0x74, 0x61, 0x6c, 0x50, 0x69, 0x63, 0x4e, 0x75, 0x6d, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x69, 0x63, 0x4e, 0x75, 0x6d, 0x22, 0xc9, 0x01, 0x0a,
0x0d, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x18,
0x0a, 0x07, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
0x07, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x68, 0x6f, 0x74, 0x77,
0x6f, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x68,
0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x68, 0x6f,
0x74, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x76, 0x65, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x0f, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x76, 0x65,
0x72, 0x55, 0x72, 0x6c, 0x12, 0x22, 0x0a, 0x0c, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x54,
0x69, 0x74, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x68, 0x6f, 0x74, 0x77,
0x6f, 0x72, 0x64, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x68, 0x6f, 0x74, 0x77,
0x6f, 0x72, 0x64, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05,
0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x44, 0x65, 0x73,
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xea, 0x07, 0x0a, 0x13, 0x41, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x75,
0x69, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04,
0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x12,
0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x74,
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x74, 0x12, 0x14,
0x0a, 0x05, 0x62, 0x72, 0x69, 0x65, 0x66, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x62,
0x72, 0x69, 0x65, 0x66, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x09,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04,
0x66, 0x6c, 0x61, 0x67, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x66, 0x6c, 0x61, 0x67,
0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01,
0x28, 0x04, 0x52, 0x08, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06,
0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x6f,
0x62, 0x69, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x18, 0x0d, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x72, 0x79, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74,
0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0f,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12,
0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x69,
0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x49, 0x6e, 0x64, 0x65, 0x78,
0x18, 0x11, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x49, 0x6e, 0x64,
0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x18,
0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65,
0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x18,
0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x4e, 0x61,
0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x4e, 0x61,
0x6d, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e,
0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x69, 0x74, 0x79, 0x4e, 0x61,
0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x69, 0x74, 0x79, 0x4e, 0x61,
0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
0x46, 0x6c, 0x61, 0x67, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x49, 0x6d, 0x61,
0x67, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x49,
0x6d, 0x61, 0x67, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x61, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x53,
0x68, 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x61,
0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x12, 0x2c,
0x0a, 0x11, 0x61, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
0x69, 0x6d, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x61, 0x72, 0x74, 0x69, 0x63,
0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d,
0x61, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x18, 0x1a, 0x20,
0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x41, 0x75, 0x74, 0x68,
0x6f, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x18,
0x1b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
0x18, 0x1f, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x72, 0x74,
0x69, 0x63, 0x6c, 0x65, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x76, 0x69, 0x64, 0x65,
0x6f, 0x41, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x69, 0x6e, 0x50,
0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x18, 0x21, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c,
0x75, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d,
0x6a, 0x6f, 0x69, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x75, 0x74, 0x68, 0x18, 0x22, 0x20,
0x01, 0x28, 0x0c, 0x52, 0x0d, 0x6a, 0x6f, 0x69, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x75,
0x74, 0x68, 0x12, 0x15, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0xf4, 0x03, 0x20, 0x01,
0x28, 0x0c, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x23, 0x0a, 0x0c, 0x72, 0x69, 0x63,
0x68, 0x66, 0x6c, 0x61, 0x67, 0x31, 0x5f, 0x35, 0x39, 0x18, 0x9b, 0xbd, 0x02, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x0b, 0x72, 0x69, 0x63, 0x68, 0x66, 0x6c, 0x61, 0x67, 0x31, 0x35, 0x39, 0x12, 0x25,
0x0a, 0x0d, 0x72, 0x69, 0x63, 0x68, 0x66, 0x6c, 0x61, 0x67, 0x34, 0x5f, 0x34, 0x30, 0x39, 0x18,
0xa9, 0xcb, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x72, 0x69, 0x63, 0x68, 0x66, 0x6c, 0x61,
0x67, 0x34, 0x34, 0x30, 0x39, 0x22, 0xfb, 0x03, 0x0a, 0x0d, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74,
0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x12, 0x14, 0x0a,
0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x63, 0x6f,
0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d,
0x52, 0x03, 0x65, 0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12,
0x28, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e,
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x63,
0x6f, 0x72, 0x64, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x68, 0x69, 0x67,
0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x68, 0x69,
0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x12, 0x2d, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4c,
0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x09, 0x2e,
0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x6c,
0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1e, 0x0a, 0x0a,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05,
0x52, 0x0a, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x74, 0x79, 0x70, 0x65, 0x12, 0x34, 0x0a, 0x0d,
0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x0e, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x72, 0x65, 0x63,
0x6f, 0x72, 0x64, 0x52, 0x0d, 0x68, 0x6f, 0x74, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x63, 0x6f,
0x72, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x61, 0x72, 0x74, 0x69, 0x63, 0x6c, 0x65, 0x4d, 0x6f, 0x72,
0x65, 0x55, 0x72, 0x6c, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x61, 0x72, 0x74, 0x69,
0x63, 0x6c, 0x65, 0x4d, 0x6f, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x2d, 0x0a, 0x0b, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x0b, 0x2e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x0b, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x53, 0x75, 0x69, 0x63, 0x69, 0x64, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28,
0x08, 0x52, 0x0e, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x53, 0x75, 0x69, 0x63, 0x69, 0x64,
0x65, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x78, 0x61, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
0x18, 0x12, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x65, 0x78, 0x61, 0x63, 0x74, 0x53, 0x65, 0x61,
0x72, 0x63, 0x68, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
0x65, 0x63, 0x61, 0x72, 0x64,
}
var (
file_accountsearch_proto_rawDescOnce sync.Once
file_accountsearch_proto_rawDescData = file_accountsearch_proto_rawDesc
)
func file_accountsearch_proto_rawDescGZIP() []byte {
file_accountsearch_proto_rawDescOnce.Do(func() {
file_accountsearch_proto_rawDescData = protoimpl.X.CompressGZIP(file_accountsearch_proto_rawDescData)
})
return file_accountsearch_proto_rawDescData
}
var file_accountsearch_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
var file_accountsearch_proto_goTypes = []interface{}{
(*Location)(nil), // 0: Location
(*ResultItem)(nil), // 1: ResultItem
(*Hotwordrecord)(nil), // 2: hotwordrecord
(*AccountSearchRecord)(nil), // 3: AccountSearchRecord
(*AccountSearch)(nil), // 4: AccountSearch
}
var file_accountsearch_proto_depIdxs = []int32{
3, // 0: AccountSearch.list:type_name -> AccountSearchRecord
0, // 1: AccountSearch.userLocation:type_name -> Location
2, // 2: AccountSearch.hotwordRecord:type_name -> hotwordrecord
1, // 3: AccountSearch.resultItems:type_name -> ResultItem
4, // [4:4] is the sub-list for method output_type
4, // [4:4] is the sub-list for method input_type
4, // [4:4] is the sub-list for extension type_name
4, // [4:4] is the sub-list for extension extendee
0, // [0:4] is the sub-list for field type_name
}
func init() { file_accountsearch_proto_init() }
func file_accountsearch_proto_init() {
if File_accountsearch_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_accountsearch_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Location); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_accountsearch_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResultItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_accountsearch_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Hotwordrecord); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_accountsearch_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountSearchRecord); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_accountsearch_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountSearch); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_accountsearch_proto_rawDesc,
NumEnums: 0,
NumMessages: 5,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_accountsearch_proto_goTypes,
DependencyIndexes: file_accountsearch_proto_depIdxs,
MessageInfos: file_accountsearch_proto_msgTypes,
}.Build()
File_accountsearch_proto = out.File
file_accountsearch_proto_rawDesc = nil
file_accountsearch_proto_goTypes = nil
file_accountsearch_proto_depIdxs = nil
}

View File

@ -1,66 +1,12 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: busi.proto // source: busi.proto
package profilecard package profilecard
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type BusiColor struct { type BusiColor struct {
state protoimpl.MessageState R *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache G *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields B *int32 `protobuf:"varint,3,opt"`
R *int32 `protobuf:"varint,1,opt,name=r" json:"r,omitempty"`
G *int32 `protobuf:"varint,2,opt,name=g" json:"g,omitempty"`
B *int32 `protobuf:"varint,3,opt,name=b" json:"b,omitempty"`
}
func (x *BusiColor) Reset() {
*x = BusiColor{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiColor) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiColor) ProtoMessage() {}
func (x *BusiColor) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiColor.ProtoReflect.Descriptor instead.
func (*BusiColor) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{0}
} }
func (x *BusiColor) GetR() int32 { func (x *BusiColor) GetR() int32 {
@ -85,60 +31,24 @@ func (x *BusiColor) GetB() int32 {
} }
type BusiComm struct { type BusiComm struct {
state protoimpl.MessageState Ver *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Seq *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Fromuin *int64 `protobuf:"varint,3,opt"`
Touin *int64 `protobuf:"varint,4,opt"`
Ver *int32 `protobuf:"varint,1,opt,name=ver" json:"ver,omitempty"` Service *int32 `protobuf:"varint,5,opt"`
Seq *int32 `protobuf:"varint,2,opt,name=seq" json:"seq,omitempty"` SessionType *int32 `protobuf:"varint,6,opt"`
Fromuin *int64 `protobuf:"varint,3,opt,name=fromuin" json:"fromuin,omitempty"` SessionKey []byte `protobuf:"bytes,7,opt"`
Touin *int64 `protobuf:"varint,4,opt,name=touin" json:"touin,omitempty"` ClientIp *int32 `protobuf:"varint,8,opt"`
Service *int32 `protobuf:"varint,5,opt,name=service" json:"service,omitempty"` Display *BusiUi `protobuf:"bytes,9,opt"`
SessionType *int32 `protobuf:"varint,6,opt,name=sessionType" json:"sessionType,omitempty"` Result *int32 `protobuf:"varint,10,opt"`
SessionKey []byte `protobuf:"bytes,7,opt,name=sessionKey" json:"sessionKey,omitempty"` ErrMsg *string `protobuf:"bytes,11,opt"`
ClientIp *int32 `protobuf:"varint,8,opt,name=clientIp" json:"clientIp,omitempty"` Platform *int32 `protobuf:"varint,12,opt"`
Display *BusiUi `protobuf:"bytes,9,opt,name=display" json:"display,omitempty"` Qqver *string `protobuf:"bytes,13,opt"`
Result *int32 `protobuf:"varint,10,opt,name=result" json:"result,omitempty"` Build *int32 `protobuf:"varint,14,opt"`
ErrMsg *string `protobuf:"bytes,11,opt,name=errMsg" json:"errMsg,omitempty"` MsgLoginSig *BusiLoginSig `protobuf:"bytes,15,opt"`
Platform *int32 `protobuf:"varint,12,opt,name=platform" json:"platform,omitempty"` Version *int32 `protobuf:"varint,17,opt"`
Qqver *string `protobuf:"bytes,13,opt,name=qqver" json:"qqver,omitempty"` MsgUinInfo *BusiUinInfo `protobuf:"bytes,18,opt"`
Build *int32 `protobuf:"varint,14,opt,name=build" json:"build,omitempty"` MsgRichDisplay *BusiRichUi `protobuf:"bytes,19,opt"`
MsgLoginSig *BusiLoginSig `protobuf:"bytes,15,opt,name=msgLoginSig" json:"msgLoginSig,omitempty"`
Version *int32 `protobuf:"varint,17,opt,name=version" json:"version,omitempty"`
MsgUinInfo *BusiUinInfo `protobuf:"bytes,18,opt,name=msgUinInfo" json:"msgUinInfo,omitempty"`
MsgRichDisplay *BusiRichUi `protobuf:"bytes,19,opt,name=msgRichDisplay" json:"msgRichDisplay,omitempty"`
}
func (x *BusiComm) Reset() {
*x = BusiComm{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiComm) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiComm) ProtoMessage() {}
func (x *BusiComm) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiComm.ProtoReflect.Descriptor instead.
func (*BusiComm) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{1}
} }
func (x *BusiComm) GetVer() int32 { func (x *BusiComm) GetVer() int32 {
@ -268,45 +178,9 @@ func (x *BusiComm) GetMsgRichDisplay() *BusiRichUi {
} }
type BusiCommonReq struct { type BusiCommonReq struct {
state protoimpl.MessageState ServiceCmd *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache VcReq *BusiVisitorCountReq `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields HrReq *BusiHideRecordsReq `protobuf:"bytes,3,opt"`
ServiceCmd *string `protobuf:"bytes,1,opt,name=serviceCmd" json:"serviceCmd,omitempty"`
VcReq *BusiVisitorCountReq `protobuf:"bytes,2,opt,name=vcReq" json:"vcReq,omitempty"`
HrReq *BusiHideRecordsReq `protobuf:"bytes,3,opt,name=hrReq" json:"hrReq,omitempty"`
}
func (x *BusiCommonReq) Reset() {
*x = BusiCommonReq{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiCommonReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiCommonReq) ProtoMessage() {}
func (x *BusiCommonReq) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiCommonReq.ProtoReflect.Descriptor instead.
func (*BusiCommonReq) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{2}
} }
func (x *BusiCommonReq) GetServiceCmd() string { func (x *BusiCommonReq) GetServiceCmd() string {
@ -331,47 +205,11 @@ func (x *BusiCommonReq) GetHrReq() *BusiHideRecordsReq {
} }
type BusiDetailRecord struct { type BusiDetailRecord struct {
state protoimpl.MessageState Fuin *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Source *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Vtime *int32 `protobuf:"varint,3,opt"`
Mod *int32 `protobuf:"varint,4,opt"`
Fuin *int32 `protobuf:"varint,1,opt,name=fuin" json:"fuin,omitempty"` HideFlag *int32 `protobuf:"varint,5,opt"`
Source *int32 `protobuf:"varint,2,opt,name=source" json:"source,omitempty"`
Vtime *int32 `protobuf:"varint,3,opt,name=vtime" json:"vtime,omitempty"`
Mod *int32 `protobuf:"varint,4,opt,name=mod" json:"mod,omitempty"`
HideFlag *int32 `protobuf:"varint,5,opt,name=hideFlag" json:"hideFlag,omitempty"`
}
func (x *BusiDetailRecord) Reset() {
*x = BusiDetailRecord{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiDetailRecord) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiDetailRecord) ProtoMessage() {}
func (x *BusiDetailRecord) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiDetailRecord.ProtoReflect.Descriptor instead.
func (*BusiDetailRecord) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{3}
} }
func (x *BusiDetailRecord) GetFuin() int32 { func (x *BusiDetailRecord) GetFuin() int32 {
@ -410,45 +248,9 @@ func (x *BusiDetailRecord) GetHideFlag() int32 {
} }
type BusiHideRecordsReq struct { type BusiHideRecordsReq struct {
state protoimpl.MessageState Huin *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Fuin *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Records []*BusiDetailRecord `protobuf:"bytes,3,rep"`
Huin *int32 `protobuf:"varint,1,opt,name=huin" json:"huin,omitempty"`
Fuin *int32 `protobuf:"varint,2,opt,name=fuin" json:"fuin,omitempty"`
Records []*BusiDetailRecord `protobuf:"bytes,3,rep,name=records" json:"records,omitempty"`
}
func (x *BusiHideRecordsReq) Reset() {
*x = BusiHideRecordsReq{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiHideRecordsReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiHideRecordsReq) ProtoMessage() {}
func (x *BusiHideRecordsReq) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiHideRecordsReq.ProtoReflect.Descriptor instead.
func (*BusiHideRecordsReq) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{4}
} }
func (x *BusiHideRecordsReq) GetHuin() int32 { func (x *BusiHideRecordsReq) GetHuin() int32 {
@ -473,48 +275,12 @@ func (x *BusiHideRecordsReq) GetRecords() []*BusiDetailRecord {
} }
type BusiLabel struct { type BusiLabel struct {
state protoimpl.MessageState Name []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache EnumType *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields TextColor *BusiColor `protobuf:"bytes,3,opt"`
EdgingColor *BusiColor `protobuf:"bytes,4,opt"`
Name []byte `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` LabelAttr *int32 `protobuf:"varint,5,opt"`
EnumType *int32 `protobuf:"varint,2,opt,name=enumType" json:"enumType,omitempty"` LabelType *int32 `protobuf:"varint,6,opt"`
TextColor *BusiColor `protobuf:"bytes,3,opt,name=textColor" json:"textColor,omitempty"`
EdgingColor *BusiColor `protobuf:"bytes,4,opt,name=edgingColor" json:"edgingColor,omitempty"`
LabelAttr *int32 `protobuf:"varint,5,opt,name=labelAttr" json:"labelAttr,omitempty"`
LabelType *int32 `protobuf:"varint,6,opt,name=labelType" json:"labelType,omitempty"`
}
func (x *BusiLabel) Reset() {
*x = BusiLabel{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiLabel) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiLabel) ProtoMessage() {}
func (x *BusiLabel) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiLabel.ProtoReflect.Descriptor instead.
func (*BusiLabel) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{5}
} }
func (x *BusiLabel) GetName() []byte { func (x *BusiLabel) GetName() []byte {
@ -560,45 +326,9 @@ func (x *BusiLabel) GetLabelType() int32 {
} }
type BusiLoginSig struct { type BusiLoginSig struct {
state protoimpl.MessageState Type *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Sig []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Appid *int32 `protobuf:"varint,3,opt"`
Type *int32 `protobuf:"varint,1,opt,name=type" json:"type,omitempty"`
Sig []byte `protobuf:"bytes,2,opt,name=sig" json:"sig,omitempty"`
Appid *int32 `protobuf:"varint,3,opt,name=appid" json:"appid,omitempty"`
}
func (x *BusiLoginSig) Reset() {
*x = BusiLoginSig{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiLoginSig) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiLoginSig) ProtoMessage() {}
func (x *BusiLoginSig) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiLoginSig.ProtoReflect.Descriptor instead.
func (*BusiLoginSig) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{6}
} }
func (x *BusiLoginSig) GetType() int32 { func (x *BusiLoginSig) GetType() int32 {
@ -623,44 +353,8 @@ func (x *BusiLoginSig) GetAppid() int32 {
} }
type BusiRichUi struct { type BusiRichUi struct {
state protoimpl.MessageState Name *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache ServiceUrl *string `protobuf:"bytes,2,opt"` //repeated UiInfo uiList = 3;
unknownFields protoimpl.UnknownFields
Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
ServiceUrl *string `protobuf:"bytes,2,opt,name=serviceUrl" json:"serviceUrl,omitempty"` //repeated UiInfo uiList = 3;
}
func (x *BusiRichUi) Reset() {
*x = BusiRichUi{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiRichUi) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiRichUi) ProtoMessage() {}
func (x *BusiRichUi) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiRichUi.ProtoReflect.Descriptor instead.
func (*BusiRichUi) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{7}
} }
func (x *BusiRichUi) GetName() string { func (x *BusiRichUi) GetName() string {
@ -678,46 +372,10 @@ func (x *BusiRichUi) GetServiceUrl() string {
} }
type BusiUi struct { type BusiUi struct {
state protoimpl.MessageState Url *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Title *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Content *string `protobuf:"bytes,3,opt"`
JumpUrl *string `protobuf:"bytes,4,opt"`
Url *string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
Title *string `protobuf:"bytes,2,opt,name=title" json:"title,omitempty"`
Content *string `protobuf:"bytes,3,opt,name=content" json:"content,omitempty"`
JumpUrl *string `protobuf:"bytes,4,opt,name=jumpUrl" json:"jumpUrl,omitempty"`
}
func (x *BusiUi) Reset() {
*x = BusiUi{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiUi) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiUi) ProtoMessage() {}
func (x *BusiUi) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiUi.ProtoReflect.Descriptor instead.
func (*BusiUi) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{8}
} }
func (x *BusiUi) GetUrl() string { func (x *BusiUi) GetUrl() string {
@ -749,44 +407,8 @@ func (x *BusiUi) GetJumpUrl() string {
} }
type BusiUinInfo struct { type BusiUinInfo struct {
state protoimpl.MessageState Int64Longitude *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Int64Latitude *int64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
Int64Longitude *int64 `protobuf:"varint,1,opt,name=int64Longitude" json:"int64Longitude,omitempty"`
Int64Latitude *int64 `protobuf:"varint,2,opt,name=int64Latitude" json:"int64Latitude,omitempty"`
}
func (x *BusiUinInfo) Reset() {
*x = BusiUinInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiUinInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiUinInfo) ProtoMessage() {}
func (x *BusiUinInfo) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiUinInfo.ProtoReflect.Descriptor instead.
func (*BusiUinInfo) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{9}
} }
func (x *BusiUinInfo) GetInt64Longitude() int64 { func (x *BusiUinInfo) GetInt64Longitude() int64 {
@ -804,46 +426,10 @@ func (x *BusiUinInfo) GetInt64Latitude() int64 {
} }
type BusiVisitorCountReq struct { type BusiVisitorCountReq struct {
state protoimpl.MessageState Requireuin *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Operuin *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Mod *int32 `protobuf:"varint,3,opt"`
ReportFlag *int32 `protobuf:"varint,4,opt"`
Requireuin *int32 `protobuf:"varint,1,opt,name=requireuin" json:"requireuin,omitempty"`
Operuin *int32 `protobuf:"varint,2,opt,name=operuin" json:"operuin,omitempty"`
Mod *int32 `protobuf:"varint,3,opt,name=mod" json:"mod,omitempty"`
ReportFlag *int32 `protobuf:"varint,4,opt,name=reportFlag" json:"reportFlag,omitempty"`
}
func (x *BusiVisitorCountReq) Reset() {
*x = BusiVisitorCountReq{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiVisitorCountReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiVisitorCountReq) ProtoMessage() {}
func (x *BusiVisitorCountReq) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiVisitorCountReq.ProtoReflect.Descriptor instead.
func (*BusiVisitorCountReq) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{10}
} }
func (x *BusiVisitorCountReq) GetRequireuin() int32 { func (x *BusiVisitorCountReq) GetRequireuin() int32 {
@ -875,48 +461,12 @@ func (x *BusiVisitorCountReq) GetReportFlag() int32 {
} }
type BusiVisitorCountRsp struct { type BusiVisitorCountRsp struct {
state protoimpl.MessageState Requireuin *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache TotalLike *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields TotalView *int32 `protobuf:"varint,3,opt"`
HotValue *int32 `protobuf:"varint,4,opt"`
Requireuin *int32 `protobuf:"varint,1,opt,name=requireuin" json:"requireuin,omitempty"` RedValue *int32 `protobuf:"varint,5,opt"`
TotalLike *int32 `protobuf:"varint,2,opt,name=totalLike" json:"totalLike,omitempty"` HotDiff *int32 `protobuf:"varint,6,opt"`
TotalView *int32 `protobuf:"varint,3,opt,name=totalView" json:"totalView,omitempty"`
HotValue *int32 `protobuf:"varint,4,opt,name=hotValue" json:"hotValue,omitempty"`
RedValue *int32 `protobuf:"varint,5,opt,name=redValue" json:"redValue,omitempty"`
HotDiff *int32 `protobuf:"varint,6,opt,name=hotDiff" json:"hotDiff,omitempty"`
}
func (x *BusiVisitorCountRsp) Reset() {
*x = BusiVisitorCountRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_busi_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *BusiVisitorCountRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*BusiVisitorCountRsp) ProtoMessage() {}
func (x *BusiVisitorCountRsp) ProtoReflect() protoreflect.Message {
mi := &file_busi_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use BusiVisitorCountRsp.ProtoReflect.Descriptor instead.
func (*BusiVisitorCountRsp) Descriptor() ([]byte, []int) {
return file_busi_proto_rawDescGZIP(), []int{11}
} }
func (x *BusiVisitorCountRsp) GetRequireuin() int32 { func (x *BusiVisitorCountRsp) GetRequireuin() int32 {
@ -960,341 +510,3 @@ func (x *BusiVisitorCountRsp) GetHotDiff() int32 {
} }
return 0 return 0
} }
var File_busi_proto protoreflect.FileDescriptor
var file_busi_proto_rawDesc = []byte{
0x0a, 0x0a, 0x62, 0x75, 0x73, 0x69, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x35, 0x0a, 0x09,
0x42, 0x75, 0x73, 0x69, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x0c, 0x0a, 0x01, 0x72, 0x18, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x72, 0x12, 0x0c, 0x0a, 0x01, 0x67, 0x18, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x01, 0x67, 0x12, 0x0c, 0x0a, 0x01, 0x62, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
0x52, 0x01, 0x62, 0x22, 0x9f, 0x04, 0x0a, 0x08, 0x42, 0x75, 0x73, 0x69, 0x43, 0x6f, 0x6d, 0x6d,
0x12, 0x10, 0x0a, 0x03, 0x76, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x76,
0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x03, 0x73, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x72, 0x6f, 0x6d, 0x75, 0x69, 0x6e, 0x18,
0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x66, 0x72, 0x6f, 0x6d, 0x75, 0x69, 0x6e, 0x12, 0x14,
0x0a, 0x05, 0x74, 0x6f, 0x75, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74,
0x6f, 0x75, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18,
0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x20,
0x0a, 0x0b, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
0x01, 0x28, 0x05, 0x52, 0x0b, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x18, 0x07,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79,
0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x18, 0x08, 0x20, 0x01,
0x28, 0x05, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x70, 0x12, 0x21, 0x0a, 0x07,
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x07, 0x2e,
0x42, 0x75, 0x73, 0x69, 0x55, 0x69, 0x52, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x12,
0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52,
0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73,
0x67, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12,
0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x0c, 0x20, 0x01, 0x28,
0x05, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x71,
0x71, 0x76, 0x65, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x71, 0x76, 0x65,
0x72, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05,
0x52, 0x05, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x12, 0x2f, 0x0a, 0x0b, 0x6d, 0x73, 0x67, 0x4c, 0x6f,
0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x42,
0x75, 0x73, 0x69, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x52, 0x0b, 0x6d, 0x73, 0x67,
0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x12, 0x2c, 0x0a, 0x0a, 0x6d, 0x73, 0x67, 0x55, 0x69, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x55, 0x69, 0x6e,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x6d, 0x73, 0x67, 0x55, 0x69, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x33, 0x0a, 0x0e, 0x6d, 0x73, 0x67, 0x52, 0x69, 0x63, 0x68, 0x44, 0x69, 0x73, 0x70, 0x6c,
0x61, 0x79, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x52,
0x69, 0x63, 0x68, 0x55, 0x69, 0x52, 0x0e, 0x6d, 0x73, 0x67, 0x52, 0x69, 0x63, 0x68, 0x44, 0x69,
0x73, 0x70, 0x6c, 0x61, 0x79, 0x22, 0x86, 0x01, 0x0a, 0x0d, 0x42, 0x75, 0x73, 0x69, 0x43, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x72, 0x76, 0x69,
0x63, 0x65, 0x43, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x43, 0x6d, 0x64, 0x12, 0x2a, 0x0a, 0x05, 0x76, 0x63, 0x52, 0x65, 0x71,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x56, 0x69, 0x73,
0x69, 0x74, 0x6f, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x52, 0x05, 0x76, 0x63,
0x52, 0x65, 0x71, 0x12, 0x29, 0x0a, 0x05, 0x68, 0x72, 0x52, 0x65, 0x71, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x13, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x48, 0x69, 0x64, 0x65, 0x52, 0x65, 0x63,
0x6f, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71, 0x52, 0x05, 0x68, 0x72, 0x52, 0x65, 0x71, 0x22, 0x82,
0x01, 0x0a, 0x10, 0x42, 0x75, 0x73, 0x69, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x63,
0x6f, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x04, 0x66, 0x75, 0x69, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12,
0x14, 0x0a, 0x05, 0x76, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
0x76, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x6f, 0x64, 0x18, 0x04, 0x20, 0x01,
0x28, 0x05, 0x52, 0x03, 0x6d, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x69, 0x64, 0x65, 0x46,
0x6c, 0x61, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x68, 0x69, 0x64, 0x65, 0x46,
0x6c, 0x61, 0x67, 0x22, 0x69, 0x0a, 0x12, 0x42, 0x75, 0x73, 0x69, 0x48, 0x69, 0x64, 0x65, 0x52,
0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x75, 0x69,
0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x68, 0x75, 0x69, 0x6e, 0x12, 0x12, 0x0a,
0x04, 0x66, 0x75, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x66, 0x75, 0x69,
0x6e, 0x12, 0x2b, 0x0a, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x11, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52,
0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x07, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x73, 0x22, 0xcf,
0x01, 0x0a, 0x09, 0x42, 0x75, 0x73, 0x69, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x12, 0x0a, 0x04,
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
0x12, 0x1a, 0x0a, 0x08, 0x65, 0x6e, 0x75, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x08, 0x65, 0x6e, 0x75, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x09,
0x74, 0x65, 0x78, 0x74, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x0a, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x09, 0x74, 0x65, 0x78,
0x74, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x2c, 0x0a, 0x0b, 0x65, 0x64, 0x67, 0x69, 0x6e, 0x67,
0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x42, 0x75,
0x73, 0x69, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x52, 0x0b, 0x65, 0x64, 0x67, 0x69, 0x6e, 0x67, 0x43,
0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x74, 0x74,
0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x74,
0x74, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18,
0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65,
0x22, 0x4a, 0x0a, 0x0c, 0x42, 0x75, 0x73, 0x69, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x53, 0x69, 0x67,
0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04,
0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x69, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0c, 0x52, 0x03, 0x73, 0x69, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18,
0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x22, 0x40, 0x0a, 0x0a,
0x42, 0x75, 0x73, 0x69, 0x52, 0x69, 0x63, 0x68, 0x55, 0x69, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e,
0x0a, 0x0a, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x64,
0x0a, 0x06, 0x42, 0x75, 0x73, 0x69, 0x55, 0x69, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18,
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69,
0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65,
0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6a, 0x75,
0x6d, 0x70, 0x55, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a, 0x75, 0x6d,
0x70, 0x55, 0x72, 0x6c, 0x22, 0x5b, 0x0a, 0x0b, 0x42, 0x75, 0x73, 0x69, 0x55, 0x69, 0x6e, 0x49,
0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x4c, 0x6f, 0x6e, 0x67,
0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x69, 0x6e, 0x74,
0x36, 0x34, 0x4c, 0x6f, 0x6e, 0x67, 0x69, 0x74, 0x75, 0x64, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x69,
0x6e, 0x74, 0x36, 0x34, 0x4c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x03, 0x52, 0x0d, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x4c, 0x61, 0x74, 0x69, 0x74, 0x75, 0x64,
0x65, 0x22, 0x81, 0x01, 0x0a, 0x13, 0x42, 0x75, 0x73, 0x69, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f,
0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x65, 0x71,
0x75, 0x69, 0x72, 0x65, 0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x72,
0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x75, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65,
0x72, 0x75, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x72,
0x75, 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x6f, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
0x52, 0x03, 0x6d, 0x6f, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x46,
0x6c, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x72, 0x65, 0x70, 0x6f, 0x72,
0x74, 0x46, 0x6c, 0x61, 0x67, 0x22, 0xc3, 0x01, 0x0a, 0x13, 0x42, 0x75, 0x73, 0x69, 0x56, 0x69,
0x73, 0x69, 0x74, 0x6f, 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x73, 0x70, 0x12, 0x1e, 0x0a,
0x0a, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x75, 0x69, 0x6e, 0x12, 0x1c, 0x0a,
0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x4c, 0x69, 0x6b, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x74,
0x6f, 0x74, 0x61, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
0x74, 0x6f, 0x74, 0x61, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x12, 0x1a, 0x0a, 0x08, 0x68, 0x6f, 0x74,
0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x68, 0x6f, 0x74,
0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x6f, 0x74, 0x44, 0x69, 0x66, 0x66, 0x18, 0x06, 0x20, 0x01,
0x28, 0x05, 0x52, 0x07, 0x68, 0x6f, 0x74, 0x44, 0x69, 0x66, 0x66, 0x42, 0x10, 0x5a, 0x0e, 0x2e,
0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x63, 0x61, 0x72, 0x64,
}
var (
file_busi_proto_rawDescOnce sync.Once
file_busi_proto_rawDescData = file_busi_proto_rawDesc
)
func file_busi_proto_rawDescGZIP() []byte {
file_busi_proto_rawDescOnce.Do(func() {
file_busi_proto_rawDescData = protoimpl.X.CompressGZIP(file_busi_proto_rawDescData)
})
return file_busi_proto_rawDescData
}
var file_busi_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
var file_busi_proto_goTypes = []interface{}{
(*BusiColor)(nil), // 0: BusiColor
(*BusiComm)(nil), // 1: BusiComm
(*BusiCommonReq)(nil), // 2: BusiCommonReq
(*BusiDetailRecord)(nil), // 3: BusiDetailRecord
(*BusiHideRecordsReq)(nil), // 4: BusiHideRecordsReq
(*BusiLabel)(nil), // 5: BusiLabel
(*BusiLoginSig)(nil), // 6: BusiLoginSig
(*BusiRichUi)(nil), // 7: BusiRichUi
(*BusiUi)(nil), // 8: BusiUi
(*BusiUinInfo)(nil), // 9: BusiUinInfo
(*BusiVisitorCountReq)(nil), // 10: BusiVisitorCountReq
(*BusiVisitorCountRsp)(nil), // 11: BusiVisitorCountRsp
}
var file_busi_proto_depIdxs = []int32{
8, // 0: BusiComm.display:type_name -> BusiUi
6, // 1: BusiComm.msgLoginSig:type_name -> BusiLoginSig
9, // 2: BusiComm.msgUinInfo:type_name -> BusiUinInfo
7, // 3: BusiComm.msgRichDisplay:type_name -> BusiRichUi
10, // 4: BusiCommonReq.vcReq:type_name -> BusiVisitorCountReq
4, // 5: BusiCommonReq.hrReq:type_name -> BusiHideRecordsReq
3, // 6: BusiHideRecordsReq.records:type_name -> BusiDetailRecord
0, // 7: BusiLabel.textColor:type_name -> BusiColor
0, // 8: BusiLabel.edgingColor:type_name -> BusiColor
9, // [9:9] is the sub-list for method output_type
9, // [9:9] is the sub-list for method input_type
9, // [9:9] is the sub-list for extension type_name
9, // [9:9] is the sub-list for extension extendee
0, // [0:9] is the sub-list for field type_name
}
func init() { file_busi_proto_init() }
func file_busi_proto_init() {
if File_busi_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_busi_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiColor); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiComm); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiCommonReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiDetailRecord); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiHideRecordsReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiLabel); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiLoginSig); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiRichUi); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiUi); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiUinInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiVisitorCountReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_busi_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusiVisitorCountRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_busi_proto_rawDesc,
NumEnums: 0,
NumMessages: 12,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_busi_proto_goTypes,
DependencyIndexes: file_busi_proto_depIdxs,
MessageInfos: file_busi_proto_msgTypes,
}.Build()
File_busi_proto = out.File
file_busi_proto_rawDesc = nil
file_busi_proto_goTypes = nil
file_busi_proto_depIdxs = nil
}

View File

@ -1,65 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: gate.proto // source: gate.proto
package profilecard package profilecard
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type GateCommTaskInfo struct { type GateCommTaskInfo struct {
state protoimpl.MessageState Appid *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache TaskData []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Appid *int32 `protobuf:"varint,1,opt,name=appid" json:"appid,omitempty"`
TaskData []byte `protobuf:"bytes,2,opt,name=taskData" json:"taskData,omitempty"`
}
func (x *GateCommTaskInfo) Reset() {
*x = GateCommTaskInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateCommTaskInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateCommTaskInfo) ProtoMessage() {}
func (x *GateCommTaskInfo) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateCommTaskInfo.ProtoReflect.Descriptor instead.
func (*GateCommTaskInfo) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{0}
} }
func (x *GateCommTaskInfo) GetAppid() int32 { func (x *GateCommTaskInfo) GetAppid() int32 {
@ -77,43 +23,7 @@ func (x *GateCommTaskInfo) GetTaskData() []byte {
} }
type GateGetGiftListReq struct { type GateGetGiftListReq struct {
state protoimpl.MessageState Uin *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Uin *int32 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"`
}
func (x *GateGetGiftListReq) Reset() {
*x = GateGetGiftListReq{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateGetGiftListReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateGetGiftListReq) ProtoMessage() {}
func (x *GateGetGiftListReq) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateGetGiftListReq.ProtoReflect.Descriptor instead.
func (*GateGetGiftListReq) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{1}
} }
func (x *GateGetGiftListReq) GetUin() int32 { func (x *GateGetGiftListReq) GetUin() int32 {
@ -124,46 +34,10 @@ func (x *GateGetGiftListReq) GetUin() int32 {
} }
type GateGetGiftListRsp struct { type GateGetGiftListRsp struct {
state protoimpl.MessageState GiftUrl []string `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache CustomUrl *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Desc *string `protobuf:"bytes,3,opt"`
IsOn *bool `protobuf:"varint,4,opt"`
GiftUrl []string `protobuf:"bytes,1,rep,name=giftUrl" json:"giftUrl,omitempty"`
CustomUrl *string `protobuf:"bytes,2,opt,name=customUrl" json:"customUrl,omitempty"`
Desc *string `protobuf:"bytes,3,opt,name=desc" json:"desc,omitempty"`
IsOn *bool `protobuf:"varint,4,opt,name=isOn" json:"isOn,omitempty"`
}
func (x *GateGetGiftListRsp) Reset() {
*x = GateGetGiftListRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateGetGiftListRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateGetGiftListRsp) ProtoMessage() {}
func (x *GateGetGiftListRsp) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateGetGiftListRsp.ProtoReflect.Descriptor instead.
func (*GateGetGiftListRsp) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{2}
} }
func (x *GateGetGiftListRsp) GetGiftUrl() []string { func (x *GateGetGiftListRsp) GetGiftUrl() []string {
@ -195,43 +69,7 @@ func (x *GateGetGiftListRsp) GetIsOn() bool {
} }
type GateGetVipCareReq struct { type GateGetVipCareReq struct {
state protoimpl.MessageState Uin *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Uin *int64 `protobuf:"varint,1,opt,name=uin" json:"uin,omitempty"`
}
func (x *GateGetVipCareReq) Reset() {
*x = GateGetVipCareReq{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateGetVipCareReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateGetVipCareReq) ProtoMessage() {}
func (x *GateGetVipCareReq) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateGetVipCareReq.ProtoReflect.Descriptor instead.
func (*GateGetVipCareReq) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{3}
} }
func (x *GateGetVipCareReq) GetUin() int64 { func (x *GateGetVipCareReq) GetUin() int64 {
@ -242,44 +80,8 @@ func (x *GateGetVipCareReq) GetUin() int64 {
} }
type GateGetVipCareRsp struct { type GateGetVipCareRsp struct {
state protoimpl.MessageState Buss *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Notice *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
Buss *int32 `protobuf:"varint,1,opt,name=buss" json:"buss,omitempty"`
Notice *int32 `protobuf:"varint,2,opt,name=notice" json:"notice,omitempty"`
}
func (x *GateGetVipCareRsp) Reset() {
*x = GateGetVipCareRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateGetVipCareRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateGetVipCareRsp) ProtoMessage() {}
func (x *GateGetVipCareRsp) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateGetVipCareRsp.ProtoReflect.Descriptor instead.
func (*GateGetVipCareRsp) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{4}
} }
func (x *GateGetVipCareRsp) GetBuss() int32 { func (x *GateGetVipCareRsp) GetBuss() int32 {
@ -297,44 +99,8 @@ func (x *GateGetVipCareRsp) GetNotice() int32 {
} }
type GateOidbFlagInfo struct { type GateOidbFlagInfo struct {
state protoimpl.MessageState Fieled *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ByetsValue []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields
Fieled *int32 `protobuf:"varint,1,opt,name=fieled" json:"fieled,omitempty"`
ByetsValue []byte `protobuf:"bytes,2,opt,name=byetsValue" json:"byetsValue,omitempty"`
}
func (x *GateOidbFlagInfo) Reset() {
*x = GateOidbFlagInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateOidbFlagInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateOidbFlagInfo) ProtoMessage() {}
func (x *GateOidbFlagInfo) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateOidbFlagInfo.ProtoReflect.Descriptor instead.
func (*GateOidbFlagInfo) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{5}
} }
func (x *GateOidbFlagInfo) GetFieled() int32 { func (x *GateOidbFlagInfo) GetFieled() int32 {
@ -352,43 +118,7 @@ func (x *GateOidbFlagInfo) GetByetsValue() []byte {
} }
type GatePrivilegeBaseInfoReq struct { type GatePrivilegeBaseInfoReq struct {
state protoimpl.MessageState UReqUin *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
UReqUin *int64 `protobuf:"varint,1,opt,name=uReqUin" json:"uReqUin,omitempty"`
}
func (x *GatePrivilegeBaseInfoReq) Reset() {
*x = GatePrivilegeBaseInfoReq{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GatePrivilegeBaseInfoReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GatePrivilegeBaseInfoReq) ProtoMessage() {}
func (x *GatePrivilegeBaseInfoReq) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GatePrivilegeBaseInfoReq.ProtoReflect.Descriptor instead.
func (*GatePrivilegeBaseInfoReq) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{6}
} }
func (x *GatePrivilegeBaseInfoReq) GetUReqUin() int64 { func (x *GatePrivilegeBaseInfoReq) GetUReqUin() int64 {
@ -399,47 +129,11 @@ func (x *GatePrivilegeBaseInfoReq) GetUReqUin() int64 {
} }
type GatePrivilegeBaseInfoRsp struct { type GatePrivilegeBaseInfoRsp struct {
state protoimpl.MessageState Msg []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache JumpUrl []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields VOpenPriv []*GatePrivilegeInfo `protobuf:"bytes,3,rep"`
VClosePriv []*GatePrivilegeInfo `protobuf:"bytes,4,rep"`
Msg []byte `protobuf:"bytes,1,opt,name=msg" json:"msg,omitempty"` UIsGrayUsr *int32 `protobuf:"varint,5,opt"`
JumpUrl []byte `protobuf:"bytes,2,opt,name=jumpUrl" json:"jumpUrl,omitempty"`
VOpenPriv []*GatePrivilegeInfo `protobuf:"bytes,3,rep,name=vOpenPriv" json:"vOpenPriv,omitempty"`
VClosePriv []*GatePrivilegeInfo `protobuf:"bytes,4,rep,name=vClosePriv" json:"vClosePriv,omitempty"`
UIsGrayUsr *int32 `protobuf:"varint,5,opt,name=uIsGrayUsr" json:"uIsGrayUsr,omitempty"`
}
func (x *GatePrivilegeBaseInfoRsp) Reset() {
*x = GatePrivilegeBaseInfoRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GatePrivilegeBaseInfoRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GatePrivilegeBaseInfoRsp) ProtoMessage() {}
func (x *GatePrivilegeBaseInfoRsp) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GatePrivilegeBaseInfoRsp.ProtoReflect.Descriptor instead.
func (*GatePrivilegeBaseInfoRsp) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{7}
} }
func (x *GatePrivilegeBaseInfoRsp) GetMsg() []byte { func (x *GatePrivilegeBaseInfoRsp) GetMsg() []byte {
@ -478,51 +172,15 @@ func (x *GatePrivilegeBaseInfoRsp) GetUIsGrayUsr() int32 {
} }
type GatePrivilegeInfo struct { type GatePrivilegeInfo struct {
state protoimpl.MessageState IType *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache ISort *int32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields IFeeType *int32 `protobuf:"varint,3,opt"`
ILevel *int32 `protobuf:"varint,4,opt"`
IType *int32 `protobuf:"varint,1,opt,name=iType" json:"iType,omitempty"` IFlag *int32 `protobuf:"varint,5,opt"`
ISort *int32 `protobuf:"varint,2,opt,name=iSort" json:"iSort,omitempty"` IconUrl []byte `protobuf:"bytes,6,opt"`
IFeeType *int32 `protobuf:"varint,3,opt,name=iFeeType" json:"iFeeType,omitempty"` DeluxeIconUrl []byte `protobuf:"bytes,7,opt"`
ILevel *int32 `protobuf:"varint,4,opt,name=iLevel" json:"iLevel,omitempty"` JumpUrl []byte `protobuf:"bytes,8,opt"`
IFlag *int32 `protobuf:"varint,5,opt,name=iFlag" json:"iFlag,omitempty"` IIsBig *int32 `protobuf:"varint,9,opt"`
IconUrl []byte `protobuf:"bytes,6,opt,name=iconUrl" json:"iconUrl,omitempty"`
DeluxeIconUrl []byte `protobuf:"bytes,7,opt,name=deluxeIconUrl" json:"deluxeIconUrl,omitempty"`
JumpUrl []byte `protobuf:"bytes,8,opt,name=jumpUrl" json:"jumpUrl,omitempty"`
IIsBig *int32 `protobuf:"varint,9,opt,name=iIsBig" json:"iIsBig,omitempty"`
}
func (x *GatePrivilegeInfo) Reset() {
*x = GatePrivilegeInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GatePrivilegeInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GatePrivilegeInfo) ProtoMessage() {}
func (x *GatePrivilegeInfo) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GatePrivilegeInfo.ProtoReflect.Descriptor instead.
func (*GatePrivilegeInfo) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{8}
} }
func (x *GatePrivilegeInfo) GetIType() int32 { func (x *GatePrivilegeInfo) GetIType() int32 {
@ -589,48 +247,12 @@ func (x *GatePrivilegeInfo) GetIIsBig() int32 {
} }
type GateVaProfileGateReq struct { type GateVaProfileGateReq struct {
state protoimpl.MessageState UCmd *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache StPrivilegeReq *GatePrivilegeBaseInfoReq `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields StGiftReq *GateGetGiftListReq `protobuf:"bytes,3,opt"`
TaskItem []*GateCommTaskInfo `protobuf:"bytes,4,rep"`
UCmd *int32 `protobuf:"varint,1,opt,name=uCmd" json:"uCmd,omitempty"` OidbFlag []*GateOidbFlagInfo `protobuf:"bytes,5,rep"`
StPrivilegeReq *GatePrivilegeBaseInfoReq `protobuf:"bytes,2,opt,name=stPrivilegeReq" json:"stPrivilegeReq,omitempty"` StVipCare *GateGetVipCareReq `protobuf:"bytes,6,opt"`
StGiftReq *GateGetGiftListReq `protobuf:"bytes,3,opt,name=stGiftReq" json:"stGiftReq,omitempty"`
TaskItem []*GateCommTaskInfo `protobuf:"bytes,4,rep,name=taskItem" json:"taskItem,omitempty"`
OidbFlag []*GateOidbFlagInfo `protobuf:"bytes,5,rep,name=oidbFlag" json:"oidbFlag,omitempty"`
StVipCare *GateGetVipCareReq `protobuf:"bytes,6,opt,name=stVipCare" json:"stVipCare,omitempty"`
}
func (x *GateVaProfileGateReq) Reset() {
*x = GateVaProfileGateReq{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateVaProfileGateReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateVaProfileGateReq) ProtoMessage() {}
func (x *GateVaProfileGateReq) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateVaProfileGateReq.ProtoReflect.Descriptor instead.
func (*GateVaProfileGateReq) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{9}
} }
func (x *GateVaProfileGateReq) GetUCmd() int32 { func (x *GateVaProfileGateReq) GetUCmd() int32 {
@ -676,46 +298,10 @@ func (x *GateVaProfileGateReq) GetStVipCare() *GateGetVipCareReq {
} }
type GateQidInfoItem struct { type GateQidInfoItem struct {
state protoimpl.MessageState Qid *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Url *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Color *string `protobuf:"bytes,3,opt"`
LogoUrl *string `protobuf:"bytes,4,opt"`
Qid *string `protobuf:"bytes,1,opt,name=qid" json:"qid,omitempty"`
Url *string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
Color *string `protobuf:"bytes,3,opt,name=color" json:"color,omitempty"`
LogoUrl *string `protobuf:"bytes,4,opt,name=logoUrl" json:"logoUrl,omitempty"`
}
func (x *GateQidInfoItem) Reset() {
*x = GateQidInfoItem{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateQidInfoItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateQidInfoItem) ProtoMessage() {}
func (x *GateQidInfoItem) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateQidInfoItem.ProtoReflect.Descriptor instead.
func (*GateQidInfoItem) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{10}
} }
func (x *GateQidInfoItem) GetQid() string { func (x *GateQidInfoItem) GetQid() string {
@ -747,50 +333,14 @@ func (x *GateQidInfoItem) GetLogoUrl() string {
} }
type GateVaProfileGateRsp struct { type GateVaProfileGateRsp struct {
state protoimpl.MessageState IRetCode *int32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache SRetMsg []byte `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields StPrivilegeRsp *GatePrivilegeBaseInfoRsp `protobuf:"bytes,3,opt"`
StGiftRsp *GateGetGiftListRsp `protobuf:"bytes,4,opt"`
IRetCode *int32 `protobuf:"varint,1,opt,name=iRetCode" json:"iRetCode,omitempty"` TaskItem []*GateCommTaskInfo `protobuf:"bytes,5,rep"`
SRetMsg []byte `protobuf:"bytes,2,opt,name=sRetMsg" json:"sRetMsg,omitempty"` OidbFlag []*GateOidbFlagInfo `protobuf:"bytes,6,rep"`
StPrivilegeRsp *GatePrivilegeBaseInfoRsp `protobuf:"bytes,3,opt,name=stPrivilegeRsp" json:"stPrivilegeRsp,omitempty"` StVipCare *GateGetVipCareRsp `protobuf:"bytes,7,opt"`
StGiftRsp *GateGetGiftListRsp `protobuf:"bytes,4,opt,name=stGiftRsp" json:"stGiftRsp,omitempty"` QidInfo *GateQidInfoItem `protobuf:"bytes,9,opt"`
TaskItem []*GateCommTaskInfo `protobuf:"bytes,5,rep,name=taskItem" json:"taskItem,omitempty"`
OidbFlag []*GateOidbFlagInfo `protobuf:"bytes,6,rep,name=oidbFlag" json:"oidbFlag,omitempty"`
StVipCare *GateGetVipCareRsp `protobuf:"bytes,7,opt,name=stVipCare" json:"stVipCare,omitempty"`
QidInfo *GateQidInfoItem `protobuf:"bytes,9,opt,name=qidInfo" json:"qidInfo,omitempty"`
}
func (x *GateVaProfileGateRsp) Reset() {
*x = GateVaProfileGateRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_gate_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GateVaProfileGateRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GateVaProfileGateRsp) ProtoMessage() {}
func (x *GateVaProfileGateRsp) ProtoReflect() protoreflect.Message {
mi := &file_gate_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GateVaProfileGateRsp.ProtoReflect.Descriptor instead.
func (*GateVaProfileGateRsp) Descriptor() ([]byte, []int) {
return file_gate_proto_rawDescGZIP(), []int{11}
} }
func (x *GateVaProfileGateRsp) GetIRetCode() int32 { func (x *GateVaProfileGateRsp) GetIRetCode() int32 {
@ -848,337 +398,3 @@ func (x *GateVaProfileGateRsp) GetQidInfo() *GateQidInfoItem {
} }
return nil return nil
} }
var File_gate_proto protoreflect.FileDescriptor
var file_gate_proto_rawDesc = []byte{
0x0a, 0x0a, 0x67, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x44, 0x0a, 0x10,
0x47, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x05, 0x61, 0x70, 0x70, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x61, 0x73, 0x6b, 0x44, 0x61,
0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x74, 0x61, 0x73, 0x6b, 0x44, 0x61,
0x74, 0x61, 0x22, 0x26, 0x0a, 0x12, 0x47, 0x61, 0x74, 0x65, 0x47, 0x65, 0x74, 0x47, 0x69, 0x66,
0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x22, 0x74, 0x0a, 0x12, 0x47, 0x61,
0x74, 0x65, 0x47, 0x65, 0x74, 0x47, 0x69, 0x66, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x73, 0x70,
0x12, 0x18, 0x0a, 0x07, 0x67, 0x69, 0x66, 0x74, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x03, 0x28,
0x09, 0x52, 0x07, 0x67, 0x69, 0x66, 0x74, 0x55, 0x72, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x75,
0x73, 0x74, 0x6f, 0x6d, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x55, 0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63,
0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x12, 0x12, 0x0a, 0x04,
0x69, 0x73, 0x4f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73, 0x4f, 0x6e,
0x22, 0x25, 0x0a, 0x11, 0x47, 0x61, 0x74, 0x65, 0x47, 0x65, 0x74, 0x56, 0x69, 0x70, 0x43, 0x61,
0x72, 0x65, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01,
0x28, 0x03, 0x52, 0x03, 0x75, 0x69, 0x6e, 0x22, 0x3f, 0x0a, 0x11, 0x47, 0x61, 0x74, 0x65, 0x47,
0x65, 0x74, 0x56, 0x69, 0x70, 0x43, 0x61, 0x72, 0x65, 0x52, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04,
0x62, 0x75, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x62, 0x75, 0x73, 0x73,
0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
0x52, 0x06, 0x6e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x22, 0x4a, 0x0a, 0x10, 0x47, 0x61, 0x74, 0x65,
0x4f, 0x69, 0x64, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06,
0x66, 0x69, 0x65, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x69,
0x65, 0x6c, 0x65, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x79, 0x65, 0x74, 0x73, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x62, 0x79, 0x65, 0x74, 0x73, 0x56,
0x61, 0x6c, 0x75, 0x65, 0x22, 0x34, 0x0a, 0x18, 0x47, 0x61, 0x74, 0x65, 0x50, 0x72, 0x69, 0x76,
0x69, 0x6c, 0x65, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71,
0x12, 0x18, 0x0a, 0x07, 0x75, 0x52, 0x65, 0x71, 0x55, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
0x03, 0x52, 0x07, 0x75, 0x52, 0x65, 0x71, 0x55, 0x69, 0x6e, 0x22, 0xcc, 0x01, 0x0a, 0x18, 0x47,
0x61, 0x74, 0x65, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x6a, 0x75, 0x6d,
0x70, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6a, 0x75, 0x6d, 0x70,
0x55, 0x72, 0x6c, 0x12, 0x30, 0x0a, 0x09, 0x76, 0x4f, 0x70, 0x65, 0x6e, 0x50, 0x72, 0x69, 0x76,
0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x47, 0x61, 0x74, 0x65, 0x50, 0x72, 0x69,
0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x76, 0x4f, 0x70, 0x65,
0x6e, 0x50, 0x72, 0x69, 0x76, 0x12, 0x32, 0x0a, 0x0a, 0x76, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x50,
0x72, 0x69, 0x76, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x47, 0x61, 0x74, 0x65,
0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x76,
0x43, 0x6c, 0x6f, 0x73, 0x65, 0x50, 0x72, 0x69, 0x76, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x49, 0x73,
0x47, 0x72, 0x61, 0x79, 0x55, 0x73, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x75,
0x49, 0x73, 0x47, 0x72, 0x61, 0x79, 0x55, 0x73, 0x72, 0x22, 0xfb, 0x01, 0x0a, 0x11, 0x47, 0x61,
0x74, 0x65, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
0x14, 0x0a, 0x05, 0x69, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
0x69, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x53, 0x6f, 0x72, 0x74, 0x18, 0x02,
0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x69, 0x53, 0x6f, 0x72, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x69,
0x46, 0x65, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x69,
0x46, 0x65, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x4c, 0x65, 0x76, 0x65,
0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x69, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12,
0x14, 0x0a, 0x05, 0x69, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
0x69, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x63, 0x6f, 0x6e, 0x55, 0x72, 0x6c,
0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x69, 0x63, 0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x12,
0x24, 0x0a, 0x0d, 0x64, 0x65, 0x6c, 0x75, 0x78, 0x65, 0x49, 0x63, 0x6f, 0x6e, 0x55, 0x72, 0x6c,
0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x64, 0x65, 0x6c, 0x75, 0x78, 0x65, 0x49, 0x63,
0x6f, 0x6e, 0x55, 0x72, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6a, 0x75, 0x6d, 0x70, 0x55, 0x72, 0x6c,
0x18, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6a, 0x75, 0x6d, 0x70, 0x55, 0x72, 0x6c, 0x12,
0x16, 0x0a, 0x06, 0x69, 0x49, 0x73, 0x42, 0x69, 0x67, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52,
0x06, 0x69, 0x49, 0x73, 0x42, 0x69, 0x67, 0x22, 0xb0, 0x02, 0x0a, 0x14, 0x47, 0x61, 0x74, 0x65,
0x56, 0x61, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x47, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
0x12, 0x12, 0x0a, 0x04, 0x75, 0x43, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04,
0x75, 0x43, 0x6d, 0x64, 0x12, 0x41, 0x0a, 0x0e, 0x73, 0x74, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c,
0x65, 0x67, 0x65, 0x52, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x47,
0x61, 0x74, 0x65, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x52, 0x0e, 0x73, 0x74, 0x50, 0x72, 0x69, 0x76, 0x69,
0x6c, 0x65, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x31, 0x0a, 0x09, 0x73, 0x74, 0x47, 0x69, 0x66,
0x74, 0x52, 0x65, 0x71, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x47, 0x61, 0x74,
0x65, 0x47, 0x65, 0x74, 0x47, 0x69, 0x66, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x52,
0x09, 0x73, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x65, 0x71, 0x12, 0x2d, 0x0a, 0x08, 0x74, 0x61,
0x73, 0x6b, 0x49, 0x74, 0x65, 0x6d, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x47,
0x61, 0x74, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x52,
0x08, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x2d, 0x0a, 0x08, 0x6f, 0x69, 0x64,
0x62, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x47, 0x61,
0x74, 0x65, 0x4f, 0x69, 0x64, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08,
0x6f, 0x69, 0x64, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x30, 0x0a, 0x09, 0x73, 0x74, 0x56, 0x69,
0x70, 0x43, 0x61, 0x72, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x47, 0x61,
0x74, 0x65, 0x47, 0x65, 0x74, 0x56, 0x69, 0x70, 0x43, 0x61, 0x72, 0x65, 0x52, 0x65, 0x71, 0x52,
0x09, 0x73, 0x74, 0x56, 0x69, 0x70, 0x43, 0x61, 0x72, 0x65, 0x22, 0x65, 0x0a, 0x0f, 0x47, 0x61,
0x74, 0x65, 0x51, 0x69, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x10, 0x0a,
0x03, 0x71, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x71, 0x69, 0x64, 0x12,
0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72,
0x6c, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x67, 0x6f, 0x55,
0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x6f, 0x67, 0x6f, 0x55, 0x72,
0x6c, 0x22, 0xfe, 0x02, 0x0a, 0x14, 0x47, 0x61, 0x74, 0x65, 0x56, 0x61, 0x50, 0x72, 0x6f, 0x66,
0x69, 0x6c, 0x65, 0x47, 0x61, 0x74, 0x65, 0x52, 0x73, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x52,
0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x69, 0x52,
0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x52, 0x65, 0x74, 0x4d, 0x73,
0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x73, 0x52, 0x65, 0x74, 0x4d, 0x73, 0x67,
0x12, 0x41, 0x0a, 0x0e, 0x73, 0x74, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x52,
0x73, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x47, 0x61, 0x74, 0x65, 0x50,
0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49, 0x6e, 0x66, 0x6f,
0x52, 0x73, 0x70, 0x52, 0x0e, 0x73, 0x74, 0x50, 0x72, 0x69, 0x76, 0x69, 0x6c, 0x65, 0x67, 0x65,
0x52, 0x73, 0x70, 0x12, 0x31, 0x0a, 0x09, 0x73, 0x74, 0x47, 0x69, 0x66, 0x74, 0x52, 0x73, 0x70,
0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x47, 0x61, 0x74, 0x65, 0x47, 0x65, 0x74,
0x47, 0x69, 0x66, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x73, 0x70, 0x52, 0x09, 0x73, 0x74, 0x47,
0x69, 0x66, 0x74, 0x52, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x08, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x74,
0x65, 0x6d, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x47, 0x61, 0x74, 0x65, 0x43,
0x6f, 0x6d, 0x6d, 0x54, 0x61, 0x73, 0x6b, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x74, 0x61, 0x73,
0x6b, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x2d, 0x0a, 0x08, 0x6f, 0x69, 0x64, 0x62, 0x46, 0x6c, 0x61,
0x67, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x47, 0x61, 0x74, 0x65, 0x4f, 0x69,
0x64, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x6f, 0x69, 0x64, 0x62,
0x46, 0x6c, 0x61, 0x67, 0x12, 0x30, 0x0a, 0x09, 0x73, 0x74, 0x56, 0x69, 0x70, 0x43, 0x61, 0x72,
0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x47, 0x61, 0x74, 0x65, 0x47, 0x65,
0x74, 0x56, 0x69, 0x70, 0x43, 0x61, 0x72, 0x65, 0x52, 0x73, 0x70, 0x52, 0x09, 0x73, 0x74, 0x56,
0x69, 0x70, 0x43, 0x61, 0x72, 0x65, 0x12, 0x2a, 0x0a, 0x07, 0x71, 0x69, 0x64, 0x49, 0x6e, 0x66,
0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x47, 0x61, 0x74, 0x65, 0x51, 0x69,
0x64, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x07, 0x71, 0x69, 0x64, 0x49, 0x6e,
0x66, 0x6f, 0x42, 0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
0x63, 0x61, 0x72, 0x64,
}
var (
file_gate_proto_rawDescOnce sync.Once
file_gate_proto_rawDescData = file_gate_proto_rawDesc
)
func file_gate_proto_rawDescGZIP() []byte {
file_gate_proto_rawDescOnce.Do(func() {
file_gate_proto_rawDescData = protoimpl.X.CompressGZIP(file_gate_proto_rawDescData)
})
return file_gate_proto_rawDescData
}
var file_gate_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
var file_gate_proto_goTypes = []interface{}{
(*GateCommTaskInfo)(nil), // 0: GateCommTaskInfo
(*GateGetGiftListReq)(nil), // 1: GateGetGiftListReq
(*GateGetGiftListRsp)(nil), // 2: GateGetGiftListRsp
(*GateGetVipCareReq)(nil), // 3: GateGetVipCareReq
(*GateGetVipCareRsp)(nil), // 4: GateGetVipCareRsp
(*GateOidbFlagInfo)(nil), // 5: GateOidbFlagInfo
(*GatePrivilegeBaseInfoReq)(nil), // 6: GatePrivilegeBaseInfoReq
(*GatePrivilegeBaseInfoRsp)(nil), // 7: GatePrivilegeBaseInfoRsp
(*GatePrivilegeInfo)(nil), // 8: GatePrivilegeInfo
(*GateVaProfileGateReq)(nil), // 9: GateVaProfileGateReq
(*GateQidInfoItem)(nil), // 10: GateQidInfoItem
(*GateVaProfileGateRsp)(nil), // 11: GateVaProfileGateRsp
}
var file_gate_proto_depIdxs = []int32{
8, // 0: GatePrivilegeBaseInfoRsp.vOpenPriv:type_name -> GatePrivilegeInfo
8, // 1: GatePrivilegeBaseInfoRsp.vClosePriv:type_name -> GatePrivilegeInfo
6, // 2: GateVaProfileGateReq.stPrivilegeReq:type_name -> GatePrivilegeBaseInfoReq
1, // 3: GateVaProfileGateReq.stGiftReq:type_name -> GateGetGiftListReq
0, // 4: GateVaProfileGateReq.taskItem:type_name -> GateCommTaskInfo
5, // 5: GateVaProfileGateReq.oidbFlag:type_name -> GateOidbFlagInfo
3, // 6: GateVaProfileGateReq.stVipCare:type_name -> GateGetVipCareReq
7, // 7: GateVaProfileGateRsp.stPrivilegeRsp:type_name -> GatePrivilegeBaseInfoRsp
2, // 8: GateVaProfileGateRsp.stGiftRsp:type_name -> GateGetGiftListRsp
0, // 9: GateVaProfileGateRsp.taskItem:type_name -> GateCommTaskInfo
5, // 10: GateVaProfileGateRsp.oidbFlag:type_name -> GateOidbFlagInfo
4, // 11: GateVaProfileGateRsp.stVipCare:type_name -> GateGetVipCareRsp
10, // 12: GateVaProfileGateRsp.qidInfo:type_name -> GateQidInfoItem
13, // [13:13] is the sub-list for method output_type
13, // [13:13] is the sub-list for method input_type
13, // [13:13] is the sub-list for extension type_name
13, // [13:13] is the sub-list for extension extendee
0, // [0:13] is the sub-list for field type_name
}
func init() { file_gate_proto_init() }
func file_gate_proto_init() {
if File_gate_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_gate_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateCommTaskInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateGetGiftListReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateGetGiftListRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateGetVipCareReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateGetVipCareRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateOidbFlagInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GatePrivilegeBaseInfoReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GatePrivilegeBaseInfoRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GatePrivilegeInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateVaProfileGateReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateQidInfoItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gate_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GateVaProfileGateRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_gate_proto_rawDesc,
NumEnums: 0,
NumMessages: 12,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_gate_proto_goTypes,
DependencyIndexes: file_gate_proto_depIdxs,
MessageInfos: file_gate_proto_msgTypes,
}.Build()
File_gate_proto = out.File
file_gate_proto_rawDesc = nil
file_gate_proto_goTypes = nil
file_gate_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,66 +1,12 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: app.proto // source: app.proto
package qweb package qweb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type GetAppInfoByIdReq struct { type GetAppInfoByIdReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
//CommonExt ExtInfo = 1; //CommonExt ExtInfo = 1;
AppId string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"` AppId string `protobuf:"bytes,2,opt"`
NeedVersionInfo int32 `protobuf:"varint,3,opt,name=needVersionInfo,proto3" json:"needVersionInfo,omitempty"` NeedVersionInfo int32 `protobuf:"varint,3,opt"`
}
func (x *GetAppInfoByIdReq) Reset() {
*x = GetAppInfoByIdReq{}
if protoimpl.UnsafeEnabled {
mi := &file_app_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetAppInfoByIdReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetAppInfoByIdReq) ProtoMessage() {}
func (x *GetAppInfoByIdReq) ProtoReflect() protoreflect.Message {
mi := &file_app_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetAppInfoByIdReq.ProtoReflect.Descriptor instead.
func (*GetAppInfoByIdReq) Descriptor() ([]byte, []int) {
return file_app_proto_rawDescGZIP(), []int{0}
} }
func (x *GetAppInfoByIdReq) GetAppId() string { func (x *GetAppInfoByIdReq) GetAppId() string {
@ -78,43 +24,7 @@ func (x *GetAppInfoByIdReq) GetNeedVersionInfo() int32 {
} }
type GetAppInfoByIdRsp struct { type GetAppInfoByIdRsp struct {
state protoimpl.MessageState AppInfo *ApiAppInfo `protobuf:"bytes,2,opt"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
AppInfo *ApiAppInfo `protobuf:"bytes,2,opt,name=appInfo,proto3" json:"appInfo,omitempty"`
}
func (x *GetAppInfoByIdRsp) Reset() {
*x = GetAppInfoByIdRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_app_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GetAppInfoByIdRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GetAppInfoByIdRsp) ProtoMessage() {}
func (x *GetAppInfoByIdRsp) ProtoReflect() protoreflect.Message {
mi := &file_app_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use GetAppInfoByIdRsp.ProtoReflect.Descriptor instead.
func (*GetAppInfoByIdRsp) Descriptor() ([]byte, []int) {
return file_app_proto_rawDescGZIP(), []int{1}
} }
func (x *GetAppInfoByIdRsp) GetAppInfo() *ApiAppInfo { func (x *GetAppInfoByIdRsp) GetAppInfo() *ApiAppInfo {
@ -125,54 +35,18 @@ func (x *GetAppInfoByIdRsp) GetAppInfo() *ApiAppInfo {
} }
type ApiAppInfo struct { type ApiAppInfo struct {
state protoimpl.MessageState AppId string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache AppName string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Icon string `protobuf:"bytes,3,opt"`
DownloadUrl string `protobuf:"bytes,4,opt"`
AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"` Version string `protobuf:"bytes,5,opt"`
AppName string `protobuf:"bytes,2,opt,name=appName,proto3" json:"appName,omitempty"` Desc string `protobuf:"bytes,6,opt"`
Icon string `protobuf:"bytes,3,opt,name=icon,proto3" json:"icon,omitempty"`
DownloadUrl string `protobuf:"bytes,4,opt,name=downloadUrl,proto3" json:"downloadUrl,omitempty"`
Version string `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
Desc string `protobuf:"bytes,6,opt,name=desc,proto3" json:"desc,omitempty"`
// pub accts = 7; // pub accts = 7;
Type int32 `protobuf:"varint,8,opt,name=type,proto3" json:"type,omitempty"` Type int32 `protobuf:"varint,8,opt"`
BaseLibMiniVersion string `protobuf:"bytes,9,opt,name=baseLibMiniVersion,proto3" json:"baseLibMiniVersion,omitempty"` BaseLibMiniVersion string `protobuf:"bytes,9,opt"`
SubPkgs []*AppSubPkgInfo `protobuf:"bytes,10,rep,name=subPkgs,proto3" json:"subPkgs,omitempty"` SubPkgs []*AppSubPkgInfo `protobuf:"bytes,10,rep"`
// first = 11; // first = 11;
Domain *DomainConfig `protobuf:"bytes,12,opt,name=domain,proto3" json:"domain,omitempty"` Domain *DomainConfig `protobuf:"bytes,12,opt"`
}
func (x *ApiAppInfo) Reset() {
*x = ApiAppInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_app_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ApiAppInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ApiAppInfo) ProtoMessage() {}
func (x *ApiAppInfo) ProtoReflect() protoreflect.Message {
mi := &file_app_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ApiAppInfo.ProtoReflect.Descriptor instead.
func (*ApiAppInfo) Descriptor() ([]byte, []int) {
return file_app_proto_rawDescGZIP(), []int{2}
} }
func (x *ApiAppInfo) GetAppId() string { func (x *ApiAppInfo) GetAppId() string {
@ -246,46 +120,10 @@ func (x *ApiAppInfo) GetDomain() *DomainConfig {
} }
type AppSubPkgInfo struct { type AppSubPkgInfo struct {
state protoimpl.MessageState SubPkgName string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache DownloadUrl string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Independent int32 `protobuf:"varint,3,opt"`
FileSize int32 `protobuf:"varint,4,opt"`
SubPkgName string `protobuf:"bytes,1,opt,name=subPkgName,proto3" json:"subPkgName,omitempty"`
DownloadUrl string `protobuf:"bytes,2,opt,name=downloadUrl,proto3" json:"downloadUrl,omitempty"`
Independent int32 `protobuf:"varint,3,opt,name=independent,proto3" json:"independent,omitempty"`
FileSize int32 `protobuf:"varint,4,opt,name=fileSize,proto3" json:"fileSize,omitempty"`
}
func (x *AppSubPkgInfo) Reset() {
*x = AppSubPkgInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_app_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *AppSubPkgInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*AppSubPkgInfo) ProtoMessage() {}
func (x *AppSubPkgInfo) ProtoReflect() protoreflect.Message {
mi := &file_app_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use AppSubPkgInfo.ProtoReflect.Descriptor instead.
func (*AppSubPkgInfo) Descriptor() ([]byte, []int) {
return file_app_proto_rawDescGZIP(), []int{3}
} }
func (x *AppSubPkgInfo) GetSubPkgName() string { func (x *AppSubPkgInfo) GetSubPkgName() string {
@ -317,48 +155,12 @@ func (x *AppSubPkgInfo) GetFileSize() int32 {
} }
type DomainConfig struct { type DomainConfig struct {
state protoimpl.MessageState RequestDomain []string `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache SocketDomain []string `protobuf:"bytes,2,rep"`
unknownFields protoimpl.UnknownFields UploadFileDomain []string `protobuf:"bytes,3,rep"`
DownloadFileDomain []string `protobuf:"bytes,4,rep"`
RequestDomain []string `protobuf:"bytes,1,rep,name=requestDomain,proto3" json:"requestDomain,omitempty"` BusinessDomain []string `protobuf:"bytes,5,rep"`
SocketDomain []string `protobuf:"bytes,2,rep,name=socketDomain,proto3" json:"socketDomain,omitempty"` UdpIpList []string `protobuf:"bytes,6,rep"`
UploadFileDomain []string `protobuf:"bytes,3,rep,name=uploadFileDomain,proto3" json:"uploadFileDomain,omitempty"`
DownloadFileDomain []string `protobuf:"bytes,4,rep,name=downloadFileDomain,proto3" json:"downloadFileDomain,omitempty"`
BusinessDomain []string `protobuf:"bytes,5,rep,name=businessDomain,proto3" json:"businessDomain,omitempty"`
UdpIpList []string `protobuf:"bytes,6,rep,name=udpIpList,proto3" json:"udpIpList,omitempty"`
}
func (x *DomainConfig) Reset() {
*x = DomainConfig{}
if protoimpl.UnsafeEnabled {
mi := &file_app_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DomainConfig) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DomainConfig) ProtoMessage() {}
func (x *DomainConfig) ProtoReflect() protoreflect.Message {
mi := &file_app_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use DomainConfig.ProtoReflect.Descriptor instead.
func (*DomainConfig) Descriptor() ([]byte, []int) {
return file_app_proto_rawDescGZIP(), []int{4}
} }
func (x *DomainConfig) GetRequestDomain() []string { func (x *DomainConfig) GetRequestDomain() []string {
@ -402,182 +204,3 @@ func (x *DomainConfig) GetUdpIpList() []string {
} }
return nil return nil
} }
var File_app_proto protoreflect.FileDescriptor
var file_app_proto_rawDesc = []byte{
0x0a, 0x09, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x53, 0x0a, 0x11, 0x47,
0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x71,
0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x6e, 0x65, 0x65, 0x64, 0x56, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
0x0f, 0x6e, 0x65, 0x65, 0x64, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
0x22, 0x3a, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x79,
0x49, 0x64, 0x52, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x41, 0x70, 0x69, 0x41, 0x70, 0x70, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x07, 0x61, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0xb5, 0x02, 0x0a,
0x0a, 0x41, 0x70, 0x69, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x61,
0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49,
0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69,
0x63, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12,
0x20, 0x0a, 0x0b, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x04,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x72,
0x6c, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x64,
0x65, 0x73, 0x63, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x12,
0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x74,
0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x62, 0x61, 0x73, 0x65, 0x4c, 0x69, 0x62, 0x4d, 0x69,
0x6e, 0x69, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
0x12, 0x62, 0x61, 0x73, 0x65, 0x4c, 0x69, 0x62, 0x4d, 0x69, 0x6e, 0x69, 0x56, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x12, 0x28, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x50, 0x6b, 0x67, 0x73, 0x18, 0x0a,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x41, 0x70, 0x70, 0x53, 0x75, 0x62, 0x50, 0x6b, 0x67,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x73, 0x75, 0x62, 0x50, 0x6b, 0x67, 0x73, 0x12, 0x25, 0x0a,
0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x06, 0x64, 0x6f,
0x6d, 0x61, 0x69, 0x6e, 0x22, 0x8f, 0x01, 0x0a, 0x0d, 0x41, 0x70, 0x70, 0x53, 0x75, 0x62, 0x50,
0x6b, 0x67, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x50, 0x6b, 0x67,
0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x50,
0x6b, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
0x61, 0x64, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x6f, 0x77,
0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6e, 0x64, 0x65,
0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x69,
0x6e, 0x64, 0x65, 0x70, 0x65, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69,
0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x69,
0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0xfa, 0x01, 0x0a, 0x0c, 0x44, 0x6f, 0x6d, 0x61, 0x69,
0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d,
0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x22, 0x0a,
0x0c, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x02, 0x20,
0x03, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x44, 0x6f, 0x6d, 0x61, 0x69,
0x6e, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x44,
0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x75, 0x70, 0x6c,
0x6f, 0x61, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x2e, 0x0a,
0x12, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x6f, 0x6d,
0x61, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x12, 0x64, 0x6f, 0x77, 0x6e, 0x6c,
0x6f, 0x61, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x26, 0x0a,
0x0e, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18,
0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x44,
0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x64, 0x70, 0x49, 0x70, 0x4c, 0x69,
0x73, 0x74, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x64, 0x70, 0x49, 0x70, 0x4c,
0x69, 0x73, 0x74, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x71, 0x77, 0x65, 0x62, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_app_proto_rawDescOnce sync.Once
file_app_proto_rawDescData = file_app_proto_rawDesc
)
func file_app_proto_rawDescGZIP() []byte {
file_app_proto_rawDescOnce.Do(func() {
file_app_proto_rawDescData = protoimpl.X.CompressGZIP(file_app_proto_rawDescData)
})
return file_app_proto_rawDescData
}
var file_app_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
var file_app_proto_goTypes = []interface{}{
(*GetAppInfoByIdReq)(nil), // 0: GetAppInfoByIdReq
(*GetAppInfoByIdRsp)(nil), // 1: GetAppInfoByIdRsp
(*ApiAppInfo)(nil), // 2: ApiAppInfo
(*AppSubPkgInfo)(nil), // 3: AppSubPkgInfo
(*DomainConfig)(nil), // 4: DomainConfig
}
var file_app_proto_depIdxs = []int32{
2, // 0: GetAppInfoByIdRsp.appInfo:type_name -> ApiAppInfo
3, // 1: ApiAppInfo.subPkgs:type_name -> AppSubPkgInfo
4, // 2: ApiAppInfo.domain:type_name -> DomainConfig
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
3, // [3:3] is the sub-list for extension extendee
0, // [0:3] is the sub-list for field type_name
}
func init() { file_app_proto_init() }
func file_app_proto_init() {
if File_app_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_app_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetAppInfoByIdReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_app_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GetAppInfoByIdRsp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_app_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ApiAppInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_app_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppSubPkgInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_app_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DomainConfig); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_app_proto_rawDesc,
NumEnums: 0,
NumMessages: 5,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_app_proto_goTypes,
DependencyIndexes: file_app_proto_depIdxs,
MessageInfos: file_app_proto_msgTypes,
}.Build()
File_app_proto = out.File
file_app_proto_rawDesc = nil
file_app_proto_goTypes = nil
file_app_proto_depIdxs = nil
}

View File

@ -1,87 +1,39 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: protocol.proto // source: protocol.proto
package qweb package qweb
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type QWebReq struct { type QWebReq struct {
state protoimpl.MessageState Seq *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Qua *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields DeviceInfo *string `protobuf:"bytes,3,opt"`
BusiBuff []byte `protobuf:"bytes,4,opt"`
Seq int64 `protobuf:"varint,1,opt,name=seq,proto3" json:"seq,omitempty"` TraceId *string `protobuf:"bytes,5,opt"`
Qua string `protobuf:"bytes,2,opt,name=qua,proto3" json:"qua,omitempty"` Module *string `protobuf:"bytes,6,opt"`
DeviceInfo string `protobuf:"bytes,3,opt,name=deviceInfo,proto3" json:"deviceInfo,omitempty"` Cmdname *string `protobuf:"bytes,7,opt"`
BusiBuff []byte `protobuf:"bytes,4,opt,name=busiBuff,proto3" json:"busiBuff,omitempty"` LoginSig *StAuthInfo `protobuf:"bytes,8,opt"`
TraceId string `protobuf:"bytes,5,opt,name=traceId,proto3" json:"traceId,omitempty"` Crypto *StEncryption `protobuf:"bytes,9,opt"`
} Extinfo []*COMMEntry `protobuf:"bytes,10,rep"`
ContentType *uint32 `protobuf:"varint,11,opt"`
func (x *QWebReq) Reset() {
*x = QWebReq{}
if protoimpl.UnsafeEnabled {
mi := &file_protocol_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QWebReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QWebReq) ProtoMessage() {}
func (x *QWebReq) ProtoReflect() protoreflect.Message {
mi := &file_protocol_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QWebReq.ProtoReflect.Descriptor instead.
func (*QWebReq) Descriptor() ([]byte, []int) {
return file_protocol_proto_rawDescGZIP(), []int{0}
} }
func (x *QWebReq) GetSeq() int64 { func (x *QWebReq) GetSeq() int64 {
if x != nil { if x != nil && x.Seq != nil {
return x.Seq return *x.Seq
} }
return 0 return 0
} }
func (x *QWebReq) GetQua() string { func (x *QWebReq) GetQua() string {
if x != nil { if x != nil && x.Qua != nil {
return x.Qua return *x.Qua
} }
return "" return ""
} }
func (x *QWebReq) GetDeviceInfo() string { func (x *QWebReq) GetDeviceInfo() string {
if x != nil { if x != nil && x.DeviceInfo != nil {
return x.DeviceInfo return *x.DeviceInfo
} }
return "" return ""
} }
@ -94,72 +46,79 @@ func (x *QWebReq) GetBusiBuff() []byte {
} }
func (x *QWebReq) GetTraceId() string { func (x *QWebReq) GetTraceId() string {
if x != nil { if x != nil && x.TraceId != nil {
return x.TraceId return *x.TraceId
} }
return "" return ""
} }
func (x *QWebReq) GetModule() string {
if x != nil && x.Module != nil {
return *x.Module
}
return ""
}
func (x *QWebReq) GetCmdname() string {
if x != nil && x.Cmdname != nil {
return *x.Cmdname
}
return ""
}
func (x *QWebReq) GetLoginSig() *StAuthInfo {
if x != nil {
return x.LoginSig
}
return nil
}
func (x *QWebReq) GetCrypto() *StEncryption {
if x != nil {
return x.Crypto
}
return nil
}
func (x *QWebReq) GetExtinfo() []*COMMEntry {
if x != nil {
return x.Extinfo
}
return nil
}
func (x *QWebReq) GetContentType() uint32 {
if x != nil && x.ContentType != nil {
return *x.ContentType
}
return 0
}
type QWebRsp struct { type QWebRsp struct {
state protoimpl.MessageState Seq *int64 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache RetCode *int64 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields ErrMsg *string `protobuf:"bytes,3,opt"`
BusiBuff []byte `protobuf:"bytes,4,opt"`
Seq int64 `protobuf:"varint,1,opt,name=seq,proto3" json:"seq,omitempty"` Traceid *string `protobuf:"bytes,5,opt"`
RetCode int64 `protobuf:"varint,2,opt,name=retCode,proto3" json:"retCode,omitempty"`
ErrMsg string `protobuf:"bytes,3,opt,name=errMsg,proto3" json:"errMsg,omitempty"`
BusiBuff []byte `protobuf:"bytes,4,opt,name=busiBuff,proto3" json:"busiBuff,omitempty"`
}
func (x *QWebRsp) Reset() {
*x = QWebRsp{}
if protoimpl.UnsafeEnabled {
mi := &file_protocol_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *QWebRsp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*QWebRsp) ProtoMessage() {}
func (x *QWebRsp) ProtoReflect() protoreflect.Message {
mi := &file_protocol_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use QWebRsp.ProtoReflect.Descriptor instead.
func (*QWebRsp) Descriptor() ([]byte, []int) {
return file_protocol_proto_rawDescGZIP(), []int{1}
} }
func (x *QWebRsp) GetSeq() int64 { func (x *QWebRsp) GetSeq() int64 {
if x != nil { if x != nil && x.Seq != nil {
return x.Seq return *x.Seq
} }
return 0 return 0
} }
func (x *QWebRsp) GetRetCode() int64 { func (x *QWebRsp) GetRetCode() int64 {
if x != nil { if x != nil && x.RetCode != nil {
return x.RetCode return *x.RetCode
} }
return 0 return 0
} }
func (x *QWebRsp) GetErrMsg() string { func (x *QWebRsp) GetErrMsg() string {
if x != nil { if x != nil && x.ErrMsg != nil {
return x.ErrMsg return *x.ErrMsg
} }
return "" return ""
} }
@ -171,101 +130,114 @@ func (x *QWebRsp) GetBusiBuff() []byte {
return nil return nil
} }
var File_protocol_proto protoreflect.FileDescriptor func (x *QWebRsp) GetTraceid() string {
if x != nil && x.Traceid != nil {
var file_protocol_proto_rawDesc = []byte{ return *x.Traceid
0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, }
0x22, 0x83, 0x01, 0x0a, 0x07, 0x51, 0x57, 0x65, 0x62, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, return ""
0x73, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x71, 0x12, 0x10, }
0x0a, 0x03, 0x71, 0x75, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x71, 0x75, 0x61,
0x12, 0x1e, 0x0a, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x03, type StAuthInfo struct {
0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, Uin *string `protobuf:"bytes,1,opt"`
0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x42, 0x75, 0x66, 0x66, 0x18, 0x04, 0x20, 0x01, Sig []byte `protobuf:"bytes,2,opt"`
0x28, 0x0c, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x42, 0x75, 0x66, 0x66, 0x12, 0x18, 0x0a, 0x07, Platform *string `protobuf:"bytes,3,opt"`
0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x74, Type *uint32 `protobuf:"varint,4,opt"`
0x72, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0x69, 0x0a, 0x07, 0x51, 0x57, 0x65, 0x62, 0x52, 0x73, Appid *string `protobuf:"bytes,5,opt"`
0x70, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, Openid *string `protobuf:"bytes,6,opt"`
0x73, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x02, Sessionkey []byte `protobuf:"bytes,7,opt"`
0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x72, 0x65, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, Extinfo []*COMMEntry `protobuf:"bytes,8,rep"`
0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, }
0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x42, 0x75, 0x66,
0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x42, 0x75, 0x66, func (x *StAuthInfo) GetUin() string {
0x66, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x71, 0x77, 0x65, 0x62, 0x62, 0x06, 0x70, 0x72, if x != nil && x.Uin != nil {
0x6f, 0x74, 0x6f, 0x33, return *x.Uin
} }
return ""
var ( }
file_protocol_proto_rawDescOnce sync.Once
file_protocol_proto_rawDescData = file_protocol_proto_rawDesc func (x *StAuthInfo) GetSig() []byte {
) if x != nil {
return x.Sig
func file_protocol_proto_rawDescGZIP() []byte {
file_protocol_proto_rawDescOnce.Do(func() {
file_protocol_proto_rawDescData = protoimpl.X.CompressGZIP(file_protocol_proto_rawDescData)
})
return file_protocol_proto_rawDescData
}
var file_protocol_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_protocol_proto_goTypes = []interface{}{
(*QWebReq)(nil), // 0: QWebReq
(*QWebRsp)(nil), // 1: QWebRsp
}
var file_protocol_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
0, // [0:0] is the sub-list for extension extendee
0, // [0:0] is the sub-list for field type_name
}
func init() { file_protocol_proto_init() }
func file_protocol_proto_init() {
if File_protocol_proto != nil {
return
} }
if !protoimpl.UnsafeEnabled {
file_protocol_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QWebReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil return nil
} }
}
file_protocol_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { func (x *StAuthInfo) GetPlatform() string {
switch v := v.(*QWebRsp); i { if x != nil && x.Platform != nil {
case 0: return *x.Platform
return &v.state }
case 1: return ""
return &v.sizeCache }
case 2:
return &v.unknownFields func (x *StAuthInfo) GetType() uint32 {
default: if x != nil && x.Type != nil {
return nil return *x.Type
} }
} return 0
} }
type x struct{}
out := protoimpl.TypeBuilder{ func (x *StAuthInfo) GetAppid() string {
File: protoimpl.DescBuilder{ if x != nil && x.Appid != nil {
GoPackagePath: reflect.TypeOf(x{}).PkgPath(), return *x.Appid
RawDescriptor: file_protocol_proto_rawDesc, }
NumEnums: 0, return ""
NumMessages: 2, }
NumExtensions: 0,
NumServices: 0, func (x *StAuthInfo) GetOpenid() string {
}, if x != nil && x.Openid != nil {
GoTypes: file_protocol_proto_goTypes, return *x.Openid
DependencyIndexes: file_protocol_proto_depIdxs, }
MessageInfos: file_protocol_proto_msgTypes, return ""
}.Build() }
File_protocol_proto = out.File
file_protocol_proto_rawDesc = nil func (x *StAuthInfo) GetSessionkey() []byte {
file_protocol_proto_goTypes = nil if x != nil {
file_protocol_proto_depIdxs = nil return x.Sessionkey
}
return nil
}
func (x *StAuthInfo) GetExtinfo() []*COMMEntry {
if x != nil {
return x.Extinfo
}
return nil
}
type StEncryption struct {
Method *uint32 `protobuf:"varint,1,opt"`
Iv *string `protobuf:"bytes,2,opt"`
}
func (x *StEncryption) GetMethod() uint32 {
if x != nil && x.Method != nil {
return *x.Method
}
return 0
}
func (x *StEncryption) GetIv() string {
if x != nil && x.Iv != nil {
return *x.Iv
}
return ""
}
type COMMEntry struct {
Key *string `protobuf:"bytes,1,opt"`
Value *string `protobuf:"bytes,2,opt"`
}
func (x *COMMEntry) GetKey() string {
if x != nil && x.Key != nil {
return *x.Key
}
return ""
}
func (x *COMMEntry) GetValue() string {
if x != nil && x.Value != nil {
return *x.Value
}
return ""
} }

View File

@ -1,18 +1,46 @@
syntax = "proto3"; syntax = "proto2";
option go_package = "./;qweb"; option go_package = "./;qweb";
message QWebReq { message QWebReq {
int64 seq = 1; optional int64 seq = 1;
string qua = 2; optional string qua = 2;
string deviceInfo = 3; optional string deviceInfo = 3;
bytes busiBuff = 4; optional bytes busiBuff = 4;
string traceId = 5; optional string traceId = 5;
optional string Module = 6;
optional string Cmdname = 7;
optional StAuthInfo loginSig = 8;
optional StEncryption Crypto = 9;
repeated COMMEntry Extinfo = 10;
optional uint32 contentType = 11;
} }
message QWebRsp { message QWebRsp {
int64 seq = 1; optional int64 seq = 1;
int64 retCode = 2; optional int64 retCode = 2;
string errMsg = 3; optional string errMsg = 3;
bytes busiBuff = 4; optional bytes busiBuff = 4;
optional string traceid = 5;
}
message StAuthInfo {
optional string uin = 1;
optional bytes sig = 2;
optional string platform = 3;
optional uint32 type = 4;
optional string appid = 5;
optional string openid = 6;
optional bytes sessionkey = 7;
repeated COMMEntry Extinfo = 8;
}
message StEncryption {
optional uint32 method = 1;
optional string iv = 2;
}
message COMMEntry {
optional string key = 1;
optional string value = 2;
} }

View File

@ -1,73 +1,19 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.26.0
// protoc v3.17.1
// source: tts.proto // source: tts.proto
package richmedia package richmedia
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type TtsRspBody struct { type TtsRspBody struct {
state protoimpl.MessageState RetCode uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache SessionId string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields OutSeq uint32 `protobuf:"varint,3,opt"`
VoiceData []*TtsVoiceItem `protobuf:"bytes,4,rep"`
RetCode uint32 `protobuf:"varint,1,opt,name=ret_code,json=retCode,proto3" json:"ret_code,omitempty"` Islast bool `protobuf:"varint,5,opt"`
SessionId string `protobuf:"bytes,2,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"` PcmSampleRate uint32 `protobuf:"varint,6,opt"`
OutSeq uint32 `protobuf:"varint,3,opt,name=out_seq,json=outSeq,proto3" json:"out_seq,omitempty"` OpusSampleRate uint32 `protobuf:"varint,7,opt"`
VoiceData []*TtsVoiceItem `protobuf:"bytes,4,rep,name=voice_data,json=voiceData,proto3" json:"voice_data,omitempty"` OpusChannels uint32 `protobuf:"varint,8,opt"`
Islast bool `protobuf:"varint,5,opt,name=islast,proto3" json:"islast,omitempty"` OpusBitRate uint32 `protobuf:"varint,9,opt"`
PcmSampleRate uint32 `protobuf:"varint,6,opt,name=pcm_sample_rate,json=pcmSampleRate,proto3" json:"pcm_sample_rate,omitempty"` OpusFrameSize uint32 `protobuf:"varint,10,opt"`
OpusSampleRate uint32 `protobuf:"varint,7,opt,name=opus_sample_rate,json=opusSampleRate,proto3" json:"opus_sample_rate,omitempty"`
OpusChannels uint32 `protobuf:"varint,8,opt,name=opus_channels,json=opusChannels,proto3" json:"opus_channels,omitempty"`
OpusBitRate uint32 `protobuf:"varint,9,opt,name=opus_bit_rate,json=opusBitRate,proto3" json:"opus_bit_rate,omitempty"`
OpusFrameSize uint32 `protobuf:"varint,10,opt,name=opus_frame_size,json=opusFrameSize,proto3" json:"opus_frame_size,omitempty"`
}
func (x *TtsRspBody) Reset() {
*x = TtsRspBody{}
if protoimpl.UnsafeEnabled {
mi := &file_tts_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TtsRspBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TtsRspBody) ProtoMessage() {}
func (x *TtsRspBody) ProtoReflect() protoreflect.Message {
mi := &file_tts_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TtsRspBody.ProtoReflect.Descriptor instead.
func (*TtsRspBody) Descriptor() ([]byte, []int) {
return file_tts_proto_rawDescGZIP(), []int{0}
} }
func (x *TtsRspBody) GetRetCode() uint32 { func (x *TtsRspBody) GetRetCode() uint32 {
@ -141,44 +87,8 @@ func (x *TtsRspBody) GetOpusFrameSize() uint32 {
} }
type TtsVoiceItem struct { type TtsVoiceItem struct {
state protoimpl.MessageState Voice []byte `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Seq uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
Voice []byte `protobuf:"bytes,1,opt,name=voice,proto3" json:"voice,omitempty"`
Seq uint32 `protobuf:"varint,2,opt,name=seq,proto3" json:"seq,omitempty"`
}
func (x *TtsVoiceItem) Reset() {
*x = TtsVoiceItem{}
if protoimpl.UnsafeEnabled {
mi := &file_tts_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TtsVoiceItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TtsVoiceItem) ProtoMessage() {}
func (x *TtsVoiceItem) ProtoReflect() protoreflect.Message {
mi := &file_tts_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TtsVoiceItem.ProtoReflect.Descriptor instead.
func (*TtsVoiceItem) Descriptor() ([]byte, []int) {
return file_tts_proto_rawDescGZIP(), []int{1}
} }
func (x *TtsVoiceItem) GetVoice() []byte { func (x *TtsVoiceItem) GetVoice() []byte {
@ -194,114 +104,3 @@ func (x *TtsVoiceItem) GetSeq() uint32 {
} }
return 0 return 0
} }
var File_tts_proto protoreflect.FileDescriptor
var file_tts_proto_rawDesc = []byte{
0x0a, 0x09, 0x74, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe8, 0x02, 0x0a, 0x0a,
0x54, 0x74, 0x73, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x65,
0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x72, 0x65,
0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x65, 0x73, 0x73, 0x69,
0x6f, 0x6e, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x65, 0x71, 0x18,
0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x6f, 0x75, 0x74, 0x53, 0x65, 0x71, 0x12, 0x2c, 0x0a,
0x0a, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x0d, 0x2e, 0x54, 0x74, 0x73, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x49, 0x74, 0x65, 0x6d,
0x52, 0x09, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x69,
0x73, 0x6c, 0x61, 0x73, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x6c,
0x61, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x63, 0x6d, 0x5f, 0x73, 0x61, 0x6d, 0x70, 0x6c,
0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x70, 0x63,
0x6d, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x52, 0x61, 0x74, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x6f,
0x70, 0x75, 0x73, 0x5f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18,
0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x6f, 0x70, 0x75, 0x73, 0x53, 0x61, 0x6d, 0x70, 0x6c,
0x65, 0x52, 0x61, 0x74, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70, 0x75, 0x73, 0x5f, 0x63, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x6f, 0x70,
0x75, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x6f, 0x70,
0x75, 0x73, 0x5f, 0x62, 0x69, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
0x0d, 0x52, 0x0b, 0x6f, 0x70, 0x75, 0x73, 0x42, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x26,
0x0a, 0x0f, 0x6f, 0x70, 0x75, 0x73, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x5f, 0x73, 0x69, 0x7a,
0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x6f, 0x70, 0x75, 0x73, 0x46, 0x72, 0x61,
0x6d, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x36, 0x0a, 0x0c, 0x54, 0x74, 0x73, 0x56, 0x6f, 0x69,
0x63, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03,
0x73, 0x65, 0x71, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x73, 0x65, 0x71, 0x42, 0x0e,
0x5a, 0x0c, 0x2e, 0x2f, 0x3b, 0x72, 0x69, 0x63, 0x68, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_tts_proto_rawDescOnce sync.Once
file_tts_proto_rawDescData = file_tts_proto_rawDesc
)
func file_tts_proto_rawDescGZIP() []byte {
file_tts_proto_rawDescOnce.Do(func() {
file_tts_proto_rawDescData = protoimpl.X.CompressGZIP(file_tts_proto_rawDescData)
})
return file_tts_proto_rawDescData
}
var file_tts_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
var file_tts_proto_goTypes = []interface{}{
(*TtsRspBody)(nil), // 0: TtsRspBody
(*TtsVoiceItem)(nil), // 1: TtsVoiceItem
}
var file_tts_proto_depIdxs = []int32{
1, // 0: TtsRspBody.voice_data:type_name -> TtsVoiceItem
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
1, // [1:1] is the sub-list for extension extendee
0, // [0:1] is the sub-list for field type_name
}
func init() { file_tts_proto_init() }
func file_tts_proto_init() {
if File_tts_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_tts_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TtsRspBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_tts_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TtsVoiceItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_tts_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_tts_proto_goTypes,
DependencyIndexes: file_tts_proto_depIdxs,
MessageInfos: file_tts_proto_msgTypes,
}.Build()
File_tts_proto = out.File
file_tts_proto_rawDesc = nil
file_tts_proto_goTypes = nil
file_tts_proto_depIdxs = nil
}

File diff suppressed because it is too large Load Diff

View File

@ -1,68 +1,14 @@
// Code generated by protoc-gen-go. DO NOT EDIT. // Code generated by protoc-gen-golite. DO NOT EDIT.
// versions:
// protoc-gen-go v1.27.1
// protoc v3.14.0
// source: WebSsoBody.proto // source: WebSsoBody.proto
package web package web
import (
reflect "reflect"
sync "sync"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type STServiceMonitItem struct { type STServiceMonitItem struct {
state protoimpl.MessageState Cmd *string `protobuf:"bytes,1,opt"`
sizeCache protoimpl.SizeCache Url *string `protobuf:"bytes,2,opt"`
unknownFields protoimpl.UnknownFields Errcode *int32 `protobuf:"varint,3,opt"`
Cost *uint32 `protobuf:"varint,4,opt"`
Cmd *string `protobuf:"bytes,1,opt,name=cmd" json:"cmd,omitempty"` Src *uint32 `protobuf:"varint,5,opt"`
Url *string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
Errcode *int32 `protobuf:"varint,3,opt,name=errcode" json:"errcode,omitempty"`
Cost *uint32 `protobuf:"varint,4,opt,name=cost" json:"cost,omitempty"`
Src *uint32 `protobuf:"varint,5,opt,name=src" json:"src,omitempty"`
}
func (x *STServiceMonitItem) Reset() {
*x = STServiceMonitItem{}
if protoimpl.UnsafeEnabled {
mi := &file_WebSsoBody_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *STServiceMonitItem) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*STServiceMonitItem) ProtoMessage() {}
func (x *STServiceMonitItem) ProtoReflect() protoreflect.Message {
mi := &file_WebSsoBody_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use STServiceMonitItem.ProtoReflect.Descriptor instead.
func (*STServiceMonitItem) Descriptor() ([]byte, []int) {
return file_WebSsoBody_proto_rawDescGZIP(), []int{0}
} }
func (x *STServiceMonitItem) GetCmd() string { func (x *STServiceMonitItem) GetCmd() string {
@ -101,43 +47,7 @@ func (x *STServiceMonitItem) GetSrc() uint32 {
} }
type STServiceMonitReq struct { type STServiceMonitReq struct {
state protoimpl.MessageState List []*STServiceMonitItem `protobuf:"bytes,1,rep"`
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
List []*STServiceMonitItem `protobuf:"bytes,1,rep,name=list" json:"list,omitempty"`
}
func (x *STServiceMonitReq) Reset() {
*x = STServiceMonitReq{}
if protoimpl.UnsafeEnabled {
mi := &file_WebSsoBody_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *STServiceMonitReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*STServiceMonitReq) ProtoMessage() {}
func (x *STServiceMonitReq) ProtoReflect() protoreflect.Message {
mi := &file_WebSsoBody_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use STServiceMonitReq.ProtoReflect.Descriptor instead.
func (*STServiceMonitReq) Descriptor() ([]byte, []int) {
return file_WebSsoBody_proto_rawDescGZIP(), []int{1}
} }
func (x *STServiceMonitReq) GetList() []*STServiceMonitItem { func (x *STServiceMonitReq) GetList() []*STServiceMonitItem {
@ -148,44 +58,8 @@ func (x *STServiceMonitReq) GetList() []*STServiceMonitItem {
} }
type WebSsoControlData struct { type WebSsoControlData struct {
state protoimpl.MessageState Frequency *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache PackageSize *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields
Frequency *uint32 `protobuf:"varint,1,opt,name=frequency" json:"frequency,omitempty"`
PackageSize *uint32 `protobuf:"varint,2,opt,name=packageSize" json:"packageSize,omitempty"`
}
func (x *WebSsoControlData) Reset() {
*x = WebSsoControlData{}
if protoimpl.UnsafeEnabled {
mi := &file_WebSsoBody_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *WebSsoControlData) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*WebSsoControlData) ProtoMessage() {}
func (x *WebSsoControlData) ProtoReflect() protoreflect.Message {
mi := &file_WebSsoBody_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use WebSsoControlData.ProtoReflect.Descriptor instead.
func (*WebSsoControlData) Descriptor() ([]byte, []int) {
return file_WebSsoBody_proto_rawDescGZIP(), []int{2}
} }
func (x *WebSsoControlData) GetFrequency() uint32 { func (x *WebSsoControlData) GetFrequency() uint32 {
@ -203,46 +77,10 @@ func (x *WebSsoControlData) GetPackageSize() uint32 {
} }
type WebSsoRequestBody struct { type WebSsoRequestBody struct {
state protoimpl.MessageState Version *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Type *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Data *string `protobuf:"bytes,3,opt"`
WebData *string `protobuf:"bytes,4,opt"`
Version *uint32 `protobuf:"varint,1,opt,name=version" json:"version,omitempty"`
Type *uint32 `protobuf:"varint,2,opt,name=type" json:"type,omitempty"`
Data *string `protobuf:"bytes,3,opt,name=data" json:"data,omitempty"`
WebData *string `protobuf:"bytes,4,opt,name=webData" json:"webData,omitempty"`
}
func (x *WebSsoRequestBody) Reset() {
*x = WebSsoRequestBody{}
if protoimpl.UnsafeEnabled {
mi := &file_WebSsoBody_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *WebSsoRequestBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*WebSsoRequestBody) ProtoMessage() {}
func (x *WebSsoRequestBody) ProtoReflect() protoreflect.Message {
mi := &file_WebSsoBody_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use WebSsoRequestBody.ProtoReflect.Descriptor instead.
func (*WebSsoRequestBody) Descriptor() ([]byte, []int) {
return file_WebSsoBody_proto_rawDescGZIP(), []int{3}
} }
func (x *WebSsoRequestBody) GetVersion() uint32 { func (x *WebSsoRequestBody) GetVersion() uint32 {
@ -274,47 +112,11 @@ func (x *WebSsoRequestBody) GetWebData() string {
} }
type WebSsoResponseBody struct { type WebSsoResponseBody struct {
state protoimpl.MessageState Version *uint32 `protobuf:"varint,1,opt"`
sizeCache protoimpl.SizeCache Type *uint32 `protobuf:"varint,2,opt"`
unknownFields protoimpl.UnknownFields Ret *uint32 `protobuf:"varint,3,opt"`
Data *string `protobuf:"bytes,4,opt"`
Version *uint32 `protobuf:"varint,1,opt,name=version" json:"version,omitempty"` ControlData *WebSsoControlData `protobuf:"bytes,5,opt"`
Type *uint32 `protobuf:"varint,2,opt,name=type" json:"type,omitempty"`
Ret *uint32 `protobuf:"varint,3,opt,name=ret" json:"ret,omitempty"`
Data *string `protobuf:"bytes,4,opt,name=data" json:"data,omitempty"`
ControlData *WebSsoControlData `protobuf:"bytes,5,opt,name=controlData" json:"controlData,omitempty"`
}
func (x *WebSsoResponseBody) Reset() {
*x = WebSsoResponseBody{}
if protoimpl.UnsafeEnabled {
mi := &file_WebSsoBody_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *WebSsoResponseBody) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*WebSsoResponseBody) ProtoMessage() {}
func (x *WebSsoResponseBody) ProtoReflect() protoreflect.Message {
mi := &file_WebSsoBody_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use WebSsoResponseBody.ProtoReflect.Descriptor instead.
func (*WebSsoResponseBody) Descriptor() ([]byte, []int) {
return file_WebSsoBody_proto_rawDescGZIP(), []int{4}
} }
func (x *WebSsoResponseBody) GetVersion() uint32 { func (x *WebSsoResponseBody) GetVersion() uint32 {
@ -351,161 +153,3 @@ func (x *WebSsoResponseBody) GetControlData() *WebSsoControlData {
} }
return nil return nil
} }
var File_WebSsoBody_proto protoreflect.FileDescriptor
var file_WebSsoBody_proto_rawDesc = []byte{
0x0a, 0x10, 0x57, 0x65, 0x62, 0x53, 0x73, 0x6f, 0x42, 0x6f, 0x64, 0x79, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x22, 0x78, 0x0a, 0x12, 0x53, 0x54, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4d,
0x6f, 0x6e, 0x69, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6d, 0x64, 0x18,
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x6d, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72,
0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x18, 0x0a, 0x07,
0x65, 0x72, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x65,
0x72, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x73, 0x74, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x72,
0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x73, 0x72, 0x63, 0x22, 0x3c, 0x0a, 0x11,
0x53, 0x54, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x6e, 0x69, 0x74, 0x52, 0x65,
0x71, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x13, 0x2e, 0x53, 0x54, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4d, 0x6f, 0x6e, 0x69, 0x74,
0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x53, 0x0a, 0x11, 0x57, 0x65,
0x62, 0x53, 0x73, 0x6f, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x12,
0x1c, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x20, 0x0a,
0x0b, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22,
0x6f, 0x0a, 0x11, 0x57, 0x65, 0x62, 0x53, 0x73, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12,
0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x74, 0x79,
0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x44, 0x61, 0x74,
0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x77, 0x65, 0x62, 0x44, 0x61, 0x74, 0x61,
0x22, 0x9e, 0x01, 0x0a, 0x12, 0x57, 0x65, 0x62, 0x53, 0x73, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x42, 0x6f, 0x64, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
0x6e, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52,
0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0d, 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x34, 0x0a, 0x0b, 0x63,
0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x12, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x73, 0x6f, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c,
0x44, 0x61, 0x74, 0x61, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x44, 0x61, 0x74,
0x61, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x2f, 0x3b, 0x77, 0x65, 0x62,
}
var (
file_WebSsoBody_proto_rawDescOnce sync.Once
file_WebSsoBody_proto_rawDescData = file_WebSsoBody_proto_rawDesc
)
func file_WebSsoBody_proto_rawDescGZIP() []byte {
file_WebSsoBody_proto_rawDescOnce.Do(func() {
file_WebSsoBody_proto_rawDescData = protoimpl.X.CompressGZIP(file_WebSsoBody_proto_rawDescData)
})
return file_WebSsoBody_proto_rawDescData
}
var file_WebSsoBody_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
var file_WebSsoBody_proto_goTypes = []interface{}{
(*STServiceMonitItem)(nil), // 0: STServiceMonitItem
(*STServiceMonitReq)(nil), // 1: STServiceMonitReq
(*WebSsoControlData)(nil), // 2: WebSsoControlData
(*WebSsoRequestBody)(nil), // 3: WebSsoRequestBody
(*WebSsoResponseBody)(nil), // 4: WebSsoResponseBody
}
var file_WebSsoBody_proto_depIdxs = []int32{
0, // 0: STServiceMonitReq.list:type_name -> STServiceMonitItem
2, // 1: WebSsoResponseBody.controlData:type_name -> WebSsoControlData
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
2, // [2:2] is the sub-list for extension extendee
0, // [0:2] is the sub-list for field type_name
}
func init() { file_WebSsoBody_proto_init() }
func file_WebSsoBody_proto_init() {
if File_WebSsoBody_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_WebSsoBody_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*STServiceMonitItem); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_WebSsoBody_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*STServiceMonitReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_WebSsoBody_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebSsoControlData); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_WebSsoBody_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebSsoRequestBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_WebSsoBody_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebSsoResponseBody); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_WebSsoBody_proto_rawDesc,
NumEnums: 0,
NumMessages: 5,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_WebSsoBody_proto_goTypes,
DependencyIndexes: file_WebSsoBody_proto_depIdxs,
MessageInfos: file_WebSsoBody_proto_msgTypes,
}.Build()
File_WebSsoBody_proto = out.File
file_WebSsoBody_proto_rawDesc = nil
file_WebSsoBody_proto_goTypes = nil
file_WebSsoBody_proto_depIdxs = nil
}

17
go.mod
View File

@ -1,13 +1,22 @@
module github.com/Mrs4s/MiraiGo module github.com/Mrs4s/MiraiGo
go 1.16 go 1.17
require ( require (
github.com/RomiChan/protobuf v0.0.0-20211126015646-ee3d29b19e08
github.com/klauspost/compress v1.13.6 github.com/klauspost/compress v1.13.6
github.com/pkg/errors v0.9.1 github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.3.0 github.com/stretchr/testify v1.7.0
github.com/tidwall/gjson v1.11.0 github.com/tidwall/gjson v1.11.0
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
google.golang.org/protobuf v1.27.1 )
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
golang.org/x/sys v0.0.0-20210423082822-04245dca01da // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
) )

17
go.sum
View File

@ -1,7 +1,8 @@
github.com/RomiChan/protobuf v0.0.0-20211126015646-ee3d29b19e08 h1:VAR3nNyBAc+oPlLKihkLTP0GXf8bQi085y2pSrNzAF0=
github.com/RomiChan/protobuf v0.0.0-20211126015646-ee3d29b19e08/go.mod h1:lM1Te2wqdBLPSF7QLaskSn1fGW3Tw2l0iFGsTHTxqIg=
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc= github.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc=
github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
@ -10,16 +11,16 @@ github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/tidwall/gjson v1.11.0 h1:C16pk7tQNiH6VlCrtIXL1w8GaOsi1X3W8KDkE1BuYd4= github.com/tidwall/gjson v1.11.0 h1:C16pk7tQNiH6VlCrtIXL1w8GaOsi1X3W8KDkE1BuYd4=
github.com/tidwall/gjson v1.11.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/gjson v1.11.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA= github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA=
github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=
github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs= github.com/tidwall/pretty v1.2.0 h1:RWIZEg2iJ8/g6fDDYzMpobmaoGh5OLl4AXtGUGPcqCs=
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f h1:OfiFi4JbukWwe3lzw+xunroH1mnC1e2Gy5cxNJApiSY= golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9 h1:0qxwC5n+ttVOINCBeRHO0nq9X7uy8SDsPoi5OaCdIEI=
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211123203042-d83791d6bcd9/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
@ -28,8 +29,10 @@ golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7w
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ=
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

View File

@ -1,8 +1,8 @@
package proto package proto
import "google.golang.org/protobuf/proto" import "github.com/RomiChan/protobuf/proto"
type Message = proto.Message type Message = interface{}
func Marshal(m Message) ([]byte, error) { func Marshal(m Message) ([]byte, error) {
return proto.Marshal(m) return proto.Marshal(m)