2 Star 0 Fork 0

jmash/rbac

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rbac_user_message.pb.go 117.86 KB
一键复制 编辑 原始数据 按行查看 历史
flowcloud0102/wangyh 提交于 2024-08-15 10:57 . 选择用户增加手机号
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477
// 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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/jmash/rbac.git
git@gitee.com:jmash/rbac.git
jmash
rbac
rbac
70d519264d5b

搜索帮助