|
@@ -1731,6 +1731,484 @@ func (x *GetStatusByCodeResp) GetData() *GetStatusByCodeResp_GetStatusByCode {
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+//用户权益
|
|
|
|
+type UserInfo struct {
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
+
|
|
|
|
+ Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"` //手机号
|
|
|
|
+ VipStatus int64 `protobuf:"varint,2,opt,name=vipStatus,proto3" json:"vipStatus,omitempty"` //超级订阅状态; >0有权限 <=0无权限
|
|
|
|
+ MemberStatus int64 `protobuf:"varint,3,opt,name=memberStatus,proto3" json:"memberStatus,omitempty"` //大会员状态; >0:有权限 <=0:无权限
|
|
|
|
+ EntnicheStatus int64 `protobuf:"varint,4,opt,name=entnicheStatus,proto3" json:"entnicheStatus,omitempty"` //商机管理权限状态; 1:有权限 -1:无权限
|
|
|
|
+ SubscribeType string `protobuf:"bytes,5,opt,name=subscribeType,proto3" json:"subscribeType,omitempty"` //订阅设置类型 f:免费订阅 v:超级订阅 m:大会员订阅 e:商机管理订阅
|
|
|
|
+ Data *Subscribe `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"`
|
|
|
|
+ ErrorMsg string `protobuf:"bytes,7,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
|
|
|
|
+ ErrorCode int64 `protobuf:"varint,8,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) Reset() {
|
|
|
|
+ *x = UserInfo{}
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[21]
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) String() string {
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (*UserInfo) ProtoMessage() {}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) ProtoReflect() protoreflect.Message {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[21]
|
|
|
|
+ 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 UserInfo.ProtoReflect.Descriptor instead.
|
|
|
|
+func (*UserInfo) Descriptor() ([]byte, []int) {
|
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{21}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetPhone() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Phone
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetVipStatus() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.VipStatus
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetMemberStatus() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.MemberStatus
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetEntnicheStatus() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.EntnicheStatus
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetSubscribeType() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.SubscribeType
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetData() *Subscribe {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Data
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetErrorMsg() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.ErrorMsg
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserInfo) GetErrorCode() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.ErrorCode
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//订阅设置
|
|
|
|
+type Subscribe struct {
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
+
|
|
|
|
+ StartTime int64 `protobuf:"varint,1,opt,name=startTime,proto3" json:"startTime,omitempty"` //开始时间
|
|
|
|
+ EndTime int64 `protobuf:"varint,2,opt,name=endTime,proto3" json:"endTime,omitempty"` //结束时间
|
|
|
|
+ Area map[string]*List `protobuf:"bytes,3,rep,name=area,proto3" json:"area,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` //地区
|
|
|
|
+ Buyerclass []string `protobuf:"bytes,4,rep,name=buyerclass,proto3" json:"buyerclass,omitempty"` //采购单位类型
|
|
|
|
+ Infotype []string `protobuf:"bytes,5,rep,name=infotype,proto3" json:"infotype,omitempty"` //信息类型
|
|
|
|
+ Items []*Items `protobuf:"bytes,6,rep,name=items,proto3" json:"items,omitempty"` //关键词
|
|
|
|
+ Matchway int64 `protobuf:"varint,7,opt,name=matchway,proto3" json:"matchway,omitempty"` //匹配方式 1标题 2正文
|
|
|
|
+ Projectmatch int64 `protobuf:"varint,8,opt,name=projectmatch,proto3" json:"projectmatch,omitempty"` //项目匹配
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) Reset() {
|
|
|
|
+ *x = Subscribe{}
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[22]
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) String() string {
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (*Subscribe) ProtoMessage() {}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) ProtoReflect() protoreflect.Message {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[22]
|
|
|
|
+ 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 Subscribe.ProtoReflect.Descriptor instead.
|
|
|
|
+func (*Subscribe) Descriptor() ([]byte, []int) {
|
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{22}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetStartTime() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.StartTime
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetEndTime() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.EndTime
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetArea() map[string]*List {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Area
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetBuyerclass() []string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Buyerclass
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetInfotype() []string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Infotype
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetItems() []*Items {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Items
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetMatchway() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Matchway
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Subscribe) GetProjectmatch() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Projectmatch
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+type List struct {
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
+
|
|
|
|
+ Value []string `protobuf:"bytes,1,rep,name=value,proto3" json:"value,omitempty"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *List) Reset() {
|
|
|
|
+ *x = List{}
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[23]
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *List) String() string {
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (*List) ProtoMessage() {}
|
|
|
|
+
|
|
|
|
+func (x *List) ProtoReflect() protoreflect.Message {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[23]
|
|
|
|
+ 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 List.ProtoReflect.Descriptor instead.
|
|
|
|
+func (*List) Descriptor() ([]byte, []int) {
|
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{23}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *List) GetValue() []string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Value
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//分类
|
|
|
|
+type Items struct {
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
+
|
|
|
|
+ SItem string `protobuf:"bytes,1,opt,name=s_item,json=sItem,proto3" json:"s_item,omitempty"` //分类名称
|
|
|
|
+ UpdateTime int64 `protobuf:"varint,2,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
|
|
|
|
+ AKey []*Keys `protobuf:"bytes,3,rep,name=a_key,json=aKey,proto3" json:"a_key,omitempty"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Items) Reset() {
|
|
|
|
+ *x = Items{}
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[24]
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Items) String() string {
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (*Items) ProtoMessage() {}
|
|
|
|
+
|
|
|
|
+func (x *Items) ProtoReflect() protoreflect.Message {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[24]
|
|
|
|
+ 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 Items.ProtoReflect.Descriptor instead.
|
|
|
|
+func (*Items) Descriptor() ([]byte, []int) {
|
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{24}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Items) GetSItem() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.SItem
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Items) GetUpdateTime() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.UpdateTime
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Items) GetAKey() []*Keys {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.AKey
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+//关键词
|
|
|
|
+type Keys struct {
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
+
|
|
|
|
+ Key []string `protobuf:"bytes,1,rep,name=key,proto3" json:"key,omitempty"`
|
|
|
|
+ Notkey []string `protobuf:"bytes,2,rep,name=notkey,proto3" json:"notkey,omitempty"`
|
|
|
|
+ UpdateTime int64 `protobuf:"varint,3,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
|
|
|
|
+ Matchway int64 `protobuf:"varint,4,opt,name=matchway,proto3" json:"matchway,omitempty"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Keys) Reset() {
|
|
|
|
+ *x = Keys{}
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[25]
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Keys) String() string {
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (*Keys) ProtoMessage() {}
|
|
|
|
+
|
|
|
|
+func (x *Keys) ProtoReflect() protoreflect.Message {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[25]
|
|
|
|
+ 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 Keys.ProtoReflect.Descriptor instead.
|
|
|
|
+func (*Keys) Descriptor() ([]byte, []int) {
|
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{25}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Keys) GetKey() []string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Key
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Keys) GetNotkey() []string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Notkey
|
|
|
|
+ }
|
|
|
|
+ return nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Keys) GetUpdateTime() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.UpdateTime
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Keys) GetMatchway() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Matchway
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+type UserReq struct {
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
+
|
|
|
|
+ AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
|
|
|
|
+ UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId,omitempty"`
|
|
|
|
+ BaseUserId int64 `protobuf:"varint,3,opt,name=baseUserId,proto3" json:"baseUserId,omitempty"`
|
|
|
|
+ Types string `protobuf:"bytes,4,opt,name=types,proto3" json:"types,omitempty"` //类型,不传按默认规则获取 m大会员 e商机管理 v超级订阅 f免费订阅
|
|
|
|
+ EntId int64 `protobuf:"varint,5,opt,name=entId,proto3" json:"entId,omitempty"`
|
|
|
|
+ EntUserId int64 `protobuf:"varint,6,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) Reset() {
|
|
|
|
+ *x = UserReq{}
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[26]
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) String() string {
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (*UserReq) ProtoMessage() {}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) ProtoReflect() protoreflect.Message {
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[26]
|
|
|
|
+ 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 UserReq.ProtoReflect.Descriptor instead.
|
|
|
|
+func (*UserReq) Descriptor() ([]byte, []int) {
|
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{26}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) GetAppId() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.AppId
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) GetUserId() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.UserId
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) GetBaseUserId() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.BaseUserId
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) GetTypes() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Types
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) GetEntId() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.EntId
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *UserReq) GetEntUserId() int64 {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.EntUserId
|
|
|
|
+ }
|
|
|
|
+ return 0
|
|
|
|
+}
|
|
|
|
+
|
|
type ExamineResp_ExamineData struct {
|
|
type ExamineResp_ExamineData struct {
|
|
state protoimpl.MessageState
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -1742,7 +2220,7 @@ type ExamineResp_ExamineData struct {
|
|
func (x *ExamineResp_ExamineData) Reset() {
|
|
func (x *ExamineResp_ExamineData) Reset() {
|
|
*x = ExamineResp_ExamineData{}
|
|
*x = ExamineResp_ExamineData{}
|
|
if protoimpl.UnsafeEnabled {
|
|
if protoimpl.UnsafeEnabled {
|
|
- mi := &file_userCenter_proto_msgTypes[21]
|
|
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[27]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -1755,7 +2233,7 @@ func (x *ExamineResp_ExamineData) String() string {
|
|
func (*ExamineResp_ExamineData) ProtoMessage() {}
|
|
func (*ExamineResp_ExamineData) ProtoMessage() {}
|
|
|
|
|
|
func (x *ExamineResp_ExamineData) ProtoReflect() protoreflect.Message {
|
|
func (x *ExamineResp_ExamineData) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_userCenter_proto_msgTypes[21]
|
|
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[27]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1790,7 +2268,7 @@ type CheckEntRespCheckData struct {
|
|
func (x *CheckEntRespCheckData) Reset() {
|
|
func (x *CheckEntRespCheckData) Reset() {
|
|
*x = CheckEntRespCheckData{}
|
|
*x = CheckEntRespCheckData{}
|
|
if protoimpl.UnsafeEnabled {
|
|
if protoimpl.UnsafeEnabled {
|
|
- mi := &file_userCenter_proto_msgTypes[22]
|
|
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[28]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -1803,7 +2281,7 @@ func (x *CheckEntRespCheckData) String() string {
|
|
func (*CheckEntRespCheckData) ProtoMessage() {}
|
|
func (*CheckEntRespCheckData) ProtoMessage() {}
|
|
|
|
|
|
func (x *CheckEntRespCheckData) ProtoReflect() protoreflect.Message {
|
|
func (x *CheckEntRespCheckData) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_userCenter_proto_msgTypes[22]
|
|
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[28]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1845,7 +2323,7 @@ type GetStatusByCodeResp_GetStatusByCode struct {
|
|
func (x *GetStatusByCodeResp_GetStatusByCode) Reset() {
|
|
func (x *GetStatusByCodeResp_GetStatusByCode) Reset() {
|
|
*x = GetStatusByCodeResp_GetStatusByCode{}
|
|
*x = GetStatusByCodeResp_GetStatusByCode{}
|
|
if protoimpl.UnsafeEnabled {
|
|
if protoimpl.UnsafeEnabled {
|
|
- mi := &file_userCenter_proto_msgTypes[23]
|
|
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[29]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -1858,7 +2336,7 @@ func (x *GetStatusByCodeResp_GetStatusByCode) String() string {
|
|
func (*GetStatusByCodeResp_GetStatusByCode) ProtoMessage() {}
|
|
func (*GetStatusByCodeResp_GetStatusByCode) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetStatusByCodeResp_GetStatusByCode) ProtoReflect() protoreflect.Message {
|
|
func (x *GetStatusByCodeResp_GetStatusByCode) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_userCenter_proto_msgTypes[23]
|
|
|
|
|
|
+ mi := &file_userCenter_proto_msgTypes[29]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2135,33 +2613,98 @@ var file_userCenter_proto_rawDesc = []byte{
|
|
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75,
|
|
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75,
|
|
0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x49, 0x6e,
|
|
0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x49, 0x6e,
|
|
0x45, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x49, 0x6e, 0x45,
|
|
0x45, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x49, 0x6e, 0x45,
|
|
- 0x6e, 0x74, 0x32, 0x9a, 0x03, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65,
|
|
|
|
- 0x72, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x12, 0x0b, 0x2e, 0x45,
|
|
|
|
- 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41,
|
|
|
|
- 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x45, 0x78,
|
|
|
|
- 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x0b, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52,
|
|
|
|
- 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
- 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0b, 0x2e, 0x45, 0x6e,
|
|
|
|
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69,
|
|
|
|
- 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
|
|
|
|
- 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c,
|
|
|
|
- 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
|
|
|
|
- 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63,
|
|
|
|
- 0x6b, 0x45, 0x6e, 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52,
|
|
|
|
- 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
|
|
|
- 0x70, 0x12, 0x25, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0c, 0x2e, 0x43,
|
|
|
|
- 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74,
|
|
|
|
- 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28, 0x0a, 0x09, 0x45, 0x6e, 0x74, 0x55,
|
|
|
|
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0d, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74,
|
|
|
|
- 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65,
|
|
|
|
- 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66,
|
|
|
|
- 0x6f, 0x12, 0x10, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
|
|
|
|
- 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
|
|
|
|
- 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79,
|
|
|
|
- 0x43, 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
|
|
|
|
- 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
|
|
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x42,
|
|
|
|
- 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
|
|
+ 0x6e, 0x74, 0x22, 0x8c, 0x02, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
|
|
|
|
+ 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
|
|
|
|
+ 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74,
|
|
|
|
+ 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x76, 0x69, 0x70, 0x53, 0x74, 0x61,
|
|
|
|
+ 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x74, 0x61,
|
|
|
|
+ 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65,
|
|
|
|
+ 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x6e, 0x74, 0x6e, 0x69,
|
|
|
|
+ 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
|
+ 0x0e, 0x65, 0x6e, 0x74, 0x6e, 0x69, 0x63, 0x68, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
|
|
|
|
+ 0x24, 0x0a, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x54, 0x79, 0x70, 0x65,
|
|
|
|
+ 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
|
|
|
|
+ 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x06, 0x20,
|
|
|
|
+ 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52,
|
|
|
|
+ 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d,
|
|
|
|
+ 0x73, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d,
|
|
|
|
+ 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
|
|
|
|
+ 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
|
|
|
|
+ 0x65, 0x22, 0xc7, 0x02, 0x0a, 0x09, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12,
|
|
|
|
+ 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
|
|
|
|
+ 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a,
|
|
|
|
+ 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
|
|
|
|
+ 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18,
|
|
|
|
+ 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
|
|
|
|
+ 0x65, 0x2e, 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x61, 0x72, 0x65,
|
|
|
|
+ 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18,
|
|
|
|
+ 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73,
|
|
|
|
+ 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20,
|
|
|
|
+ 0x03, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a,
|
|
|
|
+ 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x49,
|
|
|
|
+ 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6d,
|
|
|
|
+ 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d,
|
|
|
|
+ 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65,
|
|
|
|
+ 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70,
|
|
|
|
+ 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x1a, 0x3e, 0x0a, 0x09, 0x41,
|
|
|
|
+ 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
|
|
|
|
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x1b, 0x0a, 0x05, 0x76, 0x61,
|
|
|
|
+ 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x4c, 0x69, 0x73, 0x74,
|
|
|
|
+ 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1c, 0x0a, 0x04, 0x4c,
|
|
|
|
+ 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x03,
|
|
|
|
+ 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x5a, 0x0a, 0x05, 0x49, 0x74, 0x65,
|
|
|
|
+ 0x6d, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01,
|
|
|
|
+ 0x28, 0x09, 0x52, 0x05, 0x73, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64,
|
|
|
|
+ 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75,
|
|
|
|
+ 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x05, 0x61, 0x5f, 0x6b,
|
|
|
|
+ 0x65, 0x79, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x05, 0x2e, 0x4b, 0x65, 0x79, 0x73, 0x52,
|
|
|
|
+ 0x04, 0x61, 0x4b, 0x65, 0x79, 0x22, 0x6c, 0x0a, 0x04, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x10, 0x0a,
|
|
|
|
+ 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
|
|
|
|
+ 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52,
|
|
|
|
+ 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74,
|
|
|
|
+ 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64,
|
|
|
|
+ 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68,
|
|
|
|
+ 0x77, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x61, 0x74, 0x63, 0x68,
|
|
|
|
+ 0x77, 0x61, 0x79, 0x22, 0xa1, 0x01, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12,
|
|
|
|
+ 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
|
|
|
|
+ 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
|
|
|
|
+ 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a,
|
|
|
|
+ 0x0a, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
|
+ 0x03, 0x52, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
|
|
|
|
+ 0x05, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x79,
|
|
|
|
+ 0x70, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01,
|
|
|
|
+ 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74,
|
|
|
|
+ 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e,
|
|
|
|
+ 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x32, 0xbe, 0x03, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72,
|
|
|
|
+ 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74,
|
|
|
|
+ 0x68, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0c,
|
|
|
|
+ 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a,
|
|
|
|
+ 0x45, 0x6e, 0x74, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x0b, 0x2e, 0x45, 0x78, 0x61,
|
|
|
|
+ 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
|
|
|
|
+ 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
|
|
|
|
+ 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e,
|
|
|
|
+ 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x45,
|
|
|
|
+ 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x78, 0x61,
|
|
|
|
+ 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x78,
|
|
|
|
+ 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a,
|
|
|
|
+ 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63,
|
|
|
|
+ 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45,
|
|
|
|
+ 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66,
|
|
|
|
+ 0x6f, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a,
|
|
|
|
+ 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28, 0x0a,
|
|
|
|
+ 0x09, 0x45, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x0d, 0x2e, 0x45, 0x6e, 0x74,
|
|
|
|
+ 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d,
|
|
|
|
+ 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69,
|
|
|
|
+ 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x78,
|
|
|
|
+ 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x49, 0x6e,
|
|
|
|
+ 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61,
|
|
|
|
+ 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x13, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
|
|
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x14,
|
|
|
|
+ 0x2e, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65,
|
|
|
|
+ 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49,
|
|
|
|
+ 0x6e, 0x66, 0x6f, 0x12, 0x08, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x09, 0x2e,
|
|
|
|
+ 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62,
|
|
|
|
+ 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
}
|
|
|
|
|
|
var (
|
|
var (
|
|
@@ -2176,7 +2719,7 @@ func file_userCenter_proto_rawDescGZIP() []byte {
|
|
return file_userCenter_proto_rawDescData
|
|
return file_userCenter_proto_rawDescData
|
|
}
|
|
}
|
|
|
|
|
|
-var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 24)
|
|
|
|
|
|
+var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 31)
|
|
var file_userCenter_proto_goTypes = []interface{}{
|
|
var file_userCenter_proto_goTypes = []interface{}{
|
|
(*EntAuthReq)(nil), // 0: EntAuthReq
|
|
(*EntAuthReq)(nil), // 0: EntAuthReq
|
|
(*EntAuthResp)(nil), // 1: EntAuthResp
|
|
(*EntAuthResp)(nil), // 1: EntAuthResp
|
|
@@ -2199,43 +2742,57 @@ var file_userCenter_proto_goTypes = []interface{}{
|
|
(*CheckExamineReq)(nil), // 18: CheckExamineReq
|
|
(*CheckExamineReq)(nil), // 18: CheckExamineReq
|
|
(*GetStatusByCodeReq)(nil), // 19: GetStatusByCodeReq
|
|
(*GetStatusByCodeReq)(nil), // 19: GetStatusByCodeReq
|
|
(*GetStatusByCodeResp)(nil), // 20: GetStatusByCodeResp
|
|
(*GetStatusByCodeResp)(nil), // 20: GetStatusByCodeResp
|
|
- (*ExamineResp_ExamineData)(nil), // 21: ExamineResp.ExamineData
|
|
|
|
- (*CheckEntRespCheckData)(nil), // 22: CheckEntResp.checkData
|
|
|
|
- (*GetStatusByCodeResp_GetStatusByCode)(nil), // 23: GetStatusByCodeResp.GetStatusByCode
|
|
|
|
|
|
+ (*UserInfo)(nil), // 21: UserInfo
|
|
|
|
+ (*Subscribe)(nil), // 22: Subscribe
|
|
|
|
+ (*List)(nil), // 23: List
|
|
|
|
+ (*Items)(nil), // 24: Items
|
|
|
|
+ (*Keys)(nil), // 25: Keys
|
|
|
|
+ (*UserReq)(nil), // 26: UserReq
|
|
|
|
+ (*ExamineResp_ExamineData)(nil), // 27: ExamineResp.ExamineData
|
|
|
|
+ (*CheckEntRespCheckData)(nil), // 28: CheckEntResp.checkData
|
|
|
|
+ (*GetStatusByCodeResp_GetStatusByCode)(nil), // 29: GetStatusByCodeResp.GetStatusByCode
|
|
|
|
+ nil, // 30: Subscribe.AreaEntry
|
|
}
|
|
}
|
|
var file_userCenter_proto_depIdxs = []int32{
|
|
var file_userCenter_proto_depIdxs = []int32{
|
|
2, // 0: EntAuthResp.data:type_name -> EntAuthData
|
|
2, // 0: EntAuthResp.data:type_name -> EntAuthData
|
|
- 21, // 1: ExamineResp.data:type_name -> ExamineResp.ExamineData
|
|
|
|
|
|
+ 27, // 1: ExamineResp.data:type_name -> ExamineResp.ExamineData
|
|
7, // 2: EntListResp.data:type_name -> EntData
|
|
7, // 2: EntListResp.data:type_name -> EntData
|
|
8, // 3: EntData.list:type_name -> EntList
|
|
8, // 3: EntData.list:type_name -> EntList
|
|
11, // 4: ExamineListResp.data:type_name -> ExamineListData
|
|
11, // 4: ExamineListResp.data:type_name -> ExamineListData
|
|
12, // 5: ExamineListData.list:type_name -> ExamineList
|
|
12, // 5: ExamineListData.list:type_name -> ExamineList
|
|
- 22, // 6: CheckEntResp.data:type_name -> CheckEntResp.checkData
|
|
|
|
|
|
+ 28, // 6: CheckEntResp.data:type_name -> CheckEntResp.checkData
|
|
16, // 7: EntInfoResp.data:type_name -> EntInfoData
|
|
16, // 7: EntInfoResp.data:type_name -> EntInfoData
|
|
- 23, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCodeResp.GetStatusByCode
|
|
|
|
- 0, // 9: UserCenter.EntAuth:input_type -> EntAuthReq
|
|
|
|
- 3, // 10: UserCenter.EntExamine:input_type -> ExamineReq
|
|
|
|
- 5, // 11: UserCenter.EntList:input_type -> EntListReq
|
|
|
|
- 9, // 12: UserCenter.ExamineList:input_type -> ExamineListReq
|
|
|
|
- 13, // 13: UserCenter.CheckEnt:input_type -> CheckEntReq
|
|
|
|
- 13, // 14: UserCenter.EntInfo:input_type -> CheckEntReq
|
|
|
|
- 17, // 15: UserCenter.EntUpdate:input_type -> EntUpdateReq
|
|
|
|
- 18, // 16: UserCenter.ExamineInfo:input_type -> CheckExamineReq
|
|
|
|
- 19, // 17: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
|
|
|
|
- 1, // 18: UserCenter.EntAuth:output_type -> EntAuthResp
|
|
|
|
- 4, // 19: UserCenter.EntExamine:output_type -> ExamineResp
|
|
|
|
- 6, // 20: UserCenter.EntList:output_type -> EntListResp
|
|
|
|
- 10, // 21: UserCenter.ExamineList:output_type -> ExamineListResp
|
|
|
|
- 14, // 22: UserCenter.CheckEnt:output_type -> CheckEntResp
|
|
|
|
- 15, // 23: UserCenter.EntInfo:output_type -> EntInfoResp
|
|
|
|
- 4, // 24: UserCenter.EntUpdate:output_type -> ExamineResp
|
|
|
|
- 15, // 25: UserCenter.ExamineInfo:output_type -> EntInfoResp
|
|
|
|
- 20, // 26: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
|
|
|
|
- 18, // [18:27] is the sub-list for method output_type
|
|
|
|
- 9, // [9:18] 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
|
|
|
|
|
|
+ 29, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCodeResp.GetStatusByCode
|
|
|
|
+ 22, // 9: UserInfo.data:type_name -> Subscribe
|
|
|
|
+ 30, // 10: Subscribe.area:type_name -> Subscribe.AreaEntry
|
|
|
|
+ 24, // 11: Subscribe.items:type_name -> Items
|
|
|
|
+ 25, // 12: Items.a_key:type_name -> Keys
|
|
|
|
+ 23, // 13: Subscribe.AreaEntry.value:type_name -> List
|
|
|
|
+ 0, // 14: UserCenter.EntAuth:input_type -> EntAuthReq
|
|
|
|
+ 3, // 15: UserCenter.EntExamine:input_type -> ExamineReq
|
|
|
|
+ 5, // 16: UserCenter.EntList:input_type -> EntListReq
|
|
|
|
+ 9, // 17: UserCenter.ExamineList:input_type -> ExamineListReq
|
|
|
|
+ 13, // 18: UserCenter.CheckEnt:input_type -> CheckEntReq
|
|
|
|
+ 13, // 19: UserCenter.EntInfo:input_type -> CheckEntReq
|
|
|
|
+ 17, // 20: UserCenter.EntUpdate:input_type -> EntUpdateReq
|
|
|
|
+ 18, // 21: UserCenter.ExamineInfo:input_type -> CheckExamineReq
|
|
|
|
+ 19, // 22: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
|
|
|
|
+ 26, // 23: UserCenter.GetUserInfo:input_type -> UserReq
|
|
|
|
+ 1, // 24: UserCenter.EntAuth:output_type -> EntAuthResp
|
|
|
|
+ 4, // 25: UserCenter.EntExamine:output_type -> ExamineResp
|
|
|
|
+ 6, // 26: UserCenter.EntList:output_type -> EntListResp
|
|
|
|
+ 10, // 27: UserCenter.ExamineList:output_type -> ExamineListResp
|
|
|
|
+ 14, // 28: UserCenter.CheckEnt:output_type -> CheckEntResp
|
|
|
|
+ 15, // 29: UserCenter.EntInfo:output_type -> EntInfoResp
|
|
|
|
+ 4, // 30: UserCenter.EntUpdate:output_type -> ExamineResp
|
|
|
|
+ 15, // 31: UserCenter.ExamineInfo:output_type -> EntInfoResp
|
|
|
|
+ 20, // 32: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
|
|
|
|
+ 21, // 33: UserCenter.GetUserInfo:output_type -> UserInfo
|
|
|
|
+ 24, // [24:34] is the sub-list for method output_type
|
|
|
|
+ 14, // [14:24] is the sub-list for method input_type
|
|
|
|
+ 14, // [14:14] is the sub-list for extension type_name
|
|
|
|
+ 14, // [14:14] is the sub-list for extension extendee
|
|
|
|
+ 0, // [0:14] is the sub-list for field type_name
|
|
}
|
|
}
|
|
|
|
|
|
func init() { file_userCenter_proto_init() }
|
|
func init() { file_userCenter_proto_init() }
|
|
@@ -2497,7 +3054,7 @@ func file_userCenter_proto_init() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
file_userCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
|
file_userCenter_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
|
- switch v := v.(*ExamineResp_ExamineData); i {
|
|
|
|
|
|
+ switch v := v.(*UserInfo); i {
|
|
case 0:
|
|
case 0:
|
|
return &v.state
|
|
return &v.state
|
|
case 1:
|
|
case 1:
|
|
@@ -2509,7 +3066,7 @@ func file_userCenter_proto_init() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
file_userCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
|
file_userCenter_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
|
- switch v := v.(*CheckEntRespCheckData); i {
|
|
|
|
|
|
+ switch v := v.(*Subscribe); i {
|
|
case 0:
|
|
case 0:
|
|
return &v.state
|
|
return &v.state
|
|
case 1:
|
|
case 1:
|
|
@@ -2521,6 +3078,78 @@ func file_userCenter_proto_init() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
|
file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
+ switch v := v.(*List); i {
|
|
|
|
+ case 0:
|
|
|
|
+ return &v.state
|
|
|
|
+ case 1:
|
|
|
|
+ return &v.sizeCache
|
|
|
|
+ case 2:
|
|
|
|
+ return &v.unknownFields
|
|
|
|
+ default:
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ file_userCenter_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
+ switch v := v.(*Items); i {
|
|
|
|
+ case 0:
|
|
|
|
+ return &v.state
|
|
|
|
+ case 1:
|
|
|
|
+ return &v.sizeCache
|
|
|
|
+ case 2:
|
|
|
|
+ return &v.unknownFields
|
|
|
|
+ default:
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ file_userCenter_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
+ switch v := v.(*Keys); i {
|
|
|
|
+ case 0:
|
|
|
|
+ return &v.state
|
|
|
|
+ case 1:
|
|
|
|
+ return &v.sizeCache
|
|
|
|
+ case 2:
|
|
|
|
+ return &v.unknownFields
|
|
|
|
+ default:
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ file_userCenter_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
+ switch v := v.(*UserReq); i {
|
|
|
|
+ case 0:
|
|
|
|
+ return &v.state
|
|
|
|
+ case 1:
|
|
|
|
+ return &v.sizeCache
|
|
|
|
+ case 2:
|
|
|
|
+ return &v.unknownFields
|
|
|
|
+ default:
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ file_userCenter_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
+ switch v := v.(*ExamineResp_ExamineData); i {
|
|
|
|
+ case 0:
|
|
|
|
+ return &v.state
|
|
|
|
+ case 1:
|
|
|
|
+ return &v.sizeCache
|
|
|
|
+ case 2:
|
|
|
|
+ return &v.unknownFields
|
|
|
|
+ default:
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ file_userCenter_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
+ switch v := v.(*CheckEntRespCheckData); i {
|
|
|
|
+ case 0:
|
|
|
|
+ return &v.state
|
|
|
|
+ case 1:
|
|
|
|
+ return &v.sizeCache
|
|
|
|
+ case 2:
|
|
|
|
+ return &v.unknownFields
|
|
|
|
+ default:
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ file_userCenter_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*GetStatusByCodeResp_GetStatusByCode); i {
|
|
switch v := v.(*GetStatusByCodeResp_GetStatusByCode); i {
|
|
case 0:
|
|
case 0:
|
|
return &v.state
|
|
return &v.state
|
|
@@ -2539,7 +3168,7 @@ func file_userCenter_proto_init() {
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: file_userCenter_proto_rawDesc,
|
|
RawDescriptor: file_userCenter_proto_rawDesc,
|
|
NumEnums: 0,
|
|
NumEnums: 0,
|
|
- NumMessages: 24,
|
|
|
|
|
|
+ NumMessages: 31,
|
|
NumExtensions: 0,
|
|
NumExtensions: 0,
|
|
NumServices: 1,
|
|
NumServices: 1,
|
|
},
|
|
},
|