|
@@ -2216,6 +2216,7 @@ type EntUserReq struct {
|
|
|
|
|
|
AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
|
|
|
EntUserId int64 `protobuf:"varint,2,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
|
|
|
+ EntId int64 `protobuf:"varint,3,opt,name=entId,proto3" json:"entId,omitempty"`
|
|
|
}
|
|
|
|
|
|
func (x *EntUserReq) Reset() {
|
|
@@ -2264,6 +2265,13 @@ func (x *EntUserReq) GetEntUserId() int64 {
|
|
|
return 0
|
|
|
}
|
|
|
|
|
|
+func (x *EntUserReq) GetEntId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.EntId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
type EntUserResp struct {
|
|
|
state protoimpl.MessageState
|
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -2332,10 +2340,11 @@ type EntUser struct {
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
- Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"` //员工名册
|
|
|
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` //员工手机号
|
|
|
- Mail string `protobuf:"bytes,3,opt,name=mail,proto3" json:"mail,omitempty"` //邮箱
|
|
|
- DeptName string `protobuf:"bytes,4,opt,name=deptName,proto3" json:"deptName,omitempty"` //部门名称
|
|
|
+ Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"` //员工名册
|
|
|
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` //员工手机号
|
|
|
+ Mail string `protobuf:"bytes,3,opt,name=mail,proto3" json:"mail,omitempty"` //邮箱
|
|
|
+ DeptName string `protobuf:"bytes,4,opt,name=deptName,proto3" json:"deptName,omitempty"` //部门名称
|
|
|
+ EntUserId int64 `protobuf:"varint,5,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
|
|
|
}
|
|
|
|
|
|
func (x *EntUser) Reset() {
|
|
@@ -2398,6 +2407,289 @@ func (x *EntUser) GetDeptName() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
+func (x *EntUser) GetEntUserId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.EntUserId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+type EntUserListReq struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
|
|
|
+ EntId int64 `protobuf:"varint,2,opt,name=entId,proto3" json:"entId,omitempty"`
|
|
|
+ DeptId int64 `protobuf:"varint,3,opt,name=deptId,proto3" json:"deptId,omitempty"`
|
|
|
+ Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListReq) Reset() {
|
|
|
+ *x = EntUserListReq{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[30]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListReq) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*EntUserListReq) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *EntUserListReq) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[30]
|
|
|
+ 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 EntUserListReq.ProtoReflect.Descriptor instead.
|
|
|
+func (*EntUserListReq) Descriptor() ([]byte, []int) {
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{30}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListReq) GetAppId() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.AppId
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListReq) GetEntId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.EntId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListReq) GetDeptId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.DeptId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListReq) GetName() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Name
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+type EntUserListResp 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 []*EntUserListData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListResp) Reset() {
|
|
|
+ *x = EntUserListResp{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[31]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListResp) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*EntUserListResp) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *EntUserListResp) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[31]
|
|
|
+ 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 EntUserListResp.ProtoReflect.Descriptor instead.
|
|
|
+func (*EntUserListResp) Descriptor() ([]byte, []int) {
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{31}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListResp) GetErrorCode() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrorCode
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListResp) GetErrorMsg() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrorMsg
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListResp) GetData() []*EntUserListData {
|
|
|
+ if x != nil {
|
|
|
+ return x.Data
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+type EntUserListData struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
+ DeptId int64 `protobuf:"varint,2,opt,name=deptId,proto3" json:"deptId,omitempty"`
|
|
|
+ PId int64 `protobuf:"varint,3,opt,name=pId,proto3" json:"pId,omitempty"`
|
|
|
+ EntUserList []*EntUser `protobuf:"bytes,4,rep,name=entUserList,proto3" json:"entUserList,omitempty"`
|
|
|
+ DeptList []*EntUserListData `protobuf:"bytes,5,rep,name=deptList,proto3" json:"deptList,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListData) Reset() {
|
|
|
+ *x = EntUserListData{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[32]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListData) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*EntUserListData) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *EntUserListData) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[32]
|
|
|
+ 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 EntUserListData.ProtoReflect.Descriptor instead.
|
|
|
+func (*EntUserListData) Descriptor() ([]byte, []int) {
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{32}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListData) GetName() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Name
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListData) GetDeptId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.DeptId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListData) GetPId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.PId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListData) GetEntUserList() []*EntUser {
|
|
|
+ if x != nil {
|
|
|
+ return x.EntUserList
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (x *EntUserListData) GetDeptList() []*EntUserListData {
|
|
|
+ if x != nil {
|
|
|
+ return x.DeptList
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+type CheckIsEntAdminResp 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"`
|
|
|
+ Status int64 `protobuf:"varint,3,opt,name=status,proto3" json:"status,omitempty"` //1企业管理员 2部门管理员 3员工
|
|
|
+}
|
|
|
+
|
|
|
+func (x *CheckIsEntAdminResp) Reset() {
|
|
|
+ *x = CheckIsEntAdminResp{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[33]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *CheckIsEntAdminResp) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*CheckIsEntAdminResp) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *CheckIsEntAdminResp) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_userCenter_proto_msgTypes[33]
|
|
|
+ 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 CheckIsEntAdminResp.ProtoReflect.Descriptor instead.
|
|
|
+func (*CheckIsEntAdminResp) Descriptor() ([]byte, []int) {
|
|
|
+ return file_userCenter_proto_rawDescGZIP(), []int{33}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *CheckIsEntAdminResp) GetErrorCode() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrorCode
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *CheckIsEntAdminResp) GetErrorMsg() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrorMsg
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *CheckIsEntAdminResp) GetStatus() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.Status
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
type ExamineResp_ExamineData struct {
|
|
|
state protoimpl.MessageState
|
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -2409,7 +2701,7 @@ type ExamineResp_ExamineData struct {
|
|
|
func (x *ExamineResp_ExamineData) Reset() {
|
|
|
*x = ExamineResp_ExamineData{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_userCenter_proto_msgTypes[30]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[34]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
@@ -2422,7 +2714,7 @@ func (x *ExamineResp_ExamineData) String() string {
|
|
|
func (*ExamineResp_ExamineData) ProtoMessage() {}
|
|
|
|
|
|
func (x *ExamineResp_ExamineData) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_userCenter_proto_msgTypes[30]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[34]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2457,7 +2749,7 @@ type CheckEntRespCheckData struct {
|
|
|
func (x *CheckEntRespCheckData) Reset() {
|
|
|
*x = CheckEntRespCheckData{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_userCenter_proto_msgTypes[31]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[35]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
@@ -2470,7 +2762,7 @@ func (x *CheckEntRespCheckData) String() string {
|
|
|
func (*CheckEntRespCheckData) ProtoMessage() {}
|
|
|
|
|
|
func (x *CheckEntRespCheckData) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_userCenter_proto_msgTypes[31]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[35]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2512,7 +2804,7 @@ type GetStatusByCodeResp_GetStatusByCode struct {
|
|
|
func (x *GetStatusByCodeResp_GetStatusByCode) Reset() {
|
|
|
*x = GetStatusByCodeResp_GetStatusByCode{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_userCenter_proto_msgTypes[32]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[36]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
@@ -2525,7 +2817,7 @@ func (x *GetStatusByCodeResp_GetStatusByCode) String() string {
|
|
|
func (*GetStatusByCodeResp_GetStatusByCode) ProtoMessage() {}
|
|
|
|
|
|
func (x *GetStatusByCodeResp_GetStatusByCode) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_userCenter_proto_msgTypes[32]
|
|
|
+ mi := &file_userCenter_proto_msgTypes[36]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -2864,56 +3156,97 @@ var file_userCenter_proto_rawDesc = []byte{
|
|
|
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, 0x22, 0x40, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x55, 0x73,
|
|
|
+ 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x56, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 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, 0x1c, 0x0a, 0x09, 0x65,
|
|
|
0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
|
|
|
- 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74,
|
|
|
- 0x55, 0x73, 0x65, 0x72, 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, 0x1c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
|
|
|
- 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x64, 0x61,
|
|
|
- 0x74, 0x61, 0x22, 0x63, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x12, 0x0a,
|
|
|
- 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d,
|
|
|
- 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
|
- 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18,
|
|
|
- 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x64,
|
|
|
- 0x65, 0x70, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64,
|
|
|
- 0x65, 0x70, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x32, 0xeb, 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, 0x12, 0x2b, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45,
|
|
|
- 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74,
|
|
|
- 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
|
|
|
- 0x72, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70,
|
|
|
- 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
+ 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74,
|
|
|
+ 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22,
|
|
|
+ 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 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, 0x1c, 0x0a, 0x04, 0x64, 0x61,
|
|
|
+ 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73,
|
|
|
+ 0x65, 0x72, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x81, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74,
|
|
|
+ 0x55, 0x73, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
|
|
|
+ 0x28, 0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
|
|
|
+ 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x12,
|
|
|
+ 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61,
|
|
|
+ 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x04,
|
|
|
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
|
|
|
+ 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
|
|
|
+ 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x68, 0x0a, 0x0e,
|
|
|
+ 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 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, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20,
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65,
|
|
|
+ 0x70, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74,
|
|
|
+ 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
|
|
|
+ 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x73, 0x0a, 0x0f, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
|
|
|
+ 0x72, 0x4c, 0x69, 0x73, 0x74, 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, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
|
|
|
+ 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
|
|
|
+ 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xa9, 0x01, 0x0a, 0x0f,
|
|
|
+ 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12,
|
|
|
+ 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
|
|
|
+ 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20,
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x70,
|
|
|
+ 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x49, 0x64, 0x12, 0x2a, 0x0a,
|
|
|
+ 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03,
|
|
|
+ 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x0b, 0x65, 0x6e,
|
|
|
+ 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x08, 0x64, 0x65, 0x70,
|
|
|
+ 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45, 0x6e,
|
|
|
+ 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x08, 0x64,
|
|
|
+ 0x65, 0x70, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x69, 0x0a, 0x13, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
|
+ 0x49, 0x73, 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 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, 0x16, 0x0a, 0x06, 0x73, 0x74,
|
|
|
+ 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74,
|
|
|
+ 0x75, 0x73, 0x32, 0xd6, 0x04, 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, 0x12, 0x2b, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65,
|
|
|
+ 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52,
|
|
|
+ 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
|
|
|
+ 0x12, 0x33, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
|
|
|
+ 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
|
|
|
+ 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
|
|
|
+ 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x34, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73,
|
|
|
+ 0x45, 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x55, 0x73,
|
|
|
+ 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x73, 0x45,
|
|
|
+ 0x6e, 0x74, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e,
|
|
|
+ 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
}
|
|
|
|
|
|
var (
|
|
@@ -2928,7 +3261,7 @@ func file_userCenter_proto_rawDescGZIP() []byte {
|
|
|
return file_userCenter_proto_rawDescData
|
|
|
}
|
|
|
|
|
|
-var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 34)
|
|
|
+var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 38)
|
|
|
var file_userCenter_proto_goTypes = []interface{}{
|
|
|
(*EntAuthReq)(nil), // 0: EntAuthReq
|
|
|
(*EntAuthResp)(nil), // 1: EntAuthResp
|
|
@@ -2960,54 +3293,65 @@ var file_userCenter_proto_goTypes = []interface{}{
|
|
|
(*EntUserReq)(nil), // 27: EntUserReq
|
|
|
(*EntUserResp)(nil), // 28: EntUserResp
|
|
|
(*EntUser)(nil), // 29: EntUser
|
|
|
- (*ExamineResp_ExamineData)(nil), // 30: ExamineResp.ExamineData
|
|
|
- (*CheckEntRespCheckData)(nil), // 31: CheckEntResp.checkData
|
|
|
- (*GetStatusByCodeResp_GetStatusByCode)(nil), // 32: GetStatusByCodeResp.GetStatusByCode
|
|
|
- nil, // 33: Subscribe.AreaEntry
|
|
|
+ (*EntUserListReq)(nil), // 30: EntUserListReq
|
|
|
+ (*EntUserListResp)(nil), // 31: EntUserListResp
|
|
|
+ (*EntUserListData)(nil), // 32: EntUserListData
|
|
|
+ (*CheckIsEntAdminResp)(nil), // 33: CheckIsEntAdminResp
|
|
|
+ (*ExamineResp_ExamineData)(nil), // 34: ExamineResp.ExamineData
|
|
|
+ (*CheckEntRespCheckData)(nil), // 35: CheckEntResp.checkData
|
|
|
+ (*GetStatusByCodeResp_GetStatusByCode)(nil), // 36: GetStatusByCodeResp.GetStatusByCode
|
|
|
+ nil, // 37: Subscribe.AreaEntry
|
|
|
}
|
|
|
var file_userCenter_proto_depIdxs = []int32{
|
|
|
2, // 0: EntAuthResp.data:type_name -> EntAuthData
|
|
|
- 30, // 1: ExamineResp.data:type_name -> ExamineResp.ExamineData
|
|
|
+ 34, // 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
|
|
|
- 31, // 6: CheckEntResp.data:type_name -> CheckEntResp.checkData
|
|
|
+ 35, // 6: CheckEntResp.data:type_name -> CheckEntResp.checkData
|
|
|
16, // 7: EntInfoResp.data:type_name -> EntInfoData
|
|
|
- 32, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCodeResp.GetStatusByCode
|
|
|
+ 36, // 8: GetStatusByCodeResp.data:type_name -> GetStatusByCodeResp.GetStatusByCode
|
|
|
22, // 9: UserInfo.data:type_name -> Subscribe
|
|
|
- 33, // 10: Subscribe.area:type_name -> Subscribe.AreaEntry
|
|
|
+ 37, // 10: Subscribe.area:type_name -> Subscribe.AreaEntry
|
|
|
24, // 11: Subscribe.items:type_name -> Items
|
|
|
25, // 12: Items.a_key:type_name -> Keys
|
|
|
29, // 13: EntUserResp.data:type_name -> EntUser
|
|
|
- 23, // 14: Subscribe.AreaEntry.value:type_name -> List
|
|
|
- 0, // 15: UserCenter.EntAuth:input_type -> EntAuthReq
|
|
|
- 3, // 16: UserCenter.EntExamine:input_type -> ExamineReq
|
|
|
- 5, // 17: UserCenter.EntList:input_type -> EntListReq
|
|
|
- 9, // 18: UserCenter.ExamineList:input_type -> ExamineListReq
|
|
|
- 13, // 19: UserCenter.CheckEnt:input_type -> CheckEntReq
|
|
|
- 13, // 20: UserCenter.EntInfo:input_type -> CheckEntReq
|
|
|
- 17, // 21: UserCenter.EntUpdate:input_type -> EntUpdateReq
|
|
|
- 18, // 22: UserCenter.ExamineInfo:input_type -> CheckExamineReq
|
|
|
- 19, // 23: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
|
|
|
- 26, // 24: UserCenter.GetUserInfo:input_type -> UserReq
|
|
|
- 27, // 25: UserCenter.GetEntUserInfo:input_type -> EntUserReq
|
|
|
- 1, // 26: UserCenter.EntAuth:output_type -> EntAuthResp
|
|
|
- 4, // 27: UserCenter.EntExamine:output_type -> ExamineResp
|
|
|
- 6, // 28: UserCenter.EntList:output_type -> EntListResp
|
|
|
- 10, // 29: UserCenter.ExamineList:output_type -> ExamineListResp
|
|
|
- 14, // 30: UserCenter.CheckEnt:output_type -> CheckEntResp
|
|
|
- 15, // 31: UserCenter.EntInfo:output_type -> EntInfoResp
|
|
|
- 4, // 32: UserCenter.EntUpdate:output_type -> ExamineResp
|
|
|
- 15, // 33: UserCenter.ExamineInfo:output_type -> EntInfoResp
|
|
|
- 20, // 34: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
|
|
|
- 21, // 35: UserCenter.GetUserInfo:output_type -> UserInfo
|
|
|
- 28, // 36: UserCenter.GetEntUserInfo:output_type -> EntUserResp
|
|
|
- 26, // [26:37] is the sub-list for method output_type
|
|
|
- 15, // [15:26] is the sub-list for method input_type
|
|
|
- 15, // [15:15] is the sub-list for extension type_name
|
|
|
- 15, // [15:15] is the sub-list for extension extendee
|
|
|
- 0, // [0:15] is the sub-list for field type_name
|
|
|
+ 32, // 14: EntUserListResp.data:type_name -> EntUserListData
|
|
|
+ 29, // 15: EntUserListData.entUserList:type_name -> EntUser
|
|
|
+ 32, // 16: EntUserListData.deptList:type_name -> EntUserListData
|
|
|
+ 23, // 17: Subscribe.AreaEntry.value:type_name -> List
|
|
|
+ 0, // 18: UserCenter.EntAuth:input_type -> EntAuthReq
|
|
|
+ 3, // 19: UserCenter.EntExamine:input_type -> ExamineReq
|
|
|
+ 5, // 20: UserCenter.EntList:input_type -> EntListReq
|
|
|
+ 9, // 21: UserCenter.ExamineList:input_type -> ExamineListReq
|
|
|
+ 13, // 22: UserCenter.CheckEnt:input_type -> CheckEntReq
|
|
|
+ 13, // 23: UserCenter.EntInfo:input_type -> CheckEntReq
|
|
|
+ 17, // 24: UserCenter.EntUpdate:input_type -> EntUpdateReq
|
|
|
+ 18, // 25: UserCenter.ExamineInfo:input_type -> CheckExamineReq
|
|
|
+ 19, // 26: UserCenter.GetStatusByCode:input_type -> GetStatusByCodeReq
|
|
|
+ 26, // 27: UserCenter.GetUserInfo:input_type -> UserReq
|
|
|
+ 27, // 28: UserCenter.GetEntUserInfo:input_type -> EntUserReq
|
|
|
+ 30, // 29: UserCenter.GetEntUserList:input_type -> EntUserListReq
|
|
|
+ 27, // 30: UserCenter.CheckIsEntAdmin:input_type -> EntUserReq
|
|
|
+ 1, // 31: UserCenter.EntAuth:output_type -> EntAuthResp
|
|
|
+ 4, // 32: UserCenter.EntExamine:output_type -> ExamineResp
|
|
|
+ 6, // 33: UserCenter.EntList:output_type -> EntListResp
|
|
|
+ 10, // 34: UserCenter.ExamineList:output_type -> ExamineListResp
|
|
|
+ 14, // 35: UserCenter.CheckEnt:output_type -> CheckEntResp
|
|
|
+ 15, // 36: UserCenter.EntInfo:output_type -> EntInfoResp
|
|
|
+ 4, // 37: UserCenter.EntUpdate:output_type -> ExamineResp
|
|
|
+ 15, // 38: UserCenter.ExamineInfo:output_type -> EntInfoResp
|
|
|
+ 20, // 39: UserCenter.GetStatusByCode:output_type -> GetStatusByCodeResp
|
|
|
+ 21, // 40: UserCenter.GetUserInfo:output_type -> UserInfo
|
|
|
+ 28, // 41: UserCenter.GetEntUserInfo:output_type -> EntUserResp
|
|
|
+ 31, // 42: UserCenter.GetEntUserList:output_type -> EntUserListResp
|
|
|
+ 33, // 43: UserCenter.CheckIsEntAdmin:output_type -> CheckIsEntAdminResp
|
|
|
+ 31, // [31:44] is the sub-list for method output_type
|
|
|
+ 18, // [18:31] is the sub-list for method input_type
|
|
|
+ 18, // [18:18] is the sub-list for extension type_name
|
|
|
+ 18, // [18:18] is the sub-list for extension extendee
|
|
|
+ 0, // [0:18] is the sub-list for field type_name
|
|
|
}
|
|
|
|
|
|
func init() { file_userCenter_proto_init() }
|
|
@@ -3377,7 +3721,7 @@ func file_userCenter_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_userCenter_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*ExamineResp_ExamineData); i {
|
|
|
+ switch v := v.(*EntUserListReq); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
@@ -3389,7 +3733,7 @@ func file_userCenter_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_userCenter_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*CheckEntRespCheckData); i {
|
|
|
+ switch v := v.(*EntUserListResp); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
@@ -3401,6 +3745,54 @@ func file_userCenter_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_userCenter_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*EntUserListData); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_userCenter_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*CheckIsEntAdminResp); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_userCenter_proto_msgTypes[34].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[35].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[36].Exporter = func(v interface{}, i int) interface{} {
|
|
|
switch v := v.(*GetStatusByCodeResp_GetStatusByCode); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
@@ -3419,7 +3811,7 @@ func file_userCenter_proto_init() {
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: file_userCenter_proto_rawDesc,
|
|
|
NumEnums: 0,
|
|
|
- NumMessages: 34,
|
|
|
+ NumMessages: 38,
|
|
|
NumExtensions: 0,
|
|
|
NumServices: 1,
|
|
|
},
|