|
@@ -1613,6 +1613,124 @@ func (x *CheckExamineReq) GetExamineId() int64 {
|
|
|
return 0
|
|
|
}
|
|
|
|
|
|
+type GetStatusByCodeReq struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` //统一社会信用代码
|
|
|
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` //注册手机号
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeReq) Reset() {
|
|
|
+ *x = GetStatusByCodeReq{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[19]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeReq) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*GetStatusByCodeReq) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeReq) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[19]
|
|
|
+ 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 GetStatusByCodeReq.ProtoReflect.Descriptor instead.
|
|
|
+func (*GetStatusByCodeReq) Descriptor() ([]byte, []int) {
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{19}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeReq) GetCode() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Code
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeReq) GetPhone() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Phone
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+type GetStatusByCodeResp struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
|
|
|
+ ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
|
|
|
+ Data *GetStatusByCodeResp_GetStatusByCode `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //详情
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp) Reset() {
|
|
|
+ *x = GetStatusByCodeResp{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[20]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*GetStatusByCodeResp) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[20]
|
|
|
+ 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 GetStatusByCodeResp.ProtoReflect.Descriptor instead.
|
|
|
+func (*GetStatusByCodeResp) Descriptor() ([]byte, []int) {
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{20}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp) GetErrorCode() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrorCode
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp) GetErrorMsg() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrorMsg
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp) GetData() *GetStatusByCodeResp_GetStatusByCode {
|
|
|
+ if x != nil {
|
|
|
+ return x.Data
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
type ExamineResp_ExamineData struct {
|
|
|
state protoimpl.MessageState
|
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -1624,7 +1742,7 @@ type ExamineResp_ExamineData struct {
|
|
|
func (x *ExamineResp_ExamineData) Reset() {
|
|
|
*x = ExamineResp_ExamineData{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_userCenter_proto_msgTypes[19]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[21]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
@@ -1637,7 +1755,7 @@ func (x *ExamineResp_ExamineData) String() string {
|
|
|
func (*ExamineResp_ExamineData) ProtoMessage() {}
|
|
|
|
|
|
func (x *ExamineResp_ExamineData) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_userCenter_proto_msgTypes[19]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[21]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1672,7 +1790,7 @@ type CheckEntRespCheckData struct {
|
|
|
func (x *CheckEntRespCheckData) Reset() {
|
|
|
*x = CheckEntRespCheckData{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_userCenter_proto_msgTypes[20]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[22]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
@@ -1685,7 +1803,7 @@ func (x *CheckEntRespCheckData) String() string {
|
|
|
func (*CheckEntRespCheckData) ProtoMessage() {}
|
|
|
|
|
|
func (x *CheckEntRespCheckData) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_userCenter_proto_msgTypes[20]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[22]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1715,6 +1833,61 @@ func (x *CheckEntRespCheckData) GetFrozenStatus() int64 {
|
|
|
return 0
|
|
|
}
|
|
|
|
|
|
+type GetStatusByCodeResp_GetStatusByCode struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ AuthStatus int64 `protobuf:"varint,1,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证. -2 已到期 3待审核
|
|
|
+ IsInEnt bool `protobuf:"varint,2,opt,name=isInEnt,proto3" json:"isInEnt,omitempty"` //是否在该企业内
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp_GetStatusByCode) Reset() {
|
|
|
+ *x = GetStatusByCodeResp_GetStatusByCode{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[23]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp_GetStatusByCode) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*GetStatusByCodeResp_GetStatusByCode) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp_GetStatusByCode) 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 GetStatusByCodeResp_GetStatusByCode.ProtoReflect.Descriptor instead.
|
|
|
+func (*GetStatusByCodeResp_GetStatusByCode) Descriptor() ([]byte, []int) {
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{20, 0}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp_GetStatusByCode) GetAuthStatus() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.AuthStatus
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *GetStatusByCodeResp_GetStatusByCode) GetIsInEnt() bool {
|
|
|
+ if x != nil {
|
|
|
+ return x.IsInEnt
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
var File_userCenter_proto protoreflect.FileDescriptor
|
|
|
|
|
|
var file_userCenter_proto_rawDesc = []byte{
|
|
@@ -1944,30 +2117,51 @@ var file_userCenter_proto_rawDesc = []byte{
|
|
|
0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0x2f, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45,
|
|
|
0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x78, 0x61,
|
|
|
0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x78,
|
|
|
- 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x32, 0xdc, 0x02, 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, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06,
|
|
|
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
+ 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x53, 0x74,
|
|
|
+ 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a,
|
|
|
+ 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64,
|
|
|
+ 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
|
+ 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0xd8, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53,
|
|
|
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
|
|
|
+ 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
|
|
|
+ 0x01, 0x28, 0x03, 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,
|
|
|
+ 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x38, 0x0a, 0x04, 0x64,
|
|
|
+ 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
|
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x2e,
|
|
|
+ 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
|
|
|
+ 0x04, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x4b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74,
|
|
|
+ 0x75, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68,
|
|
|
+ 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,
|
|
|
+ 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,
|
|
|
}
|
|
|
|
|
|
var (
|
|
@@ -1982,60 +2176,66 @@ func file_userCenter_proto_rawDescGZIP() []byte {
|
|
|
return file_userCenter_proto_rawDescData
|
|
|
}
|
|
|
|
|
|
-var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 21)
|
|
|
+var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 24)
|
|
|
var file_userCenter_proto_goTypes = []interface{}{
|
|
|
- (*EntAuthReq)(nil), // 0: EntAuthReq
|
|
|
- (*EntAuthResp)(nil), // 1: EntAuthResp
|
|
|
- (*EntAuthData)(nil), // 2: EntAuthData
|
|
|
- (*ExamineReq)(nil), // 3: ExamineReq
|
|
|
- (*ExamineResp)(nil), // 4: ExamineResp
|
|
|
- (*EntListReq)(nil), // 5: EntListReq
|
|
|
- (*EntListResp)(nil), // 6: EntListResp
|
|
|
- (*EntData)(nil), // 7: EntData
|
|
|
- (*EntList)(nil), // 8: EntList
|
|
|
- (*ExamineListReq)(nil), // 9: ExamineListReq
|
|
|
- (*ExamineListResp)(nil), // 10: ExamineListResp
|
|
|
- (*ExamineListData)(nil), // 11: ExamineListData
|
|
|
- (*ExamineList)(nil), // 12: ExamineList
|
|
|
- (*CheckEntReq)(nil), // 13: CheckEntReq
|
|
|
- (*CheckEntResp)(nil), // 14: CheckEntResp
|
|
|
- (*EntInfoResp)(nil), // 15: EntInfoResp
|
|
|
- (*EntInfoData)(nil), // 16: EntInfoData
|
|
|
- (*EntUpdateReq)(nil), // 17: EntUpdateReq
|
|
|
- (*CheckExamineReq)(nil), // 18: CheckExamineReq
|
|
|
- (*ExamineResp_ExamineData)(nil), // 19: ExamineResp.ExamineData
|
|
|
- (*CheckEntRespCheckData)(nil), // 20: CheckEntResp.checkData
|
|
|
+ (*EntAuthReq)(nil), // 0: EntAuthReq
|
|
|
+ (*EntAuthResp)(nil), // 1: EntAuthResp
|
|
|
+ (*EntAuthData)(nil), // 2: EntAuthData
|
|
|
+ (*ExamineReq)(nil), // 3: ExamineReq
|
|
|
+ (*ExamineResp)(nil), // 4: ExamineResp
|
|
|
+ (*EntListReq)(nil), // 5: EntListReq
|
|
|
+ (*EntListResp)(nil), // 6: EntListResp
|
|
|
+ (*EntData)(nil), // 7: EntData
|
|
|
+ (*EntList)(nil), // 8: EntList
|
|
|
+ (*ExamineListReq)(nil), // 9: ExamineListReq
|
|
|
+ (*ExamineListResp)(nil), // 10: ExamineListResp
|
|
|
+ (*ExamineListData)(nil), // 11: ExamineListData
|
|
|
+ (*ExamineList)(nil), // 12: ExamineList
|
|
|
+ (*CheckEntReq)(nil), // 13: CheckEntReq
|
|
|
+ (*CheckEntResp)(nil), // 14: CheckEntResp
|
|
|
+ (*EntInfoResp)(nil), // 15: EntInfoResp
|
|
|
+ (*EntInfoData)(nil), // 16: EntInfoData
|
|
|
+ (*EntUpdateReq)(nil), // 17: EntUpdateReq
|
|
|
+ (*CheckExamineReq)(nil), // 18: CheckExamineReq
|
|
|
+ (*GetStatusByCodeReq)(nil), // 19: GetStatusByCodeReq
|
|
|
+ (*GetStatusByCodeResp)(nil), // 20: GetStatusByCodeResp
|
|
|
+ (*ExamineResp_ExamineData)(nil), // 21: ExamineResp.ExamineData
|
|
|
+ (*CheckEntRespCheckData)(nil), // 22: CheckEntResp.checkData
|
|
|
+ (*GetStatusByCodeResp_GetStatusByCode)(nil), // 23: GetStatusByCodeResp.GetStatusByCode
|
|
|
}
|
|
|
var file_userCenter_proto_depIdxs = []int32{
|
|
|
2, // 0: EntAuthResp.data:type_name -> EntAuthData
|
|
|
- 19, // 1: ExamineResp.data:type_name -> ExamineResp.ExamineData
|
|
|
+ 21, // 1: ExamineResp.data:type_name -> ExamineResp.ExamineData
|
|
|
7, // 2: EntListResp.data:type_name -> EntData
|
|
|
8, // 3: EntData.list:type_name -> EntList
|
|
|
11, // 4: ExamineListResp.data:type_name -> ExamineListData
|
|
|
12, // 5: ExamineListData.list:type_name -> ExamineList
|
|
|
- 20, // 6: CheckEntResp.data:type_name -> CheckEntResp.checkData
|
|
|
+ 22, // 6: CheckEntResp.data:type_name -> CheckEntResp.checkData
|
|
|
16, // 7: EntInfoResp.data:type_name -> EntInfoData
|
|
|
- 0, // 8: UserCenter.EntAuth:input_type -> EntAuthReq
|
|
|
- 3, // 9: UserCenter.EntExamine:input_type -> ExamineReq
|
|
|
- 5, // 10: UserCenter.EntList:input_type -> EntListReq
|
|
|
- 9, // 11: UserCenter.ExamineList:input_type -> ExamineListReq
|
|
|
- 13, // 12: UserCenter.CheckEnt:input_type -> CheckEntReq
|
|
|
- 13, // 13: UserCenter.EntInfo:input_type -> CheckEntReq
|
|
|
- 17, // 14: UserCenter.EntUpdate:input_type -> EntUpdateReq
|
|
|
- 18, // 15: UserCenter.ExamineInfo:input_type -> CheckExamineReq
|
|
|
- 1, // 16: UserCenter.EntAuth:output_type -> EntAuthResp
|
|
|
- 4, // 17: UserCenter.EntExamine:output_type -> ExamineResp
|
|
|
- 6, // 18: UserCenter.EntList:output_type -> EntListResp
|
|
|
- 10, // 19: UserCenter.ExamineList:output_type -> ExamineListResp
|
|
|
- 14, // 20: UserCenter.CheckEnt:output_type -> CheckEntResp
|
|
|
- 15, // 21: UserCenter.EntInfo:output_type -> EntInfoResp
|
|
|
- 4, // 22: UserCenter.EntUpdate:output_type -> ExamineResp
|
|
|
- 15, // 23: UserCenter.ExamineInfo:output_type -> EntInfoResp
|
|
|
- 16, // [16:24] is the sub-list for method output_type
|
|
|
- 8, // [8:16] 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
|
|
|
+ 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
|
|
|
}
|
|
|
|
|
|
func init() { file_userCenter_proto_init() }
|
|
@@ -2273,7 +2473,7 @@ func file_userCenter_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_userCenter_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*ExamineResp_ExamineData); i {
|
|
|
+ switch v := v.(*GetStatusByCodeReq); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
@@ -2285,6 +2485,30 @@ func file_userCenter_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_userCenter_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*GetStatusByCodeResp); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_userCenter_proto_msgTypes[21].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[22].Exporter = func(v interface{}, i int) interface{} {
|
|
|
switch v := v.(*CheckEntRespCheckData); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
@@ -2296,6 +2520,18 @@ func file_userCenter_proto_init() {
|
|
|
return nil
|
|
|
}
|
|
|
}
|
|
|
+ file_userCenter_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*GetStatusByCodeResp_GetStatusByCode); 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{
|
|
@@ -2303,7 +2539,7 @@ func file_userCenter_proto_init() {
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: file_userCenter_proto_rawDesc,
|
|
|
NumEnums: 0,
|
|
|
- NumMessages: 21,
|
|
|
+ NumMessages: 24,
|
|
|
NumExtensions: 0,
|
|
|
NumServices: 1,
|
|
|
},
|