代码拉取完成,页面将自动刷新
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.28.1
// protoc v4.25.1
// source: jmash/rbac/protobuf/rbac_user_message.proto
package rbac
import (
basic "gitee.com/jmash/jmash/trunk/jmash-core-gateway/src/jmash/basic"
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
// 用户状态
type UserStatus int32
const (
// 启用
UserStatus_enabled UserStatus = 0
// 禁用
UserStatus_disabled UserStatus = 1
// 锁定
UserStatus_locked UserStatus = 2
)
// Enum value maps for UserStatus.
var (
UserStatus_name = map[int32]string{
0: "enabled",
1: "disabled",
2: "locked",
}
UserStatus_value = map[string]int32{
"enabled": 0,
"disabled": 1,
"locked": 2,
}
)
func (x UserStatus) Enum() *UserStatus {
p := new(UserStatus)
*p = x
return p
}
func (x UserStatus) String() string {
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
}
func (UserStatus) Descriptor() protoreflect.EnumDescriptor {
return file_jmash_rbac_protobuf_rbac_user_message_proto_enumTypes[0].Descriptor()
}
func (UserStatus) Type() protoreflect.EnumType {
return &file_jmash_rbac_protobuf_rbac_user_message_proto_enumTypes[0]
}
func (x UserStatus) Number() protoreflect.EnumNumber {
return protoreflect.EnumNumber(x)
}
// Deprecated: Use UserStatus.Descriptor instead.
func (UserStatus) EnumDescriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{0}
}
// 用户查询
type UserReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 当前页码
CurPage int32 `protobuf:"varint,2,opt,name=cur_page,json=curPage,proto3" json:"cur_page,omitempty"`
// 页尺寸
PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// 排序名称
OrderName string `protobuf:"bytes,4,opt,name=order_name,json=orderName,proto3" json:"order_name,omitempty"`
// 是否升序排序
OrderAsc bool `protobuf:"varint,5,opt,name=order_asc,json=orderAsc,proto3" json:"order_asc,omitempty"`
// 是否显示已删除数据
ShowDeleted bool `protobuf:"varint,6,opt,name=show_deleted,json=showDeleted,proto3" json:"show_deleted,omitempty"`
// 创建人
CreateBy string `protobuf:"bytes,7,opt,name=create_by,json=createBy,proto3" json:"create_by,omitempty"`
// 部门ID
DeptId string `protobuf:"bytes,8,opt,name=dept_id,json=deptId,proto3" json:"dept_id,omitempty"`
// 用户名
LoginName string `protobuf:"bytes,9,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty"`
// 是否包含用户状态
HasUserStatus bool `protobuf:"varint,10,opt,name=has_user_status,json=hasUserStatus,proto3" json:"has_user_status,omitempty"`
// 状态
UserStatus UserStatus `protobuf:"varint,11,opt,name=user_status,json=userStatus,proto3,enum=jmash.rbac.UserStatus" json:"user_status,omitempty"`
// 角色编码
RoleCode string `protobuf:"bytes,12,opt,name=role_code,json=roleCode,proto3" json:"role_code,omitempty"`
// 目录ID
DirectoryId string `protobuf:"bytes,13,opt,name=directory_id,json=directoryId,proto3" json:"directory_id,omitempty"`
// 用户ID
UserId []string `protobuf:"bytes,14,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}
func (x *UserReq) Reset() {
*x = UserReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[0]
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_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserReq.ProtoReflect.Descriptor instead.
func (*UserReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{0}
}
func (x *UserReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserReq) GetCurPage() int32 {
if x != nil {
return x.CurPage
}
return 0
}
func (x *UserReq) GetPageSize() int32 {
if x != nil {
return x.PageSize
}
return 0
}
func (x *UserReq) GetOrderName() string {
if x != nil {
return x.OrderName
}
return ""
}
func (x *UserReq) GetOrderAsc() bool {
if x != nil {
return x.OrderAsc
}
return false
}
func (x *UserReq) GetShowDeleted() bool {
if x != nil {
return x.ShowDeleted
}
return false
}
func (x *UserReq) GetCreateBy() string {
if x != nil {
return x.CreateBy
}
return ""
}
func (x *UserReq) GetDeptId() string {
if x != nil {
return x.DeptId
}
return ""
}
func (x *UserReq) GetLoginName() string {
if x != nil {
return x.LoginName
}
return ""
}
func (x *UserReq) GetHasUserStatus() bool {
if x != nil {
return x.HasUserStatus
}
return false
}
func (x *UserReq) GetUserStatus() UserStatus {
if x != nil {
return x.UserStatus
}
return UserStatus_enabled
}
func (x *UserReq) GetRoleCode() string {
if x != nil {
return x.RoleCode
}
return ""
}
func (x *UserReq) GetDirectoryId() string {
if x != nil {
return x.DirectoryId
}
return ""
}
func (x *UserReq) GetUserId() []string {
if x != nil {
return x.UserId
}
return nil
}
// 用户实体
type UserModel struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 账号
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
// 目录ID
DirectoryId string `protobuf:"bytes,2,opt,name=directory_id,json=directoryId,proto3" json:"directory_id,omitempty"`
// 用户名/登录名
LoginName string `protobuf:"bytes,3,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty"`
// 手机号
MobilePhone string `protobuf:"bytes,4,opt,name=mobile_phone,json=mobilePhone,proto3" json:"mobile_phone,omitempty"`
// 手机号脱敏
MobilePhoneIns string `protobuf:"bytes,27,opt,name=mobile_phone_ins,json=mobilePhoneIns,proto3" json:"mobile_phone_ins,omitempty"`
// 电子邮件
Email_ string `protobuf:"bytes,5,opt,name=email_,json=email,proto3" json:"email_,omitempty"`
// 姓名
RealName string `protobuf:"bytes,6,opt,name=real_name,json=realName,proto3" json:"real_name,omitempty"`
// 昵称
NickName string `protobuf:"bytes,7,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
// 头像
Avatar_ string `protobuf:"bytes,8,opt,name=avatar_,json=avatar,proto3" json:"avatar_,omitempty"`
// 出生日期
BirthDate string `protobuf:"bytes,9,opt,name=birth_date,json=birthDate,proto3" json:"birth_date,omitempty"`
// 性别
Gender_ basic.Gender `protobuf:"varint,10,opt,name=gender_,json=gender,proto3,enum=jmash.protobuf.Gender" json:"gender_,omitempty"`
// 手机通过审核
PhoneApproved bool `protobuf:"varint,11,opt,name=phone_approved,json=phoneApproved,proto3" json:"phone_approved,omitempty"`
// 邮箱通过审核
EmailApproved bool `protobuf:"varint,12,opt,name=email_approved,json=emailApproved,proto3" json:"email_approved,omitempty"`
// 用户通过审核
Approved_ bool `protobuf:"varint,13,opt,name=approved_,json=approved,proto3" json:"approved_,omitempty"`
// 用户状态
Status_ UserStatus `protobuf:"varint,14,opt,name=status_,json=status,proto3,enum=jmash.rbac.UserStatus" json:"status_,omitempty"`
// 上次被锁/禁用时间
LastLockoutTime *timestamppb.Timestamp `protobuf:"bytes,15,opt,name=last_lockout_time,json=lastLockoutTime,proto3" json:"last_lockout_time,omitempty"`
// 登录失败时间
FailedTime *timestamppb.Timestamp `protobuf:"bytes,16,opt,name=failed_time,json=failedTime,proto3" json:"failed_time,omitempty"`
// 登录失败次数
FailedCount int32 `protobuf:"varint,17,opt,name=failed_count,json=failedCount,proto3" json:"failed_count,omitempty"`
// 上次登录时间
LastLoginTime *timestamppb.Timestamp `protobuf:"bytes,18,opt,name=last_login_time,json=lastLoginTime,proto3" json:"last_login_time,omitempty"`
// 乐观锁
Version_ int32 `protobuf:"varint,19,opt,name=version_,json=version,proto3" json:"version_,omitempty"`
// 创建人
CreateBy string `protobuf:"bytes,20,opt,name=create_by,json=createBy,proto3" json:"create_by,omitempty"`
// 创建时间
CreateTime *timestamppb.Timestamp `protobuf:"bytes,21,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
// 更新人
UpdateBy string `protobuf:"bytes,22,opt,name=update_by,json=updateBy,proto3" json:"update_by,omitempty"`
// 更新时间
UpdateTime *timestamppb.Timestamp `protobuf:"bytes,23,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
// 删除人
DeleteBy string `protobuf:"bytes,24,opt,name=delete_by,json=deleteBy,proto3" json:"delete_by,omitempty"`
// 删除状态
Deleted_ bool `protobuf:"varint,25,opt,name=deleted_,json=deleted,proto3" json:"deleted_,omitempty"`
// 删除时间
DeleteTime *timestamppb.Timestamp `protobuf:"bytes,26,opt,name=delete_time,json=deleteTime,proto3" json:"delete_time,omitempty"`
// 用户角色
RoleIds []string `protobuf:"bytes,28,rep,name=role_ids,json=roleIds,proto3" json:"role_ids,omitempty"`
// 用户职务岗位
UserJobs []*UserJobs `protobuf:"bytes,29,rep,name=user_jobs,json=userJobs,proto3" json:"user_jobs,omitempty"`
// 是否运行.
RunAs bool `protobuf:"varint,30,opt,name=run_as,json=runAs,proto3" json:"run_as,omitempty"`
// 主用户身份.
PrimaryUserId string `protobuf:"bytes,31,opt,name=primary_user_id,json=primaryUserId,proto3" json:"primary_user_id,omitempty"`
// 电子邮件脱敏
EmailIns string `protobuf:"bytes,32,opt,name=email_ins,json=emailIns,proto3" json:"email_ins,omitempty"`
// 姓名脱敏
RealNameIns string `protobuf:"bytes,33,opt,name=real_name_ins,json=realNameIns,proto3" json:"real_name_ins,omitempty"`
}
func (x *UserModel) Reset() {
*x = UserModel{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserModel) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserModel) ProtoMessage() {}
func (x *UserModel) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserModel.ProtoReflect.Descriptor instead.
func (*UserModel) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{1}
}
func (x *UserModel) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
func (x *UserModel) GetDirectoryId() string {
if x != nil {
return x.DirectoryId
}
return ""
}
func (x *UserModel) GetLoginName() string {
if x != nil {
return x.LoginName
}
return ""
}
func (x *UserModel) GetMobilePhone() string {
if x != nil {
return x.MobilePhone
}
return ""
}
func (x *UserModel) GetMobilePhoneIns() string {
if x != nil {
return x.MobilePhoneIns
}
return ""
}
func (x *UserModel) GetEmail_() string {
if x != nil {
return x.Email_
}
return ""
}
func (x *UserModel) GetRealName() string {
if x != nil {
return x.RealName
}
return ""
}
func (x *UserModel) GetNickName() string {
if x != nil {
return x.NickName
}
return ""
}
func (x *UserModel) GetAvatar_() string {
if x != nil {
return x.Avatar_
}
return ""
}
func (x *UserModel) GetBirthDate() string {
if x != nil {
return x.BirthDate
}
return ""
}
func (x *UserModel) GetGender_() basic.Gender {
if x != nil {
return x.Gender_
}
return basic.Gender(0)
}
func (x *UserModel) GetPhoneApproved() bool {
if x != nil {
return x.PhoneApproved
}
return false
}
func (x *UserModel) GetEmailApproved() bool {
if x != nil {
return x.EmailApproved
}
return false
}
func (x *UserModel) GetApproved_() bool {
if x != nil {
return x.Approved_
}
return false
}
func (x *UserModel) GetStatus_() UserStatus {
if x != nil {
return x.Status_
}
return UserStatus_enabled
}
func (x *UserModel) GetLastLockoutTime() *timestamppb.Timestamp {
if x != nil {
return x.LastLockoutTime
}
return nil
}
func (x *UserModel) GetFailedTime() *timestamppb.Timestamp {
if x != nil {
return x.FailedTime
}
return nil
}
func (x *UserModel) GetFailedCount() int32 {
if x != nil {
return x.FailedCount
}
return 0
}
func (x *UserModel) GetLastLoginTime() *timestamppb.Timestamp {
if x != nil {
return x.LastLoginTime
}
return nil
}
func (x *UserModel) GetVersion_() int32 {
if x != nil {
return x.Version_
}
return 0
}
func (x *UserModel) GetCreateBy() string {
if x != nil {
return x.CreateBy
}
return ""
}
func (x *UserModel) GetCreateTime() *timestamppb.Timestamp {
if x != nil {
return x.CreateTime
}
return nil
}
func (x *UserModel) GetUpdateBy() string {
if x != nil {
return x.UpdateBy
}
return ""
}
func (x *UserModel) GetUpdateTime() *timestamppb.Timestamp {
if x != nil {
return x.UpdateTime
}
return nil
}
func (x *UserModel) GetDeleteBy() string {
if x != nil {
return x.DeleteBy
}
return ""
}
func (x *UserModel) GetDeleted_() bool {
if x != nil {
return x.Deleted_
}
return false
}
func (x *UserModel) GetDeleteTime() *timestamppb.Timestamp {
if x != nil {
return x.DeleteTime
}
return nil
}
func (x *UserModel) GetRoleIds() []string {
if x != nil {
return x.RoleIds
}
return nil
}
func (x *UserModel) GetUserJobs() []*UserJobs {
if x != nil {
return x.UserJobs
}
return nil
}
func (x *UserModel) GetRunAs() bool {
if x != nil {
return x.RunAs
}
return false
}
func (x *UserModel) GetPrimaryUserId() string {
if x != nil {
return x.PrimaryUserId
}
return ""
}
func (x *UserModel) GetEmailIns() string {
if x != nil {
return x.EmailIns
}
return ""
}
func (x *UserModel) GetRealNameIns() string {
if x != nil {
return x.RealNameIns
}
return ""
}
// 用户列表
type UserList struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 当前页内容
Results []*UserModel `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
}
func (x *UserList) Reset() {
*x = UserList{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserList) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserList) ProtoMessage() {}
func (x *UserList) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserList.ProtoReflect.Descriptor instead.
func (*UserList) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{2}
}
func (x *UserList) GetResults() []*UserModel {
if x != nil {
return x.Results
}
return nil
}
// 用户分页
type UserPage struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 当前页内容
Results []*UserModel `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
// 当前页码
CurPage int32 `protobuf:"varint,2,opt,name=cur_page,json=curPage,proto3" json:"cur_page,omitempty"`
// 页尺寸
PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// 总记录数
TotalSize int32 `protobuf:"varint,4,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"`
// 本页小计
SubTotalDto *UserModelTotal `protobuf:"bytes,5,opt,name=sub_total_dto,json=subTotalDto,proto3" json:"sub_total_dto,omitempty"`
// 合计
TotalDto *UserModelTotal `protobuf:"bytes,6,opt,name=total_dto,json=totalDto,proto3" json:"total_dto,omitempty"`
}
func (x *UserPage) Reset() {
*x = UserPage{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserPage) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserPage) ProtoMessage() {}
func (x *UserPage) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserPage.ProtoReflect.Descriptor instead.
func (*UserPage) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{3}
}
func (x *UserPage) GetResults() []*UserModel {
if x != nil {
return x.Results
}
return nil
}
func (x *UserPage) GetCurPage() int32 {
if x != nil {
return x.CurPage
}
return 0
}
func (x *UserPage) GetPageSize() int32 {
if x != nil {
return x.PageSize
}
return 0
}
func (x *UserPage) GetTotalSize() int32 {
if x != nil {
return x.TotalSize
}
return 0
}
func (x *UserPage) GetSubTotalDto() *UserModelTotal {
if x != nil {
return x.SubTotalDto
}
return nil
}
func (x *UserPage) GetTotalDto() *UserModelTotal {
if x != nil {
return x.TotalDto
}
return nil
}
// 合计
type UserModelTotal struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 总记录数
TotalSize int32 `protobuf:"varint,1,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"`
}
func (x *UserModelTotal) Reset() {
*x = UserModelTotal{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserModelTotal) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserModelTotal) ProtoMessage() {}
func (x *UserModelTotal) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserModelTotal.ProtoReflect.Descriptor instead.
func (*UserModelTotal) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{4}
}
func (x *UserModelTotal) GetTotalSize() int32 {
if x != nil {
return x.TotalSize
}
return 0
}
// 用户Key.
type UserKey struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用户ID.
UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}
func (x *UserKey) Reset() {
*x = UserKey{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserKey) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserKey) ProtoMessage() {}
func (x *UserKey) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserKey.ProtoReflect.Descriptor instead.
func (*UserKey) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{5}
}
func (x *UserKey) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserKey) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
// 用户List
type UserKeyList struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
UserId []string `protobuf:"bytes,2,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}
func (x *UserKeyList) Reset() {
*x = UserKeyList{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserKeyList) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserKeyList) ProtoMessage() {}
func (x *UserKeyList) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserKeyList.ProtoReflect.Descriptor instead.
func (*UserKeyList) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{6}
}
func (x *UserKeyList) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserKeyList) GetUserId() []string {
if x != nil {
return x.UserId
}
return nil
}
// 用户新增实体
type UserCreateReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用于检测重复请求的唯一字符串ID
RequestId string `protobuf:"bytes,2,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
// 如果为true,则表示给定的请求仅需要被检验,而不是被执行
ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
// 目录ID
DirectoryId string `protobuf:"bytes,5,opt,name=directory_id,json=directoryId,proto3" json:"directory_id,omitempty"`
// 用户名/登录名
LoginName string `protobuf:"bytes,6,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty"`
// 手机号
MobilePhone string `protobuf:"bytes,7,opt,name=mobile_phone,json=mobilePhone,proto3" json:"mobile_phone,omitempty"`
// 电子邮件
Email_ string `protobuf:"bytes,8,opt,name=email_,json=email,proto3" json:"email_,omitempty"`
// 姓名
RealName string `protobuf:"bytes,9,opt,name=real_name,json=realName,proto3" json:"real_name,omitempty"`
// 昵称
NickName string `protobuf:"bytes,10,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
// 头像
Avatar_ string `protobuf:"bytes,11,opt,name=avatar_,json=avatar,proto3" json:"avatar_,omitempty"`
// 出生日期
BirthDate string `protobuf:"bytes,12,opt,name=birth_date,json=birthDate,proto3" json:"birth_date,omitempty"`
// 性别
Gender_ basic.Gender `protobuf:"varint,13,opt,name=gender_,json=gender,proto3,enum=jmash.protobuf.Gender" json:"gender_,omitempty"`
// 用户通过审核
Approved_ bool `protobuf:"varint,16,opt,name=approved_,json=approved,proto3" json:"approved_,omitempty"`
// 用户状态
Status_ UserStatus `protobuf:"varint,17,opt,name=status_,json=status,proto3,enum=jmash.rbac.UserStatus" json:"status_,omitempty"`
// 密钥
Pwd string `protobuf:"bytes,18,opt,name=pwd,proto3" json:"pwd,omitempty"`
// 重复密钥
RepeatPwd string `protobuf:"bytes,19,opt,name=repeat_pwd,json=repeatPwd,proto3" json:"repeat_pwd,omitempty"`
// 用户角色
RoleIds []string `protobuf:"bytes,20,rep,name=role_ids,json=roleIds,proto3" json:"role_ids,omitempty"`
// 所属部门岗位
UserJobs []*UserJobs `protobuf:"bytes,21,rep,name=user_jobs,json=userJobs,proto3" json:"user_jobs,omitempty"`
}
func (x *UserCreateReq) Reset() {
*x = UserCreateReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserCreateReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserCreateReq) ProtoMessage() {}
func (x *UserCreateReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserCreateReq.ProtoReflect.Descriptor instead.
func (*UserCreateReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{7}
}
func (x *UserCreateReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserCreateReq) GetRequestId() string {
if x != nil {
return x.RequestId
}
return ""
}
func (x *UserCreateReq) GetValidateOnly() bool {
if x != nil {
return x.ValidateOnly
}
return false
}
func (x *UserCreateReq) GetDirectoryId() string {
if x != nil {
return x.DirectoryId
}
return ""
}
func (x *UserCreateReq) GetLoginName() string {
if x != nil {
return x.LoginName
}
return ""
}
func (x *UserCreateReq) GetMobilePhone() string {
if x != nil {
return x.MobilePhone
}
return ""
}
func (x *UserCreateReq) GetEmail_() string {
if x != nil {
return x.Email_
}
return ""
}
func (x *UserCreateReq) GetRealName() string {
if x != nil {
return x.RealName
}
return ""
}
func (x *UserCreateReq) GetNickName() string {
if x != nil {
return x.NickName
}
return ""
}
func (x *UserCreateReq) GetAvatar_() string {
if x != nil {
return x.Avatar_
}
return ""
}
func (x *UserCreateReq) GetBirthDate() string {
if x != nil {
return x.BirthDate
}
return ""
}
func (x *UserCreateReq) GetGender_() basic.Gender {
if x != nil {
return x.Gender_
}
return basic.Gender(0)
}
func (x *UserCreateReq) GetApproved_() bool {
if x != nil {
return x.Approved_
}
return false
}
func (x *UserCreateReq) GetStatus_() UserStatus {
if x != nil {
return x.Status_
}
return UserStatus_enabled
}
func (x *UserCreateReq) GetPwd() string {
if x != nil {
return x.Pwd
}
return ""
}
func (x *UserCreateReq) GetRepeatPwd() string {
if x != nil {
return x.RepeatPwd
}
return ""
}
func (x *UserCreateReq) GetRoleIds() []string {
if x != nil {
return x.RoleIds
}
return nil
}
func (x *UserCreateReq) GetUserJobs() []*UserJobs {
if x != nil {
return x.UserJobs
}
return nil
}
// 用户修改实体
type UserUpdateReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用于检测重复请求的唯一字符串ID
RequestId string `protobuf:"bytes,2,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
// 如果为true,则表示给定的请求仅需要被检验,而不是被执行
ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
// 更新字段掩码.
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,4,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
// 账号
UserId string `protobuf:"bytes,5,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
// 目录ID
DirectoryId string `protobuf:"bytes,6,opt,name=directory_id,json=directoryId,proto3" json:"directory_id,omitempty"`
// 用户名/登录名
LoginName string `protobuf:"bytes,7,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty"`
// 手机号
MobilePhone string `protobuf:"bytes,8,opt,name=mobile_phone,json=mobilePhone,proto3" json:"mobile_phone,omitempty"`
// 电子邮件
Email_ string `protobuf:"bytes,9,opt,name=email_,json=email,proto3" json:"email_,omitempty"`
// 姓名
RealName string `protobuf:"bytes,10,opt,name=real_name,json=realName,proto3" json:"real_name,omitempty"`
// 昵称
NickName string `protobuf:"bytes,11,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
// 头像
Avatar_ string `protobuf:"bytes,12,opt,name=avatar_,json=avatar,proto3" json:"avatar_,omitempty"`
// 出生日期
BirthDate string `protobuf:"bytes,13,opt,name=birth_date,json=birthDate,proto3" json:"birth_date,omitempty"`
// 性别
Gender_ basic.Gender `protobuf:"varint,14,opt,name=gender_,json=gender,proto3,enum=jmash.protobuf.Gender" json:"gender_,omitempty"`
// 手机通过审核
PhoneApproved bool `protobuf:"varint,15,opt,name=phone_approved,json=phoneApproved,proto3" json:"phone_approved,omitempty"`
// 邮箱通过审核
EmailApproved bool `protobuf:"varint,16,opt,name=email_approved,json=emailApproved,proto3" json:"email_approved,omitempty"`
// 用户通过审核
Approved_ bool `protobuf:"varint,17,opt,name=approved_,json=approved,proto3" json:"approved_,omitempty"`
// 用户状态
Status_ UserStatus `protobuf:"varint,18,opt,name=status_,json=status,proto3,enum=jmash.rbac.UserStatus" json:"status_,omitempty"`
// 用户角色
RoleIds []string `protobuf:"bytes,20,rep,name=role_ids,json=roleIds,proto3" json:"role_ids,omitempty"`
// 所属部门岗位
UserJobs []*UserJobs `protobuf:"bytes,21,rep,name=user_jobs,json=userJobs,proto3" json:"user_jobs,omitempty"`
}
func (x *UserUpdateReq) Reset() {
*x = UserUpdateReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserUpdateReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserUpdateReq) ProtoMessage() {}
func (x *UserUpdateReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserUpdateReq.ProtoReflect.Descriptor instead.
func (*UserUpdateReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{8}
}
func (x *UserUpdateReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserUpdateReq) GetRequestId() string {
if x != nil {
return x.RequestId
}
return ""
}
func (x *UserUpdateReq) GetValidateOnly() bool {
if x != nil {
return x.ValidateOnly
}
return false
}
func (x *UserUpdateReq) GetUpdateMask() *fieldmaskpb.FieldMask {
if x != nil {
return x.UpdateMask
}
return nil
}
func (x *UserUpdateReq) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
func (x *UserUpdateReq) GetDirectoryId() string {
if x != nil {
return x.DirectoryId
}
return ""
}
func (x *UserUpdateReq) GetLoginName() string {
if x != nil {
return x.LoginName
}
return ""
}
func (x *UserUpdateReq) GetMobilePhone() string {
if x != nil {
return x.MobilePhone
}
return ""
}
func (x *UserUpdateReq) GetEmail_() string {
if x != nil {
return x.Email_
}
return ""
}
func (x *UserUpdateReq) GetRealName() string {
if x != nil {
return x.RealName
}
return ""
}
func (x *UserUpdateReq) GetNickName() string {
if x != nil {
return x.NickName
}
return ""
}
func (x *UserUpdateReq) GetAvatar_() string {
if x != nil {
return x.Avatar_
}
return ""
}
func (x *UserUpdateReq) GetBirthDate() string {
if x != nil {
return x.BirthDate
}
return ""
}
func (x *UserUpdateReq) GetGender_() basic.Gender {
if x != nil {
return x.Gender_
}
return basic.Gender(0)
}
func (x *UserUpdateReq) GetPhoneApproved() bool {
if x != nil {
return x.PhoneApproved
}
return false
}
func (x *UserUpdateReq) GetEmailApproved() bool {
if x != nil {
return x.EmailApproved
}
return false
}
func (x *UserUpdateReq) GetApproved_() bool {
if x != nil {
return x.Approved_
}
return false
}
func (x *UserUpdateReq) GetStatus_() UserStatus {
if x != nil {
return x.Status_
}
return UserStatus_enabled
}
func (x *UserUpdateReq) GetRoleIds() []string {
if x != nil {
return x.RoleIds
}
return nil
}
func (x *UserUpdateReq) GetUserJobs() []*UserJobs {
if x != nil {
return x.UserJobs
}
return nil
}
// 用户导出请求
type UserExportReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 标题
Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
// 字段列表
TableHeads []*basic.TableHead `protobuf:"bytes,3,rep,name=table_heads,json=tableHeads,proto3" json:"table_heads,omitempty"`
// 显示文件名
FileName string `protobuf:"bytes,4,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
// 筛选条件
Req *UserReq `protobuf:"bytes,5,opt,name=req,proto3" json:"req,omitempty"`
}
func (x *UserExportReq) Reset() {
*x = UserExportReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserExportReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserExportReq) ProtoMessage() {}
func (x *UserExportReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserExportReq.ProtoReflect.Descriptor instead.
func (*UserExportReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{9}
}
func (x *UserExportReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserExportReq) GetTitle() string {
if x != nil {
return x.Title
}
return ""
}
func (x *UserExportReq) GetTableHeads() []*basic.TableHead {
if x != nil {
return x.TableHeads
}
return nil
}
func (x *UserExportReq) GetFileName() string {
if x != nil {
return x.FileName
}
return ""
}
func (x *UserExportReq) GetReq() *UserReq {
if x != nil {
return x.Req
}
return nil
}
// 用户导入请求
type UserImportReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用于检测重复请求的唯一字符串ID
RequestId string `protobuf:"bytes,2,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
// 文件名
FileNames string `protobuf:"bytes,3,opt,name=file_names,json=fileNames,proto3" json:"file_names,omitempty"`
// 是否新增标识
AddFlag bool `protobuf:"varint,4,opt,name=add_flag,json=addFlag,proto3" json:"add_flag,omitempty"`
// 更新字段掩码.
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,5,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
}
func (x *UserImportReq) Reset() {
*x = UserImportReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserImportReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserImportReq) ProtoMessage() {}
func (x *UserImportReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use UserImportReq.ProtoReflect.Descriptor instead.
func (*UserImportReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{10}
}
func (x *UserImportReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserImportReq) GetRequestId() string {
if x != nil {
return x.RequestId
}
return ""
}
func (x *UserImportReq) GetFileNames() string {
if x != nil {
return x.FileNames
}
return ""
}
func (x *UserImportReq) GetAddFlag() bool {
if x != nil {
return x.AddFlag
}
return false
}
func (x *UserImportReq) GetUpdateMask() *fieldmaskpb.FieldMask {
if x != nil {
return x.UpdateMask
}
return nil
}
// 校验用户信息(用户名、手机号、邮箱唯一性)
type VerifyUserReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用户Id
UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
// 用户名、手机号、邮箱
UserName string `protobuf:"bytes,3,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
// 目录ID
DirectoryId string `protobuf:"bytes,4,opt,name=directory_id,json=directoryId,proto3" json:"directory_id,omitempty"`
}
func (x *VerifyUserReq) Reset() {
*x = VerifyUserReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *VerifyUserReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*VerifyUserReq) ProtoMessage() {}
func (x *VerifyUserReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use VerifyUserReq.ProtoReflect.Descriptor instead.
func (*VerifyUserReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{11}
}
func (x *VerifyUserReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *VerifyUserReq) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
func (x *VerifyUserReq) GetUserName() string {
if x != nil {
return x.UserName
}
return ""
}
func (x *VerifyUserReq) GetDirectoryId() string {
if x != nil {
return x.DirectoryId
}
return ""
}
// 用户名请求信息
type UserNameReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用户名、手机号、邮箱
UserName string `protobuf:"bytes,3,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
// 目录ID
DirectoryId string `protobuf:"bytes,4,opt,name=directory_id,json=directoryId,proto3" json:"directory_id,omitempty"`
}
func (x *UserNameReq) Reset() {
*x = UserNameReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserNameReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserNameReq) ProtoMessage() {}
func (x *UserNameReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[12]
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 UserNameReq.ProtoReflect.Descriptor instead.
func (*UserNameReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{12}
}
func (x *UserNameReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserNameReq) GetUserName() string {
if x != nil {
return x.UserName
}
return ""
}
func (x *UserNameReq) GetDirectoryId() string {
if x != nil {
return x.DirectoryId
}
return ""
}
// 启禁用用户请求.
type EnableUserReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 启用/禁用
Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
// 用户Id
UserId []string `protobuf:"bytes,3,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}
func (x *EnableUserReq) Reset() {
*x = EnableUserReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *EnableUserReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*EnableUserReq) ProtoMessage() {}
func (x *EnableUserReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[13]
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 EnableUserReq.ProtoReflect.Descriptor instead.
func (*EnableUserReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{13}
}
func (x *EnableUserReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *EnableUserReq) GetEnabled() bool {
if x != nil {
return x.Enabled
}
return false
}
func (x *EnableUserReq) GetUserId() []string {
if x != nil {
return x.UserId
}
return nil
}
// 启禁用用户请求.
type UserEnableKey struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 启用/禁用
Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
// 用户Id
UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}
func (x *UserEnableKey) Reset() {
*x = UserEnableKey{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserEnableKey) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserEnableKey) ProtoMessage() {}
func (x *UserEnableKey) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[14]
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 UserEnableKey.ProtoReflect.Descriptor instead.
func (*UserEnableKey) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{14}
}
func (x *UserEnableKey) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserEnableKey) GetEnabled() bool {
if x != nil {
return x.Enabled
}
return false
}
func (x *UserEnableKey) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
// 锁/解锁用户请求.
type LockUserReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 锁/解锁
Lock bool `protobuf:"varint,2,opt,name=lock,proto3" json:"lock,omitempty"`
// 用户Id
UserId []string `protobuf:"bytes,3,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}
func (x *LockUserReq) Reset() {
*x = LockUserReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *LockUserReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*LockUserReq) ProtoMessage() {}
func (x *LockUserReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[15]
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 LockUserReq.ProtoReflect.Descriptor instead.
func (*LockUserReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{15}
}
func (x *LockUserReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *LockUserReq) GetLock() bool {
if x != nil {
return x.Lock
}
return false
}
func (x *LockUserReq) GetUserId() []string {
if x != nil {
return x.UserId
}
return nil
}
// 审核/取消审核请求.
type ApprovedUserReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 审核/取消审核
Approved bool `protobuf:"varint,2,opt,name=approved,proto3" json:"approved,omitempty"`
// 用户Id
UserId []string `protobuf:"bytes,3,rep,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
}
func (x *ApprovedUserReq) Reset() {
*x = ApprovedUserReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ApprovedUserReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ApprovedUserReq) ProtoMessage() {}
func (x *ApprovedUserReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[16]
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 ApprovedUserReq.ProtoReflect.Descriptor instead.
func (*ApprovedUserReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{16}
}
func (x *ApprovedUserReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *ApprovedUserReq) GetApproved() bool {
if x != nil {
return x.Approved
}
return false
}
func (x *ApprovedUserReq) GetUserId() []string {
if x != nil {
return x.UserId
}
return nil
}
// 用户角色
type UserRoleReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用户Id
UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
// 角色编码
RoleCodes []string `protobuf:"bytes,3,rep,name=role_codes,json=roleCodes,proto3" json:"role_codes,omitempty"`
}
func (x *UserRoleReq) Reset() {
*x = UserRoleReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserRoleReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserRoleReq) ProtoMessage() {}
func (x *UserRoleReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[17]
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 UserRoleReq.ProtoReflect.Descriptor instead.
func (*UserRoleReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{17}
}
func (x *UserRoleReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserRoleReq) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
func (x *UserRoleReq) GetRoleCodes() []string {
if x != nil {
return x.RoleCodes
}
return nil
}
type UserJobs struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 所属部门
DeptId string `protobuf:"bytes,1,opt,name=dept_id,json=deptId,proto3" json:"dept_id,omitempty"`
// 所属岗位
JobId string `protobuf:"bytes,2,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
}
func (x *UserJobs) Reset() {
*x = UserJobs{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserJobs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserJobs) ProtoMessage() {}
func (x *UserJobs) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[18]
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 UserJobs.ProtoReflect.Descriptor instead.
func (*UserJobs) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{18}
}
func (x *UserJobs) GetDeptId() string {
if x != nil {
return x.DeptId
}
return ""
}
func (x *UserJobs) GetJobId() string {
if x != nil {
return x.JobId
}
return ""
}
// 重置密码
type UserResetPwdReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户.
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 用户Id
UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
// 密钥
Pwd string `protobuf:"bytes,3,opt,name=pwd,proto3" json:"pwd,omitempty"`
// 重复密钥
RepeatPwd string `protobuf:"bytes,4,opt,name=repeat_pwd,json=repeatPwd,proto3" json:"repeat_pwd,omitempty"`
}
func (x *UserResetPwdReq) Reset() {
*x = UserResetPwdReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserResetPwdReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserResetPwdReq) ProtoMessage() {}
func (x *UserResetPwdReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_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 UserResetPwdReq.ProtoReflect.Descriptor instead.
func (*UserResetPwdReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{19}
}
func (x *UserResetPwdReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UserResetPwdReq) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
func (x *UserResetPwdReq) GetPwd() string {
if x != nil {
return x.Pwd
}
return ""
}
func (x *UserResetPwdReq) GetRepeatPwd() string {
if x != nil {
return x.RepeatPwd
}
return ""
}
type UpdateUserReq struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 租户
Tenant string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
// 昵称
NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
// 姓名
RealName string `protobuf:"bytes,3,opt,name=real_name,json=realName,proto3" json:"real_name,omitempty"`
// 性别
Gender_ basic.Gender `protobuf:"varint,4,opt,name=gender_,json=gender,proto3,enum=jmash.protobuf.Gender" json:"gender_,omitempty"`
// 头像
Avatar string `protobuf:"bytes,5,opt,name=avatar,proto3" json:"avatar,omitempty"`
// 出生日期
BirthDate string `protobuf:"bytes,6,opt,name=birth_date,json=birthDate,proto3" json:"birth_date,omitempty"`
// 更新字段掩码
UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,7,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
// 请求ID
RequestId string `protobuf:"bytes,9,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
}
func (x *UpdateUserReq) Reset() {
*x = UpdateUserReq{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UpdateUserReq) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UpdateUserReq) ProtoMessage() {}
func (x *UpdateUserReq) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_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 UpdateUserReq.ProtoReflect.Descriptor instead.
func (*UpdateUserReq) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{20}
}
func (x *UpdateUserReq) GetTenant() string {
if x != nil {
return x.Tenant
}
return ""
}
func (x *UpdateUserReq) GetNickName() string {
if x != nil {
return x.NickName
}
return ""
}
func (x *UpdateUserReq) GetRealName() string {
if x != nil {
return x.RealName
}
return ""
}
func (x *UpdateUserReq) GetGender_() basic.Gender {
if x != nil {
return x.Gender_
}
return basic.Gender(0)
}
func (x *UpdateUserReq) GetAvatar() string {
if x != nil {
return x.Avatar
}
return ""
}
func (x *UpdateUserReq) GetBirthDate() string {
if x != nil {
return x.BirthDate
}
return ""
}
func (x *UpdateUserReq) GetUpdateMask() *fieldmaskpb.FieldMask {
if x != nil {
return x.UpdateMask
}
return nil
}
func (x *UpdateUserReq) GetRequestId() string {
if x != nil {
return x.RequestId
}
return ""
}
// 用户部门岗位信息
type UserDeptJobInfoRes struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 用户ID
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
// 用户昵称
NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
// 用户真实姓名
RealName string `protobuf:"bytes,4,opt,name=real_name,json=realName,proto3" json:"real_name,omitempty"`
// 部门及岗位信息
JobInfo []*JobInfo `protobuf:"bytes,3,rep,name=job_info,json=jobInfo,proto3" json:"job_info,omitempty"`
}
func (x *UserDeptJobInfoRes) Reset() {
*x = UserDeptJobInfoRes{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserDeptJobInfoRes) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserDeptJobInfoRes) ProtoMessage() {}
func (x *UserDeptJobInfoRes) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_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 UserDeptJobInfoRes.ProtoReflect.Descriptor instead.
func (*UserDeptJobInfoRes) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{21}
}
func (x *UserDeptJobInfoRes) GetUserId() string {
if x != nil {
return x.UserId
}
return ""
}
func (x *UserDeptJobInfoRes) GetNickName() string {
if x != nil {
return x.NickName
}
return ""
}
func (x *UserDeptJobInfoRes) GetRealName() string {
if x != nil {
return x.RealName
}
return ""
}
func (x *UserDeptJobInfoRes) GetJobInfo() []*JobInfo {
if x != nil {
return x.JobInfo
}
return nil
}
type JobInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
JobName string `protobuf:"bytes,2,opt,name=job_name,json=jobName,proto3" json:"job_name,omitempty"`
DeptId string `protobuf:"bytes,3,opt,name=dept_id,json=deptId,proto3" json:"dept_id,omitempty"`
DeptName string `protobuf:"bytes,4,opt,name=dept_name,json=deptName,proto3" json:"dept_name,omitempty"`
}
func (x *JobInfo) Reset() {
*x = JobInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *JobInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*JobInfo) ProtoMessage() {}
func (x *JobInfo) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_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 JobInfo.ProtoReflect.Descriptor instead.
func (*JobInfo) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{22}
}
func (x *JobInfo) GetJobId() string {
if x != nil {
return x.JobId
}
return ""
}
func (x *JobInfo) GetJobName() string {
if x != nil {
return x.JobName
}
return ""
}
func (x *JobInfo) GetDeptId() string {
if x != nil {
return x.DeptId
}
return ""
}
func (x *JobInfo) GetDeptName() string {
if x != nil {
return x.DeptName
}
return ""
}
type DirectoryListResp struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
DirectoryId []string `protobuf:"bytes,1,rep,name=directory_id,json=directoryId,proto3" json:"directory_id,omitempty"`
}
func (x *DirectoryListResp) Reset() {
*x = DirectoryListResp{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *DirectoryListResp) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*DirectoryListResp) ProtoMessage() {}
func (x *DirectoryListResp) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_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 DirectoryListResp.ProtoReflect.Descriptor instead.
func (*DirectoryListResp) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{23}
}
func (x *DirectoryListResp) GetDirectoryId() []string {
if x != nil {
return x.DirectoryId
}
return nil
}
// 用户信息
type UserInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 用户ID
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
// 用户真实姓名
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
// 手机号码
MobilePhoneIns string `protobuf:"bytes,3,opt,name=mobile_phone_ins,json=mobilePhoneIns,proto3" json:"mobile_phone_ins,omitempty"`
// 部门ID
DeptId string `protobuf:"bytes,4,opt,name=dept_id,json=deptId,proto3" json:"dept_id,omitempty"`
// 部门
DeptName string `protobuf:"bytes,5,opt,name=dept_name,json=deptName,proto3" json:"dept_name,omitempty"`
// 岗位ID
JobId string `protobuf:"bytes,6,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
// 岗位
JobName string `protobuf:"bytes,7,opt,name=job_name,json=jobName,proto3" json:"job_name,omitempty"`
}
func (x *UserInfo) Reset() {
*x = UserInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[24]
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_jmash_rbac_protobuf_rbac_user_message_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 UserInfo.ProtoReflect.Descriptor instead.
func (*UserInfo) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{24}
}
func (x *UserInfo) GetKey() string {
if x != nil {
return x.Key
}
return ""
}
func (x *UserInfo) GetValue() string {
if x != nil {
return x.Value
}
return ""
}
func (x *UserInfo) GetMobilePhoneIns() string {
if x != nil {
return x.MobilePhoneIns
}
return ""
}
func (x *UserInfo) GetDeptId() string {
if x != nil {
return x.DeptId
}
return ""
}
func (x *UserInfo) GetDeptName() string {
if x != nil {
return x.DeptName
}
return ""
}
func (x *UserInfo) GetJobId() string {
if x != nil {
return x.JobId
}
return ""
}
func (x *UserInfo) GetJobName() string {
if x != nil {
return x.JobName
}
return ""
}
// 用户信息列表
type UserInfoList struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Results []*UserInfo `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
}
func (x *UserInfoList) Reset() {
*x = UserInfoList{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserInfoList) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserInfoList) ProtoMessage() {}
func (x *UserInfoList) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_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 UserInfoList.ProtoReflect.Descriptor instead.
func (*UserInfoList) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{25}
}
func (x *UserInfoList) GetResults() []*UserInfo {
if x != nil {
return x.Results
}
return nil
}
// 用户分页
type UserInfoPage struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
// 当前页内容
Results []*UserInfo `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
// 当前页码
CurPage int32 `protobuf:"varint,2,opt,name=cur_page,json=curPage,proto3" json:"cur_page,omitempty"`
// 页尺寸
PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
// 总记录数
TotalSize int32 `protobuf:"varint,4,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"`
// 本页小计
SubTotalDto *UserModelTotal `protobuf:"bytes,5,opt,name=sub_total_dto,json=subTotalDto,proto3" json:"sub_total_dto,omitempty"`
// 合计
TotalDto *UserModelTotal `protobuf:"bytes,6,opt,name=total_dto,json=totalDto,proto3" json:"total_dto,omitempty"`
}
func (x *UserInfoPage) Reset() {
*x = UserInfoPage{}
if protoimpl.UnsafeEnabled {
mi := &file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *UserInfoPage) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*UserInfoPage) ProtoMessage() {}
func (x *UserInfoPage) ProtoReflect() protoreflect.Message {
mi := &file_jmash_rbac_protobuf_rbac_user_message_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 UserInfoPage.ProtoReflect.Descriptor instead.
func (*UserInfoPage) Descriptor() ([]byte, []int) {
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP(), []int{26}
}
func (x *UserInfoPage) GetResults() []*UserInfo {
if x != nil {
return x.Results
}
return nil
}
func (x *UserInfoPage) GetCurPage() int32 {
if x != nil {
return x.CurPage
}
return 0
}
func (x *UserInfoPage) GetPageSize() int32 {
if x != nil {
return x.PageSize
}
return 0
}
func (x *UserInfoPage) GetTotalSize() int32 {
if x != nil {
return x.TotalSize
}
return 0
}
func (x *UserInfoPage) GetSubTotalDto() *UserModelTotal {
if x != nil {
return x.SubTotalDto
}
return nil
}
func (x *UserInfoPage) GetTotalDto() *UserModelTotal {
if x != nil {
return x.TotalDto
}
return nil
}
var File_jmash_rbac_protobuf_rbac_user_message_proto protoreflect.FileDescriptor
var file_jmash_rbac_protobuf_rbac_user_message_proto_rawDesc = []byte{
0x0a, 0x2b, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2f, 0x72, 0x62, 0x61, 0x63, 0x2f, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x72, 0x62, 0x61, 0x63, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f,
0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x6a,
0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73,
0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65, 0x6c,
0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1a, 0x6a, 0x6d,
0x61, 0x73, 0x68, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x62, 0x61, 0x73,
0x69, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc7, 0x03, 0x0a, 0x07, 0x55, 0x73, 0x65,
0x72, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x19, 0x0a, 0x08,
0x63, 0x75, 0x72, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
0x63, 0x75, 0x72, 0x50, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f,
0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65,
0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4e,
0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x73, 0x63,
0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x73, 0x63,
0x12, 0x21, 0x0a, 0x0c, 0x73, 0x68, 0x6f, 0x77, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64,
0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x73, 0x68, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x65,
0x74, 0x65, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x62, 0x79,
0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x79,
0x12, 0x17, 0x0a, 0x07, 0x64, 0x65, 0x70, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28,
0x09, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x67,
0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c,
0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x68, 0x61, 0x73, 0x5f,
0x75, 0x73, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28,
0x08, 0x52, 0x0d, 0x68, 0x61, 0x73, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x12, 0x37, 0x0a, 0x0b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62,
0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0a, 0x75,
0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c,
0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f,
0x6c, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69,
0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65,
0x72, 0x5f, 0x69, 0x64, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
0x49, 0x64, 0x22, 0x87, 0x0a, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x72,
0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a,
0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d,
0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0b, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x28,
0x0a, 0x10, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x69,
0x6e, 0x73, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65,
0x50, 0x68, 0x6f, 0x6e, 0x65, 0x49, 0x6e, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69,
0x6c, 0x5f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12,
0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01,
0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09,
0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x76, 0x61,
0x74, 0x61, 0x72, 0x5f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74,
0x61, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x69, 0x72, 0x74, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65,
0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74,
0x65, 0x12, 0x2f, 0x0a, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x18, 0x0a, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x16, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64,
0x65, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x76, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x70, 0x68, 0x6f, 0x6e,
0x65, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x6d, 0x61,
0x69, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28,
0x08, 0x52, 0x0d, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64,
0x12, 0x1b, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x18, 0x0d, 0x20,
0x01, 0x28, 0x08, 0x52, 0x08, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x2f, 0x0a,
0x07, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16,
0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x46,
0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x5f, 0x74,
0x69, 0x6d, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x63, 0x6b, 0x6f,
0x75, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64,
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69,
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x54,
0x69, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x63, 0x6f,
0x75, 0x6e, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x66, 0x61, 0x69, 0x6c, 0x65,
0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x42, 0x0a, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6c,
0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0d, 0x6c, 0x61, 0x73,
0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f,
0x62, 0x79, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
0x42, 0x79, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d,
0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12,
0x1b, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x62, 0x79, 0x18, 0x16, 0x20, 0x01,
0x28, 0x09, 0x52, 0x08, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x79, 0x12, 0x3b, 0x0a, 0x0b,
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x75,
0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x65, 0x6c,
0x65, 0x74, 0x65, 0x5f, 0x62, 0x79, 0x18, 0x18, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65,
0x6c, 0x65, 0x74, 0x65, 0x42, 0x79, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
0x64, 0x5f, 0x18, 0x19, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65,
0x64, 0x12, 0x3b, 0x0a, 0x0b, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
0x6d, 0x70, 0x52, 0x0a, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19,
0x0a, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x1c, 0x20, 0x03, 0x28, 0x09,
0x52, 0x07, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x31, 0x0a, 0x09, 0x75, 0x73, 0x65,
0x72, 0x5f, 0x6a, 0x6f, 0x62, 0x73, 0x18, 0x1d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6a,
0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4a, 0x6f,
0x62, 0x73, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4a, 0x6f, 0x62, 0x73, 0x12, 0x15, 0x0a, 0x06,
0x72, 0x75, 0x6e, 0x5f, 0x61, 0x73, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x72, 0x75,
0x6e, 0x41, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x75,
0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x70, 0x72,
0x69, 0x6d, 0x61, 0x72, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x65,
0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x69, 0x6e, 0x73, 0x18, 0x20, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
0x65, 0x6d, 0x61, 0x69, 0x6c, 0x49, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x72, 0x65, 0x61, 0x6c,
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x18, 0x21, 0x20, 0x01, 0x28, 0x09, 0x52,
0x0b, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x49, 0x6e, 0x73, 0x22, 0x3b, 0x0a, 0x08,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75,
0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6a, 0x6d, 0x61, 0x73,
0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x8b, 0x02, 0x0a, 0x08, 0x55, 0x73,
0x65, 0x72, 0x50, 0x61, 0x67, 0x65, 0x12, 0x2f, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e,
0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x07,
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x75, 0x72, 0x5f, 0x70,
0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x63, 0x75, 0x72, 0x50, 0x61,
0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18,
0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12,
0x1d, 0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20,
0x01, 0x28, 0x05, 0x52, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3e,
0x0a, 0x0d, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x64, 0x74, 0x6f, 0x18,
0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62,
0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x54, 0x6f, 0x74, 0x61,
0x6c, 0x52, 0x0b, 0x73, 0x75, 0x62, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x44, 0x74, 0x6f, 0x12, 0x37,
0x0a, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x64, 0x74, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1a, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55,
0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x08, 0x74,
0x6f, 0x74, 0x61, 0x6c, 0x44, 0x74, 0x6f, 0x22, 0x2f, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x4d,
0x6f, 0x64, 0x65, 0x6c, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x6f, 0x74,
0x61, 0x6c, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x74,
0x6f, 0x74, 0x61, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x22, 0x3a, 0x0a, 0x07, 0x55, 0x73, 0x65, 0x72,
0x4b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75,
0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
0x65, 0x72, 0x49, 0x64, 0x22, 0x3e, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x4b, 0x65, 0x79, 0x4c,
0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75,
0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
0x65, 0x72, 0x49, 0x64, 0x22, 0xd7, 0x04, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65,
0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x1d,
0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x23, 0x0a,
0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03,
0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e,
0x6c, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f,
0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e,
0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70,
0x68, 0x6f, 0x6e, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x6f, 0x62, 0x69,
0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c,
0x5f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1b,
0x0a, 0x09, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
0x09, 0x52, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x76, 0x61, 0x74,
0x61, 0x72, 0x5f, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61,
0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x69, 0x72, 0x74, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65,
0x12, 0x2f, 0x0a, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x18, 0x0d, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x16, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
0x75, 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
0x72, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x18, 0x10,
0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x2f,
0x0a, 0x07, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x16, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65,
0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
0x10, 0x0a, 0x03, 0x70, 0x77, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x77,
0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x77, 0x64, 0x18,
0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x50, 0x77, 0x64,
0x12, 0x19, 0x0a, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x14, 0x20, 0x03,
0x28, 0x09, 0x52, 0x07, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x31, 0x0a, 0x09, 0x75,
0x73, 0x65, 0x72, 0x5f, 0x6a, 0x6f, 0x62, 0x73, 0x18, 0x15, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14,
0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x4a, 0x6f, 0x62, 0x73, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4a, 0x6f, 0x62, 0x73, 0x22, 0xca,
0x05, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71,
0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75,
0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64,
0x61, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c,
0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x3b, 0x0a, 0x0b,
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x04, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, 0x75,
0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65,
0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f,
0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e,
0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70,
0x68, 0x6f, 0x6e, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x6f, 0x62, 0x69,
0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c,
0x5f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1b,
0x0a, 0x09, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
0x09, 0x52, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x61, 0x76, 0x61, 0x74,
0x61, 0x72, 0x5f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61,
0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x69, 0x72, 0x74, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65,
0x12, 0x2f, 0x0a, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x18, 0x0e, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x16, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
0x75, 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
0x72, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f,
0x76, 0x65, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x70, 0x68, 0x6f, 0x6e, 0x65,
0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x6d, 0x61, 0x69,
0x6c, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08,
0x52, 0x0d, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x12,
0x1b, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x18, 0x11, 0x20, 0x01,
0x28, 0x08, 0x52, 0x08, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x2f, 0x0a, 0x07,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e,
0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x19, 0x0a,
0x08, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x14, 0x20, 0x03, 0x28, 0x09, 0x52,
0x07, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x31, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
0x5f, 0x6a, 0x6f, 0x62, 0x73, 0x18, 0x15, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6a, 0x6d,
0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4a, 0x6f, 0x62,
0x73, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4a, 0x6f, 0x62, 0x73, 0x22, 0xbd, 0x01, 0x0a, 0x0d,
0x55, 0x73, 0x65, 0x72, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74,
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x3a, 0x0a, 0x0b, 0x74,
0x61, 0x62, 0x6c, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x19, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
0x66, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x52, 0x0a, 0x74, 0x61, 0x62,
0x6c, 0x65, 0x48, 0x65, 0x61, 0x64, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x5f,
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65,
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x03, 0x72, 0x65, 0x71, 0x18, 0x05, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x13, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55,
0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x52, 0x03, 0x72, 0x65, 0x71, 0x22, 0xbd, 0x01, 0x0a, 0x0d,
0x55, 0x73, 0x65, 0x72, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74,
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
0x6d, 0x65, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x64, 0x64, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x18,
0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x61, 0x64, 0x64, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x3b,
0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52,
0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x22, 0x80, 0x01, 0x0a, 0x0d,
0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74,
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b,
0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64,
0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x22, 0x65,
0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a,
0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74,
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61,
0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f,
0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x49, 0x64, 0x22, 0x5a, 0x0a, 0x0d, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55,
0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x18,
0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
0x64, 0x22, 0x5a, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4b,
0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e,
0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61,
0x62, 0x6c, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x52, 0x0a,
0x0b, 0x4c, 0x6f, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06,
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65,
0x6e, 0x61, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x02, 0x20, 0x01,
0x28, 0x08, 0x52, 0x04, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
0x64, 0x22, 0x5e, 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x55, 0x73, 0x65,
0x72, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
0x64, 0x22, 0x5d, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71,
0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x73, 0x18,
0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x73,
0x22, 0x3a, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4a, 0x6f, 0x62, 0x73, 0x12, 0x17, 0x0a, 0x07,
0x64, 0x65, 0x70, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64,
0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18,
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x22, 0x73, 0x0a, 0x0f,
0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x65, 0x74, 0x50, 0x77, 0x64, 0x52, 0x65, 0x71, 0x12,
0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
0x12, 0x10, 0x0a, 0x03, 0x70, 0x77, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70,
0x77, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x70, 0x77, 0x64,
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x50, 0x77,
0x64, 0x22, 0xa5, 0x02, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x6c,
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x61,
0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2f, 0x0a, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f,
0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06,
0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1d,
0x0a, 0x0a, 0x62, 0x69, 0x72, 0x74, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01,
0x28, 0x09, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a,
0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x07, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a,
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65,
0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64, 0x22, 0x97, 0x01, 0x0a, 0x12, 0x55, 0x73,
0x65, 0x72, 0x44, 0x65, 0x70, 0x74, 0x4a, 0x6f, 0x62, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63,
0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x6e,
0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x61, 0x6c, 0x4e,
0x61, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x08, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,
0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62,
0x61, 0x63, 0x2e, 0x4a, 0x6f, 0x62, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x6a, 0x6f, 0x62, 0x49,
0x6e, 0x66, 0x6f, 0x22, 0x71, 0x0a, 0x07, 0x4a, 0x6f, 0x62, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x15,
0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6a, 0x6f, 0x62, 0x5f, 0x6e, 0x61, 0x6d,
0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a, 0x6f, 0x62, 0x4e, 0x61, 0x6d, 0x65,
0x12, 0x17, 0x0a, 0x07, 0x64, 0x65, 0x70, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x65, 0x70,
0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65,
0x70, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x36, 0x0a, 0x11, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74,
0x6f, 0x72, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x0c, 0x64,
0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28,
0x09, 0x52, 0x0b, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x22, 0xc4,
0x01, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x0a, 0x03, 0x6b,
0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
0x6c, 0x75, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x68,
0x6f, 0x6e, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6d,
0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x49, 0x6e, 0x73, 0x12, 0x17, 0x0a,
0x07, 0x64, 0x65, 0x70, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
0x64, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x65, 0x70, 0x74, 0x5f, 0x6e,
0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65, 0x70, 0x74, 0x4e,
0x61, 0x6d, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20,
0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6a, 0x6f,
0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a, 0x6f,
0x62, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x3e, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73,
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72,
0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x72, 0x65,
0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x8e, 0x02, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
0x66, 0x6f, 0x50, 0x61, 0x67, 0x65, 0x12, 0x2e, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e,
0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x72,
0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x75, 0x72, 0x5f, 0x70, 0x61,
0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x63, 0x75, 0x72, 0x50, 0x61, 0x67,
0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03,
0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d,
0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01,
0x28, 0x05, 0x52, 0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3e, 0x0a,
0x0d, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x64, 0x74, 0x6f, 0x18, 0x05,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61,
0x63, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x54, 0x6f, 0x74, 0x61, 0x6c,
0x52, 0x0b, 0x73, 0x75, 0x62, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x44, 0x74, 0x6f, 0x12, 0x37, 0x0a,
0x09, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x64, 0x74, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x1a, 0x2e, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x55, 0x73,
0x65, 0x72, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x08, 0x74, 0x6f,
0x74, 0x61, 0x6c, 0x44, 0x74, 0x6f, 0x2a, 0x57, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x10,
0x00, 0x1a, 0x0a, 0x8a, 0xb5, 0x18, 0x06, 0xe5, 0x90, 0xaf, 0xe7, 0x94, 0xa8, 0x12, 0x18, 0x0a,
0x08, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x10, 0x01, 0x1a, 0x0a, 0x8a, 0xb5, 0x18,
0x06, 0xe7, 0xa6, 0x81, 0xe7, 0x94, 0xa8, 0x12, 0x16, 0x0a, 0x06, 0x6c, 0x6f, 0x63, 0x6b, 0x65,
0x64, 0x10, 0x02, 0x1a, 0x0a, 0x8a, 0xb5, 0x18, 0x06, 0xe9, 0x94, 0x81, 0xe5, 0xae, 0x9a, 0x42,
0x33, 0x0a, 0x13, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2e, 0x72, 0x62, 0x61, 0x63, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x42, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x0f, 0x6a, 0x6d, 0x61, 0x73, 0x68, 0x2f, 0x72, 0x62, 0x61, 0x63, 0x3b,
0x72, 0x62, 0x61, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescOnce sync.Once
file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescData = file_jmash_rbac_protobuf_rbac_user_message_proto_rawDesc
)
func file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescGZIP() []byte {
file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescOnce.Do(func() {
file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescData = protoimpl.X.CompressGZIP(file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescData)
})
return file_jmash_rbac_protobuf_rbac_user_message_proto_rawDescData
}
var file_jmash_rbac_protobuf_rbac_user_message_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
var file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes = make([]protoimpl.MessageInfo, 27)
var file_jmash_rbac_protobuf_rbac_user_message_proto_goTypes = []interface{}{
(UserStatus)(0), // 0: jmash.rbac.UserStatus
(*UserReq)(nil), // 1: jmash.rbac.UserReq
(*UserModel)(nil), // 2: jmash.rbac.UserModel
(*UserList)(nil), // 3: jmash.rbac.UserList
(*UserPage)(nil), // 4: jmash.rbac.UserPage
(*UserModelTotal)(nil), // 5: jmash.rbac.UserModelTotal
(*UserKey)(nil), // 6: jmash.rbac.UserKey
(*UserKeyList)(nil), // 7: jmash.rbac.UserKeyList
(*UserCreateReq)(nil), // 8: jmash.rbac.UserCreateReq
(*UserUpdateReq)(nil), // 9: jmash.rbac.UserUpdateReq
(*UserExportReq)(nil), // 10: jmash.rbac.UserExportReq
(*UserImportReq)(nil), // 11: jmash.rbac.UserImportReq
(*VerifyUserReq)(nil), // 12: jmash.rbac.VerifyUserReq
(*UserNameReq)(nil), // 13: jmash.rbac.UserNameReq
(*EnableUserReq)(nil), // 14: jmash.rbac.EnableUserReq
(*UserEnableKey)(nil), // 15: jmash.rbac.UserEnableKey
(*LockUserReq)(nil), // 16: jmash.rbac.LockUserReq
(*ApprovedUserReq)(nil), // 17: jmash.rbac.ApprovedUserReq
(*UserRoleReq)(nil), // 18: jmash.rbac.UserRoleReq
(*UserJobs)(nil), // 19: jmash.rbac.UserJobs
(*UserResetPwdReq)(nil), // 20: jmash.rbac.UserResetPwdReq
(*UpdateUserReq)(nil), // 21: jmash.rbac.UpdateUserReq
(*UserDeptJobInfoRes)(nil), // 22: jmash.rbac.UserDeptJobInfoRes
(*JobInfo)(nil), // 23: jmash.rbac.JobInfo
(*DirectoryListResp)(nil), // 24: jmash.rbac.DirectoryListResp
(*UserInfo)(nil), // 25: jmash.rbac.UserInfo
(*UserInfoList)(nil), // 26: jmash.rbac.UserInfoList
(*UserInfoPage)(nil), // 27: jmash.rbac.UserInfoPage
(basic.Gender)(0), // 28: jmash.protobuf.Gender
(*timestamppb.Timestamp)(nil), // 29: google.protobuf.Timestamp
(*fieldmaskpb.FieldMask)(nil), // 30: google.protobuf.FieldMask
(*basic.TableHead)(nil), // 31: jmash.protobuf.TableHead
}
var file_jmash_rbac_protobuf_rbac_user_message_proto_depIdxs = []int32{
0, // 0: jmash.rbac.UserReq.user_status:type_name -> jmash.rbac.UserStatus
28, // 1: jmash.rbac.UserModel.gender_:type_name -> jmash.protobuf.Gender
0, // 2: jmash.rbac.UserModel.status_:type_name -> jmash.rbac.UserStatus
29, // 3: jmash.rbac.UserModel.last_lockout_time:type_name -> google.protobuf.Timestamp
29, // 4: jmash.rbac.UserModel.failed_time:type_name -> google.protobuf.Timestamp
29, // 5: jmash.rbac.UserModel.last_login_time:type_name -> google.protobuf.Timestamp
29, // 6: jmash.rbac.UserModel.create_time:type_name -> google.protobuf.Timestamp
29, // 7: jmash.rbac.UserModel.update_time:type_name -> google.protobuf.Timestamp
29, // 8: jmash.rbac.UserModel.delete_time:type_name -> google.protobuf.Timestamp
19, // 9: jmash.rbac.UserModel.user_jobs:type_name -> jmash.rbac.UserJobs
2, // 10: jmash.rbac.UserList.results:type_name -> jmash.rbac.UserModel
2, // 11: jmash.rbac.UserPage.results:type_name -> jmash.rbac.UserModel
5, // 12: jmash.rbac.UserPage.sub_total_dto:type_name -> jmash.rbac.UserModelTotal
5, // 13: jmash.rbac.UserPage.total_dto:type_name -> jmash.rbac.UserModelTotal
28, // 14: jmash.rbac.UserCreateReq.gender_:type_name -> jmash.protobuf.Gender
0, // 15: jmash.rbac.UserCreateReq.status_:type_name -> jmash.rbac.UserStatus
19, // 16: jmash.rbac.UserCreateReq.user_jobs:type_name -> jmash.rbac.UserJobs
30, // 17: jmash.rbac.UserUpdateReq.update_mask:type_name -> google.protobuf.FieldMask
28, // 18: jmash.rbac.UserUpdateReq.gender_:type_name -> jmash.protobuf.Gender
0, // 19: jmash.rbac.UserUpdateReq.status_:type_name -> jmash.rbac.UserStatus
19, // 20: jmash.rbac.UserUpdateReq.user_jobs:type_name -> jmash.rbac.UserJobs
31, // 21: jmash.rbac.UserExportReq.table_heads:type_name -> jmash.protobuf.TableHead
1, // 22: jmash.rbac.UserExportReq.req:type_name -> jmash.rbac.UserReq
30, // 23: jmash.rbac.UserImportReq.update_mask:type_name -> google.protobuf.FieldMask
28, // 24: jmash.rbac.UpdateUserReq.gender_:type_name -> jmash.protobuf.Gender
30, // 25: jmash.rbac.UpdateUserReq.update_mask:type_name -> google.protobuf.FieldMask
23, // 26: jmash.rbac.UserDeptJobInfoRes.job_info:type_name -> jmash.rbac.JobInfo
25, // 27: jmash.rbac.UserInfoList.results:type_name -> jmash.rbac.UserInfo
25, // 28: jmash.rbac.UserInfoPage.results:type_name -> jmash.rbac.UserInfo
5, // 29: jmash.rbac.UserInfoPage.sub_total_dto:type_name -> jmash.rbac.UserModelTotal
5, // 30: jmash.rbac.UserInfoPage.total_dto:type_name -> jmash.rbac.UserModelTotal
31, // [31:31] is the sub-list for method output_type
31, // [31:31] is the sub-list for method input_type
31, // [31:31] is the sub-list for extension type_name
31, // [31:31] is the sub-list for extension extendee
0, // [0:31] is the sub-list for field type_name
}
func init() { file_jmash_rbac_protobuf_rbac_user_message_proto_init() }
func file_jmash_rbac_protobuf_rbac_user_message_proto_init() {
if File_jmash_rbac_protobuf_rbac_user_message_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[0].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_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserModel); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserList); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserPage); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserModelTotal); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserKey); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserKeyList); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserCreateReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserUpdateReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserExportReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserImportReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VerifyUserReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserNameReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EnableUserReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserEnableKey); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LockUserReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ApprovedUserReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserRoleReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserJobs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserResetPwdReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UpdateUserReq); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserDeptJobInfoRes); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*JobInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DirectoryListResp); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserInfoList); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserInfoPage); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_jmash_rbac_protobuf_rbac_user_message_proto_rawDesc,
NumEnums: 1,
NumMessages: 27,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_jmash_rbac_protobuf_rbac_user_message_proto_goTypes,
DependencyIndexes: file_jmash_rbac_protobuf_rbac_user_message_proto_depIdxs,
EnumInfos: file_jmash_rbac_protobuf_rbac_user_message_proto_enumTypes,
MessageInfos: file_jmash_rbac_protobuf_rbac_user_message_proto_msgTypes,
}.Build()
File_jmash_rbac_protobuf_rbac_user_message_proto = out.File
file_jmash_rbac_protobuf_rbac_user_message_proto_rawDesc = nil
file_jmash_rbac_protobuf_rbac_user_message_proto_goTypes = nil
file_jmash_rbac_protobuf_rbac_user_message_proto_depIdxs = nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。