system.pb.go 158 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: system.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package v1
  5. import (
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. type SystemGroupPermissionData struct {
  20. // 父code,若没有则填空
  21. Pcode string `protobuf:"bytes,1,opt,name=pcode,proto3" json:"pcode"`
  22. // 组件路径
  23. Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path"`
  24. // 权限名字
  25. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  26. // 路由
  27. Router string `protobuf:"bytes,4,opt,name=router,proto3" json:"router"`
  28. Code string `protobuf:"bytes,5,opt,name=code,proto3" json:"code"`
  29. AppletePath string `protobuf:"bytes,6,opt,name=applete_path,json=appletePath,proto3" json:"applete_path"`
  30. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  31. XXX_unrecognized []byte `json:"-"`
  32. XXX_sizecache int32 `json:"-"`
  33. }
  34. func (m *SystemGroupPermissionData) Reset() { *m = SystemGroupPermissionData{} }
  35. func (m *SystemGroupPermissionData) String() string { return proto.CompactTextString(m) }
  36. func (*SystemGroupPermissionData) ProtoMessage() {}
  37. func (*SystemGroupPermissionData) Descriptor() ([]byte, []int) {
  38. return fileDescriptor_86a7260ebdc12f47, []int{0}
  39. }
  40. func (m *SystemGroupPermissionData) XXX_Unmarshal(b []byte) error {
  41. return xxx_messageInfo_SystemGroupPermissionData.Unmarshal(m, b)
  42. }
  43. func (m *SystemGroupPermissionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  44. return xxx_messageInfo_SystemGroupPermissionData.Marshal(b, m, deterministic)
  45. }
  46. func (m *SystemGroupPermissionData) XXX_Merge(src proto.Message) {
  47. xxx_messageInfo_SystemGroupPermissionData.Merge(m, src)
  48. }
  49. func (m *SystemGroupPermissionData) XXX_Size() int {
  50. return xxx_messageInfo_SystemGroupPermissionData.Size(m)
  51. }
  52. func (m *SystemGroupPermissionData) XXX_DiscardUnknown() {
  53. xxx_messageInfo_SystemGroupPermissionData.DiscardUnknown(m)
  54. }
  55. var xxx_messageInfo_SystemGroupPermissionData proto.InternalMessageInfo
  56. func (m *SystemGroupPermissionData) GetPcode() string {
  57. if m != nil {
  58. return m.Pcode
  59. }
  60. return ""
  61. }
  62. func (m *SystemGroupPermissionData) GetPath() string {
  63. if m != nil {
  64. return m.Path
  65. }
  66. return ""
  67. }
  68. func (m *SystemGroupPermissionData) GetName() string {
  69. if m != nil {
  70. return m.Name
  71. }
  72. return ""
  73. }
  74. func (m *SystemGroupPermissionData) GetRouter() string {
  75. if m != nil {
  76. return m.Router
  77. }
  78. return ""
  79. }
  80. func (m *SystemGroupPermissionData) GetCode() string {
  81. if m != nil {
  82. return m.Code
  83. }
  84. return ""
  85. }
  86. func (m *SystemGroupPermissionData) GetAppletePath() string {
  87. if m != nil {
  88. return m.AppletePath
  89. }
  90. return ""
  91. }
  92. type LoginRequest struct {
  93. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"`
  94. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  95. // 是否来源于员工小程序
  96. Applete bool `protobuf:"varint,3,opt,name=applete,proto3" json:"applete"`
  97. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  98. XXX_unrecognized []byte `json:"-"`
  99. XXX_sizecache int32 `json:"-"`
  100. }
  101. func (m *LoginRequest) Reset() { *m = LoginRequest{} }
  102. func (m *LoginRequest) String() string { return proto.CompactTextString(m) }
  103. func (*LoginRequest) ProtoMessage() {}
  104. func (*LoginRequest) Descriptor() ([]byte, []int) {
  105. return fileDescriptor_86a7260ebdc12f47, []int{1}
  106. }
  107. func (m *LoginRequest) XXX_Unmarshal(b []byte) error {
  108. return xxx_messageInfo_LoginRequest.Unmarshal(m, b)
  109. }
  110. func (m *LoginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  111. return xxx_messageInfo_LoginRequest.Marshal(b, m, deterministic)
  112. }
  113. func (m *LoginRequest) XXX_Merge(src proto.Message) {
  114. xxx_messageInfo_LoginRequest.Merge(m, src)
  115. }
  116. func (m *LoginRequest) XXX_Size() int {
  117. return xxx_messageInfo_LoginRequest.Size(m)
  118. }
  119. func (m *LoginRequest) XXX_DiscardUnknown() {
  120. xxx_messageInfo_LoginRequest.DiscardUnknown(m)
  121. }
  122. var xxx_messageInfo_LoginRequest proto.InternalMessageInfo
  123. func (m *LoginRequest) GetUsername() string {
  124. if m != nil {
  125. return m.Username
  126. }
  127. return ""
  128. }
  129. func (m *LoginRequest) GetPassword() string {
  130. if m != nil {
  131. return m.Password
  132. }
  133. return ""
  134. }
  135. func (m *LoginRequest) GetApplete() bool {
  136. if m != nil {
  137. return m.Applete
  138. }
  139. return false
  140. }
  141. type LoginReply struct {
  142. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  143. UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name"`
  144. Cid int64 `protobuf:"varint,3,opt,name=cid,proto3" json:"cid"`
  145. GardenId int64 `protobuf:"varint,4,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  146. GroupId int64 `protobuf:"varint,5,opt,name=group_id,json=groupId,proto3" json:"group_id"`
  147. IsSuperGroup bool `protobuf:"varint,6,opt,name=is_super_group,json=isSuperGroup,proto3" json:"is_super_group"`
  148. GardenName string `protobuf:"bytes,7,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  149. UserPermissionTime string `protobuf:"bytes,8,opt,name=user_permission_time,json=userPermissionTime,proto3" json:"user_permission_time"`
  150. GlobalPermissionTime string `protobuf:"bytes,9,opt,name=global_permission_time,json=globalPermissionTime,proto3" json:"global_permission_time"`
  151. Permissions []*SystemGroupPermissionData `protobuf:"bytes,10,rep,name=permissions,proto3" json:"permissions"`
  152. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  153. XXX_unrecognized []byte `json:"-"`
  154. XXX_sizecache int32 `json:"-"`
  155. }
  156. func (m *LoginReply) Reset() { *m = LoginReply{} }
  157. func (m *LoginReply) String() string { return proto.CompactTextString(m) }
  158. func (*LoginReply) ProtoMessage() {}
  159. func (*LoginReply) Descriptor() ([]byte, []int) {
  160. return fileDescriptor_86a7260ebdc12f47, []int{2}
  161. }
  162. func (m *LoginReply) XXX_Unmarshal(b []byte) error {
  163. return xxx_messageInfo_LoginReply.Unmarshal(m, b)
  164. }
  165. func (m *LoginReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  166. return xxx_messageInfo_LoginReply.Marshal(b, m, deterministic)
  167. }
  168. func (m *LoginReply) XXX_Merge(src proto.Message) {
  169. xxx_messageInfo_LoginReply.Merge(m, src)
  170. }
  171. func (m *LoginReply) XXX_Size() int {
  172. return xxx_messageInfo_LoginReply.Size(m)
  173. }
  174. func (m *LoginReply) XXX_DiscardUnknown() {
  175. xxx_messageInfo_LoginReply.DiscardUnknown(m)
  176. }
  177. var xxx_messageInfo_LoginReply proto.InternalMessageInfo
  178. func (m *LoginReply) GetUid() int64 {
  179. if m != nil {
  180. return m.Uid
  181. }
  182. return 0
  183. }
  184. func (m *LoginReply) GetUserName() string {
  185. if m != nil {
  186. return m.UserName
  187. }
  188. return ""
  189. }
  190. func (m *LoginReply) GetCid() int64 {
  191. if m != nil {
  192. return m.Cid
  193. }
  194. return 0
  195. }
  196. func (m *LoginReply) GetGardenId() int64 {
  197. if m != nil {
  198. return m.GardenId
  199. }
  200. return 0
  201. }
  202. func (m *LoginReply) GetGroupId() int64 {
  203. if m != nil {
  204. return m.GroupId
  205. }
  206. return 0
  207. }
  208. func (m *LoginReply) GetIsSuperGroup() bool {
  209. if m != nil {
  210. return m.IsSuperGroup
  211. }
  212. return false
  213. }
  214. func (m *LoginReply) GetGardenName() string {
  215. if m != nil {
  216. return m.GardenName
  217. }
  218. return ""
  219. }
  220. func (m *LoginReply) GetUserPermissionTime() string {
  221. if m != nil {
  222. return m.UserPermissionTime
  223. }
  224. return ""
  225. }
  226. func (m *LoginReply) GetGlobalPermissionTime() string {
  227. if m != nil {
  228. return m.GlobalPermissionTime
  229. }
  230. return ""
  231. }
  232. func (m *LoginReply) GetPermissions() []*SystemGroupPermissionData {
  233. if m != nil {
  234. return m.Permissions
  235. }
  236. return nil
  237. }
  238. type LoginByPhoneRequest struct {
  239. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  240. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  241. // 是否来源于员工小程序
  242. Applete bool `protobuf:"varint,3,opt,name=applete,proto3" json:"applete"`
  243. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  244. XXX_unrecognized []byte `json:"-"`
  245. XXX_sizecache int32 `json:"-"`
  246. }
  247. func (m *LoginByPhoneRequest) Reset() { *m = LoginByPhoneRequest{} }
  248. func (m *LoginByPhoneRequest) String() string { return proto.CompactTextString(m) }
  249. func (*LoginByPhoneRequest) ProtoMessage() {}
  250. func (*LoginByPhoneRequest) Descriptor() ([]byte, []int) {
  251. return fileDescriptor_86a7260ebdc12f47, []int{3}
  252. }
  253. func (m *LoginByPhoneRequest) XXX_Unmarshal(b []byte) error {
  254. return xxx_messageInfo_LoginByPhoneRequest.Unmarshal(m, b)
  255. }
  256. func (m *LoginByPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  257. return xxx_messageInfo_LoginByPhoneRequest.Marshal(b, m, deterministic)
  258. }
  259. func (m *LoginByPhoneRequest) XXX_Merge(src proto.Message) {
  260. xxx_messageInfo_LoginByPhoneRequest.Merge(m, src)
  261. }
  262. func (m *LoginByPhoneRequest) XXX_Size() int {
  263. return xxx_messageInfo_LoginByPhoneRequest.Size(m)
  264. }
  265. func (m *LoginByPhoneRequest) XXX_DiscardUnknown() {
  266. xxx_messageInfo_LoginByPhoneRequest.DiscardUnknown(m)
  267. }
  268. var xxx_messageInfo_LoginByPhoneRequest proto.InternalMessageInfo
  269. func (m *LoginByPhoneRequest) GetPhone() string {
  270. if m != nil {
  271. return m.Phone
  272. }
  273. return ""
  274. }
  275. func (m *LoginByPhoneRequest) GetPassword() string {
  276. if m != nil {
  277. return m.Password
  278. }
  279. return ""
  280. }
  281. func (m *LoginByPhoneRequest) GetApplete() bool {
  282. if m != nil {
  283. return m.Applete
  284. }
  285. return false
  286. }
  287. type LoginByPhoneReply struct {
  288. List []*LoginReply `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  289. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  290. XXX_unrecognized []byte `json:"-"`
  291. XXX_sizecache int32 `json:"-"`
  292. }
  293. func (m *LoginByPhoneReply) Reset() { *m = LoginByPhoneReply{} }
  294. func (m *LoginByPhoneReply) String() string { return proto.CompactTextString(m) }
  295. func (*LoginByPhoneReply) ProtoMessage() {}
  296. func (*LoginByPhoneReply) Descriptor() ([]byte, []int) {
  297. return fileDescriptor_86a7260ebdc12f47, []int{4}
  298. }
  299. func (m *LoginByPhoneReply) XXX_Unmarshal(b []byte) error {
  300. return xxx_messageInfo_LoginByPhoneReply.Unmarshal(m, b)
  301. }
  302. func (m *LoginByPhoneReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  303. return xxx_messageInfo_LoginByPhoneReply.Marshal(b, m, deterministic)
  304. }
  305. func (m *LoginByPhoneReply) XXX_Merge(src proto.Message) {
  306. xxx_messageInfo_LoginByPhoneReply.Merge(m, src)
  307. }
  308. func (m *LoginByPhoneReply) XXX_Size() int {
  309. return xxx_messageInfo_LoginByPhoneReply.Size(m)
  310. }
  311. func (m *LoginByPhoneReply) XXX_DiscardUnknown() {
  312. xxx_messageInfo_LoginByPhoneReply.DiscardUnknown(m)
  313. }
  314. var xxx_messageInfo_LoginByPhoneReply proto.InternalMessageInfo
  315. func (m *LoginByPhoneReply) GetList() []*LoginReply {
  316. if m != nil {
  317. return m.List
  318. }
  319. return nil
  320. }
  321. type CheckPhoneRequest struct {
  322. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  323. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  324. XXX_unrecognized []byte `json:"-"`
  325. XXX_sizecache int32 `json:"-"`
  326. }
  327. func (m *CheckPhoneRequest) Reset() { *m = CheckPhoneRequest{} }
  328. func (m *CheckPhoneRequest) String() string { return proto.CompactTextString(m) }
  329. func (*CheckPhoneRequest) ProtoMessage() {}
  330. func (*CheckPhoneRequest) Descriptor() ([]byte, []int) {
  331. return fileDescriptor_86a7260ebdc12f47, []int{5}
  332. }
  333. func (m *CheckPhoneRequest) XXX_Unmarshal(b []byte) error {
  334. return xxx_messageInfo_CheckPhoneRequest.Unmarshal(m, b)
  335. }
  336. func (m *CheckPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  337. return xxx_messageInfo_CheckPhoneRequest.Marshal(b, m, deterministic)
  338. }
  339. func (m *CheckPhoneRequest) XXX_Merge(src proto.Message) {
  340. xxx_messageInfo_CheckPhoneRequest.Merge(m, src)
  341. }
  342. func (m *CheckPhoneRequest) XXX_Size() int {
  343. return xxx_messageInfo_CheckPhoneRequest.Size(m)
  344. }
  345. func (m *CheckPhoneRequest) XXX_DiscardUnknown() {
  346. xxx_messageInfo_CheckPhoneRequest.DiscardUnknown(m)
  347. }
  348. var xxx_messageInfo_CheckPhoneRequest proto.InternalMessageInfo
  349. func (m *CheckPhoneRequest) GetPhone() string {
  350. if m != nil {
  351. return m.Phone
  352. }
  353. return ""
  354. }
  355. type CheckPhoneReply struct {
  356. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  357. XXX_unrecognized []byte `json:"-"`
  358. XXX_sizecache int32 `json:"-"`
  359. }
  360. func (m *CheckPhoneReply) Reset() { *m = CheckPhoneReply{} }
  361. func (m *CheckPhoneReply) String() string { return proto.CompactTextString(m) }
  362. func (*CheckPhoneReply) ProtoMessage() {}
  363. func (*CheckPhoneReply) Descriptor() ([]byte, []int) {
  364. return fileDescriptor_86a7260ebdc12f47, []int{6}
  365. }
  366. func (m *CheckPhoneReply) XXX_Unmarshal(b []byte) error {
  367. return xxx_messageInfo_CheckPhoneReply.Unmarshal(m, b)
  368. }
  369. func (m *CheckPhoneReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  370. return xxx_messageInfo_CheckPhoneReply.Marshal(b, m, deterministic)
  371. }
  372. func (m *CheckPhoneReply) XXX_Merge(src proto.Message) {
  373. xxx_messageInfo_CheckPhoneReply.Merge(m, src)
  374. }
  375. func (m *CheckPhoneReply) XXX_Size() int {
  376. return xxx_messageInfo_CheckPhoneReply.Size(m)
  377. }
  378. func (m *CheckPhoneReply) XXX_DiscardUnknown() {
  379. xxx_messageInfo_CheckPhoneReply.DiscardUnknown(m)
  380. }
  381. var xxx_messageInfo_CheckPhoneReply proto.InternalMessageInfo
  382. type UserAddRequest struct {
  383. UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name"`
  384. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  385. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email"`
  386. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  387. GroupId int64 `protobuf:"varint,5,opt,name=group_id,json=groupId,proto3" json:"group_id"`
  388. Enable bool `protobuf:"varint,6,opt,name=enable,proto3" json:"enable"`
  389. GardenId int64 `protobuf:"varint,7,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  390. Cid int64 `protobuf:"varint,8,opt,name=cid,proto3" json:"cid"`
  391. GardenName string `protobuf:"bytes,9,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  392. ByCompany bool `protobuf:"varint,10,opt,name=by_company,json=byCompany,proto3" json:"by_company"`
  393. Uid int64 `protobuf:"varint,11,opt,name=uid,proto3" json:"uid"`
  394. RealName string `protobuf:"bytes,12,opt,name=real_name,json=realName,proto3" json:"real_name"`
  395. DepartmentId int64 `protobuf:"varint,13,opt,name=department_id,json=departmentId,proto3" json:"department_id"`
  396. BasePermission int32 `protobuf:"varint,14,opt,name=base_permission,json=basePermission,proto3" json:"base_permission"`
  397. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  398. XXX_unrecognized []byte `json:"-"`
  399. XXX_sizecache int32 `json:"-"`
  400. }
  401. func (m *UserAddRequest) Reset() { *m = UserAddRequest{} }
  402. func (m *UserAddRequest) String() string { return proto.CompactTextString(m) }
  403. func (*UserAddRequest) ProtoMessage() {}
  404. func (*UserAddRequest) Descriptor() ([]byte, []int) {
  405. return fileDescriptor_86a7260ebdc12f47, []int{7}
  406. }
  407. func (m *UserAddRequest) XXX_Unmarshal(b []byte) error {
  408. return xxx_messageInfo_UserAddRequest.Unmarshal(m, b)
  409. }
  410. func (m *UserAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  411. return xxx_messageInfo_UserAddRequest.Marshal(b, m, deterministic)
  412. }
  413. func (m *UserAddRequest) XXX_Merge(src proto.Message) {
  414. xxx_messageInfo_UserAddRequest.Merge(m, src)
  415. }
  416. func (m *UserAddRequest) XXX_Size() int {
  417. return xxx_messageInfo_UserAddRequest.Size(m)
  418. }
  419. func (m *UserAddRequest) XXX_DiscardUnknown() {
  420. xxx_messageInfo_UserAddRequest.DiscardUnknown(m)
  421. }
  422. var xxx_messageInfo_UserAddRequest proto.InternalMessageInfo
  423. func (m *UserAddRequest) GetUserName() string {
  424. if m != nil {
  425. return m.UserName
  426. }
  427. return ""
  428. }
  429. func (m *UserAddRequest) GetPassword() string {
  430. if m != nil {
  431. return m.Password
  432. }
  433. return ""
  434. }
  435. func (m *UserAddRequest) GetEmail() string {
  436. if m != nil {
  437. return m.Email
  438. }
  439. return ""
  440. }
  441. func (m *UserAddRequest) GetPhone() string {
  442. if m != nil {
  443. return m.Phone
  444. }
  445. return ""
  446. }
  447. func (m *UserAddRequest) GetGroupId() int64 {
  448. if m != nil {
  449. return m.GroupId
  450. }
  451. return 0
  452. }
  453. func (m *UserAddRequest) GetEnable() bool {
  454. if m != nil {
  455. return m.Enable
  456. }
  457. return false
  458. }
  459. func (m *UserAddRequest) GetGardenId() int64 {
  460. if m != nil {
  461. return m.GardenId
  462. }
  463. return 0
  464. }
  465. func (m *UserAddRequest) GetCid() int64 {
  466. if m != nil {
  467. return m.Cid
  468. }
  469. return 0
  470. }
  471. func (m *UserAddRequest) GetGardenName() string {
  472. if m != nil {
  473. return m.GardenName
  474. }
  475. return ""
  476. }
  477. func (m *UserAddRequest) GetByCompany() bool {
  478. if m != nil {
  479. return m.ByCompany
  480. }
  481. return false
  482. }
  483. func (m *UserAddRequest) GetUid() int64 {
  484. if m != nil {
  485. return m.Uid
  486. }
  487. return 0
  488. }
  489. func (m *UserAddRequest) GetRealName() string {
  490. if m != nil {
  491. return m.RealName
  492. }
  493. return ""
  494. }
  495. func (m *UserAddRequest) GetDepartmentId() int64 {
  496. if m != nil {
  497. return m.DepartmentId
  498. }
  499. return 0
  500. }
  501. func (m *UserAddRequest) GetBasePermission() int32 {
  502. if m != nil {
  503. return m.BasePermission
  504. }
  505. return 0
  506. }
  507. type UserAddReply struct {
  508. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  509. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  510. XXX_unrecognized []byte `json:"-"`
  511. XXX_sizecache int32 `json:"-"`
  512. }
  513. func (m *UserAddReply) Reset() { *m = UserAddReply{} }
  514. func (m *UserAddReply) String() string { return proto.CompactTextString(m) }
  515. func (*UserAddReply) ProtoMessage() {}
  516. func (*UserAddReply) Descriptor() ([]byte, []int) {
  517. return fileDescriptor_86a7260ebdc12f47, []int{8}
  518. }
  519. func (m *UserAddReply) XXX_Unmarshal(b []byte) error {
  520. return xxx_messageInfo_UserAddReply.Unmarshal(m, b)
  521. }
  522. func (m *UserAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  523. return xxx_messageInfo_UserAddReply.Marshal(b, m, deterministic)
  524. }
  525. func (m *UserAddReply) XXX_Merge(src proto.Message) {
  526. xxx_messageInfo_UserAddReply.Merge(m, src)
  527. }
  528. func (m *UserAddReply) XXX_Size() int {
  529. return xxx_messageInfo_UserAddReply.Size(m)
  530. }
  531. func (m *UserAddReply) XXX_DiscardUnknown() {
  532. xxx_messageInfo_UserAddReply.DiscardUnknown(m)
  533. }
  534. var xxx_messageInfo_UserAddReply proto.InternalMessageInfo
  535. func (m *UserAddReply) GetId() int64 {
  536. if m != nil {
  537. return m.Id
  538. }
  539. return 0
  540. }
  541. type UserUpdateRequest struct {
  542. UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name"`
  543. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  544. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email"`
  545. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  546. Enable bool `protobuf:"varint,5,opt,name=enable,proto3" json:"enable"`
  547. Id int64 `protobuf:"varint,6,opt,name=id,proto3" json:"id"`
  548. GardenId int64 `protobuf:"varint,7,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  549. Cid int64 `protobuf:"varint,8,opt,name=cid,proto3" json:"cid"`
  550. GardenName string `protobuf:"bytes,9,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  551. GroupId int64 `protobuf:"varint,10,opt,name=group_id,json=groupId,proto3" json:"group_id"`
  552. ByCompany bool `protobuf:"varint,11,opt,name=by_company,json=byCompany,proto3" json:"by_company"`
  553. Uid int64 `protobuf:"varint,12,opt,name=uid,proto3" json:"uid"`
  554. RealName string `protobuf:"bytes,13,opt,name=real_name,json=realName,proto3" json:"real_name"`
  555. DepartmentId int64 `protobuf:"varint,14,opt,name=department_id,json=departmentId,proto3" json:"department_id"`
  556. BasePermission int32 `protobuf:"varint,15,opt,name=base_permission,json=basePermission,proto3" json:"base_permission"`
  557. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  558. XXX_unrecognized []byte `json:"-"`
  559. XXX_sizecache int32 `json:"-"`
  560. }
  561. func (m *UserUpdateRequest) Reset() { *m = UserUpdateRequest{} }
  562. func (m *UserUpdateRequest) String() string { return proto.CompactTextString(m) }
  563. func (*UserUpdateRequest) ProtoMessage() {}
  564. func (*UserUpdateRequest) Descriptor() ([]byte, []int) {
  565. return fileDescriptor_86a7260ebdc12f47, []int{9}
  566. }
  567. func (m *UserUpdateRequest) XXX_Unmarshal(b []byte) error {
  568. return xxx_messageInfo_UserUpdateRequest.Unmarshal(m, b)
  569. }
  570. func (m *UserUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  571. return xxx_messageInfo_UserUpdateRequest.Marshal(b, m, deterministic)
  572. }
  573. func (m *UserUpdateRequest) XXX_Merge(src proto.Message) {
  574. xxx_messageInfo_UserUpdateRequest.Merge(m, src)
  575. }
  576. func (m *UserUpdateRequest) XXX_Size() int {
  577. return xxx_messageInfo_UserUpdateRequest.Size(m)
  578. }
  579. func (m *UserUpdateRequest) XXX_DiscardUnknown() {
  580. xxx_messageInfo_UserUpdateRequest.DiscardUnknown(m)
  581. }
  582. var xxx_messageInfo_UserUpdateRequest proto.InternalMessageInfo
  583. func (m *UserUpdateRequest) GetUserName() string {
  584. if m != nil {
  585. return m.UserName
  586. }
  587. return ""
  588. }
  589. func (m *UserUpdateRequest) GetPassword() string {
  590. if m != nil {
  591. return m.Password
  592. }
  593. return ""
  594. }
  595. func (m *UserUpdateRequest) GetEmail() string {
  596. if m != nil {
  597. return m.Email
  598. }
  599. return ""
  600. }
  601. func (m *UserUpdateRequest) GetPhone() string {
  602. if m != nil {
  603. return m.Phone
  604. }
  605. return ""
  606. }
  607. func (m *UserUpdateRequest) GetEnable() bool {
  608. if m != nil {
  609. return m.Enable
  610. }
  611. return false
  612. }
  613. func (m *UserUpdateRequest) GetId() int64 {
  614. if m != nil {
  615. return m.Id
  616. }
  617. return 0
  618. }
  619. func (m *UserUpdateRequest) GetGardenId() int64 {
  620. if m != nil {
  621. return m.GardenId
  622. }
  623. return 0
  624. }
  625. func (m *UserUpdateRequest) GetCid() int64 {
  626. if m != nil {
  627. return m.Cid
  628. }
  629. return 0
  630. }
  631. func (m *UserUpdateRequest) GetGardenName() string {
  632. if m != nil {
  633. return m.GardenName
  634. }
  635. return ""
  636. }
  637. func (m *UserUpdateRequest) GetGroupId() int64 {
  638. if m != nil {
  639. return m.GroupId
  640. }
  641. return 0
  642. }
  643. func (m *UserUpdateRequest) GetByCompany() bool {
  644. if m != nil {
  645. return m.ByCompany
  646. }
  647. return false
  648. }
  649. func (m *UserUpdateRequest) GetUid() int64 {
  650. if m != nil {
  651. return m.Uid
  652. }
  653. return 0
  654. }
  655. func (m *UserUpdateRequest) GetRealName() string {
  656. if m != nil {
  657. return m.RealName
  658. }
  659. return ""
  660. }
  661. func (m *UserUpdateRequest) GetDepartmentId() int64 {
  662. if m != nil {
  663. return m.DepartmentId
  664. }
  665. return 0
  666. }
  667. func (m *UserUpdateRequest) GetBasePermission() int32 {
  668. if m != nil {
  669. return m.BasePermission
  670. }
  671. return 0
  672. }
  673. type UserUpdateReply struct {
  674. Origin *UserUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  675. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  676. XXX_unrecognized []byte `json:"-"`
  677. XXX_sizecache int32 `json:"-"`
  678. }
  679. func (m *UserUpdateReply) Reset() { *m = UserUpdateReply{} }
  680. func (m *UserUpdateReply) String() string { return proto.CompactTextString(m) }
  681. func (*UserUpdateReply) ProtoMessage() {}
  682. func (*UserUpdateReply) Descriptor() ([]byte, []int) {
  683. return fileDescriptor_86a7260ebdc12f47, []int{10}
  684. }
  685. func (m *UserUpdateReply) XXX_Unmarshal(b []byte) error {
  686. return xxx_messageInfo_UserUpdateReply.Unmarshal(m, b)
  687. }
  688. func (m *UserUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  689. return xxx_messageInfo_UserUpdateReply.Marshal(b, m, deterministic)
  690. }
  691. func (m *UserUpdateReply) XXX_Merge(src proto.Message) {
  692. xxx_messageInfo_UserUpdateReply.Merge(m, src)
  693. }
  694. func (m *UserUpdateReply) XXX_Size() int {
  695. return xxx_messageInfo_UserUpdateReply.Size(m)
  696. }
  697. func (m *UserUpdateReply) XXX_DiscardUnknown() {
  698. xxx_messageInfo_UserUpdateReply.DiscardUnknown(m)
  699. }
  700. var xxx_messageInfo_UserUpdateReply proto.InternalMessageInfo
  701. func (m *UserUpdateReply) GetOrigin() *UserUpdateRequest {
  702. if m != nil {
  703. return m.Origin
  704. }
  705. return nil
  706. }
  707. type UserDelRequest struct {
  708. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  709. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  710. ByCompany bool `protobuf:"varint,3,opt,name=by_company,json=byCompany,proto3" json:"by_company"`
  711. Uid int64 `protobuf:"varint,4,opt,name=uid,proto3" json:"uid"`
  712. GardenId int64 `protobuf:"varint,5,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  713. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  714. XXX_unrecognized []byte `json:"-"`
  715. XXX_sizecache int32 `json:"-"`
  716. }
  717. func (m *UserDelRequest) Reset() { *m = UserDelRequest{} }
  718. func (m *UserDelRequest) String() string { return proto.CompactTextString(m) }
  719. func (*UserDelRequest) ProtoMessage() {}
  720. func (*UserDelRequest) Descriptor() ([]byte, []int) {
  721. return fileDescriptor_86a7260ebdc12f47, []int{11}
  722. }
  723. func (m *UserDelRequest) XXX_Unmarshal(b []byte) error {
  724. return xxx_messageInfo_UserDelRequest.Unmarshal(m, b)
  725. }
  726. func (m *UserDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  727. return xxx_messageInfo_UserDelRequest.Marshal(b, m, deterministic)
  728. }
  729. func (m *UserDelRequest) XXX_Merge(src proto.Message) {
  730. xxx_messageInfo_UserDelRequest.Merge(m, src)
  731. }
  732. func (m *UserDelRequest) XXX_Size() int {
  733. return xxx_messageInfo_UserDelRequest.Size(m)
  734. }
  735. func (m *UserDelRequest) XXX_DiscardUnknown() {
  736. xxx_messageInfo_UserDelRequest.DiscardUnknown(m)
  737. }
  738. var xxx_messageInfo_UserDelRequest proto.InternalMessageInfo
  739. func (m *UserDelRequest) GetId() int64 {
  740. if m != nil {
  741. return m.Id
  742. }
  743. return 0
  744. }
  745. func (m *UserDelRequest) GetCid() int64 {
  746. if m != nil {
  747. return m.Cid
  748. }
  749. return 0
  750. }
  751. func (m *UserDelRequest) GetByCompany() bool {
  752. if m != nil {
  753. return m.ByCompany
  754. }
  755. return false
  756. }
  757. func (m *UserDelRequest) GetUid() int64 {
  758. if m != nil {
  759. return m.Uid
  760. }
  761. return 0
  762. }
  763. func (m *UserDelRequest) GetGardenId() int64 {
  764. if m != nil {
  765. return m.GardenId
  766. }
  767. return 0
  768. }
  769. type UserDelReply struct {
  770. Origin *UserUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  771. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  772. XXX_unrecognized []byte `json:"-"`
  773. XXX_sizecache int32 `json:"-"`
  774. }
  775. func (m *UserDelReply) Reset() { *m = UserDelReply{} }
  776. func (m *UserDelReply) String() string { return proto.CompactTextString(m) }
  777. func (*UserDelReply) ProtoMessage() {}
  778. func (*UserDelReply) Descriptor() ([]byte, []int) {
  779. return fileDescriptor_86a7260ebdc12f47, []int{12}
  780. }
  781. func (m *UserDelReply) XXX_Unmarshal(b []byte) error {
  782. return xxx_messageInfo_UserDelReply.Unmarshal(m, b)
  783. }
  784. func (m *UserDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  785. return xxx_messageInfo_UserDelReply.Marshal(b, m, deterministic)
  786. }
  787. func (m *UserDelReply) XXX_Merge(src proto.Message) {
  788. xxx_messageInfo_UserDelReply.Merge(m, src)
  789. }
  790. func (m *UserDelReply) XXX_Size() int {
  791. return xxx_messageInfo_UserDelReply.Size(m)
  792. }
  793. func (m *UserDelReply) XXX_DiscardUnknown() {
  794. xxx_messageInfo_UserDelReply.DiscardUnknown(m)
  795. }
  796. var xxx_messageInfo_UserDelReply proto.InternalMessageInfo
  797. func (m *UserDelReply) GetOrigin() *UserUpdateRequest {
  798. if m != nil {
  799. return m.Origin
  800. }
  801. return nil
  802. }
  803. type UserListRequest struct {
  804. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  805. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  806. Page int64 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  807. PageSize int64 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  808. GardenName string `protobuf:"bytes,5,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  809. UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name"`
  810. ByCompany bool `protobuf:"varint,7,opt,name=by_company,json=byCompany,proto3" json:"by_company"`
  811. GroupId int64 `protobuf:"varint,8,opt,name=group_id,json=groupId,proto3" json:"group_id"`
  812. Phone string `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone"`
  813. Ids []int64 `protobuf:"varint,10,rep,packed,name=ids,proto3" json:"ids"`
  814. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  815. XXX_unrecognized []byte `json:"-"`
  816. XXX_sizecache int32 `json:"-"`
  817. }
  818. func (m *UserListRequest) Reset() { *m = UserListRequest{} }
  819. func (m *UserListRequest) String() string { return proto.CompactTextString(m) }
  820. func (*UserListRequest) ProtoMessage() {}
  821. func (*UserListRequest) Descriptor() ([]byte, []int) {
  822. return fileDescriptor_86a7260ebdc12f47, []int{13}
  823. }
  824. func (m *UserListRequest) XXX_Unmarshal(b []byte) error {
  825. return xxx_messageInfo_UserListRequest.Unmarshal(m, b)
  826. }
  827. func (m *UserListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  828. return xxx_messageInfo_UserListRequest.Marshal(b, m, deterministic)
  829. }
  830. func (m *UserListRequest) XXX_Merge(src proto.Message) {
  831. xxx_messageInfo_UserListRequest.Merge(m, src)
  832. }
  833. func (m *UserListRequest) XXX_Size() int {
  834. return xxx_messageInfo_UserListRequest.Size(m)
  835. }
  836. func (m *UserListRequest) XXX_DiscardUnknown() {
  837. xxx_messageInfo_UserListRequest.DiscardUnknown(m)
  838. }
  839. var xxx_messageInfo_UserListRequest proto.InternalMessageInfo
  840. func (m *UserListRequest) GetCid() int64 {
  841. if m != nil {
  842. return m.Cid
  843. }
  844. return 0
  845. }
  846. func (m *UserListRequest) GetGardenId() int64 {
  847. if m != nil {
  848. return m.GardenId
  849. }
  850. return 0
  851. }
  852. func (m *UserListRequest) GetPage() int64 {
  853. if m != nil {
  854. return m.Page
  855. }
  856. return 0
  857. }
  858. func (m *UserListRequest) GetPageSize() int64 {
  859. if m != nil {
  860. return m.PageSize
  861. }
  862. return 0
  863. }
  864. func (m *UserListRequest) GetGardenName() string {
  865. if m != nil {
  866. return m.GardenName
  867. }
  868. return ""
  869. }
  870. func (m *UserListRequest) GetUserName() string {
  871. if m != nil {
  872. return m.UserName
  873. }
  874. return ""
  875. }
  876. func (m *UserListRequest) GetByCompany() bool {
  877. if m != nil {
  878. return m.ByCompany
  879. }
  880. return false
  881. }
  882. func (m *UserListRequest) GetGroupId() int64 {
  883. if m != nil {
  884. return m.GroupId
  885. }
  886. return 0
  887. }
  888. func (m *UserListRequest) GetPhone() string {
  889. if m != nil {
  890. return m.Phone
  891. }
  892. return ""
  893. }
  894. func (m *UserListRequest) GetIds() []int64 {
  895. if m != nil {
  896. return m.Ids
  897. }
  898. return nil
  899. }
  900. type UserItem struct {
  901. UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name"`
  902. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  903. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email"`
  904. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  905. Super bool `protobuf:"varint,5,opt,name=super,proto3" json:"super"`
  906. Enable bool `protobuf:"varint,6,opt,name=enable,proto3" json:"enable"`
  907. Id int64 `protobuf:"varint,7,opt,name=id,proto3" json:"id"`
  908. GardenId int64 `protobuf:"varint,8,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  909. Cid int64 `protobuf:"varint,9,opt,name=cid,proto3" json:"cid"`
  910. GardenName string `protobuf:"bytes,10,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  911. CreatedAt string `protobuf:"bytes,11,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  912. GroupId int64 `protobuf:"varint,12,opt,name=group_id,json=groupId,proto3" json:"group_id"`
  913. GroupName string `protobuf:"bytes,13,opt,name=group_name,json=groupName,proto3" json:"group_name"`
  914. DepartmentName string `protobuf:"bytes,14,opt,name=department_name,json=departmentName,proto3" json:"department_name"`
  915. RealName string `protobuf:"bytes,15,opt,name=real_name,json=realName,proto3" json:"real_name"`
  916. BasePermission int32 `protobuf:"varint,16,opt,name=base_permission,json=basePermission,proto3" json:"base_permission"`
  917. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  918. XXX_unrecognized []byte `json:"-"`
  919. XXX_sizecache int32 `json:"-"`
  920. }
  921. func (m *UserItem) Reset() { *m = UserItem{} }
  922. func (m *UserItem) String() string { return proto.CompactTextString(m) }
  923. func (*UserItem) ProtoMessage() {}
  924. func (*UserItem) Descriptor() ([]byte, []int) {
  925. return fileDescriptor_86a7260ebdc12f47, []int{14}
  926. }
  927. func (m *UserItem) XXX_Unmarshal(b []byte) error {
  928. return xxx_messageInfo_UserItem.Unmarshal(m, b)
  929. }
  930. func (m *UserItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  931. return xxx_messageInfo_UserItem.Marshal(b, m, deterministic)
  932. }
  933. func (m *UserItem) XXX_Merge(src proto.Message) {
  934. xxx_messageInfo_UserItem.Merge(m, src)
  935. }
  936. func (m *UserItem) XXX_Size() int {
  937. return xxx_messageInfo_UserItem.Size(m)
  938. }
  939. func (m *UserItem) XXX_DiscardUnknown() {
  940. xxx_messageInfo_UserItem.DiscardUnknown(m)
  941. }
  942. var xxx_messageInfo_UserItem proto.InternalMessageInfo
  943. func (m *UserItem) GetUserName() string {
  944. if m != nil {
  945. return m.UserName
  946. }
  947. return ""
  948. }
  949. func (m *UserItem) GetPassword() string {
  950. if m != nil {
  951. return m.Password
  952. }
  953. return ""
  954. }
  955. func (m *UserItem) GetEmail() string {
  956. if m != nil {
  957. return m.Email
  958. }
  959. return ""
  960. }
  961. func (m *UserItem) GetPhone() string {
  962. if m != nil {
  963. return m.Phone
  964. }
  965. return ""
  966. }
  967. func (m *UserItem) GetSuper() bool {
  968. if m != nil {
  969. return m.Super
  970. }
  971. return false
  972. }
  973. func (m *UserItem) GetEnable() bool {
  974. if m != nil {
  975. return m.Enable
  976. }
  977. return false
  978. }
  979. func (m *UserItem) GetId() int64 {
  980. if m != nil {
  981. return m.Id
  982. }
  983. return 0
  984. }
  985. func (m *UserItem) GetGardenId() int64 {
  986. if m != nil {
  987. return m.GardenId
  988. }
  989. return 0
  990. }
  991. func (m *UserItem) GetCid() int64 {
  992. if m != nil {
  993. return m.Cid
  994. }
  995. return 0
  996. }
  997. func (m *UserItem) GetGardenName() string {
  998. if m != nil {
  999. return m.GardenName
  1000. }
  1001. return ""
  1002. }
  1003. func (m *UserItem) GetCreatedAt() string {
  1004. if m != nil {
  1005. return m.CreatedAt
  1006. }
  1007. return ""
  1008. }
  1009. func (m *UserItem) GetGroupId() int64 {
  1010. if m != nil {
  1011. return m.GroupId
  1012. }
  1013. return 0
  1014. }
  1015. func (m *UserItem) GetGroupName() string {
  1016. if m != nil {
  1017. return m.GroupName
  1018. }
  1019. return ""
  1020. }
  1021. func (m *UserItem) GetDepartmentName() string {
  1022. if m != nil {
  1023. return m.DepartmentName
  1024. }
  1025. return ""
  1026. }
  1027. func (m *UserItem) GetRealName() string {
  1028. if m != nil {
  1029. return m.RealName
  1030. }
  1031. return ""
  1032. }
  1033. func (m *UserItem) GetBasePermission() int32 {
  1034. if m != nil {
  1035. return m.BasePermission
  1036. }
  1037. return 0
  1038. }
  1039. type UserListReply struct {
  1040. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  1041. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  1042. List []*UserItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  1043. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1044. XXX_unrecognized []byte `json:"-"`
  1045. XXX_sizecache int32 `json:"-"`
  1046. }
  1047. func (m *UserListReply) Reset() { *m = UserListReply{} }
  1048. func (m *UserListReply) String() string { return proto.CompactTextString(m) }
  1049. func (*UserListReply) ProtoMessage() {}
  1050. func (*UserListReply) Descriptor() ([]byte, []int) {
  1051. return fileDescriptor_86a7260ebdc12f47, []int{15}
  1052. }
  1053. func (m *UserListReply) XXX_Unmarshal(b []byte) error {
  1054. return xxx_messageInfo_UserListReply.Unmarshal(m, b)
  1055. }
  1056. func (m *UserListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1057. return xxx_messageInfo_UserListReply.Marshal(b, m, deterministic)
  1058. }
  1059. func (m *UserListReply) XXX_Merge(src proto.Message) {
  1060. xxx_messageInfo_UserListReply.Merge(m, src)
  1061. }
  1062. func (m *UserListReply) XXX_Size() int {
  1063. return xxx_messageInfo_UserListReply.Size(m)
  1064. }
  1065. func (m *UserListReply) XXX_DiscardUnknown() {
  1066. xxx_messageInfo_UserListReply.DiscardUnknown(m)
  1067. }
  1068. var xxx_messageInfo_UserListReply proto.InternalMessageInfo
  1069. func (m *UserListReply) GetTotal() int64 {
  1070. if m != nil {
  1071. return m.Total
  1072. }
  1073. return 0
  1074. }
  1075. func (m *UserListReply) GetPage() int64 {
  1076. if m != nil {
  1077. return m.Page
  1078. }
  1079. return 0
  1080. }
  1081. func (m *UserListReply) GetList() []*UserItem {
  1082. if m != nil {
  1083. return m.List
  1084. }
  1085. return nil
  1086. }
  1087. type SuperGroupRequest struct {
  1088. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  1089. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1090. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1091. XXX_unrecognized []byte `json:"-"`
  1092. XXX_sizecache int32 `json:"-"`
  1093. }
  1094. func (m *SuperGroupRequest) Reset() { *m = SuperGroupRequest{} }
  1095. func (m *SuperGroupRequest) String() string { return proto.CompactTextString(m) }
  1096. func (*SuperGroupRequest) ProtoMessage() {}
  1097. func (*SuperGroupRequest) Descriptor() ([]byte, []int) {
  1098. return fileDescriptor_86a7260ebdc12f47, []int{16}
  1099. }
  1100. func (m *SuperGroupRequest) XXX_Unmarshal(b []byte) error {
  1101. return xxx_messageInfo_SuperGroupRequest.Unmarshal(m, b)
  1102. }
  1103. func (m *SuperGroupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1104. return xxx_messageInfo_SuperGroupRequest.Marshal(b, m, deterministic)
  1105. }
  1106. func (m *SuperGroupRequest) XXX_Merge(src proto.Message) {
  1107. xxx_messageInfo_SuperGroupRequest.Merge(m, src)
  1108. }
  1109. func (m *SuperGroupRequest) XXX_Size() int {
  1110. return xxx_messageInfo_SuperGroupRequest.Size(m)
  1111. }
  1112. func (m *SuperGroupRequest) XXX_DiscardUnknown() {
  1113. xxx_messageInfo_SuperGroupRequest.DiscardUnknown(m)
  1114. }
  1115. var xxx_messageInfo_SuperGroupRequest proto.InternalMessageInfo
  1116. func (m *SuperGroupRequest) GetCid() int64 {
  1117. if m != nil {
  1118. return m.Cid
  1119. }
  1120. return 0
  1121. }
  1122. func (m *SuperGroupRequest) GetGardenId() int64 {
  1123. if m != nil {
  1124. return m.GardenId
  1125. }
  1126. return 0
  1127. }
  1128. type SuperGroupReply struct {
  1129. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1130. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1131. XXX_unrecognized []byte `json:"-"`
  1132. XXX_sizecache int32 `json:"-"`
  1133. }
  1134. func (m *SuperGroupReply) Reset() { *m = SuperGroupReply{} }
  1135. func (m *SuperGroupReply) String() string { return proto.CompactTextString(m) }
  1136. func (*SuperGroupReply) ProtoMessage() {}
  1137. func (*SuperGroupReply) Descriptor() ([]byte, []int) {
  1138. return fileDescriptor_86a7260ebdc12f47, []int{17}
  1139. }
  1140. func (m *SuperGroupReply) XXX_Unmarshal(b []byte) error {
  1141. return xxx_messageInfo_SuperGroupReply.Unmarshal(m, b)
  1142. }
  1143. func (m *SuperGroupReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1144. return xxx_messageInfo_SuperGroupReply.Marshal(b, m, deterministic)
  1145. }
  1146. func (m *SuperGroupReply) XXX_Merge(src proto.Message) {
  1147. xxx_messageInfo_SuperGroupReply.Merge(m, src)
  1148. }
  1149. func (m *SuperGroupReply) XXX_Size() int {
  1150. return xxx_messageInfo_SuperGroupReply.Size(m)
  1151. }
  1152. func (m *SuperGroupReply) XXX_DiscardUnknown() {
  1153. xxx_messageInfo_SuperGroupReply.DiscardUnknown(m)
  1154. }
  1155. var xxx_messageInfo_SuperGroupReply proto.InternalMessageInfo
  1156. func (m *SuperGroupReply) GetId() int64 {
  1157. if m != nil {
  1158. return m.Id
  1159. }
  1160. return 0
  1161. }
  1162. type UserGardenChangeRequest struct {
  1163. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1164. GardenName string `protobuf:"bytes,2,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  1165. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1166. XXX_unrecognized []byte `json:"-"`
  1167. XXX_sizecache int32 `json:"-"`
  1168. }
  1169. func (m *UserGardenChangeRequest) Reset() { *m = UserGardenChangeRequest{} }
  1170. func (m *UserGardenChangeRequest) String() string { return proto.CompactTextString(m) }
  1171. func (*UserGardenChangeRequest) ProtoMessage() {}
  1172. func (*UserGardenChangeRequest) Descriptor() ([]byte, []int) {
  1173. return fileDescriptor_86a7260ebdc12f47, []int{18}
  1174. }
  1175. func (m *UserGardenChangeRequest) XXX_Unmarshal(b []byte) error {
  1176. return xxx_messageInfo_UserGardenChangeRequest.Unmarshal(m, b)
  1177. }
  1178. func (m *UserGardenChangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1179. return xxx_messageInfo_UserGardenChangeRequest.Marshal(b, m, deterministic)
  1180. }
  1181. func (m *UserGardenChangeRequest) XXX_Merge(src proto.Message) {
  1182. xxx_messageInfo_UserGardenChangeRequest.Merge(m, src)
  1183. }
  1184. func (m *UserGardenChangeRequest) XXX_Size() int {
  1185. return xxx_messageInfo_UserGardenChangeRequest.Size(m)
  1186. }
  1187. func (m *UserGardenChangeRequest) XXX_DiscardUnknown() {
  1188. xxx_messageInfo_UserGardenChangeRequest.DiscardUnknown(m)
  1189. }
  1190. var xxx_messageInfo_UserGardenChangeRequest proto.InternalMessageInfo
  1191. func (m *UserGardenChangeRequest) GetGardenId() int64 {
  1192. if m != nil {
  1193. return m.GardenId
  1194. }
  1195. return 0
  1196. }
  1197. func (m *UserGardenChangeRequest) GetGardenName() string {
  1198. if m != nil {
  1199. return m.GardenName
  1200. }
  1201. return ""
  1202. }
  1203. type UserGardenChangeReply struct {
  1204. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1205. XXX_unrecognized []byte `json:"-"`
  1206. XXX_sizecache int32 `json:"-"`
  1207. }
  1208. func (m *UserGardenChangeReply) Reset() { *m = UserGardenChangeReply{} }
  1209. func (m *UserGardenChangeReply) String() string { return proto.CompactTextString(m) }
  1210. func (*UserGardenChangeReply) ProtoMessage() {}
  1211. func (*UserGardenChangeReply) Descriptor() ([]byte, []int) {
  1212. return fileDescriptor_86a7260ebdc12f47, []int{19}
  1213. }
  1214. func (m *UserGardenChangeReply) XXX_Unmarshal(b []byte) error {
  1215. return xxx_messageInfo_UserGardenChangeReply.Unmarshal(m, b)
  1216. }
  1217. func (m *UserGardenChangeReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1218. return xxx_messageInfo_UserGardenChangeReply.Marshal(b, m, deterministic)
  1219. }
  1220. func (m *UserGardenChangeReply) XXX_Merge(src proto.Message) {
  1221. xxx_messageInfo_UserGardenChangeReply.Merge(m, src)
  1222. }
  1223. func (m *UserGardenChangeReply) XXX_Size() int {
  1224. return xxx_messageInfo_UserGardenChangeReply.Size(m)
  1225. }
  1226. func (m *UserGardenChangeReply) XXX_DiscardUnknown() {
  1227. xxx_messageInfo_UserGardenChangeReply.DiscardUnknown(m)
  1228. }
  1229. var xxx_messageInfo_UserGardenChangeReply proto.InternalMessageInfo
  1230. type GroupAddRequest struct {
  1231. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1232. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  1233. PermissionCodes []string `protobuf:"bytes,3,rep,name=permission_codes,json=permissionCodes,proto3" json:"permission_codes"`
  1234. IsSuper bool `protobuf:"varint,4,opt,name=is_super,json=isSuper,proto3" json:"is_super"`
  1235. GroupName string `protobuf:"bytes,5,opt,name=group_name,json=groupName,proto3" json:"group_name"`
  1236. GroupDesc string `protobuf:"bytes,6,opt,name=group_desc,json=groupDesc,proto3" json:"group_desc"`
  1237. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1238. XXX_unrecognized []byte `json:"-"`
  1239. XXX_sizecache int32 `json:"-"`
  1240. }
  1241. func (m *GroupAddRequest) Reset() { *m = GroupAddRequest{} }
  1242. func (m *GroupAddRequest) String() string { return proto.CompactTextString(m) }
  1243. func (*GroupAddRequest) ProtoMessage() {}
  1244. func (*GroupAddRequest) Descriptor() ([]byte, []int) {
  1245. return fileDescriptor_86a7260ebdc12f47, []int{20}
  1246. }
  1247. func (m *GroupAddRequest) XXX_Unmarshal(b []byte) error {
  1248. return xxx_messageInfo_GroupAddRequest.Unmarshal(m, b)
  1249. }
  1250. func (m *GroupAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1251. return xxx_messageInfo_GroupAddRequest.Marshal(b, m, deterministic)
  1252. }
  1253. func (m *GroupAddRequest) XXX_Merge(src proto.Message) {
  1254. xxx_messageInfo_GroupAddRequest.Merge(m, src)
  1255. }
  1256. func (m *GroupAddRequest) XXX_Size() int {
  1257. return xxx_messageInfo_GroupAddRequest.Size(m)
  1258. }
  1259. func (m *GroupAddRequest) XXX_DiscardUnknown() {
  1260. xxx_messageInfo_GroupAddRequest.DiscardUnknown(m)
  1261. }
  1262. var xxx_messageInfo_GroupAddRequest proto.InternalMessageInfo
  1263. func (m *GroupAddRequest) GetGardenId() int64 {
  1264. if m != nil {
  1265. return m.GardenId
  1266. }
  1267. return 0
  1268. }
  1269. func (m *GroupAddRequest) GetCid() int64 {
  1270. if m != nil {
  1271. return m.Cid
  1272. }
  1273. return 0
  1274. }
  1275. func (m *GroupAddRequest) GetPermissionCodes() []string {
  1276. if m != nil {
  1277. return m.PermissionCodes
  1278. }
  1279. return nil
  1280. }
  1281. func (m *GroupAddRequest) GetIsSuper() bool {
  1282. if m != nil {
  1283. return m.IsSuper
  1284. }
  1285. return false
  1286. }
  1287. func (m *GroupAddRequest) GetGroupName() string {
  1288. if m != nil {
  1289. return m.GroupName
  1290. }
  1291. return ""
  1292. }
  1293. func (m *GroupAddRequest) GetGroupDesc() string {
  1294. if m != nil {
  1295. return m.GroupDesc
  1296. }
  1297. return ""
  1298. }
  1299. type GroupAddReply struct {
  1300. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1301. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1302. XXX_unrecognized []byte `json:"-"`
  1303. XXX_sizecache int32 `json:"-"`
  1304. }
  1305. func (m *GroupAddReply) Reset() { *m = GroupAddReply{} }
  1306. func (m *GroupAddReply) String() string { return proto.CompactTextString(m) }
  1307. func (*GroupAddReply) ProtoMessage() {}
  1308. func (*GroupAddReply) Descriptor() ([]byte, []int) {
  1309. return fileDescriptor_86a7260ebdc12f47, []int{21}
  1310. }
  1311. func (m *GroupAddReply) XXX_Unmarshal(b []byte) error {
  1312. return xxx_messageInfo_GroupAddReply.Unmarshal(m, b)
  1313. }
  1314. func (m *GroupAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1315. return xxx_messageInfo_GroupAddReply.Marshal(b, m, deterministic)
  1316. }
  1317. func (m *GroupAddReply) XXX_Merge(src proto.Message) {
  1318. xxx_messageInfo_GroupAddReply.Merge(m, src)
  1319. }
  1320. func (m *GroupAddReply) XXX_Size() int {
  1321. return xxx_messageInfo_GroupAddReply.Size(m)
  1322. }
  1323. func (m *GroupAddReply) XXX_DiscardUnknown() {
  1324. xxx_messageInfo_GroupAddReply.DiscardUnknown(m)
  1325. }
  1326. var xxx_messageInfo_GroupAddReply proto.InternalMessageInfo
  1327. func (m *GroupAddReply) GetId() int64 {
  1328. if m != nil {
  1329. return m.Id
  1330. }
  1331. return 0
  1332. }
  1333. type GroupUpdateRequest struct {
  1334. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1335. GroupName string `protobuf:"bytes,2,opt,name=group_name,json=groupName,proto3" json:"group_name"`
  1336. PermissionCodes []string `protobuf:"bytes,3,rep,name=permission_codes,json=permissionCodes,proto3" json:"permission_codes"`
  1337. GardenId int64 `protobuf:"varint,4,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1338. Cid int64 `protobuf:"varint,5,opt,name=cid,proto3" json:"cid"`
  1339. GroupDesc string `protobuf:"bytes,6,opt,name=group_desc,json=groupDesc,proto3" json:"group_desc"`
  1340. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1341. XXX_unrecognized []byte `json:"-"`
  1342. XXX_sizecache int32 `json:"-"`
  1343. }
  1344. func (m *GroupUpdateRequest) Reset() { *m = GroupUpdateRequest{} }
  1345. func (m *GroupUpdateRequest) String() string { return proto.CompactTextString(m) }
  1346. func (*GroupUpdateRequest) ProtoMessage() {}
  1347. func (*GroupUpdateRequest) Descriptor() ([]byte, []int) {
  1348. return fileDescriptor_86a7260ebdc12f47, []int{22}
  1349. }
  1350. func (m *GroupUpdateRequest) XXX_Unmarshal(b []byte) error {
  1351. return xxx_messageInfo_GroupUpdateRequest.Unmarshal(m, b)
  1352. }
  1353. func (m *GroupUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1354. return xxx_messageInfo_GroupUpdateRequest.Marshal(b, m, deterministic)
  1355. }
  1356. func (m *GroupUpdateRequest) XXX_Merge(src proto.Message) {
  1357. xxx_messageInfo_GroupUpdateRequest.Merge(m, src)
  1358. }
  1359. func (m *GroupUpdateRequest) XXX_Size() int {
  1360. return xxx_messageInfo_GroupUpdateRequest.Size(m)
  1361. }
  1362. func (m *GroupUpdateRequest) XXX_DiscardUnknown() {
  1363. xxx_messageInfo_GroupUpdateRequest.DiscardUnknown(m)
  1364. }
  1365. var xxx_messageInfo_GroupUpdateRequest proto.InternalMessageInfo
  1366. func (m *GroupUpdateRequest) GetId() int64 {
  1367. if m != nil {
  1368. return m.Id
  1369. }
  1370. return 0
  1371. }
  1372. func (m *GroupUpdateRequest) GetGroupName() string {
  1373. if m != nil {
  1374. return m.GroupName
  1375. }
  1376. return ""
  1377. }
  1378. func (m *GroupUpdateRequest) GetPermissionCodes() []string {
  1379. if m != nil {
  1380. return m.PermissionCodes
  1381. }
  1382. return nil
  1383. }
  1384. func (m *GroupUpdateRequest) GetGardenId() int64 {
  1385. if m != nil {
  1386. return m.GardenId
  1387. }
  1388. return 0
  1389. }
  1390. func (m *GroupUpdateRequest) GetCid() int64 {
  1391. if m != nil {
  1392. return m.Cid
  1393. }
  1394. return 0
  1395. }
  1396. func (m *GroupUpdateRequest) GetGroupDesc() string {
  1397. if m != nil {
  1398. return m.GroupDesc
  1399. }
  1400. return ""
  1401. }
  1402. type GroupUpdateReply struct {
  1403. Origin *GroupUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  1404. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1405. XXX_unrecognized []byte `json:"-"`
  1406. XXX_sizecache int32 `json:"-"`
  1407. }
  1408. func (m *GroupUpdateReply) Reset() { *m = GroupUpdateReply{} }
  1409. func (m *GroupUpdateReply) String() string { return proto.CompactTextString(m) }
  1410. func (*GroupUpdateReply) ProtoMessage() {}
  1411. func (*GroupUpdateReply) Descriptor() ([]byte, []int) {
  1412. return fileDescriptor_86a7260ebdc12f47, []int{23}
  1413. }
  1414. func (m *GroupUpdateReply) XXX_Unmarshal(b []byte) error {
  1415. return xxx_messageInfo_GroupUpdateReply.Unmarshal(m, b)
  1416. }
  1417. func (m *GroupUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1418. return xxx_messageInfo_GroupUpdateReply.Marshal(b, m, deterministic)
  1419. }
  1420. func (m *GroupUpdateReply) XXX_Merge(src proto.Message) {
  1421. xxx_messageInfo_GroupUpdateReply.Merge(m, src)
  1422. }
  1423. func (m *GroupUpdateReply) XXX_Size() int {
  1424. return xxx_messageInfo_GroupUpdateReply.Size(m)
  1425. }
  1426. func (m *GroupUpdateReply) XXX_DiscardUnknown() {
  1427. xxx_messageInfo_GroupUpdateReply.DiscardUnknown(m)
  1428. }
  1429. var xxx_messageInfo_GroupUpdateReply proto.InternalMessageInfo
  1430. func (m *GroupUpdateReply) GetOrigin() *GroupUpdateRequest {
  1431. if m != nil {
  1432. return m.Origin
  1433. }
  1434. return nil
  1435. }
  1436. type GroupDelRequest struct {
  1437. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1438. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1439. Cid int64 `protobuf:"varint,3,opt,name=cid,proto3" json:"cid"`
  1440. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1441. XXX_unrecognized []byte `json:"-"`
  1442. XXX_sizecache int32 `json:"-"`
  1443. }
  1444. func (m *GroupDelRequest) Reset() { *m = GroupDelRequest{} }
  1445. func (m *GroupDelRequest) String() string { return proto.CompactTextString(m) }
  1446. func (*GroupDelRequest) ProtoMessage() {}
  1447. func (*GroupDelRequest) Descriptor() ([]byte, []int) {
  1448. return fileDescriptor_86a7260ebdc12f47, []int{24}
  1449. }
  1450. func (m *GroupDelRequest) XXX_Unmarshal(b []byte) error {
  1451. return xxx_messageInfo_GroupDelRequest.Unmarshal(m, b)
  1452. }
  1453. func (m *GroupDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1454. return xxx_messageInfo_GroupDelRequest.Marshal(b, m, deterministic)
  1455. }
  1456. func (m *GroupDelRequest) XXX_Merge(src proto.Message) {
  1457. xxx_messageInfo_GroupDelRequest.Merge(m, src)
  1458. }
  1459. func (m *GroupDelRequest) XXX_Size() int {
  1460. return xxx_messageInfo_GroupDelRequest.Size(m)
  1461. }
  1462. func (m *GroupDelRequest) XXX_DiscardUnknown() {
  1463. xxx_messageInfo_GroupDelRequest.DiscardUnknown(m)
  1464. }
  1465. var xxx_messageInfo_GroupDelRequest proto.InternalMessageInfo
  1466. func (m *GroupDelRequest) GetId() int64 {
  1467. if m != nil {
  1468. return m.Id
  1469. }
  1470. return 0
  1471. }
  1472. func (m *GroupDelRequest) GetGardenId() int64 {
  1473. if m != nil {
  1474. return m.GardenId
  1475. }
  1476. return 0
  1477. }
  1478. func (m *GroupDelRequest) GetCid() int64 {
  1479. if m != nil {
  1480. return m.Cid
  1481. }
  1482. return 0
  1483. }
  1484. type GroupDelReply struct {
  1485. Origin *GroupUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  1486. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1487. XXX_unrecognized []byte `json:"-"`
  1488. XXX_sizecache int32 `json:"-"`
  1489. }
  1490. func (m *GroupDelReply) Reset() { *m = GroupDelReply{} }
  1491. func (m *GroupDelReply) String() string { return proto.CompactTextString(m) }
  1492. func (*GroupDelReply) ProtoMessage() {}
  1493. func (*GroupDelReply) Descriptor() ([]byte, []int) {
  1494. return fileDescriptor_86a7260ebdc12f47, []int{25}
  1495. }
  1496. func (m *GroupDelReply) XXX_Unmarshal(b []byte) error {
  1497. return xxx_messageInfo_GroupDelReply.Unmarshal(m, b)
  1498. }
  1499. func (m *GroupDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1500. return xxx_messageInfo_GroupDelReply.Marshal(b, m, deterministic)
  1501. }
  1502. func (m *GroupDelReply) XXX_Merge(src proto.Message) {
  1503. xxx_messageInfo_GroupDelReply.Merge(m, src)
  1504. }
  1505. func (m *GroupDelReply) XXX_Size() int {
  1506. return xxx_messageInfo_GroupDelReply.Size(m)
  1507. }
  1508. func (m *GroupDelReply) XXX_DiscardUnknown() {
  1509. xxx_messageInfo_GroupDelReply.DiscardUnknown(m)
  1510. }
  1511. var xxx_messageInfo_GroupDelReply proto.InternalMessageInfo
  1512. func (m *GroupDelReply) GetOrigin() *GroupUpdateRequest {
  1513. if m != nil {
  1514. return m.Origin
  1515. }
  1516. return nil
  1517. }
  1518. type GroupItem struct {
  1519. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1520. GroupName string `protobuf:"bytes,2,opt,name=group_name,json=groupName,proto3" json:"group_name"`
  1521. GroupDesc string `protobuf:"bytes,3,opt,name=group_desc,json=groupDesc,proto3" json:"group_desc"`
  1522. UserCount int64 `protobuf:"varint,4,opt,name=user_count,json=userCount,proto3" json:"user_count"`
  1523. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1524. XXX_unrecognized []byte `json:"-"`
  1525. XXX_sizecache int32 `json:"-"`
  1526. }
  1527. func (m *GroupItem) Reset() { *m = GroupItem{} }
  1528. func (m *GroupItem) String() string { return proto.CompactTextString(m) }
  1529. func (*GroupItem) ProtoMessage() {}
  1530. func (*GroupItem) Descriptor() ([]byte, []int) {
  1531. return fileDescriptor_86a7260ebdc12f47, []int{26}
  1532. }
  1533. func (m *GroupItem) XXX_Unmarshal(b []byte) error {
  1534. return xxx_messageInfo_GroupItem.Unmarshal(m, b)
  1535. }
  1536. func (m *GroupItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1537. return xxx_messageInfo_GroupItem.Marshal(b, m, deterministic)
  1538. }
  1539. func (m *GroupItem) XXX_Merge(src proto.Message) {
  1540. xxx_messageInfo_GroupItem.Merge(m, src)
  1541. }
  1542. func (m *GroupItem) XXX_Size() int {
  1543. return xxx_messageInfo_GroupItem.Size(m)
  1544. }
  1545. func (m *GroupItem) XXX_DiscardUnknown() {
  1546. xxx_messageInfo_GroupItem.DiscardUnknown(m)
  1547. }
  1548. var xxx_messageInfo_GroupItem proto.InternalMessageInfo
  1549. func (m *GroupItem) GetId() int64 {
  1550. if m != nil {
  1551. return m.Id
  1552. }
  1553. return 0
  1554. }
  1555. func (m *GroupItem) GetGroupName() string {
  1556. if m != nil {
  1557. return m.GroupName
  1558. }
  1559. return ""
  1560. }
  1561. func (m *GroupItem) GetGroupDesc() string {
  1562. if m != nil {
  1563. return m.GroupDesc
  1564. }
  1565. return ""
  1566. }
  1567. func (m *GroupItem) GetUserCount() int64 {
  1568. if m != nil {
  1569. return m.UserCount
  1570. }
  1571. return 0
  1572. }
  1573. type GroupListRequest struct {
  1574. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1575. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  1576. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1577. XXX_unrecognized []byte `json:"-"`
  1578. XXX_sizecache int32 `json:"-"`
  1579. }
  1580. func (m *GroupListRequest) Reset() { *m = GroupListRequest{} }
  1581. func (m *GroupListRequest) String() string { return proto.CompactTextString(m) }
  1582. func (*GroupListRequest) ProtoMessage() {}
  1583. func (*GroupListRequest) Descriptor() ([]byte, []int) {
  1584. return fileDescriptor_86a7260ebdc12f47, []int{27}
  1585. }
  1586. func (m *GroupListRequest) XXX_Unmarshal(b []byte) error {
  1587. return xxx_messageInfo_GroupListRequest.Unmarshal(m, b)
  1588. }
  1589. func (m *GroupListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1590. return xxx_messageInfo_GroupListRequest.Marshal(b, m, deterministic)
  1591. }
  1592. func (m *GroupListRequest) XXX_Merge(src proto.Message) {
  1593. xxx_messageInfo_GroupListRequest.Merge(m, src)
  1594. }
  1595. func (m *GroupListRequest) XXX_Size() int {
  1596. return xxx_messageInfo_GroupListRequest.Size(m)
  1597. }
  1598. func (m *GroupListRequest) XXX_DiscardUnknown() {
  1599. xxx_messageInfo_GroupListRequest.DiscardUnknown(m)
  1600. }
  1601. var xxx_messageInfo_GroupListRequest proto.InternalMessageInfo
  1602. func (m *GroupListRequest) GetGardenId() int64 {
  1603. if m != nil {
  1604. return m.GardenId
  1605. }
  1606. return 0
  1607. }
  1608. func (m *GroupListRequest) GetCid() int64 {
  1609. if m != nil {
  1610. return m.Cid
  1611. }
  1612. return 0
  1613. }
  1614. type GroupListReply struct {
  1615. List []*GroupItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1616. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1617. XXX_unrecognized []byte `json:"-"`
  1618. XXX_sizecache int32 `json:"-"`
  1619. }
  1620. func (m *GroupListReply) Reset() { *m = GroupListReply{} }
  1621. func (m *GroupListReply) String() string { return proto.CompactTextString(m) }
  1622. func (*GroupListReply) ProtoMessage() {}
  1623. func (*GroupListReply) Descriptor() ([]byte, []int) {
  1624. return fileDescriptor_86a7260ebdc12f47, []int{28}
  1625. }
  1626. func (m *GroupListReply) XXX_Unmarshal(b []byte) error {
  1627. return xxx_messageInfo_GroupListReply.Unmarshal(m, b)
  1628. }
  1629. func (m *GroupListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1630. return xxx_messageInfo_GroupListReply.Marshal(b, m, deterministic)
  1631. }
  1632. func (m *GroupListReply) XXX_Merge(src proto.Message) {
  1633. xxx_messageInfo_GroupListReply.Merge(m, src)
  1634. }
  1635. func (m *GroupListReply) XXX_Size() int {
  1636. return xxx_messageInfo_GroupListReply.Size(m)
  1637. }
  1638. func (m *GroupListReply) XXX_DiscardUnknown() {
  1639. xxx_messageInfo_GroupListReply.DiscardUnknown(m)
  1640. }
  1641. var xxx_messageInfo_GroupListReply proto.InternalMessageInfo
  1642. func (m *GroupListReply) GetList() []*GroupItem {
  1643. if m != nil {
  1644. return m.List
  1645. }
  1646. return nil
  1647. }
  1648. type GroupInfoRequest struct {
  1649. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1650. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1651. XXX_unrecognized []byte `json:"-"`
  1652. XXX_sizecache int32 `json:"-"`
  1653. }
  1654. func (m *GroupInfoRequest) Reset() { *m = GroupInfoRequest{} }
  1655. func (m *GroupInfoRequest) String() string { return proto.CompactTextString(m) }
  1656. func (*GroupInfoRequest) ProtoMessage() {}
  1657. func (*GroupInfoRequest) Descriptor() ([]byte, []int) {
  1658. return fileDescriptor_86a7260ebdc12f47, []int{29}
  1659. }
  1660. func (m *GroupInfoRequest) XXX_Unmarshal(b []byte) error {
  1661. return xxx_messageInfo_GroupInfoRequest.Unmarshal(m, b)
  1662. }
  1663. func (m *GroupInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1664. return xxx_messageInfo_GroupInfoRequest.Marshal(b, m, deterministic)
  1665. }
  1666. func (m *GroupInfoRequest) XXX_Merge(src proto.Message) {
  1667. xxx_messageInfo_GroupInfoRequest.Merge(m, src)
  1668. }
  1669. func (m *GroupInfoRequest) XXX_Size() int {
  1670. return xxx_messageInfo_GroupInfoRequest.Size(m)
  1671. }
  1672. func (m *GroupInfoRequest) XXX_DiscardUnknown() {
  1673. xxx_messageInfo_GroupInfoRequest.DiscardUnknown(m)
  1674. }
  1675. var xxx_messageInfo_GroupInfoRequest proto.InternalMessageInfo
  1676. func (m *GroupInfoRequest) GetId() int64 {
  1677. if m != nil {
  1678. return m.Id
  1679. }
  1680. return 0
  1681. }
  1682. type SystemGroupPermissionItem struct {
  1683. // 父code,若没有则填空
  1684. Pcode string `protobuf:"bytes,1,opt,name=pcode,proto3" json:"pcode"`
  1685. // 小程序组件路径
  1686. AppletePath string `protobuf:"bytes,2,opt,name=applete_path,json=appletePath,proto3" json:"applete_path"`
  1687. // 权限名字
  1688. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  1689. // 是否拥有该权限
  1690. Selected bool `protobuf:"varint,4,opt,name=selected,proto3" json:"selected"`
  1691. // 路由
  1692. Router string `protobuf:"bytes,5,opt,name=router,proto3" json:"router"`
  1693. Code string `protobuf:"bytes,6,opt,name=code,proto3" json:"code"`
  1694. // 组件路径
  1695. Path string `protobuf:"bytes,7,opt,name=path,proto3" json:"path"`
  1696. Childs []*SystemGroupPermissionItem `protobuf:"bytes,8,rep,name=childs,proto3" json:"childs"`
  1697. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1698. XXX_unrecognized []byte `json:"-"`
  1699. XXX_sizecache int32 `json:"-"`
  1700. }
  1701. func (m *SystemGroupPermissionItem) Reset() { *m = SystemGroupPermissionItem{} }
  1702. func (m *SystemGroupPermissionItem) String() string { return proto.CompactTextString(m) }
  1703. func (*SystemGroupPermissionItem) ProtoMessage() {}
  1704. func (*SystemGroupPermissionItem) Descriptor() ([]byte, []int) {
  1705. return fileDescriptor_86a7260ebdc12f47, []int{30}
  1706. }
  1707. func (m *SystemGroupPermissionItem) XXX_Unmarshal(b []byte) error {
  1708. return xxx_messageInfo_SystemGroupPermissionItem.Unmarshal(m, b)
  1709. }
  1710. func (m *SystemGroupPermissionItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1711. return xxx_messageInfo_SystemGroupPermissionItem.Marshal(b, m, deterministic)
  1712. }
  1713. func (m *SystemGroupPermissionItem) XXX_Merge(src proto.Message) {
  1714. xxx_messageInfo_SystemGroupPermissionItem.Merge(m, src)
  1715. }
  1716. func (m *SystemGroupPermissionItem) XXX_Size() int {
  1717. return xxx_messageInfo_SystemGroupPermissionItem.Size(m)
  1718. }
  1719. func (m *SystemGroupPermissionItem) XXX_DiscardUnknown() {
  1720. xxx_messageInfo_SystemGroupPermissionItem.DiscardUnknown(m)
  1721. }
  1722. var xxx_messageInfo_SystemGroupPermissionItem proto.InternalMessageInfo
  1723. func (m *SystemGroupPermissionItem) GetPcode() string {
  1724. if m != nil {
  1725. return m.Pcode
  1726. }
  1727. return ""
  1728. }
  1729. func (m *SystemGroupPermissionItem) GetAppletePath() string {
  1730. if m != nil {
  1731. return m.AppletePath
  1732. }
  1733. return ""
  1734. }
  1735. func (m *SystemGroupPermissionItem) GetName() string {
  1736. if m != nil {
  1737. return m.Name
  1738. }
  1739. return ""
  1740. }
  1741. func (m *SystemGroupPermissionItem) GetSelected() bool {
  1742. if m != nil {
  1743. return m.Selected
  1744. }
  1745. return false
  1746. }
  1747. func (m *SystemGroupPermissionItem) GetRouter() string {
  1748. if m != nil {
  1749. return m.Router
  1750. }
  1751. return ""
  1752. }
  1753. func (m *SystemGroupPermissionItem) GetCode() string {
  1754. if m != nil {
  1755. return m.Code
  1756. }
  1757. return ""
  1758. }
  1759. func (m *SystemGroupPermissionItem) GetPath() string {
  1760. if m != nil {
  1761. return m.Path
  1762. }
  1763. return ""
  1764. }
  1765. func (m *SystemGroupPermissionItem) GetChilds() []*SystemGroupPermissionItem {
  1766. if m != nil {
  1767. return m.Childs
  1768. }
  1769. return nil
  1770. }
  1771. type GroupInfoReply struct {
  1772. List []*SystemGroupPermissionItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1773. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1774. XXX_unrecognized []byte `json:"-"`
  1775. XXX_sizecache int32 `json:"-"`
  1776. }
  1777. func (m *GroupInfoReply) Reset() { *m = GroupInfoReply{} }
  1778. func (m *GroupInfoReply) String() string { return proto.CompactTextString(m) }
  1779. func (*GroupInfoReply) ProtoMessage() {}
  1780. func (*GroupInfoReply) Descriptor() ([]byte, []int) {
  1781. return fileDescriptor_86a7260ebdc12f47, []int{31}
  1782. }
  1783. func (m *GroupInfoReply) XXX_Unmarshal(b []byte) error {
  1784. return xxx_messageInfo_GroupInfoReply.Unmarshal(m, b)
  1785. }
  1786. func (m *GroupInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1787. return xxx_messageInfo_GroupInfoReply.Marshal(b, m, deterministic)
  1788. }
  1789. func (m *GroupInfoReply) XXX_Merge(src proto.Message) {
  1790. xxx_messageInfo_GroupInfoReply.Merge(m, src)
  1791. }
  1792. func (m *GroupInfoReply) XXX_Size() int {
  1793. return xxx_messageInfo_GroupInfoReply.Size(m)
  1794. }
  1795. func (m *GroupInfoReply) XXX_DiscardUnknown() {
  1796. xxx_messageInfo_GroupInfoReply.DiscardUnknown(m)
  1797. }
  1798. var xxx_messageInfo_GroupInfoReply proto.InternalMessageInfo
  1799. func (m *GroupInfoReply) GetList() []*SystemGroupPermissionItem {
  1800. if m != nil {
  1801. return m.List
  1802. }
  1803. return nil
  1804. }
  1805. type ResetPasswordRequest struct {
  1806. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1807. Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"`
  1808. Vcode uint32 `protobuf:"varint,3,opt,name=vcode,proto3" json:"vcode"`
  1809. Password string `protobuf:"bytes,5,opt,name=password,proto3" json:"password"`
  1810. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1811. XXX_unrecognized []byte `json:"-"`
  1812. XXX_sizecache int32 `json:"-"`
  1813. }
  1814. func (m *ResetPasswordRequest) Reset() { *m = ResetPasswordRequest{} }
  1815. func (m *ResetPasswordRequest) String() string { return proto.CompactTextString(m) }
  1816. func (*ResetPasswordRequest) ProtoMessage() {}
  1817. func (*ResetPasswordRequest) Descriptor() ([]byte, []int) {
  1818. return fileDescriptor_86a7260ebdc12f47, []int{32}
  1819. }
  1820. func (m *ResetPasswordRequest) XXX_Unmarshal(b []byte) error {
  1821. return xxx_messageInfo_ResetPasswordRequest.Unmarshal(m, b)
  1822. }
  1823. func (m *ResetPasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1824. return xxx_messageInfo_ResetPasswordRequest.Marshal(b, m, deterministic)
  1825. }
  1826. func (m *ResetPasswordRequest) XXX_Merge(src proto.Message) {
  1827. xxx_messageInfo_ResetPasswordRequest.Merge(m, src)
  1828. }
  1829. func (m *ResetPasswordRequest) XXX_Size() int {
  1830. return xxx_messageInfo_ResetPasswordRequest.Size(m)
  1831. }
  1832. func (m *ResetPasswordRequest) XXX_DiscardUnknown() {
  1833. xxx_messageInfo_ResetPasswordRequest.DiscardUnknown(m)
  1834. }
  1835. var xxx_messageInfo_ResetPasswordRequest proto.InternalMessageInfo
  1836. func (m *ResetPasswordRequest) GetPhone() string {
  1837. if m != nil {
  1838. return m.Phone
  1839. }
  1840. return ""
  1841. }
  1842. func (m *ResetPasswordRequest) GetUid() int64 {
  1843. if m != nil {
  1844. return m.Uid
  1845. }
  1846. return 0
  1847. }
  1848. func (m *ResetPasswordRequest) GetVcode() uint32 {
  1849. if m != nil {
  1850. return m.Vcode
  1851. }
  1852. return 0
  1853. }
  1854. func (m *ResetPasswordRequest) GetPassword() string {
  1855. if m != nil {
  1856. return m.Password
  1857. }
  1858. return ""
  1859. }
  1860. type ResetPasswordData struct {
  1861. // 用户id
  1862. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  1863. // 用户名
  1864. Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username"`
  1865. // 小区名
  1866. GardenName string `protobuf:"bytes,3,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  1867. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1868. XXX_unrecognized []byte `json:"-"`
  1869. XXX_sizecache int32 `json:"-"`
  1870. }
  1871. func (m *ResetPasswordData) Reset() { *m = ResetPasswordData{} }
  1872. func (m *ResetPasswordData) String() string { return proto.CompactTextString(m) }
  1873. func (*ResetPasswordData) ProtoMessage() {}
  1874. func (*ResetPasswordData) Descriptor() ([]byte, []int) {
  1875. return fileDescriptor_86a7260ebdc12f47, []int{33}
  1876. }
  1877. func (m *ResetPasswordData) XXX_Unmarshal(b []byte) error {
  1878. return xxx_messageInfo_ResetPasswordData.Unmarshal(m, b)
  1879. }
  1880. func (m *ResetPasswordData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1881. return xxx_messageInfo_ResetPasswordData.Marshal(b, m, deterministic)
  1882. }
  1883. func (m *ResetPasswordData) XXX_Merge(src proto.Message) {
  1884. xxx_messageInfo_ResetPasswordData.Merge(m, src)
  1885. }
  1886. func (m *ResetPasswordData) XXX_Size() int {
  1887. return xxx_messageInfo_ResetPasswordData.Size(m)
  1888. }
  1889. func (m *ResetPasswordData) XXX_DiscardUnknown() {
  1890. xxx_messageInfo_ResetPasswordData.DiscardUnknown(m)
  1891. }
  1892. var xxx_messageInfo_ResetPasswordData proto.InternalMessageInfo
  1893. func (m *ResetPasswordData) GetUid() int64 {
  1894. if m != nil {
  1895. return m.Uid
  1896. }
  1897. return 0
  1898. }
  1899. func (m *ResetPasswordData) GetUsername() string {
  1900. if m != nil {
  1901. return m.Username
  1902. }
  1903. return ""
  1904. }
  1905. func (m *ResetPasswordData) GetGardenName() string {
  1906. if m != nil {
  1907. return m.GardenName
  1908. }
  1909. return ""
  1910. }
  1911. type ResetPasswordReply struct {
  1912. List []*ResetPasswordData `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1913. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1914. XXX_unrecognized []byte `json:"-"`
  1915. XXX_sizecache int32 `json:"-"`
  1916. }
  1917. func (m *ResetPasswordReply) Reset() { *m = ResetPasswordReply{} }
  1918. func (m *ResetPasswordReply) String() string { return proto.CompactTextString(m) }
  1919. func (*ResetPasswordReply) ProtoMessage() {}
  1920. func (*ResetPasswordReply) Descriptor() ([]byte, []int) {
  1921. return fileDescriptor_86a7260ebdc12f47, []int{34}
  1922. }
  1923. func (m *ResetPasswordReply) XXX_Unmarshal(b []byte) error {
  1924. return xxx_messageInfo_ResetPasswordReply.Unmarshal(m, b)
  1925. }
  1926. func (m *ResetPasswordReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1927. return xxx_messageInfo_ResetPasswordReply.Marshal(b, m, deterministic)
  1928. }
  1929. func (m *ResetPasswordReply) XXX_Merge(src proto.Message) {
  1930. xxx_messageInfo_ResetPasswordReply.Merge(m, src)
  1931. }
  1932. func (m *ResetPasswordReply) XXX_Size() int {
  1933. return xxx_messageInfo_ResetPasswordReply.Size(m)
  1934. }
  1935. func (m *ResetPasswordReply) XXX_DiscardUnknown() {
  1936. xxx_messageInfo_ResetPasswordReply.DiscardUnknown(m)
  1937. }
  1938. var xxx_messageInfo_ResetPasswordReply proto.InternalMessageInfo
  1939. func (m *ResetPasswordReply) GetList() []*ResetPasswordData {
  1940. if m != nil {
  1941. return m.List
  1942. }
  1943. return nil
  1944. }
  1945. type ChangePasswordRequest struct {
  1946. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  1947. OldPassword string `protobuf:"bytes,2,opt,name=old_password,json=oldPassword,proto3" json:"old_password"`
  1948. NewPassword string `protobuf:"bytes,3,opt,name=new_password,json=newPassword,proto3" json:"new_password"`
  1949. ByCompany bool `protobuf:"varint,4,opt,name=by_company,json=byCompany,proto3" json:"by_company"`
  1950. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1951. XXX_unrecognized []byte `json:"-"`
  1952. XXX_sizecache int32 `json:"-"`
  1953. }
  1954. func (m *ChangePasswordRequest) Reset() { *m = ChangePasswordRequest{} }
  1955. func (m *ChangePasswordRequest) String() string { return proto.CompactTextString(m) }
  1956. func (*ChangePasswordRequest) ProtoMessage() {}
  1957. func (*ChangePasswordRequest) Descriptor() ([]byte, []int) {
  1958. return fileDescriptor_86a7260ebdc12f47, []int{35}
  1959. }
  1960. func (m *ChangePasswordRequest) XXX_Unmarshal(b []byte) error {
  1961. return xxx_messageInfo_ChangePasswordRequest.Unmarshal(m, b)
  1962. }
  1963. func (m *ChangePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1964. return xxx_messageInfo_ChangePasswordRequest.Marshal(b, m, deterministic)
  1965. }
  1966. func (m *ChangePasswordRequest) XXX_Merge(src proto.Message) {
  1967. xxx_messageInfo_ChangePasswordRequest.Merge(m, src)
  1968. }
  1969. func (m *ChangePasswordRequest) XXX_Size() int {
  1970. return xxx_messageInfo_ChangePasswordRequest.Size(m)
  1971. }
  1972. func (m *ChangePasswordRequest) XXX_DiscardUnknown() {
  1973. xxx_messageInfo_ChangePasswordRequest.DiscardUnknown(m)
  1974. }
  1975. var xxx_messageInfo_ChangePasswordRequest proto.InternalMessageInfo
  1976. func (m *ChangePasswordRequest) GetUid() int64 {
  1977. if m != nil {
  1978. return m.Uid
  1979. }
  1980. return 0
  1981. }
  1982. func (m *ChangePasswordRequest) GetOldPassword() string {
  1983. if m != nil {
  1984. return m.OldPassword
  1985. }
  1986. return ""
  1987. }
  1988. func (m *ChangePasswordRequest) GetNewPassword() string {
  1989. if m != nil {
  1990. return m.NewPassword
  1991. }
  1992. return ""
  1993. }
  1994. func (m *ChangePasswordRequest) GetByCompany() bool {
  1995. if m != nil {
  1996. return m.ByCompany
  1997. }
  1998. return false
  1999. }
  2000. type ChangePasswordReply struct {
  2001. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2002. XXX_unrecognized []byte `json:"-"`
  2003. XXX_sizecache int32 `json:"-"`
  2004. }
  2005. func (m *ChangePasswordReply) Reset() { *m = ChangePasswordReply{} }
  2006. func (m *ChangePasswordReply) String() string { return proto.CompactTextString(m) }
  2007. func (*ChangePasswordReply) ProtoMessage() {}
  2008. func (*ChangePasswordReply) Descriptor() ([]byte, []int) {
  2009. return fileDescriptor_86a7260ebdc12f47, []int{36}
  2010. }
  2011. func (m *ChangePasswordReply) XXX_Unmarshal(b []byte) error {
  2012. return xxx_messageInfo_ChangePasswordReply.Unmarshal(m, b)
  2013. }
  2014. func (m *ChangePasswordReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2015. return xxx_messageInfo_ChangePasswordReply.Marshal(b, m, deterministic)
  2016. }
  2017. func (m *ChangePasswordReply) XXX_Merge(src proto.Message) {
  2018. xxx_messageInfo_ChangePasswordReply.Merge(m, src)
  2019. }
  2020. func (m *ChangePasswordReply) XXX_Size() int {
  2021. return xxx_messageInfo_ChangePasswordReply.Size(m)
  2022. }
  2023. func (m *ChangePasswordReply) XXX_DiscardUnknown() {
  2024. xxx_messageInfo_ChangePasswordReply.DiscardUnknown(m)
  2025. }
  2026. var xxx_messageInfo_ChangePasswordReply proto.InternalMessageInfo
  2027. type DepartmentAddRequest struct {
  2028. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2029. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  2030. DepartmentName string `protobuf:"bytes,3,opt,name=department_name,json=departmentName,proto3" json:"department_name"`
  2031. Desc string `protobuf:"bytes,4,opt,name=desc,proto3" json:"desc"`
  2032. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2033. XXX_unrecognized []byte `json:"-"`
  2034. XXX_sizecache int32 `json:"-"`
  2035. }
  2036. func (m *DepartmentAddRequest) Reset() { *m = DepartmentAddRequest{} }
  2037. func (m *DepartmentAddRequest) String() string { return proto.CompactTextString(m) }
  2038. func (*DepartmentAddRequest) ProtoMessage() {}
  2039. func (*DepartmentAddRequest) Descriptor() ([]byte, []int) {
  2040. return fileDescriptor_86a7260ebdc12f47, []int{37}
  2041. }
  2042. func (m *DepartmentAddRequest) XXX_Unmarshal(b []byte) error {
  2043. return xxx_messageInfo_DepartmentAddRequest.Unmarshal(m, b)
  2044. }
  2045. func (m *DepartmentAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2046. return xxx_messageInfo_DepartmentAddRequest.Marshal(b, m, deterministic)
  2047. }
  2048. func (m *DepartmentAddRequest) XXX_Merge(src proto.Message) {
  2049. xxx_messageInfo_DepartmentAddRequest.Merge(m, src)
  2050. }
  2051. func (m *DepartmentAddRequest) XXX_Size() int {
  2052. return xxx_messageInfo_DepartmentAddRequest.Size(m)
  2053. }
  2054. func (m *DepartmentAddRequest) XXX_DiscardUnknown() {
  2055. xxx_messageInfo_DepartmentAddRequest.DiscardUnknown(m)
  2056. }
  2057. var xxx_messageInfo_DepartmentAddRequest proto.InternalMessageInfo
  2058. func (m *DepartmentAddRequest) GetGardenId() int64 {
  2059. if m != nil {
  2060. return m.GardenId
  2061. }
  2062. return 0
  2063. }
  2064. func (m *DepartmentAddRequest) GetCid() int64 {
  2065. if m != nil {
  2066. return m.Cid
  2067. }
  2068. return 0
  2069. }
  2070. func (m *DepartmentAddRequest) GetDepartmentName() string {
  2071. if m != nil {
  2072. return m.DepartmentName
  2073. }
  2074. return ""
  2075. }
  2076. func (m *DepartmentAddRequest) GetDesc() string {
  2077. if m != nil {
  2078. return m.Desc
  2079. }
  2080. return ""
  2081. }
  2082. type DepartmentAddReply struct {
  2083. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2084. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2085. XXX_unrecognized []byte `json:"-"`
  2086. XXX_sizecache int32 `json:"-"`
  2087. }
  2088. func (m *DepartmentAddReply) Reset() { *m = DepartmentAddReply{} }
  2089. func (m *DepartmentAddReply) String() string { return proto.CompactTextString(m) }
  2090. func (*DepartmentAddReply) ProtoMessage() {}
  2091. func (*DepartmentAddReply) Descriptor() ([]byte, []int) {
  2092. return fileDescriptor_86a7260ebdc12f47, []int{38}
  2093. }
  2094. func (m *DepartmentAddReply) XXX_Unmarshal(b []byte) error {
  2095. return xxx_messageInfo_DepartmentAddReply.Unmarshal(m, b)
  2096. }
  2097. func (m *DepartmentAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2098. return xxx_messageInfo_DepartmentAddReply.Marshal(b, m, deterministic)
  2099. }
  2100. func (m *DepartmentAddReply) XXX_Merge(src proto.Message) {
  2101. xxx_messageInfo_DepartmentAddReply.Merge(m, src)
  2102. }
  2103. func (m *DepartmentAddReply) XXX_Size() int {
  2104. return xxx_messageInfo_DepartmentAddReply.Size(m)
  2105. }
  2106. func (m *DepartmentAddReply) XXX_DiscardUnknown() {
  2107. xxx_messageInfo_DepartmentAddReply.DiscardUnknown(m)
  2108. }
  2109. var xxx_messageInfo_DepartmentAddReply proto.InternalMessageInfo
  2110. func (m *DepartmentAddReply) GetId() int64 {
  2111. if m != nil {
  2112. return m.Id
  2113. }
  2114. return 0
  2115. }
  2116. type DepartmentUpdateRequest struct {
  2117. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2118. DepartmentName string `protobuf:"bytes,2,opt,name=department_name,json=departmentName,proto3" json:"department_name"`
  2119. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc"`
  2120. Id int64 `protobuf:"varint,4,opt,name=id,proto3" json:"id"`
  2121. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2122. XXX_unrecognized []byte `json:"-"`
  2123. XXX_sizecache int32 `json:"-"`
  2124. }
  2125. func (m *DepartmentUpdateRequest) Reset() { *m = DepartmentUpdateRequest{} }
  2126. func (m *DepartmentUpdateRequest) String() string { return proto.CompactTextString(m) }
  2127. func (*DepartmentUpdateRequest) ProtoMessage() {}
  2128. func (*DepartmentUpdateRequest) Descriptor() ([]byte, []int) {
  2129. return fileDescriptor_86a7260ebdc12f47, []int{39}
  2130. }
  2131. func (m *DepartmentUpdateRequest) XXX_Unmarshal(b []byte) error {
  2132. return xxx_messageInfo_DepartmentUpdateRequest.Unmarshal(m, b)
  2133. }
  2134. func (m *DepartmentUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2135. return xxx_messageInfo_DepartmentUpdateRequest.Marshal(b, m, deterministic)
  2136. }
  2137. func (m *DepartmentUpdateRequest) XXX_Merge(src proto.Message) {
  2138. xxx_messageInfo_DepartmentUpdateRequest.Merge(m, src)
  2139. }
  2140. func (m *DepartmentUpdateRequest) XXX_Size() int {
  2141. return xxx_messageInfo_DepartmentUpdateRequest.Size(m)
  2142. }
  2143. func (m *DepartmentUpdateRequest) XXX_DiscardUnknown() {
  2144. xxx_messageInfo_DepartmentUpdateRequest.DiscardUnknown(m)
  2145. }
  2146. var xxx_messageInfo_DepartmentUpdateRequest proto.InternalMessageInfo
  2147. func (m *DepartmentUpdateRequest) GetGardenId() int64 {
  2148. if m != nil {
  2149. return m.GardenId
  2150. }
  2151. return 0
  2152. }
  2153. func (m *DepartmentUpdateRequest) GetDepartmentName() string {
  2154. if m != nil {
  2155. return m.DepartmentName
  2156. }
  2157. return ""
  2158. }
  2159. func (m *DepartmentUpdateRequest) GetDesc() string {
  2160. if m != nil {
  2161. return m.Desc
  2162. }
  2163. return ""
  2164. }
  2165. func (m *DepartmentUpdateRequest) GetId() int64 {
  2166. if m != nil {
  2167. return m.Id
  2168. }
  2169. return 0
  2170. }
  2171. type DepartmentUpdateReply struct {
  2172. Origin *DepartmentUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  2173. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2174. XXX_unrecognized []byte `json:"-"`
  2175. XXX_sizecache int32 `json:"-"`
  2176. }
  2177. func (m *DepartmentUpdateReply) Reset() { *m = DepartmentUpdateReply{} }
  2178. func (m *DepartmentUpdateReply) String() string { return proto.CompactTextString(m) }
  2179. func (*DepartmentUpdateReply) ProtoMessage() {}
  2180. func (*DepartmentUpdateReply) Descriptor() ([]byte, []int) {
  2181. return fileDescriptor_86a7260ebdc12f47, []int{40}
  2182. }
  2183. func (m *DepartmentUpdateReply) XXX_Unmarshal(b []byte) error {
  2184. return xxx_messageInfo_DepartmentUpdateReply.Unmarshal(m, b)
  2185. }
  2186. func (m *DepartmentUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2187. return xxx_messageInfo_DepartmentUpdateReply.Marshal(b, m, deterministic)
  2188. }
  2189. func (m *DepartmentUpdateReply) XXX_Merge(src proto.Message) {
  2190. xxx_messageInfo_DepartmentUpdateReply.Merge(m, src)
  2191. }
  2192. func (m *DepartmentUpdateReply) XXX_Size() int {
  2193. return xxx_messageInfo_DepartmentUpdateReply.Size(m)
  2194. }
  2195. func (m *DepartmentUpdateReply) XXX_DiscardUnknown() {
  2196. xxx_messageInfo_DepartmentUpdateReply.DiscardUnknown(m)
  2197. }
  2198. var xxx_messageInfo_DepartmentUpdateReply proto.InternalMessageInfo
  2199. func (m *DepartmentUpdateReply) GetOrigin() *DepartmentUpdateRequest {
  2200. if m != nil {
  2201. return m.Origin
  2202. }
  2203. return nil
  2204. }
  2205. type DepartmentDelRequest struct {
  2206. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2207. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
  2208. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2209. XXX_unrecognized []byte `json:"-"`
  2210. XXX_sizecache int32 `json:"-"`
  2211. }
  2212. func (m *DepartmentDelRequest) Reset() { *m = DepartmentDelRequest{} }
  2213. func (m *DepartmentDelRequest) String() string { return proto.CompactTextString(m) }
  2214. func (*DepartmentDelRequest) ProtoMessage() {}
  2215. func (*DepartmentDelRequest) Descriptor() ([]byte, []int) {
  2216. return fileDescriptor_86a7260ebdc12f47, []int{41}
  2217. }
  2218. func (m *DepartmentDelRequest) XXX_Unmarshal(b []byte) error {
  2219. return xxx_messageInfo_DepartmentDelRequest.Unmarshal(m, b)
  2220. }
  2221. func (m *DepartmentDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2222. return xxx_messageInfo_DepartmentDelRequest.Marshal(b, m, deterministic)
  2223. }
  2224. func (m *DepartmentDelRequest) XXX_Merge(src proto.Message) {
  2225. xxx_messageInfo_DepartmentDelRequest.Merge(m, src)
  2226. }
  2227. func (m *DepartmentDelRequest) XXX_Size() int {
  2228. return xxx_messageInfo_DepartmentDelRequest.Size(m)
  2229. }
  2230. func (m *DepartmentDelRequest) XXX_DiscardUnknown() {
  2231. xxx_messageInfo_DepartmentDelRequest.DiscardUnknown(m)
  2232. }
  2233. var xxx_messageInfo_DepartmentDelRequest proto.InternalMessageInfo
  2234. func (m *DepartmentDelRequest) GetGardenId() int64 {
  2235. if m != nil {
  2236. return m.GardenId
  2237. }
  2238. return 0
  2239. }
  2240. func (m *DepartmentDelRequest) GetId() int64 {
  2241. if m != nil {
  2242. return m.Id
  2243. }
  2244. return 0
  2245. }
  2246. type DepartmentDelReply struct {
  2247. Origin *DepartmentUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  2248. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2249. XXX_unrecognized []byte `json:"-"`
  2250. XXX_sizecache int32 `json:"-"`
  2251. }
  2252. func (m *DepartmentDelReply) Reset() { *m = DepartmentDelReply{} }
  2253. func (m *DepartmentDelReply) String() string { return proto.CompactTextString(m) }
  2254. func (*DepartmentDelReply) ProtoMessage() {}
  2255. func (*DepartmentDelReply) Descriptor() ([]byte, []int) {
  2256. return fileDescriptor_86a7260ebdc12f47, []int{42}
  2257. }
  2258. func (m *DepartmentDelReply) XXX_Unmarshal(b []byte) error {
  2259. return xxx_messageInfo_DepartmentDelReply.Unmarshal(m, b)
  2260. }
  2261. func (m *DepartmentDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2262. return xxx_messageInfo_DepartmentDelReply.Marshal(b, m, deterministic)
  2263. }
  2264. func (m *DepartmentDelReply) XXX_Merge(src proto.Message) {
  2265. xxx_messageInfo_DepartmentDelReply.Merge(m, src)
  2266. }
  2267. func (m *DepartmentDelReply) XXX_Size() int {
  2268. return xxx_messageInfo_DepartmentDelReply.Size(m)
  2269. }
  2270. func (m *DepartmentDelReply) XXX_DiscardUnknown() {
  2271. xxx_messageInfo_DepartmentDelReply.DiscardUnknown(m)
  2272. }
  2273. var xxx_messageInfo_DepartmentDelReply proto.InternalMessageInfo
  2274. func (m *DepartmentDelReply) GetOrigin() *DepartmentUpdateRequest {
  2275. if m != nil {
  2276. return m.Origin
  2277. }
  2278. return nil
  2279. }
  2280. type DepartmentItem struct {
  2281. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2282. DepartmentName string `protobuf:"bytes,2,opt,name=department_name,json=departmentName,proto3" json:"department_name"`
  2283. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc"`
  2284. CreatedAt string `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  2285. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2286. XXX_unrecognized []byte `json:"-"`
  2287. XXX_sizecache int32 `json:"-"`
  2288. }
  2289. func (m *DepartmentItem) Reset() { *m = DepartmentItem{} }
  2290. func (m *DepartmentItem) String() string { return proto.CompactTextString(m) }
  2291. func (*DepartmentItem) ProtoMessage() {}
  2292. func (*DepartmentItem) Descriptor() ([]byte, []int) {
  2293. return fileDescriptor_86a7260ebdc12f47, []int{43}
  2294. }
  2295. func (m *DepartmentItem) XXX_Unmarshal(b []byte) error {
  2296. return xxx_messageInfo_DepartmentItem.Unmarshal(m, b)
  2297. }
  2298. func (m *DepartmentItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2299. return xxx_messageInfo_DepartmentItem.Marshal(b, m, deterministic)
  2300. }
  2301. func (m *DepartmentItem) XXX_Merge(src proto.Message) {
  2302. xxx_messageInfo_DepartmentItem.Merge(m, src)
  2303. }
  2304. func (m *DepartmentItem) XXX_Size() int {
  2305. return xxx_messageInfo_DepartmentItem.Size(m)
  2306. }
  2307. func (m *DepartmentItem) XXX_DiscardUnknown() {
  2308. xxx_messageInfo_DepartmentItem.DiscardUnknown(m)
  2309. }
  2310. var xxx_messageInfo_DepartmentItem proto.InternalMessageInfo
  2311. func (m *DepartmentItem) GetId() int64 {
  2312. if m != nil {
  2313. return m.Id
  2314. }
  2315. return 0
  2316. }
  2317. func (m *DepartmentItem) GetDepartmentName() string {
  2318. if m != nil {
  2319. return m.DepartmentName
  2320. }
  2321. return ""
  2322. }
  2323. func (m *DepartmentItem) GetDesc() string {
  2324. if m != nil {
  2325. return m.Desc
  2326. }
  2327. return ""
  2328. }
  2329. func (m *DepartmentItem) GetCreatedAt() string {
  2330. if m != nil {
  2331. return m.CreatedAt
  2332. }
  2333. return ""
  2334. }
  2335. type DepartmentListRequest struct {
  2336. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  2337. PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  2338. GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2339. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2340. XXX_unrecognized []byte `json:"-"`
  2341. XXX_sizecache int32 `json:"-"`
  2342. }
  2343. func (m *DepartmentListRequest) Reset() { *m = DepartmentListRequest{} }
  2344. func (m *DepartmentListRequest) String() string { return proto.CompactTextString(m) }
  2345. func (*DepartmentListRequest) ProtoMessage() {}
  2346. func (*DepartmentListRequest) Descriptor() ([]byte, []int) {
  2347. return fileDescriptor_86a7260ebdc12f47, []int{44}
  2348. }
  2349. func (m *DepartmentListRequest) XXX_Unmarshal(b []byte) error {
  2350. return xxx_messageInfo_DepartmentListRequest.Unmarshal(m, b)
  2351. }
  2352. func (m *DepartmentListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2353. return xxx_messageInfo_DepartmentListRequest.Marshal(b, m, deterministic)
  2354. }
  2355. func (m *DepartmentListRequest) XXX_Merge(src proto.Message) {
  2356. xxx_messageInfo_DepartmentListRequest.Merge(m, src)
  2357. }
  2358. func (m *DepartmentListRequest) XXX_Size() int {
  2359. return xxx_messageInfo_DepartmentListRequest.Size(m)
  2360. }
  2361. func (m *DepartmentListRequest) XXX_DiscardUnknown() {
  2362. xxx_messageInfo_DepartmentListRequest.DiscardUnknown(m)
  2363. }
  2364. var xxx_messageInfo_DepartmentListRequest proto.InternalMessageInfo
  2365. func (m *DepartmentListRequest) GetPage() int64 {
  2366. if m != nil {
  2367. return m.Page
  2368. }
  2369. return 0
  2370. }
  2371. func (m *DepartmentListRequest) GetPageSize() int64 {
  2372. if m != nil {
  2373. return m.PageSize
  2374. }
  2375. return 0
  2376. }
  2377. func (m *DepartmentListRequest) GetGardenId() int64 {
  2378. if m != nil {
  2379. return m.GardenId
  2380. }
  2381. return 0
  2382. }
  2383. type DepartmentListReply struct {
  2384. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  2385. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  2386. List []*DepartmentItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  2387. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2388. XXX_unrecognized []byte `json:"-"`
  2389. XXX_sizecache int32 `json:"-"`
  2390. }
  2391. func (m *DepartmentListReply) Reset() { *m = DepartmentListReply{} }
  2392. func (m *DepartmentListReply) String() string { return proto.CompactTextString(m) }
  2393. func (*DepartmentListReply) ProtoMessage() {}
  2394. func (*DepartmentListReply) Descriptor() ([]byte, []int) {
  2395. return fileDescriptor_86a7260ebdc12f47, []int{45}
  2396. }
  2397. func (m *DepartmentListReply) XXX_Unmarshal(b []byte) error {
  2398. return xxx_messageInfo_DepartmentListReply.Unmarshal(m, b)
  2399. }
  2400. func (m *DepartmentListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2401. return xxx_messageInfo_DepartmentListReply.Marshal(b, m, deterministic)
  2402. }
  2403. func (m *DepartmentListReply) XXX_Merge(src proto.Message) {
  2404. xxx_messageInfo_DepartmentListReply.Merge(m, src)
  2405. }
  2406. func (m *DepartmentListReply) XXX_Size() int {
  2407. return xxx_messageInfo_DepartmentListReply.Size(m)
  2408. }
  2409. func (m *DepartmentListReply) XXX_DiscardUnknown() {
  2410. xxx_messageInfo_DepartmentListReply.DiscardUnknown(m)
  2411. }
  2412. var xxx_messageInfo_DepartmentListReply proto.InternalMessageInfo
  2413. func (m *DepartmentListReply) GetPage() int64 {
  2414. if m != nil {
  2415. return m.Page
  2416. }
  2417. return 0
  2418. }
  2419. func (m *DepartmentListReply) GetTotal() int64 {
  2420. if m != nil {
  2421. return m.Total
  2422. }
  2423. return 0
  2424. }
  2425. func (m *DepartmentListReply) GetList() []*DepartmentItem {
  2426. if m != nil {
  2427. return m.List
  2428. }
  2429. return nil
  2430. }
  2431. type CompanyEnterGardenRequest struct {
  2432. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2433. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  2434. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2435. XXX_unrecognized []byte `json:"-"`
  2436. XXX_sizecache int32 `json:"-"`
  2437. }
  2438. func (m *CompanyEnterGardenRequest) Reset() { *m = CompanyEnterGardenRequest{} }
  2439. func (m *CompanyEnterGardenRequest) String() string { return proto.CompactTextString(m) }
  2440. func (*CompanyEnterGardenRequest) ProtoMessage() {}
  2441. func (*CompanyEnterGardenRequest) Descriptor() ([]byte, []int) {
  2442. return fileDescriptor_86a7260ebdc12f47, []int{46}
  2443. }
  2444. func (m *CompanyEnterGardenRequest) XXX_Unmarshal(b []byte) error {
  2445. return xxx_messageInfo_CompanyEnterGardenRequest.Unmarshal(m, b)
  2446. }
  2447. func (m *CompanyEnterGardenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2448. return xxx_messageInfo_CompanyEnterGardenRequest.Marshal(b, m, deterministic)
  2449. }
  2450. func (m *CompanyEnterGardenRequest) XXX_Merge(src proto.Message) {
  2451. xxx_messageInfo_CompanyEnterGardenRequest.Merge(m, src)
  2452. }
  2453. func (m *CompanyEnterGardenRequest) XXX_Size() int {
  2454. return xxx_messageInfo_CompanyEnterGardenRequest.Size(m)
  2455. }
  2456. func (m *CompanyEnterGardenRequest) XXX_DiscardUnknown() {
  2457. xxx_messageInfo_CompanyEnterGardenRequest.DiscardUnknown(m)
  2458. }
  2459. var xxx_messageInfo_CompanyEnterGardenRequest proto.InternalMessageInfo
  2460. func (m *CompanyEnterGardenRequest) GetGardenId() int64 {
  2461. if m != nil {
  2462. return m.GardenId
  2463. }
  2464. return 0
  2465. }
  2466. func (m *CompanyEnterGardenRequest) GetCid() int64 {
  2467. if m != nil {
  2468. return m.Cid
  2469. }
  2470. return 0
  2471. }
  2472. type CompanyEnterGardenReply struct {
  2473. GardenName string `protobuf:"bytes,1,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  2474. Permissions []*SystemGroupPermissionData `protobuf:"bytes,2,rep,name=permissions,proto3" json:"permissions"`
  2475. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2476. XXX_unrecognized []byte `json:"-"`
  2477. XXX_sizecache int32 `json:"-"`
  2478. }
  2479. func (m *CompanyEnterGardenReply) Reset() { *m = CompanyEnterGardenReply{} }
  2480. func (m *CompanyEnterGardenReply) String() string { return proto.CompactTextString(m) }
  2481. func (*CompanyEnterGardenReply) ProtoMessage() {}
  2482. func (*CompanyEnterGardenReply) Descriptor() ([]byte, []int) {
  2483. return fileDescriptor_86a7260ebdc12f47, []int{47}
  2484. }
  2485. func (m *CompanyEnterGardenReply) XXX_Unmarshal(b []byte) error {
  2486. return xxx_messageInfo_CompanyEnterGardenReply.Unmarshal(m, b)
  2487. }
  2488. func (m *CompanyEnterGardenReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2489. return xxx_messageInfo_CompanyEnterGardenReply.Marshal(b, m, deterministic)
  2490. }
  2491. func (m *CompanyEnterGardenReply) XXX_Merge(src proto.Message) {
  2492. xxx_messageInfo_CompanyEnterGardenReply.Merge(m, src)
  2493. }
  2494. func (m *CompanyEnterGardenReply) XXX_Size() int {
  2495. return xxx_messageInfo_CompanyEnterGardenReply.Size(m)
  2496. }
  2497. func (m *CompanyEnterGardenReply) XXX_DiscardUnknown() {
  2498. xxx_messageInfo_CompanyEnterGardenReply.DiscardUnknown(m)
  2499. }
  2500. var xxx_messageInfo_CompanyEnterGardenReply proto.InternalMessageInfo
  2501. func (m *CompanyEnterGardenReply) GetGardenName() string {
  2502. if m != nil {
  2503. return m.GardenName
  2504. }
  2505. return ""
  2506. }
  2507. func (m *CompanyEnterGardenReply) GetPermissions() []*SystemGroupPermissionData {
  2508. if m != nil {
  2509. return m.Permissions
  2510. }
  2511. return nil
  2512. }
  2513. type GardenInfosRequest struct {
  2514. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids"`
  2515. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2516. XXX_unrecognized []byte `json:"-"`
  2517. XXX_sizecache int32 `json:"-"`
  2518. }
  2519. func (m *GardenInfosRequest) Reset() { *m = GardenInfosRequest{} }
  2520. func (m *GardenInfosRequest) String() string { return proto.CompactTextString(m) }
  2521. func (*GardenInfosRequest) ProtoMessage() {}
  2522. func (*GardenInfosRequest) Descriptor() ([]byte, []int) {
  2523. return fileDescriptor_86a7260ebdc12f47, []int{48}
  2524. }
  2525. func (m *GardenInfosRequest) XXX_Unmarshal(b []byte) error {
  2526. return xxx_messageInfo_GardenInfosRequest.Unmarshal(m, b)
  2527. }
  2528. func (m *GardenInfosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2529. return xxx_messageInfo_GardenInfosRequest.Marshal(b, m, deterministic)
  2530. }
  2531. func (m *GardenInfosRequest) XXX_Merge(src proto.Message) {
  2532. xxx_messageInfo_GardenInfosRequest.Merge(m, src)
  2533. }
  2534. func (m *GardenInfosRequest) XXX_Size() int {
  2535. return xxx_messageInfo_GardenInfosRequest.Size(m)
  2536. }
  2537. func (m *GardenInfosRequest) XXX_DiscardUnknown() {
  2538. xxx_messageInfo_GardenInfosRequest.DiscardUnknown(m)
  2539. }
  2540. var xxx_messageInfo_GardenInfosRequest proto.InternalMessageInfo
  2541. func (m *GardenInfosRequest) GetIds() []int64 {
  2542. if m != nil {
  2543. return m.Ids
  2544. }
  2545. return nil
  2546. }
  2547. type GardenItem struct {
  2548. // 物业公司id
  2549. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  2550. // 省
  2551. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"`
  2552. ProvinceCode string `protobuf:"bytes,3,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
  2553. // 市
  2554. City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city"`
  2555. CityCode string `protobuf:"bytes,5,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
  2556. // 区
  2557. Area string `protobuf:"bytes,6,opt,name=area,proto3" json:"area"`
  2558. AreaCode string `protobuf:"bytes,7,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
  2559. // 街道
  2560. Street string `protobuf:"bytes,8,opt,name=street,proto3" json:"street"`
  2561. StreetCode string `protobuf:"bytes,9,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
  2562. // 社区
  2563. Committee string `protobuf:"bytes,10,opt,name=committee,proto3" json:"committee"`
  2564. CommitteeCode string `protobuf:"bytes,11,opt,name=committee_code,json=committeeCode,proto3" json:"committee_code"`
  2565. // 小区名字
  2566. GardenName string `protobuf:"bytes,12,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  2567. // 小区地址
  2568. GardenAddr string `protobuf:"bytes,13,opt,name=garden_addr,json=gardenAddr,proto3" json:"garden_addr"`
  2569. // 物业联系人
  2570. PropertyPerson string `protobuf:"bytes,14,opt,name=property_person,json=propertyPerson,proto3" json:"property_person"`
  2571. // 物业联系人手机号
  2572. PropertyPhone string `protobuf:"bytes,15,opt,name=property_phone,json=propertyPhone,proto3" json:"property_phone"`
  2573. Id int64 `protobuf:"varint,16,opt,name=id,proto3" json:"id"`
  2574. GardenPic string `protobuf:"bytes,17,opt,name=garden_pic,json=gardenPic,proto3" json:"garden_pic"`
  2575. GardenDesc string `protobuf:"bytes,18,opt,name=garden_desc,json=gardenDesc,proto3" json:"garden_desc"`
  2576. InUse bool `protobuf:"varint,19,opt,name=in_use,json=inUse,proto3" json:"in_use"`
  2577. // 经度
  2578. Lnt float64 `protobuf:"fixed64,20,opt,name=lnt,proto3" json:"lnt"`
  2579. // 纬度
  2580. Lat float64 `protobuf:"fixed64,21,opt,name=lat,proto3" json:"lat"`
  2581. Appendix []string `protobuf:"bytes,22,rep,name=appendix,proto3" json:"appendix"`
  2582. Status int32 `protobuf:"varint,23,opt,name=status,proto3" json:"status"`
  2583. Feedback string `protobuf:"bytes,24,opt,name=feedback,proto3" json:"feedback"`
  2584. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2585. XXX_unrecognized []byte `json:"-"`
  2586. XXX_sizecache int32 `json:"-"`
  2587. }
  2588. func (m *GardenItem) Reset() { *m = GardenItem{} }
  2589. func (m *GardenItem) String() string { return proto.CompactTextString(m) }
  2590. func (*GardenItem) ProtoMessage() {}
  2591. func (*GardenItem) Descriptor() ([]byte, []int) {
  2592. return fileDescriptor_86a7260ebdc12f47, []int{49}
  2593. }
  2594. func (m *GardenItem) XXX_Unmarshal(b []byte) error {
  2595. return xxx_messageInfo_GardenItem.Unmarshal(m, b)
  2596. }
  2597. func (m *GardenItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2598. return xxx_messageInfo_GardenItem.Marshal(b, m, deterministic)
  2599. }
  2600. func (m *GardenItem) XXX_Merge(src proto.Message) {
  2601. xxx_messageInfo_GardenItem.Merge(m, src)
  2602. }
  2603. func (m *GardenItem) XXX_Size() int {
  2604. return xxx_messageInfo_GardenItem.Size(m)
  2605. }
  2606. func (m *GardenItem) XXX_DiscardUnknown() {
  2607. xxx_messageInfo_GardenItem.DiscardUnknown(m)
  2608. }
  2609. var xxx_messageInfo_GardenItem proto.InternalMessageInfo
  2610. func (m *GardenItem) GetCid() int64 {
  2611. if m != nil {
  2612. return m.Cid
  2613. }
  2614. return 0
  2615. }
  2616. func (m *GardenItem) GetProvince() string {
  2617. if m != nil {
  2618. return m.Province
  2619. }
  2620. return ""
  2621. }
  2622. func (m *GardenItem) GetProvinceCode() string {
  2623. if m != nil {
  2624. return m.ProvinceCode
  2625. }
  2626. return ""
  2627. }
  2628. func (m *GardenItem) GetCity() string {
  2629. if m != nil {
  2630. return m.City
  2631. }
  2632. return ""
  2633. }
  2634. func (m *GardenItem) GetCityCode() string {
  2635. if m != nil {
  2636. return m.CityCode
  2637. }
  2638. return ""
  2639. }
  2640. func (m *GardenItem) GetArea() string {
  2641. if m != nil {
  2642. return m.Area
  2643. }
  2644. return ""
  2645. }
  2646. func (m *GardenItem) GetAreaCode() string {
  2647. if m != nil {
  2648. return m.AreaCode
  2649. }
  2650. return ""
  2651. }
  2652. func (m *GardenItem) GetStreet() string {
  2653. if m != nil {
  2654. return m.Street
  2655. }
  2656. return ""
  2657. }
  2658. func (m *GardenItem) GetStreetCode() string {
  2659. if m != nil {
  2660. return m.StreetCode
  2661. }
  2662. return ""
  2663. }
  2664. func (m *GardenItem) GetCommittee() string {
  2665. if m != nil {
  2666. return m.Committee
  2667. }
  2668. return ""
  2669. }
  2670. func (m *GardenItem) GetCommitteeCode() string {
  2671. if m != nil {
  2672. return m.CommitteeCode
  2673. }
  2674. return ""
  2675. }
  2676. func (m *GardenItem) GetGardenName() string {
  2677. if m != nil {
  2678. return m.GardenName
  2679. }
  2680. return ""
  2681. }
  2682. func (m *GardenItem) GetGardenAddr() string {
  2683. if m != nil {
  2684. return m.GardenAddr
  2685. }
  2686. return ""
  2687. }
  2688. func (m *GardenItem) GetPropertyPerson() string {
  2689. if m != nil {
  2690. return m.PropertyPerson
  2691. }
  2692. return ""
  2693. }
  2694. func (m *GardenItem) GetPropertyPhone() string {
  2695. if m != nil {
  2696. return m.PropertyPhone
  2697. }
  2698. return ""
  2699. }
  2700. func (m *GardenItem) GetId() int64 {
  2701. if m != nil {
  2702. return m.Id
  2703. }
  2704. return 0
  2705. }
  2706. func (m *GardenItem) GetGardenPic() string {
  2707. if m != nil {
  2708. return m.GardenPic
  2709. }
  2710. return ""
  2711. }
  2712. func (m *GardenItem) GetGardenDesc() string {
  2713. if m != nil {
  2714. return m.GardenDesc
  2715. }
  2716. return ""
  2717. }
  2718. func (m *GardenItem) GetInUse() bool {
  2719. if m != nil {
  2720. return m.InUse
  2721. }
  2722. return false
  2723. }
  2724. func (m *GardenItem) GetLnt() float64 {
  2725. if m != nil {
  2726. return m.Lnt
  2727. }
  2728. return 0
  2729. }
  2730. func (m *GardenItem) GetLat() float64 {
  2731. if m != nil {
  2732. return m.Lat
  2733. }
  2734. return 0
  2735. }
  2736. func (m *GardenItem) GetAppendix() []string {
  2737. if m != nil {
  2738. return m.Appendix
  2739. }
  2740. return nil
  2741. }
  2742. func (m *GardenItem) GetStatus() int32 {
  2743. if m != nil {
  2744. return m.Status
  2745. }
  2746. return 0
  2747. }
  2748. func (m *GardenItem) GetFeedback() string {
  2749. if m != nil {
  2750. return m.Feedback
  2751. }
  2752. return ""
  2753. }
  2754. type GardenInfosReply struct {
  2755. List []*GardenItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2756. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2757. XXX_unrecognized []byte `json:"-"`
  2758. XXX_sizecache int32 `json:"-"`
  2759. }
  2760. func (m *GardenInfosReply) Reset() { *m = GardenInfosReply{} }
  2761. func (m *GardenInfosReply) String() string { return proto.CompactTextString(m) }
  2762. func (*GardenInfosReply) ProtoMessage() {}
  2763. func (*GardenInfosReply) Descriptor() ([]byte, []int) {
  2764. return fileDescriptor_86a7260ebdc12f47, []int{50}
  2765. }
  2766. func (m *GardenInfosReply) XXX_Unmarshal(b []byte) error {
  2767. return xxx_messageInfo_GardenInfosReply.Unmarshal(m, b)
  2768. }
  2769. func (m *GardenInfosReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2770. return xxx_messageInfo_GardenInfosReply.Marshal(b, m, deterministic)
  2771. }
  2772. func (m *GardenInfosReply) XXX_Merge(src proto.Message) {
  2773. xxx_messageInfo_GardenInfosReply.Merge(m, src)
  2774. }
  2775. func (m *GardenInfosReply) XXX_Size() int {
  2776. return xxx_messageInfo_GardenInfosReply.Size(m)
  2777. }
  2778. func (m *GardenInfosReply) XXX_DiscardUnknown() {
  2779. xxx_messageInfo_GardenInfosReply.DiscardUnknown(m)
  2780. }
  2781. var xxx_messageInfo_GardenInfosReply proto.InternalMessageInfo
  2782. func (m *GardenInfosReply) GetList() []*GardenItem {
  2783. if m != nil {
  2784. return m.List
  2785. }
  2786. return nil
  2787. }
  2788. type GardenAddRequest struct {
  2789. // 物业公司id
  2790. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  2791. // 省
  2792. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"`
  2793. ProvinceCode string `protobuf:"bytes,3,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
  2794. // 市
  2795. City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city"`
  2796. CityCode string `protobuf:"bytes,5,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
  2797. // 区
  2798. Area string `protobuf:"bytes,6,opt,name=area,proto3" json:"area"`
  2799. AreaCode string `protobuf:"bytes,7,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
  2800. // 街道
  2801. Street string `protobuf:"bytes,8,opt,name=street,proto3" json:"street"`
  2802. StreetCode string `protobuf:"bytes,9,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
  2803. // 社区
  2804. Committee string `protobuf:"bytes,10,opt,name=committee,proto3" json:"committee"`
  2805. CommitteeCode string `protobuf:"bytes,11,opt,name=committee_code,json=committeeCode,proto3" json:"committee_code"`
  2806. // 小区名字
  2807. GardenName string `protobuf:"bytes,12,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  2808. // 小区地址
  2809. GardenAddr string `protobuf:"bytes,13,opt,name=garden_addr,json=gardenAddr,proto3" json:"garden_addr"`
  2810. // 物业联系人
  2811. PropertyPerson string `protobuf:"bytes,14,opt,name=property_person,json=propertyPerson,proto3" json:"property_person"`
  2812. // 物业联系人手机号
  2813. PropertyPhone string `protobuf:"bytes,15,opt,name=property_phone,json=propertyPhone,proto3" json:"property_phone"`
  2814. // 免费小区个数
  2815. FreeGardenCount int32 `protobuf:"varint,16,opt,name=free_garden_count,json=freeGardenCount,proto3" json:"free_garden_count"`
  2816. GardenPic string `protobuf:"bytes,17,opt,name=garden_pic,json=gardenPic,proto3" json:"garden_pic"`
  2817. GardenDesc string `protobuf:"bytes,18,opt,name=garden_desc,json=gardenDesc,proto3" json:"garden_desc"`
  2818. // 经度
  2819. Lnt float64 `protobuf:"fixed64,19,opt,name=lnt,proto3" json:"lnt"`
  2820. // 纬度
  2821. Lat float64 `protobuf:"fixed64,20,opt,name=lat,proto3" json:"lat"`
  2822. Appendix []string `protobuf:"bytes,21,rep,name=appendix,proto3" json:"appendix"`
  2823. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2824. XXX_unrecognized []byte `json:"-"`
  2825. XXX_sizecache int32 `json:"-"`
  2826. }
  2827. func (m *GardenAddRequest) Reset() { *m = GardenAddRequest{} }
  2828. func (m *GardenAddRequest) String() string { return proto.CompactTextString(m) }
  2829. func (*GardenAddRequest) ProtoMessage() {}
  2830. func (*GardenAddRequest) Descriptor() ([]byte, []int) {
  2831. return fileDescriptor_86a7260ebdc12f47, []int{51}
  2832. }
  2833. func (m *GardenAddRequest) XXX_Unmarshal(b []byte) error {
  2834. return xxx_messageInfo_GardenAddRequest.Unmarshal(m, b)
  2835. }
  2836. func (m *GardenAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2837. return xxx_messageInfo_GardenAddRequest.Marshal(b, m, deterministic)
  2838. }
  2839. func (m *GardenAddRequest) XXX_Merge(src proto.Message) {
  2840. xxx_messageInfo_GardenAddRequest.Merge(m, src)
  2841. }
  2842. func (m *GardenAddRequest) XXX_Size() int {
  2843. return xxx_messageInfo_GardenAddRequest.Size(m)
  2844. }
  2845. func (m *GardenAddRequest) XXX_DiscardUnknown() {
  2846. xxx_messageInfo_GardenAddRequest.DiscardUnknown(m)
  2847. }
  2848. var xxx_messageInfo_GardenAddRequest proto.InternalMessageInfo
  2849. func (m *GardenAddRequest) GetCid() int64 {
  2850. if m != nil {
  2851. return m.Cid
  2852. }
  2853. return 0
  2854. }
  2855. func (m *GardenAddRequest) GetProvince() string {
  2856. if m != nil {
  2857. return m.Province
  2858. }
  2859. return ""
  2860. }
  2861. func (m *GardenAddRequest) GetProvinceCode() string {
  2862. if m != nil {
  2863. return m.ProvinceCode
  2864. }
  2865. return ""
  2866. }
  2867. func (m *GardenAddRequest) GetCity() string {
  2868. if m != nil {
  2869. return m.City
  2870. }
  2871. return ""
  2872. }
  2873. func (m *GardenAddRequest) GetCityCode() string {
  2874. if m != nil {
  2875. return m.CityCode
  2876. }
  2877. return ""
  2878. }
  2879. func (m *GardenAddRequest) GetArea() string {
  2880. if m != nil {
  2881. return m.Area
  2882. }
  2883. return ""
  2884. }
  2885. func (m *GardenAddRequest) GetAreaCode() string {
  2886. if m != nil {
  2887. return m.AreaCode
  2888. }
  2889. return ""
  2890. }
  2891. func (m *GardenAddRequest) GetStreet() string {
  2892. if m != nil {
  2893. return m.Street
  2894. }
  2895. return ""
  2896. }
  2897. func (m *GardenAddRequest) GetStreetCode() string {
  2898. if m != nil {
  2899. return m.StreetCode
  2900. }
  2901. return ""
  2902. }
  2903. func (m *GardenAddRequest) GetCommittee() string {
  2904. if m != nil {
  2905. return m.Committee
  2906. }
  2907. return ""
  2908. }
  2909. func (m *GardenAddRequest) GetCommitteeCode() string {
  2910. if m != nil {
  2911. return m.CommitteeCode
  2912. }
  2913. return ""
  2914. }
  2915. func (m *GardenAddRequest) GetGardenName() string {
  2916. if m != nil {
  2917. return m.GardenName
  2918. }
  2919. return ""
  2920. }
  2921. func (m *GardenAddRequest) GetGardenAddr() string {
  2922. if m != nil {
  2923. return m.GardenAddr
  2924. }
  2925. return ""
  2926. }
  2927. func (m *GardenAddRequest) GetPropertyPerson() string {
  2928. if m != nil {
  2929. return m.PropertyPerson
  2930. }
  2931. return ""
  2932. }
  2933. func (m *GardenAddRequest) GetPropertyPhone() string {
  2934. if m != nil {
  2935. return m.PropertyPhone
  2936. }
  2937. return ""
  2938. }
  2939. func (m *GardenAddRequest) GetFreeGardenCount() int32 {
  2940. if m != nil {
  2941. return m.FreeGardenCount
  2942. }
  2943. return 0
  2944. }
  2945. func (m *GardenAddRequest) GetGardenPic() string {
  2946. if m != nil {
  2947. return m.GardenPic
  2948. }
  2949. return ""
  2950. }
  2951. func (m *GardenAddRequest) GetGardenDesc() string {
  2952. if m != nil {
  2953. return m.GardenDesc
  2954. }
  2955. return ""
  2956. }
  2957. func (m *GardenAddRequest) GetLnt() float64 {
  2958. if m != nil {
  2959. return m.Lnt
  2960. }
  2961. return 0
  2962. }
  2963. func (m *GardenAddRequest) GetLat() float64 {
  2964. if m != nil {
  2965. return m.Lat
  2966. }
  2967. return 0
  2968. }
  2969. func (m *GardenAddRequest) GetAppendix() []string {
  2970. if m != nil {
  2971. return m.Appendix
  2972. }
  2973. return nil
  2974. }
  2975. type GardenAddReply struct {
  2976. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2977. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2978. XXX_unrecognized []byte `json:"-"`
  2979. XXX_sizecache int32 `json:"-"`
  2980. }
  2981. func (m *GardenAddReply) Reset() { *m = GardenAddReply{} }
  2982. func (m *GardenAddReply) String() string { return proto.CompactTextString(m) }
  2983. func (*GardenAddReply) ProtoMessage() {}
  2984. func (*GardenAddReply) Descriptor() ([]byte, []int) {
  2985. return fileDescriptor_86a7260ebdc12f47, []int{52}
  2986. }
  2987. func (m *GardenAddReply) XXX_Unmarshal(b []byte) error {
  2988. return xxx_messageInfo_GardenAddReply.Unmarshal(m, b)
  2989. }
  2990. func (m *GardenAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2991. return xxx_messageInfo_GardenAddReply.Marshal(b, m, deterministic)
  2992. }
  2993. func (m *GardenAddReply) XXX_Merge(src proto.Message) {
  2994. xxx_messageInfo_GardenAddReply.Merge(m, src)
  2995. }
  2996. func (m *GardenAddReply) XXX_Size() int {
  2997. return xxx_messageInfo_GardenAddReply.Size(m)
  2998. }
  2999. func (m *GardenAddReply) XXX_DiscardUnknown() {
  3000. xxx_messageInfo_GardenAddReply.DiscardUnknown(m)
  3001. }
  3002. var xxx_messageInfo_GardenAddReply proto.InternalMessageInfo
  3003. func (m *GardenAddReply) GetId() int64 {
  3004. if m != nil {
  3005. return m.Id
  3006. }
  3007. return 0
  3008. }
  3009. type GardenListRequest struct {
  3010. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  3011. PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  3012. Cid int64 `protobuf:"varint,3,opt,name=cid,proto3" json:"cid"`
  3013. CommitteeCode string `protobuf:"bytes,4,opt,name=committee_code,json=committeeCode,proto3" json:"committee_code"`
  3014. NeedAppendix bool `protobuf:"varint,5,opt,name=need_appendix,json=needAppendix,proto3" json:"need_appendix"`
  3015. NotApproved bool `protobuf:"varint,6,opt,name=not_approved,json=notApproved,proto3" json:"not_approved"`
  3016. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3017. XXX_unrecognized []byte `json:"-"`
  3018. XXX_sizecache int32 `json:"-"`
  3019. }
  3020. func (m *GardenListRequest) Reset() { *m = GardenListRequest{} }
  3021. func (m *GardenListRequest) String() string { return proto.CompactTextString(m) }
  3022. func (*GardenListRequest) ProtoMessage() {}
  3023. func (*GardenListRequest) Descriptor() ([]byte, []int) {
  3024. return fileDescriptor_86a7260ebdc12f47, []int{53}
  3025. }
  3026. func (m *GardenListRequest) XXX_Unmarshal(b []byte) error {
  3027. return xxx_messageInfo_GardenListRequest.Unmarshal(m, b)
  3028. }
  3029. func (m *GardenListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3030. return xxx_messageInfo_GardenListRequest.Marshal(b, m, deterministic)
  3031. }
  3032. func (m *GardenListRequest) XXX_Merge(src proto.Message) {
  3033. xxx_messageInfo_GardenListRequest.Merge(m, src)
  3034. }
  3035. func (m *GardenListRequest) XXX_Size() int {
  3036. return xxx_messageInfo_GardenListRequest.Size(m)
  3037. }
  3038. func (m *GardenListRequest) XXX_DiscardUnknown() {
  3039. xxx_messageInfo_GardenListRequest.DiscardUnknown(m)
  3040. }
  3041. var xxx_messageInfo_GardenListRequest proto.InternalMessageInfo
  3042. func (m *GardenListRequest) GetPage() int64 {
  3043. if m != nil {
  3044. return m.Page
  3045. }
  3046. return 0
  3047. }
  3048. func (m *GardenListRequest) GetPageSize() int64 {
  3049. if m != nil {
  3050. return m.PageSize
  3051. }
  3052. return 0
  3053. }
  3054. func (m *GardenListRequest) GetCid() int64 {
  3055. if m != nil {
  3056. return m.Cid
  3057. }
  3058. return 0
  3059. }
  3060. func (m *GardenListRequest) GetCommitteeCode() string {
  3061. if m != nil {
  3062. return m.CommitteeCode
  3063. }
  3064. return ""
  3065. }
  3066. func (m *GardenListRequest) GetNeedAppendix() bool {
  3067. if m != nil {
  3068. return m.NeedAppendix
  3069. }
  3070. return false
  3071. }
  3072. func (m *GardenListRequest) GetNotApproved() bool {
  3073. if m != nil {
  3074. return m.NotApproved
  3075. }
  3076. return false
  3077. }
  3078. type GardenListReply struct {
  3079. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  3080. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  3081. List []*GardenItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3082. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3083. XXX_unrecognized []byte `json:"-"`
  3084. XXX_sizecache int32 `json:"-"`
  3085. }
  3086. func (m *GardenListReply) Reset() { *m = GardenListReply{} }
  3087. func (m *GardenListReply) String() string { return proto.CompactTextString(m) }
  3088. func (*GardenListReply) ProtoMessage() {}
  3089. func (*GardenListReply) Descriptor() ([]byte, []int) {
  3090. return fileDescriptor_86a7260ebdc12f47, []int{54}
  3091. }
  3092. func (m *GardenListReply) XXX_Unmarshal(b []byte) error {
  3093. return xxx_messageInfo_GardenListReply.Unmarshal(m, b)
  3094. }
  3095. func (m *GardenListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3096. return xxx_messageInfo_GardenListReply.Marshal(b, m, deterministic)
  3097. }
  3098. func (m *GardenListReply) XXX_Merge(src proto.Message) {
  3099. xxx_messageInfo_GardenListReply.Merge(m, src)
  3100. }
  3101. func (m *GardenListReply) XXX_Size() int {
  3102. return xxx_messageInfo_GardenListReply.Size(m)
  3103. }
  3104. func (m *GardenListReply) XXX_DiscardUnknown() {
  3105. xxx_messageInfo_GardenListReply.DiscardUnknown(m)
  3106. }
  3107. var xxx_messageInfo_GardenListReply proto.InternalMessageInfo
  3108. func (m *GardenListReply) GetPage() int64 {
  3109. if m != nil {
  3110. return m.Page
  3111. }
  3112. return 0
  3113. }
  3114. func (m *GardenListReply) GetTotal() int64 {
  3115. if m != nil {
  3116. return m.Total
  3117. }
  3118. return 0
  3119. }
  3120. func (m *GardenListReply) GetList() []*GardenItem {
  3121. if m != nil {
  3122. return m.List
  3123. }
  3124. return nil
  3125. }
  3126. type GardenUpdateRequest struct {
  3127. // id
  3128. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3129. // 省
  3130. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"`
  3131. ProvinceCode string `protobuf:"bytes,3,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
  3132. // 市
  3133. City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city"`
  3134. CityCode string `protobuf:"bytes,5,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
  3135. // 区
  3136. Area string `protobuf:"bytes,6,opt,name=area,proto3" json:"area"`
  3137. AreaCode string `protobuf:"bytes,7,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
  3138. // 街道
  3139. Street string `protobuf:"bytes,8,opt,name=street,proto3" json:"street"`
  3140. StreetCode string `protobuf:"bytes,9,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
  3141. // 社区
  3142. Committee string `protobuf:"bytes,10,opt,name=committee,proto3" json:"committee"`
  3143. CommitteeCode string `protobuf:"bytes,11,opt,name=committee_code,json=committeeCode,proto3" json:"committee_code"`
  3144. // 小区名字
  3145. GardenName string `protobuf:"bytes,12,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  3146. // 小区地址
  3147. GardenAddr string `protobuf:"bytes,13,opt,name=garden_addr,json=gardenAddr,proto3" json:"garden_addr"`
  3148. // 物业联系人
  3149. PropertyPerson string `protobuf:"bytes,14,opt,name=property_person,json=propertyPerson,proto3" json:"property_person"`
  3150. // 物业联系人手机号
  3151. PropertyPhone string `protobuf:"bytes,15,opt,name=property_phone,json=propertyPhone,proto3" json:"property_phone"`
  3152. Cid int64 `protobuf:"varint,16,opt,name=cid,proto3" json:"cid"`
  3153. GardenPic string `protobuf:"bytes,17,opt,name=garden_pic,json=gardenPic,proto3" json:"garden_pic"`
  3154. GardenDesc string `protobuf:"bytes,18,opt,name=garden_desc,json=gardenDesc,proto3" json:"garden_desc"`
  3155. // 经度
  3156. Lnt float64 `protobuf:"fixed64,19,opt,name=lnt,proto3" json:"lnt"`
  3157. // 纬度
  3158. Lat float64 `protobuf:"fixed64,20,opt,name=lat,proto3" json:"lat"`
  3159. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3160. XXX_unrecognized []byte `json:"-"`
  3161. XXX_sizecache int32 `json:"-"`
  3162. }
  3163. func (m *GardenUpdateRequest) Reset() { *m = GardenUpdateRequest{} }
  3164. func (m *GardenUpdateRequest) String() string { return proto.CompactTextString(m) }
  3165. func (*GardenUpdateRequest) ProtoMessage() {}
  3166. func (*GardenUpdateRequest) Descriptor() ([]byte, []int) {
  3167. return fileDescriptor_86a7260ebdc12f47, []int{55}
  3168. }
  3169. func (m *GardenUpdateRequest) XXX_Unmarshal(b []byte) error {
  3170. return xxx_messageInfo_GardenUpdateRequest.Unmarshal(m, b)
  3171. }
  3172. func (m *GardenUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3173. return xxx_messageInfo_GardenUpdateRequest.Marshal(b, m, deterministic)
  3174. }
  3175. func (m *GardenUpdateRequest) XXX_Merge(src proto.Message) {
  3176. xxx_messageInfo_GardenUpdateRequest.Merge(m, src)
  3177. }
  3178. func (m *GardenUpdateRequest) XXX_Size() int {
  3179. return xxx_messageInfo_GardenUpdateRequest.Size(m)
  3180. }
  3181. func (m *GardenUpdateRequest) XXX_DiscardUnknown() {
  3182. xxx_messageInfo_GardenUpdateRequest.DiscardUnknown(m)
  3183. }
  3184. var xxx_messageInfo_GardenUpdateRequest proto.InternalMessageInfo
  3185. func (m *GardenUpdateRequest) GetId() int64 {
  3186. if m != nil {
  3187. return m.Id
  3188. }
  3189. return 0
  3190. }
  3191. func (m *GardenUpdateRequest) GetProvince() string {
  3192. if m != nil {
  3193. return m.Province
  3194. }
  3195. return ""
  3196. }
  3197. func (m *GardenUpdateRequest) GetProvinceCode() string {
  3198. if m != nil {
  3199. return m.ProvinceCode
  3200. }
  3201. return ""
  3202. }
  3203. func (m *GardenUpdateRequest) GetCity() string {
  3204. if m != nil {
  3205. return m.City
  3206. }
  3207. return ""
  3208. }
  3209. func (m *GardenUpdateRequest) GetCityCode() string {
  3210. if m != nil {
  3211. return m.CityCode
  3212. }
  3213. return ""
  3214. }
  3215. func (m *GardenUpdateRequest) GetArea() string {
  3216. if m != nil {
  3217. return m.Area
  3218. }
  3219. return ""
  3220. }
  3221. func (m *GardenUpdateRequest) GetAreaCode() string {
  3222. if m != nil {
  3223. return m.AreaCode
  3224. }
  3225. return ""
  3226. }
  3227. func (m *GardenUpdateRequest) GetStreet() string {
  3228. if m != nil {
  3229. return m.Street
  3230. }
  3231. return ""
  3232. }
  3233. func (m *GardenUpdateRequest) GetStreetCode() string {
  3234. if m != nil {
  3235. return m.StreetCode
  3236. }
  3237. return ""
  3238. }
  3239. func (m *GardenUpdateRequest) GetCommittee() string {
  3240. if m != nil {
  3241. return m.Committee
  3242. }
  3243. return ""
  3244. }
  3245. func (m *GardenUpdateRequest) GetCommitteeCode() string {
  3246. if m != nil {
  3247. return m.CommitteeCode
  3248. }
  3249. return ""
  3250. }
  3251. func (m *GardenUpdateRequest) GetGardenName() string {
  3252. if m != nil {
  3253. return m.GardenName
  3254. }
  3255. return ""
  3256. }
  3257. func (m *GardenUpdateRequest) GetGardenAddr() string {
  3258. if m != nil {
  3259. return m.GardenAddr
  3260. }
  3261. return ""
  3262. }
  3263. func (m *GardenUpdateRequest) GetPropertyPerson() string {
  3264. if m != nil {
  3265. return m.PropertyPerson
  3266. }
  3267. return ""
  3268. }
  3269. func (m *GardenUpdateRequest) GetPropertyPhone() string {
  3270. if m != nil {
  3271. return m.PropertyPhone
  3272. }
  3273. return ""
  3274. }
  3275. func (m *GardenUpdateRequest) GetCid() int64 {
  3276. if m != nil {
  3277. return m.Cid
  3278. }
  3279. return 0
  3280. }
  3281. func (m *GardenUpdateRequest) GetGardenPic() string {
  3282. if m != nil {
  3283. return m.GardenPic
  3284. }
  3285. return ""
  3286. }
  3287. func (m *GardenUpdateRequest) GetGardenDesc() string {
  3288. if m != nil {
  3289. return m.GardenDesc
  3290. }
  3291. return ""
  3292. }
  3293. func (m *GardenUpdateRequest) GetLnt() float64 {
  3294. if m != nil {
  3295. return m.Lnt
  3296. }
  3297. return 0
  3298. }
  3299. func (m *GardenUpdateRequest) GetLat() float64 {
  3300. if m != nil {
  3301. return m.Lat
  3302. }
  3303. return 0
  3304. }
  3305. type GardenUpdateReply struct {
  3306. Origin *GardenUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  3307. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3308. XXX_unrecognized []byte `json:"-"`
  3309. XXX_sizecache int32 `json:"-"`
  3310. }
  3311. func (m *GardenUpdateReply) Reset() { *m = GardenUpdateReply{} }
  3312. func (m *GardenUpdateReply) String() string { return proto.CompactTextString(m) }
  3313. func (*GardenUpdateReply) ProtoMessage() {}
  3314. func (*GardenUpdateReply) Descriptor() ([]byte, []int) {
  3315. return fileDescriptor_86a7260ebdc12f47, []int{56}
  3316. }
  3317. func (m *GardenUpdateReply) XXX_Unmarshal(b []byte) error {
  3318. return xxx_messageInfo_GardenUpdateReply.Unmarshal(m, b)
  3319. }
  3320. func (m *GardenUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3321. return xxx_messageInfo_GardenUpdateReply.Marshal(b, m, deterministic)
  3322. }
  3323. func (m *GardenUpdateReply) XXX_Merge(src proto.Message) {
  3324. xxx_messageInfo_GardenUpdateReply.Merge(m, src)
  3325. }
  3326. func (m *GardenUpdateReply) XXX_Size() int {
  3327. return xxx_messageInfo_GardenUpdateReply.Size(m)
  3328. }
  3329. func (m *GardenUpdateReply) XXX_DiscardUnknown() {
  3330. xxx_messageInfo_GardenUpdateReply.DiscardUnknown(m)
  3331. }
  3332. var xxx_messageInfo_GardenUpdateReply proto.InternalMessageInfo
  3333. func (m *GardenUpdateReply) GetOrigin() *GardenUpdateRequest {
  3334. if m != nil {
  3335. return m.Origin
  3336. }
  3337. return nil
  3338. }
  3339. type GardenKeyInfoChangeRequest struct {
  3340. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3341. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3342. Province string `protobuf:"bytes,3,opt,name=province,proto3" json:"province"`
  3343. ProvinceCode string `protobuf:"bytes,4,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
  3344. // 市
  3345. City string `protobuf:"bytes,5,opt,name=city,proto3" json:"city"`
  3346. CityCode string `protobuf:"bytes,6,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
  3347. // 区
  3348. Area string `protobuf:"bytes,7,opt,name=area,proto3" json:"area"`
  3349. AreaCode string `protobuf:"bytes,8,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
  3350. // 街道
  3351. Street string `protobuf:"bytes,9,opt,name=street,proto3" json:"street"`
  3352. StreetCode string `protobuf:"bytes,10,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
  3353. // 社区
  3354. Committee string `protobuf:"bytes,11,opt,name=committee,proto3" json:"committee"`
  3355. CommitteeCode string `protobuf:"bytes,12,opt,name=committee_code,json=committeeCode,proto3" json:"committee_code"`
  3356. GardenName string `protobuf:"bytes,13,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  3357. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3358. XXX_unrecognized []byte `json:"-"`
  3359. XXX_sizecache int32 `json:"-"`
  3360. }
  3361. func (m *GardenKeyInfoChangeRequest) Reset() { *m = GardenKeyInfoChangeRequest{} }
  3362. func (m *GardenKeyInfoChangeRequest) String() string { return proto.CompactTextString(m) }
  3363. func (*GardenKeyInfoChangeRequest) ProtoMessage() {}
  3364. func (*GardenKeyInfoChangeRequest) Descriptor() ([]byte, []int) {
  3365. return fileDescriptor_86a7260ebdc12f47, []int{57}
  3366. }
  3367. func (m *GardenKeyInfoChangeRequest) XXX_Unmarshal(b []byte) error {
  3368. return xxx_messageInfo_GardenKeyInfoChangeRequest.Unmarshal(m, b)
  3369. }
  3370. func (m *GardenKeyInfoChangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3371. return xxx_messageInfo_GardenKeyInfoChangeRequest.Marshal(b, m, deterministic)
  3372. }
  3373. func (m *GardenKeyInfoChangeRequest) XXX_Merge(src proto.Message) {
  3374. xxx_messageInfo_GardenKeyInfoChangeRequest.Merge(m, src)
  3375. }
  3376. func (m *GardenKeyInfoChangeRequest) XXX_Size() int {
  3377. return xxx_messageInfo_GardenKeyInfoChangeRequest.Size(m)
  3378. }
  3379. func (m *GardenKeyInfoChangeRequest) XXX_DiscardUnknown() {
  3380. xxx_messageInfo_GardenKeyInfoChangeRequest.DiscardUnknown(m)
  3381. }
  3382. var xxx_messageInfo_GardenKeyInfoChangeRequest proto.InternalMessageInfo
  3383. func (m *GardenKeyInfoChangeRequest) GetId() int64 {
  3384. if m != nil {
  3385. return m.Id
  3386. }
  3387. return 0
  3388. }
  3389. func (m *GardenKeyInfoChangeRequest) GetCid() int64 {
  3390. if m != nil {
  3391. return m.Cid
  3392. }
  3393. return 0
  3394. }
  3395. func (m *GardenKeyInfoChangeRequest) GetProvince() string {
  3396. if m != nil {
  3397. return m.Province
  3398. }
  3399. return ""
  3400. }
  3401. func (m *GardenKeyInfoChangeRequest) GetProvinceCode() string {
  3402. if m != nil {
  3403. return m.ProvinceCode
  3404. }
  3405. return ""
  3406. }
  3407. func (m *GardenKeyInfoChangeRequest) GetCity() string {
  3408. if m != nil {
  3409. return m.City
  3410. }
  3411. return ""
  3412. }
  3413. func (m *GardenKeyInfoChangeRequest) GetCityCode() string {
  3414. if m != nil {
  3415. return m.CityCode
  3416. }
  3417. return ""
  3418. }
  3419. func (m *GardenKeyInfoChangeRequest) GetArea() string {
  3420. if m != nil {
  3421. return m.Area
  3422. }
  3423. return ""
  3424. }
  3425. func (m *GardenKeyInfoChangeRequest) GetAreaCode() string {
  3426. if m != nil {
  3427. return m.AreaCode
  3428. }
  3429. return ""
  3430. }
  3431. func (m *GardenKeyInfoChangeRequest) GetStreet() string {
  3432. if m != nil {
  3433. return m.Street
  3434. }
  3435. return ""
  3436. }
  3437. func (m *GardenKeyInfoChangeRequest) GetStreetCode() string {
  3438. if m != nil {
  3439. return m.StreetCode
  3440. }
  3441. return ""
  3442. }
  3443. func (m *GardenKeyInfoChangeRequest) GetCommittee() string {
  3444. if m != nil {
  3445. return m.Committee
  3446. }
  3447. return ""
  3448. }
  3449. func (m *GardenKeyInfoChangeRequest) GetCommitteeCode() string {
  3450. if m != nil {
  3451. return m.CommitteeCode
  3452. }
  3453. return ""
  3454. }
  3455. func (m *GardenKeyInfoChangeRequest) GetGardenName() string {
  3456. if m != nil {
  3457. return m.GardenName
  3458. }
  3459. return ""
  3460. }
  3461. type GardenKeyInfoChangeReply struct {
  3462. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3463. XXX_unrecognized []byte `json:"-"`
  3464. XXX_sizecache int32 `json:"-"`
  3465. }
  3466. func (m *GardenKeyInfoChangeReply) Reset() { *m = GardenKeyInfoChangeReply{} }
  3467. func (m *GardenKeyInfoChangeReply) String() string { return proto.CompactTextString(m) }
  3468. func (*GardenKeyInfoChangeReply) ProtoMessage() {}
  3469. func (*GardenKeyInfoChangeReply) Descriptor() ([]byte, []int) {
  3470. return fileDescriptor_86a7260ebdc12f47, []int{58}
  3471. }
  3472. func (m *GardenKeyInfoChangeReply) XXX_Unmarshal(b []byte) error {
  3473. return xxx_messageInfo_GardenKeyInfoChangeReply.Unmarshal(m, b)
  3474. }
  3475. func (m *GardenKeyInfoChangeReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3476. return xxx_messageInfo_GardenKeyInfoChangeReply.Marshal(b, m, deterministic)
  3477. }
  3478. func (m *GardenKeyInfoChangeReply) XXX_Merge(src proto.Message) {
  3479. xxx_messageInfo_GardenKeyInfoChangeReply.Merge(m, src)
  3480. }
  3481. func (m *GardenKeyInfoChangeReply) XXX_Size() int {
  3482. return xxx_messageInfo_GardenKeyInfoChangeReply.Size(m)
  3483. }
  3484. func (m *GardenKeyInfoChangeReply) XXX_DiscardUnknown() {
  3485. xxx_messageInfo_GardenKeyInfoChangeReply.DiscardUnknown(m)
  3486. }
  3487. var xxx_messageInfo_GardenKeyInfoChangeReply proto.InternalMessageInfo
  3488. type GardenKeyInfoChangeListRequest struct {
  3489. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  3490. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3491. Status int32 `protobuf:"varint,3,opt,name=status,proto3" json:"status"`
  3492. Page int64 `protobuf:"varint,4,opt,name=page,proto3" json:"page"`
  3493. PageSize int64 `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  3494. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3495. XXX_unrecognized []byte `json:"-"`
  3496. XXX_sizecache int32 `json:"-"`
  3497. }
  3498. func (m *GardenKeyInfoChangeListRequest) Reset() { *m = GardenKeyInfoChangeListRequest{} }
  3499. func (m *GardenKeyInfoChangeListRequest) String() string { return proto.CompactTextString(m) }
  3500. func (*GardenKeyInfoChangeListRequest) ProtoMessage() {}
  3501. func (*GardenKeyInfoChangeListRequest) Descriptor() ([]byte, []int) {
  3502. return fileDescriptor_86a7260ebdc12f47, []int{59}
  3503. }
  3504. func (m *GardenKeyInfoChangeListRequest) XXX_Unmarshal(b []byte) error {
  3505. return xxx_messageInfo_GardenKeyInfoChangeListRequest.Unmarshal(m, b)
  3506. }
  3507. func (m *GardenKeyInfoChangeListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3508. return xxx_messageInfo_GardenKeyInfoChangeListRequest.Marshal(b, m, deterministic)
  3509. }
  3510. func (m *GardenKeyInfoChangeListRequest) XXX_Merge(src proto.Message) {
  3511. xxx_messageInfo_GardenKeyInfoChangeListRequest.Merge(m, src)
  3512. }
  3513. func (m *GardenKeyInfoChangeListRequest) XXX_Size() int {
  3514. return xxx_messageInfo_GardenKeyInfoChangeListRequest.Size(m)
  3515. }
  3516. func (m *GardenKeyInfoChangeListRequest) XXX_DiscardUnknown() {
  3517. xxx_messageInfo_GardenKeyInfoChangeListRequest.DiscardUnknown(m)
  3518. }
  3519. var xxx_messageInfo_GardenKeyInfoChangeListRequest proto.InternalMessageInfo
  3520. func (m *GardenKeyInfoChangeListRequest) GetCid() int64 {
  3521. if m != nil {
  3522. return m.Cid
  3523. }
  3524. return 0
  3525. }
  3526. func (m *GardenKeyInfoChangeListRequest) GetGardenId() int64 {
  3527. if m != nil {
  3528. return m.GardenId
  3529. }
  3530. return 0
  3531. }
  3532. func (m *GardenKeyInfoChangeListRequest) GetStatus() int32 {
  3533. if m != nil {
  3534. return m.Status
  3535. }
  3536. return 0
  3537. }
  3538. func (m *GardenKeyInfoChangeListRequest) GetPage() int64 {
  3539. if m != nil {
  3540. return m.Page
  3541. }
  3542. return 0
  3543. }
  3544. func (m *GardenKeyInfoChangeListRequest) GetPageSize() int64 {
  3545. if m != nil {
  3546. return m.PageSize
  3547. }
  3548. return 0
  3549. }
  3550. type GardenKeyInfoData struct {
  3551. Status int32 `protobuf:"varint,1,opt,name=status,proto3" json:"status"`
  3552. GardenName string `protobuf:"bytes,2,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  3553. GardenDetail string `protobuf:"bytes,3,opt,name=garden_detail,json=gardenDetail,proto3" json:"garden_detail"`
  3554. Cid int64 `protobuf:"varint,4,opt,name=cid,proto3" json:"cid"`
  3555. GardenId int64 `protobuf:"varint,5,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3556. Id int64 `protobuf:"varint,6,opt,name=id,proto3" json:"id"`
  3557. Feedback string `protobuf:"bytes,7,opt,name=feedback,proto3" json:"feedback"`
  3558. List []*GardenKeyInfoItem `protobuf:"bytes,8,rep,name=list,proto3" json:"list"`
  3559. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3560. XXX_unrecognized []byte `json:"-"`
  3561. XXX_sizecache int32 `json:"-"`
  3562. }
  3563. func (m *GardenKeyInfoData) Reset() { *m = GardenKeyInfoData{} }
  3564. func (m *GardenKeyInfoData) String() string { return proto.CompactTextString(m) }
  3565. func (*GardenKeyInfoData) ProtoMessage() {}
  3566. func (*GardenKeyInfoData) Descriptor() ([]byte, []int) {
  3567. return fileDescriptor_86a7260ebdc12f47, []int{60}
  3568. }
  3569. func (m *GardenKeyInfoData) XXX_Unmarshal(b []byte) error {
  3570. return xxx_messageInfo_GardenKeyInfoData.Unmarshal(m, b)
  3571. }
  3572. func (m *GardenKeyInfoData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3573. return xxx_messageInfo_GardenKeyInfoData.Marshal(b, m, deterministic)
  3574. }
  3575. func (m *GardenKeyInfoData) XXX_Merge(src proto.Message) {
  3576. xxx_messageInfo_GardenKeyInfoData.Merge(m, src)
  3577. }
  3578. func (m *GardenKeyInfoData) XXX_Size() int {
  3579. return xxx_messageInfo_GardenKeyInfoData.Size(m)
  3580. }
  3581. func (m *GardenKeyInfoData) XXX_DiscardUnknown() {
  3582. xxx_messageInfo_GardenKeyInfoData.DiscardUnknown(m)
  3583. }
  3584. var xxx_messageInfo_GardenKeyInfoData proto.InternalMessageInfo
  3585. func (m *GardenKeyInfoData) GetStatus() int32 {
  3586. if m != nil {
  3587. return m.Status
  3588. }
  3589. return 0
  3590. }
  3591. func (m *GardenKeyInfoData) GetGardenName() string {
  3592. if m != nil {
  3593. return m.GardenName
  3594. }
  3595. return ""
  3596. }
  3597. func (m *GardenKeyInfoData) GetGardenDetail() string {
  3598. if m != nil {
  3599. return m.GardenDetail
  3600. }
  3601. return ""
  3602. }
  3603. func (m *GardenKeyInfoData) GetCid() int64 {
  3604. if m != nil {
  3605. return m.Cid
  3606. }
  3607. return 0
  3608. }
  3609. func (m *GardenKeyInfoData) GetGardenId() int64 {
  3610. if m != nil {
  3611. return m.GardenId
  3612. }
  3613. return 0
  3614. }
  3615. func (m *GardenKeyInfoData) GetId() int64 {
  3616. if m != nil {
  3617. return m.Id
  3618. }
  3619. return 0
  3620. }
  3621. func (m *GardenKeyInfoData) GetFeedback() string {
  3622. if m != nil {
  3623. return m.Feedback
  3624. }
  3625. return ""
  3626. }
  3627. func (m *GardenKeyInfoData) GetList() []*GardenKeyInfoItem {
  3628. if m != nil {
  3629. return m.List
  3630. }
  3631. return nil
  3632. }
  3633. type GardenKeyInfoItem struct {
  3634. FieldName string `protobuf:"bytes,1,opt,name=field_name,json=fieldName,proto3" json:"field_name"`
  3635. FieldValueSrc string `protobuf:"bytes,2,opt,name=field_value_src,json=fieldValueSrc,proto3" json:"field_value_src"`
  3636. FieldValueDst string `protobuf:"bytes,3,opt,name=field_value_dst,json=fieldValueDst,proto3" json:"field_value_dst"`
  3637. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3638. XXX_unrecognized []byte `json:"-"`
  3639. XXX_sizecache int32 `json:"-"`
  3640. }
  3641. func (m *GardenKeyInfoItem) Reset() { *m = GardenKeyInfoItem{} }
  3642. func (m *GardenKeyInfoItem) String() string { return proto.CompactTextString(m) }
  3643. func (*GardenKeyInfoItem) ProtoMessage() {}
  3644. func (*GardenKeyInfoItem) Descriptor() ([]byte, []int) {
  3645. return fileDescriptor_86a7260ebdc12f47, []int{61}
  3646. }
  3647. func (m *GardenKeyInfoItem) XXX_Unmarshal(b []byte) error {
  3648. return xxx_messageInfo_GardenKeyInfoItem.Unmarshal(m, b)
  3649. }
  3650. func (m *GardenKeyInfoItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3651. return xxx_messageInfo_GardenKeyInfoItem.Marshal(b, m, deterministic)
  3652. }
  3653. func (m *GardenKeyInfoItem) XXX_Merge(src proto.Message) {
  3654. xxx_messageInfo_GardenKeyInfoItem.Merge(m, src)
  3655. }
  3656. func (m *GardenKeyInfoItem) XXX_Size() int {
  3657. return xxx_messageInfo_GardenKeyInfoItem.Size(m)
  3658. }
  3659. func (m *GardenKeyInfoItem) XXX_DiscardUnknown() {
  3660. xxx_messageInfo_GardenKeyInfoItem.DiscardUnknown(m)
  3661. }
  3662. var xxx_messageInfo_GardenKeyInfoItem proto.InternalMessageInfo
  3663. func (m *GardenKeyInfoItem) GetFieldName() string {
  3664. if m != nil {
  3665. return m.FieldName
  3666. }
  3667. return ""
  3668. }
  3669. func (m *GardenKeyInfoItem) GetFieldValueSrc() string {
  3670. if m != nil {
  3671. return m.FieldValueSrc
  3672. }
  3673. return ""
  3674. }
  3675. func (m *GardenKeyInfoItem) GetFieldValueDst() string {
  3676. if m != nil {
  3677. return m.FieldValueDst
  3678. }
  3679. return ""
  3680. }
  3681. type GardenKeyInfoChangeListReply struct {
  3682. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  3683. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  3684. List []*GardenKeyInfoData `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3685. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3686. XXX_unrecognized []byte `json:"-"`
  3687. XXX_sizecache int32 `json:"-"`
  3688. }
  3689. func (m *GardenKeyInfoChangeListReply) Reset() { *m = GardenKeyInfoChangeListReply{} }
  3690. func (m *GardenKeyInfoChangeListReply) String() string { return proto.CompactTextString(m) }
  3691. func (*GardenKeyInfoChangeListReply) ProtoMessage() {}
  3692. func (*GardenKeyInfoChangeListReply) Descriptor() ([]byte, []int) {
  3693. return fileDescriptor_86a7260ebdc12f47, []int{62}
  3694. }
  3695. func (m *GardenKeyInfoChangeListReply) XXX_Unmarshal(b []byte) error {
  3696. return xxx_messageInfo_GardenKeyInfoChangeListReply.Unmarshal(m, b)
  3697. }
  3698. func (m *GardenKeyInfoChangeListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3699. return xxx_messageInfo_GardenKeyInfoChangeListReply.Marshal(b, m, deterministic)
  3700. }
  3701. func (m *GardenKeyInfoChangeListReply) XXX_Merge(src proto.Message) {
  3702. xxx_messageInfo_GardenKeyInfoChangeListReply.Merge(m, src)
  3703. }
  3704. func (m *GardenKeyInfoChangeListReply) XXX_Size() int {
  3705. return xxx_messageInfo_GardenKeyInfoChangeListReply.Size(m)
  3706. }
  3707. func (m *GardenKeyInfoChangeListReply) XXX_DiscardUnknown() {
  3708. xxx_messageInfo_GardenKeyInfoChangeListReply.DiscardUnknown(m)
  3709. }
  3710. var xxx_messageInfo_GardenKeyInfoChangeListReply proto.InternalMessageInfo
  3711. func (m *GardenKeyInfoChangeListReply) GetPage() int64 {
  3712. if m != nil {
  3713. return m.Page
  3714. }
  3715. return 0
  3716. }
  3717. func (m *GardenKeyInfoChangeListReply) GetTotal() int64 {
  3718. if m != nil {
  3719. return m.Total
  3720. }
  3721. return 0
  3722. }
  3723. func (m *GardenKeyInfoChangeListReply) GetList() []*GardenKeyInfoData {
  3724. if m != nil {
  3725. return m.List
  3726. }
  3727. return nil
  3728. }
  3729. type GardenKeyInfoApproveRequest struct {
  3730. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3731. Feedback string `protobuf:"bytes,2,opt,name=feedback,proto3" json:"feedback"`
  3732. Status bool `protobuf:"varint,3,opt,name=status,proto3" json:"status"`
  3733. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3734. XXX_unrecognized []byte `json:"-"`
  3735. XXX_sizecache int32 `json:"-"`
  3736. }
  3737. func (m *GardenKeyInfoApproveRequest) Reset() { *m = GardenKeyInfoApproveRequest{} }
  3738. func (m *GardenKeyInfoApproveRequest) String() string { return proto.CompactTextString(m) }
  3739. func (*GardenKeyInfoApproveRequest) ProtoMessage() {}
  3740. func (*GardenKeyInfoApproveRequest) Descriptor() ([]byte, []int) {
  3741. return fileDescriptor_86a7260ebdc12f47, []int{63}
  3742. }
  3743. func (m *GardenKeyInfoApproveRequest) XXX_Unmarshal(b []byte) error {
  3744. return xxx_messageInfo_GardenKeyInfoApproveRequest.Unmarshal(m, b)
  3745. }
  3746. func (m *GardenKeyInfoApproveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3747. return xxx_messageInfo_GardenKeyInfoApproveRequest.Marshal(b, m, deterministic)
  3748. }
  3749. func (m *GardenKeyInfoApproveRequest) XXX_Merge(src proto.Message) {
  3750. xxx_messageInfo_GardenKeyInfoApproveRequest.Merge(m, src)
  3751. }
  3752. func (m *GardenKeyInfoApproveRequest) XXX_Size() int {
  3753. return xxx_messageInfo_GardenKeyInfoApproveRequest.Size(m)
  3754. }
  3755. func (m *GardenKeyInfoApproveRequest) XXX_DiscardUnknown() {
  3756. xxx_messageInfo_GardenKeyInfoApproveRequest.DiscardUnknown(m)
  3757. }
  3758. var xxx_messageInfo_GardenKeyInfoApproveRequest proto.InternalMessageInfo
  3759. func (m *GardenKeyInfoApproveRequest) GetId() int64 {
  3760. if m != nil {
  3761. return m.Id
  3762. }
  3763. return 0
  3764. }
  3765. func (m *GardenKeyInfoApproveRequest) GetFeedback() string {
  3766. if m != nil {
  3767. return m.Feedback
  3768. }
  3769. return ""
  3770. }
  3771. func (m *GardenKeyInfoApproveRequest) GetStatus() bool {
  3772. if m != nil {
  3773. return m.Status
  3774. }
  3775. return false
  3776. }
  3777. type GardenKeyInfoApproveReply struct {
  3778. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3779. XXX_unrecognized []byte `json:"-"`
  3780. XXX_sizecache int32 `json:"-"`
  3781. }
  3782. func (m *GardenKeyInfoApproveReply) Reset() { *m = GardenKeyInfoApproveReply{} }
  3783. func (m *GardenKeyInfoApproveReply) String() string { return proto.CompactTextString(m) }
  3784. func (*GardenKeyInfoApproveReply) ProtoMessage() {}
  3785. func (*GardenKeyInfoApproveReply) Descriptor() ([]byte, []int) {
  3786. return fileDescriptor_86a7260ebdc12f47, []int{64}
  3787. }
  3788. func (m *GardenKeyInfoApproveReply) XXX_Unmarshal(b []byte) error {
  3789. return xxx_messageInfo_GardenKeyInfoApproveReply.Unmarshal(m, b)
  3790. }
  3791. func (m *GardenKeyInfoApproveReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3792. return xxx_messageInfo_GardenKeyInfoApproveReply.Marshal(b, m, deterministic)
  3793. }
  3794. func (m *GardenKeyInfoApproveReply) XXX_Merge(src proto.Message) {
  3795. xxx_messageInfo_GardenKeyInfoApproveReply.Merge(m, src)
  3796. }
  3797. func (m *GardenKeyInfoApproveReply) XXX_Size() int {
  3798. return xxx_messageInfo_GardenKeyInfoApproveReply.Size(m)
  3799. }
  3800. func (m *GardenKeyInfoApproveReply) XXX_DiscardUnknown() {
  3801. xxx_messageInfo_GardenKeyInfoApproveReply.DiscardUnknown(m)
  3802. }
  3803. var xxx_messageInfo_GardenKeyInfoApproveReply proto.InternalMessageInfo
  3804. type GardenApproveRequest struct {
  3805. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3806. Feedback string `protobuf:"bytes,2,opt,name=feedback,proto3" json:"feedback"`
  3807. Status bool `protobuf:"varint,3,opt,name=status,proto3" json:"status"`
  3808. Cid int64 `protobuf:"varint,4,opt,name=cid,proto3" json:"cid"`
  3809. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3810. XXX_unrecognized []byte `json:"-"`
  3811. XXX_sizecache int32 `json:"-"`
  3812. }
  3813. func (m *GardenApproveRequest) Reset() { *m = GardenApproveRequest{} }
  3814. func (m *GardenApproveRequest) String() string { return proto.CompactTextString(m) }
  3815. func (*GardenApproveRequest) ProtoMessage() {}
  3816. func (*GardenApproveRequest) Descriptor() ([]byte, []int) {
  3817. return fileDescriptor_86a7260ebdc12f47, []int{65}
  3818. }
  3819. func (m *GardenApproveRequest) XXX_Unmarshal(b []byte) error {
  3820. return xxx_messageInfo_GardenApproveRequest.Unmarshal(m, b)
  3821. }
  3822. func (m *GardenApproveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3823. return xxx_messageInfo_GardenApproveRequest.Marshal(b, m, deterministic)
  3824. }
  3825. func (m *GardenApproveRequest) XXX_Merge(src proto.Message) {
  3826. xxx_messageInfo_GardenApproveRequest.Merge(m, src)
  3827. }
  3828. func (m *GardenApproveRequest) XXX_Size() int {
  3829. return xxx_messageInfo_GardenApproveRequest.Size(m)
  3830. }
  3831. func (m *GardenApproveRequest) XXX_DiscardUnknown() {
  3832. xxx_messageInfo_GardenApproveRequest.DiscardUnknown(m)
  3833. }
  3834. var xxx_messageInfo_GardenApproveRequest proto.InternalMessageInfo
  3835. func (m *GardenApproveRequest) GetId() int64 {
  3836. if m != nil {
  3837. return m.Id
  3838. }
  3839. return 0
  3840. }
  3841. func (m *GardenApproveRequest) GetFeedback() string {
  3842. if m != nil {
  3843. return m.Feedback
  3844. }
  3845. return ""
  3846. }
  3847. func (m *GardenApproveRequest) GetStatus() bool {
  3848. if m != nil {
  3849. return m.Status
  3850. }
  3851. return false
  3852. }
  3853. func (m *GardenApproveRequest) GetCid() int64 {
  3854. if m != nil {
  3855. return m.Cid
  3856. }
  3857. return 0
  3858. }
  3859. type GardenApproveReply struct {
  3860. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3861. XXX_unrecognized []byte `json:"-"`
  3862. XXX_sizecache int32 `json:"-"`
  3863. }
  3864. func (m *GardenApproveReply) Reset() { *m = GardenApproveReply{} }
  3865. func (m *GardenApproveReply) String() string { return proto.CompactTextString(m) }
  3866. func (*GardenApproveReply) ProtoMessage() {}
  3867. func (*GardenApproveReply) Descriptor() ([]byte, []int) {
  3868. return fileDescriptor_86a7260ebdc12f47, []int{66}
  3869. }
  3870. func (m *GardenApproveReply) XXX_Unmarshal(b []byte) error {
  3871. return xxx_messageInfo_GardenApproveReply.Unmarshal(m, b)
  3872. }
  3873. func (m *GardenApproveReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3874. return xxx_messageInfo_GardenApproveReply.Marshal(b, m, deterministic)
  3875. }
  3876. func (m *GardenApproveReply) XXX_Merge(src proto.Message) {
  3877. xxx_messageInfo_GardenApproveReply.Merge(m, src)
  3878. }
  3879. func (m *GardenApproveReply) XXX_Size() int {
  3880. return xxx_messageInfo_GardenApproveReply.Size(m)
  3881. }
  3882. func (m *GardenApproveReply) XXX_DiscardUnknown() {
  3883. xxx_messageInfo_GardenApproveReply.DiscardUnknown(m)
  3884. }
  3885. var xxx_messageInfo_GardenApproveReply proto.InternalMessageInfo
  3886. type GardenDelRequest struct {
  3887. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3888. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3889. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3890. XXX_unrecognized []byte `json:"-"`
  3891. XXX_sizecache int32 `json:"-"`
  3892. }
  3893. func (m *GardenDelRequest) Reset() { *m = GardenDelRequest{} }
  3894. func (m *GardenDelRequest) String() string { return proto.CompactTextString(m) }
  3895. func (*GardenDelRequest) ProtoMessage() {}
  3896. func (*GardenDelRequest) Descriptor() ([]byte, []int) {
  3897. return fileDescriptor_86a7260ebdc12f47, []int{67}
  3898. }
  3899. func (m *GardenDelRequest) XXX_Unmarshal(b []byte) error {
  3900. return xxx_messageInfo_GardenDelRequest.Unmarshal(m, b)
  3901. }
  3902. func (m *GardenDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3903. return xxx_messageInfo_GardenDelRequest.Marshal(b, m, deterministic)
  3904. }
  3905. func (m *GardenDelRequest) XXX_Merge(src proto.Message) {
  3906. xxx_messageInfo_GardenDelRequest.Merge(m, src)
  3907. }
  3908. func (m *GardenDelRequest) XXX_Size() int {
  3909. return xxx_messageInfo_GardenDelRequest.Size(m)
  3910. }
  3911. func (m *GardenDelRequest) XXX_DiscardUnknown() {
  3912. xxx_messageInfo_GardenDelRequest.DiscardUnknown(m)
  3913. }
  3914. var xxx_messageInfo_GardenDelRequest proto.InternalMessageInfo
  3915. func (m *GardenDelRequest) GetId() int64 {
  3916. if m != nil {
  3917. return m.Id
  3918. }
  3919. return 0
  3920. }
  3921. func (m *GardenDelRequest) GetCid() int64 {
  3922. if m != nil {
  3923. return m.Cid
  3924. }
  3925. return 0
  3926. }
  3927. type GardenDelReply struct {
  3928. Origin *GardenUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  3929. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3930. XXX_unrecognized []byte `json:"-"`
  3931. XXX_sizecache int32 `json:"-"`
  3932. }
  3933. func (m *GardenDelReply) Reset() { *m = GardenDelReply{} }
  3934. func (m *GardenDelReply) String() string { return proto.CompactTextString(m) }
  3935. func (*GardenDelReply) ProtoMessage() {}
  3936. func (*GardenDelReply) Descriptor() ([]byte, []int) {
  3937. return fileDescriptor_86a7260ebdc12f47, []int{68}
  3938. }
  3939. func (m *GardenDelReply) XXX_Unmarshal(b []byte) error {
  3940. return xxx_messageInfo_GardenDelReply.Unmarshal(m, b)
  3941. }
  3942. func (m *GardenDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3943. return xxx_messageInfo_GardenDelReply.Marshal(b, m, deterministic)
  3944. }
  3945. func (m *GardenDelReply) XXX_Merge(src proto.Message) {
  3946. xxx_messageInfo_GardenDelReply.Merge(m, src)
  3947. }
  3948. func (m *GardenDelReply) XXX_Size() int {
  3949. return xxx_messageInfo_GardenDelReply.Size(m)
  3950. }
  3951. func (m *GardenDelReply) XXX_DiscardUnknown() {
  3952. xxx_messageInfo_GardenDelReply.DiscardUnknown(m)
  3953. }
  3954. var xxx_messageInfo_GardenDelReply proto.InternalMessageInfo
  3955. func (m *GardenDelReply) GetOrigin() *GardenUpdateRequest {
  3956. if m != nil {
  3957. return m.Origin
  3958. }
  3959. return nil
  3960. }
  3961. type GardenChangeCompanyRequest struct {
  3962. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3963. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3964. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3965. XXX_unrecognized []byte `json:"-"`
  3966. XXX_sizecache int32 `json:"-"`
  3967. }
  3968. func (m *GardenChangeCompanyRequest) Reset() { *m = GardenChangeCompanyRequest{} }
  3969. func (m *GardenChangeCompanyRequest) String() string { return proto.CompactTextString(m) }
  3970. func (*GardenChangeCompanyRequest) ProtoMessage() {}
  3971. func (*GardenChangeCompanyRequest) Descriptor() ([]byte, []int) {
  3972. return fileDescriptor_86a7260ebdc12f47, []int{69}
  3973. }
  3974. func (m *GardenChangeCompanyRequest) XXX_Unmarshal(b []byte) error {
  3975. return xxx_messageInfo_GardenChangeCompanyRequest.Unmarshal(m, b)
  3976. }
  3977. func (m *GardenChangeCompanyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3978. return xxx_messageInfo_GardenChangeCompanyRequest.Marshal(b, m, deterministic)
  3979. }
  3980. func (m *GardenChangeCompanyRequest) XXX_Merge(src proto.Message) {
  3981. xxx_messageInfo_GardenChangeCompanyRequest.Merge(m, src)
  3982. }
  3983. func (m *GardenChangeCompanyRequest) XXX_Size() int {
  3984. return xxx_messageInfo_GardenChangeCompanyRequest.Size(m)
  3985. }
  3986. func (m *GardenChangeCompanyRequest) XXX_DiscardUnknown() {
  3987. xxx_messageInfo_GardenChangeCompanyRequest.DiscardUnknown(m)
  3988. }
  3989. var xxx_messageInfo_GardenChangeCompanyRequest proto.InternalMessageInfo
  3990. func (m *GardenChangeCompanyRequest) GetGardenId() int64 {
  3991. if m != nil {
  3992. return m.GardenId
  3993. }
  3994. return 0
  3995. }
  3996. func (m *GardenChangeCompanyRequest) GetCid() int64 {
  3997. if m != nil {
  3998. return m.Cid
  3999. }
  4000. return 0
  4001. }
  4002. type GardenChangeCompanyReply struct {
  4003. Origin *GardenChangeCompanyRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  4004. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4005. XXX_unrecognized []byte `json:"-"`
  4006. XXX_sizecache int32 `json:"-"`
  4007. }
  4008. func (m *GardenChangeCompanyReply) Reset() { *m = GardenChangeCompanyReply{} }
  4009. func (m *GardenChangeCompanyReply) String() string { return proto.CompactTextString(m) }
  4010. func (*GardenChangeCompanyReply) ProtoMessage() {}
  4011. func (*GardenChangeCompanyReply) Descriptor() ([]byte, []int) {
  4012. return fileDescriptor_86a7260ebdc12f47, []int{70}
  4013. }
  4014. func (m *GardenChangeCompanyReply) XXX_Unmarshal(b []byte) error {
  4015. return xxx_messageInfo_GardenChangeCompanyReply.Unmarshal(m, b)
  4016. }
  4017. func (m *GardenChangeCompanyReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4018. return xxx_messageInfo_GardenChangeCompanyReply.Marshal(b, m, deterministic)
  4019. }
  4020. func (m *GardenChangeCompanyReply) XXX_Merge(src proto.Message) {
  4021. xxx_messageInfo_GardenChangeCompanyReply.Merge(m, src)
  4022. }
  4023. func (m *GardenChangeCompanyReply) XXX_Size() int {
  4024. return xxx_messageInfo_GardenChangeCompanyReply.Size(m)
  4025. }
  4026. func (m *GardenChangeCompanyReply) XXX_DiscardUnknown() {
  4027. xxx_messageInfo_GardenChangeCompanyReply.DiscardUnknown(m)
  4028. }
  4029. var xxx_messageInfo_GardenChangeCompanyReply proto.InternalMessageInfo
  4030. func (m *GardenChangeCompanyReply) GetOrigin() *GardenChangeCompanyRequest {
  4031. if m != nil {
  4032. return m.Origin
  4033. }
  4034. return nil
  4035. }
  4036. func init() {
  4037. proto.RegisterType((*SystemGroupPermissionData)(nil), "pb_v1.SystemGroupPermissionData")
  4038. proto.RegisterType((*LoginRequest)(nil), "pb_v1.LoginRequest")
  4039. proto.RegisterType((*LoginReply)(nil), "pb_v1.LoginReply")
  4040. proto.RegisterType((*LoginByPhoneRequest)(nil), "pb_v1.LoginByPhoneRequest")
  4041. proto.RegisterType((*LoginByPhoneReply)(nil), "pb_v1.LoginByPhoneReply")
  4042. proto.RegisterType((*CheckPhoneRequest)(nil), "pb_v1.CheckPhoneRequest")
  4043. proto.RegisterType((*CheckPhoneReply)(nil), "pb_v1.CheckPhoneReply")
  4044. proto.RegisterType((*UserAddRequest)(nil), "pb_v1.UserAddRequest")
  4045. proto.RegisterType((*UserAddReply)(nil), "pb_v1.UserAddReply")
  4046. proto.RegisterType((*UserUpdateRequest)(nil), "pb_v1.UserUpdateRequest")
  4047. proto.RegisterType((*UserUpdateReply)(nil), "pb_v1.UserUpdateReply")
  4048. proto.RegisterType((*UserDelRequest)(nil), "pb_v1.UserDelRequest")
  4049. proto.RegisterType((*UserDelReply)(nil), "pb_v1.UserDelReply")
  4050. proto.RegisterType((*UserListRequest)(nil), "pb_v1.UserListRequest")
  4051. proto.RegisterType((*UserItem)(nil), "pb_v1.UserItem")
  4052. proto.RegisterType((*UserListReply)(nil), "pb_v1.UserListReply")
  4053. proto.RegisterType((*SuperGroupRequest)(nil), "pb_v1.SuperGroupRequest")
  4054. proto.RegisterType((*SuperGroupReply)(nil), "pb_v1.SuperGroupReply")
  4055. proto.RegisterType((*UserGardenChangeRequest)(nil), "pb_v1.UserGardenChangeRequest")
  4056. proto.RegisterType((*UserGardenChangeReply)(nil), "pb_v1.UserGardenChangeReply")
  4057. proto.RegisterType((*GroupAddRequest)(nil), "pb_v1.GroupAddRequest")
  4058. proto.RegisterType((*GroupAddReply)(nil), "pb_v1.GroupAddReply")
  4059. proto.RegisterType((*GroupUpdateRequest)(nil), "pb_v1.GroupUpdateRequest")
  4060. proto.RegisterType((*GroupUpdateReply)(nil), "pb_v1.GroupUpdateReply")
  4061. proto.RegisterType((*GroupDelRequest)(nil), "pb_v1.GroupDelRequest")
  4062. proto.RegisterType((*GroupDelReply)(nil), "pb_v1.GroupDelReply")
  4063. proto.RegisterType((*GroupItem)(nil), "pb_v1.GroupItem")
  4064. proto.RegisterType((*GroupListRequest)(nil), "pb_v1.GroupListRequest")
  4065. proto.RegisterType((*GroupListReply)(nil), "pb_v1.GroupListReply")
  4066. proto.RegisterType((*GroupInfoRequest)(nil), "pb_v1.GroupInfoRequest")
  4067. proto.RegisterType((*SystemGroupPermissionItem)(nil), "pb_v1.SystemGroupPermissionItem")
  4068. proto.RegisterType((*GroupInfoReply)(nil), "pb_v1.GroupInfoReply")
  4069. proto.RegisterType((*ResetPasswordRequest)(nil), "pb_v1.ResetPasswordRequest")
  4070. proto.RegisterType((*ResetPasswordData)(nil), "pb_v1.ResetPasswordData")
  4071. proto.RegisterType((*ResetPasswordReply)(nil), "pb_v1.ResetPasswordReply")
  4072. proto.RegisterType((*ChangePasswordRequest)(nil), "pb_v1.ChangePasswordRequest")
  4073. proto.RegisterType((*ChangePasswordReply)(nil), "pb_v1.ChangePasswordReply")
  4074. proto.RegisterType((*DepartmentAddRequest)(nil), "pb_v1.DepartmentAddRequest")
  4075. proto.RegisterType((*DepartmentAddReply)(nil), "pb_v1.DepartmentAddReply")
  4076. proto.RegisterType((*DepartmentUpdateRequest)(nil), "pb_v1.DepartmentUpdateRequest")
  4077. proto.RegisterType((*DepartmentUpdateReply)(nil), "pb_v1.DepartmentUpdateReply")
  4078. proto.RegisterType((*DepartmentDelRequest)(nil), "pb_v1.DepartmentDelRequest")
  4079. proto.RegisterType((*DepartmentDelReply)(nil), "pb_v1.DepartmentDelReply")
  4080. proto.RegisterType((*DepartmentItem)(nil), "pb_v1.DepartmentItem")
  4081. proto.RegisterType((*DepartmentListRequest)(nil), "pb_v1.DepartmentListRequest")
  4082. proto.RegisterType((*DepartmentListReply)(nil), "pb_v1.DepartmentListReply")
  4083. proto.RegisterType((*CompanyEnterGardenRequest)(nil), "pb_v1.CompanyEnterGardenRequest")
  4084. proto.RegisterType((*CompanyEnterGardenReply)(nil), "pb_v1.CompanyEnterGardenReply")
  4085. proto.RegisterType((*GardenInfosRequest)(nil), "pb_v1.GardenInfosRequest")
  4086. proto.RegisterType((*GardenItem)(nil), "pb_v1.GardenItem")
  4087. proto.RegisterType((*GardenInfosReply)(nil), "pb_v1.GardenInfosReply")
  4088. proto.RegisterType((*GardenAddRequest)(nil), "pb_v1.GardenAddRequest")
  4089. proto.RegisterType((*GardenAddReply)(nil), "pb_v1.GardenAddReply")
  4090. proto.RegisterType((*GardenListRequest)(nil), "pb_v1.GardenListRequest")
  4091. proto.RegisterType((*GardenListReply)(nil), "pb_v1.GardenListReply")
  4092. proto.RegisterType((*GardenUpdateRequest)(nil), "pb_v1.GardenUpdateRequest")
  4093. proto.RegisterType((*GardenUpdateReply)(nil), "pb_v1.GardenUpdateReply")
  4094. proto.RegisterType((*GardenKeyInfoChangeRequest)(nil), "pb_v1.GardenKeyInfoChangeRequest")
  4095. proto.RegisterType((*GardenKeyInfoChangeReply)(nil), "pb_v1.GardenKeyInfoChangeReply")
  4096. proto.RegisterType((*GardenKeyInfoChangeListRequest)(nil), "pb_v1.GardenKeyInfoChangeListRequest")
  4097. proto.RegisterType((*GardenKeyInfoData)(nil), "pb_v1.GardenKeyInfoData")
  4098. proto.RegisterType((*GardenKeyInfoItem)(nil), "pb_v1.GardenKeyInfoItem")
  4099. proto.RegisterType((*GardenKeyInfoChangeListReply)(nil), "pb_v1.GardenKeyInfoChangeListReply")
  4100. proto.RegisterType((*GardenKeyInfoApproveRequest)(nil), "pb_v1.GardenKeyInfoApproveRequest")
  4101. proto.RegisterType((*GardenKeyInfoApproveReply)(nil), "pb_v1.GardenKeyInfoApproveReply")
  4102. proto.RegisterType((*GardenApproveRequest)(nil), "pb_v1.GardenApproveRequest")
  4103. proto.RegisterType((*GardenApproveReply)(nil), "pb_v1.GardenApproveReply")
  4104. proto.RegisterType((*GardenDelRequest)(nil), "pb_v1.GardenDelRequest")
  4105. proto.RegisterType((*GardenDelReply)(nil), "pb_v1.GardenDelReply")
  4106. proto.RegisterType((*GardenChangeCompanyRequest)(nil), "pb_v1.GardenChangeCompanyRequest")
  4107. proto.RegisterType((*GardenChangeCompanyReply)(nil), "pb_v1.GardenChangeCompanyReply")
  4108. }
  4109. func init() {
  4110. proto.RegisterFile("system.proto", fileDescriptor_86a7260ebdc12f47)
  4111. }
  4112. var fileDescriptor_86a7260ebdc12f47 = []byte{
  4113. // 2397 bytes of a gzipped FileDescriptorProto
  4114. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xdb, 0x8f, 0xdc, 0x56,
  4115. 0x19, 0x97, 0xed, 0xf1, 0x5c, 0xbe, 0xb9, 0x7b, 0x67, 0x13, 0x27, 0x69, 0xd3, 0x8d, 0x93, 0xb4,
  4116. 0x09, 0x6a, 0xd3, 0x26, 0x44, 0x15, 0xe5, 0x89, 0xbd, 0x94, 0x68, 0x69, 0x04, 0x2b, 0x87, 0x80,
  4117. 0xc4, 0x03, 0x83, 0x67, 0x7c, 0xb2, 0x6b, 0x3a, 0x63, 0x1b, 0xdb, 0xb3, 0xe9, 0x54, 0x08, 0xa1,
  4118. 0xf6, 0x1d, 0x09, 0x89, 0x07, 0xfe, 0x03, 0x78, 0xe0, 0x4f, 0xe0, 0x91, 0xbe, 0xf2, 0xf7, 0x20,
  4119. 0x1e, 0x10, 0x3a, 0x37, 0xfb, 0x9c, 0x63, 0x7b, 0xb6, 0x3b, 0x29, 0x95, 0xa8, 0xfa, 0xb4, 0x3e,
  4120. 0xdf, 0xb9, 0x7d, 0xe7, 0xfb, 0x7e, 0xdf, 0x75, 0x16, 0x7a, 0xe9, 0x3a, 0xcd, 0xd0, 0xf2, 0x41,
  4121. 0x9c, 0x44, 0x59, 0x64, 0x99, 0xf1, 0x6c, 0x7a, 0xfe, 0xd0, 0xf9, 0xab, 0x06, 0xd7, 0x9e, 0x11,
  4122. 0xfa, 0x93, 0x24, 0x5a, 0xc5, 0x27, 0x28, 0x59, 0x06, 0x69, 0x1a, 0x44, 0xe1, 0x91, 0x97, 0x79,
  4123. 0xd6, 0x04, 0xcc, 0x78, 0x1e, 0xf9, 0xc8, 0xd6, 0xf6, 0xb4, 0x7b, 0x1d, 0x97, 0x0e, 0x2c, 0x0b,
  4124. 0x1a, 0xb1, 0x97, 0x9d, 0xd9, 0x3a, 0x21, 0x92, 0x6f, 0x4c, 0x0b, 0xbd, 0x25, 0xb2, 0x0d, 0x4a,
  4125. 0xc3, 0xdf, 0xd6, 0x15, 0x68, 0x26, 0xd1, 0x2a, 0x43, 0x89, 0xdd, 0x20, 0x54, 0x36, 0xc2, 0x6b,
  4126. 0xc9, 0xa1, 0x26, 0x5d, 0x4b, 0xce, 0xbc, 0x05, 0x3d, 0x2f, 0x8e, 0x17, 0x28, 0x43, 0x53, 0x72,
  4127. 0x76, 0x93, 0xcc, 0x75, 0x19, 0xed, 0xc4, 0xcb, 0xce, 0x9c, 0x5f, 0x41, 0xef, 0x69, 0x74, 0x1a,
  4128. 0x84, 0x2e, 0xfa, 0xcd, 0x0a, 0xa5, 0x99, 0x75, 0x1d, 0xda, 0xab, 0x14, 0x25, 0xe4, 0x5a, 0xca,
  4129. 0x5f, 0x3e, 0xc6, 0x73, 0xb1, 0x97, 0xa6, 0x2f, 0xa3, 0xc4, 0x67, 0x6c, 0xe6, 0x63, 0xcb, 0x86,
  4130. 0x16, 0x3b, 0x96, 0x70, 0xdb, 0x76, 0xf9, 0xd0, 0xf9, 0x97, 0x0e, 0xc0, 0xae, 0x88, 0x17, 0x6b,
  4131. 0x6b, 0x04, 0xc6, 0x2a, 0xf0, 0xc9, 0xd9, 0x86, 0x8b, 0x3f, 0xad, 0x1b, 0xd0, 0xc1, 0x57, 0x4c,
  4132. 0xc9, 0x9d, 0x7a, 0x71, 0xe7, 0x8f, 0xf1, 0x9d, 0x23, 0x30, 0xe6, 0x81, 0x4f, 0xce, 0x34, 0x5c,
  4133. 0xfc, 0x89, 0x97, 0x9f, 0x7a, 0x89, 0x8f, 0xc2, 0x69, 0xe0, 0x13, 0x19, 0x18, 0x6e, 0x9b, 0x12,
  4134. 0x8e, 0x7d, 0xeb, 0x1a, 0xb4, 0x4f, 0xb1, 0xc8, 0xf1, 0x9c, 0x49, 0xe6, 0x5a, 0x64, 0x7c, 0xec,
  4135. 0x5b, 0x77, 0x60, 0x10, 0xa4, 0xd3, 0x74, 0x15, 0xa3, 0x64, 0x4a, 0x68, 0x44, 0x1c, 0x6d, 0xb7,
  4136. 0x17, 0xa4, 0xcf, 0x30, 0x91, 0xa8, 0xca, 0x7a, 0x03, 0xba, 0xec, 0x74, 0xc2, 0x4e, 0x8b, 0xb0,
  4137. 0x03, 0x94, 0x44, 0x18, 0x7a, 0x0f, 0x26, 0x84, 0xdb, 0x38, 0x57, 0xea, 0x34, 0x0b, 0x96, 0xc8,
  4138. 0x6e, 0x93, 0x95, 0x16, 0x9e, 0x2b, 0xf4, 0xfd, 0xd3, 0x60, 0x89, 0xac, 0xc7, 0x70, 0xe5, 0x74,
  4139. 0x11, 0xcd, 0xbc, 0x45, 0x69, 0x4f, 0x87, 0xec, 0x99, 0xd0, 0x59, 0x65, 0xd7, 0x01, 0x74, 0x8b,
  4140. 0xe5, 0xa9, 0x0d, 0x7b, 0xc6, 0xbd, 0xee, 0xa3, 0xbd, 0x07, 0x04, 0x60, 0x0f, 0x6a, 0xc1, 0xe5,
  4141. 0x8a, 0x9b, 0x1c, 0x0f, 0x76, 0x88, 0xe4, 0x0f, 0xd6, 0x27, 0x67, 0x51, 0x88, 0xb8, 0x8e, 0x31,
  4142. 0x00, 0xf1, 0x38, 0x07, 0x20, 0x1e, 0x6c, 0xa9, 0xdd, 0xef, 0xc3, 0x58, 0xbe, 0x02, 0xeb, 0xf8,
  4143. 0x2e, 0x34, 0x16, 0x41, 0x9a, 0xd9, 0x1a, 0x61, 0x7a, 0xcc, 0x98, 0x2e, 0x40, 0xe0, 0x92, 0x69,
  4144. 0xe7, 0x3e, 0x8c, 0x0f, 0xcf, 0xd0, 0xfc, 0xe3, 0x8b, 0x99, 0x73, 0xc6, 0x30, 0x14, 0x97, 0xc6,
  4145. 0x8b, 0xb5, 0xf3, 0x27, 0x03, 0x06, 0xcf, 0x53, 0x94, 0xec, 0xfb, 0x3e, 0xdf, 0x2b, 0x21, 0x49,
  4146. 0x53, 0x90, 0xb4, 0xe9, 0x7d, 0x13, 0x30, 0xd1, 0xd2, 0x0b, 0x16, 0xcc, 0xd2, 0xe8, 0xa0, 0x60,
  4147. 0xa5, 0x21, 0xca, 0x69, 0x03, 0xc4, 0xae, 0x40, 0x13, 0x85, 0xde, 0x6c, 0x81, 0x18, 0xb4, 0xd8,
  4148. 0x48, 0x86, 0x6c, 0x4b, 0x81, 0x2c, 0x43, 0x78, 0xbb, 0x40, 0xb8, 0x82, 0xc1, 0x4e, 0x09, 0x83,
  4149. 0xaf, 0x03, 0xcc, 0xd6, 0xd3, 0x79, 0xb4, 0x8c, 0xbd, 0x70, 0x6d, 0x03, 0xb9, 0xab, 0x33, 0x5b,
  4150. 0x1f, 0x52, 0x02, 0x37, 0xb1, 0xae, 0x64, 0x62, 0x09, 0xf2, 0x16, 0xf4, 0xbc, 0x1e, 0x7d, 0x3c,
  4151. 0x26, 0x90, 0xd3, 0x6e, 0x43, 0xdf, 0x47, 0xb1, 0x97, 0x64, 0x4b, 0x14, 0x66, 0x98, 0xc3, 0x3e,
  4152. 0xd9, 0xd8, 0x2b, 0x88, 0xc7, 0xbe, 0xf5, 0x16, 0x0c, 0x67, 0x5e, 0x8a, 0x04, 0x08, 0xdb, 0x83,
  4153. 0x3d, 0xed, 0x9e, 0xe9, 0x0e, 0x30, 0xb9, 0x00, 0xa1, 0x73, 0x13, 0x7a, 0xb9, 0x56, 0x30, 0x16,
  4154. 0x06, 0xa0, 0xe7, 0xe6, 0xae, 0x07, 0xbe, 0xf3, 0x17, 0x03, 0xc6, 0x78, 0xc1, 0xf3, 0xd8, 0xf7,
  4155. 0x32, 0xf4, 0xb5, 0x6a, 0xae, 0x50, 0x8f, 0x29, 0xa9, 0x87, 0xb2, 0xd8, 0xe4, 0x2c, 0x7e, 0xe5,
  4156. 0xea, 0x12, 0x11, 0x03, 0x32, 0x62, 0x64, 0x4d, 0x76, 0x6b, 0x34, 0xd9, 0xab, 0xd1, 0x64, 0xff,
  4157. 0x22, 0x4d, 0x0e, 0xbe, 0x9c, 0x26, 0x87, 0x95, 0x9a, 0x3c, 0x84, 0xa1, 0xa8, 0x28, 0xac, 0xcc,
  4158. 0xf7, 0xa0, 0x19, 0x25, 0xc1, 0x69, 0x10, 0x12, 0x1d, 0x75, 0x1f, 0xd9, 0xcc, 0xb4, 0x4b, 0x0a,
  4159. 0x75, 0xd9, 0x3a, 0xe7, 0xf7, 0x1a, 0xb5, 0xd2, 0x23, 0xb4, 0xe0, 0xba, 0x56, 0x10, 0xc1, 0x25,
  4160. 0xaa, 0x17, 0x12, 0x95, 0xa5, 0x62, 0xd4, 0x48, 0xa5, 0x21, 0x49, 0xa5, 0xd0, 0x98, 0x29, 0x6b,
  4161. 0xcc, 0xf9, 0x01, 0x45, 0x24, 0xe1, 0x60, 0xbb, 0x47, 0xfc, 0x51, 0xa7, 0xa2, 0x78, 0x1a, 0xa4,
  4162. 0x19, 0x7f, 0x05, 0xe3, 0x5a, 0xab, 0x09, 0x4c, 0xba, 0x02, 0x1b, 0x12, 0xde, 0x4f, 0x11, 0x0b,
  4163. 0x64, 0xe4, 0x1b, 0x6f, 0xc0, 0x7f, 0xa7, 0x69, 0xf0, 0x29, 0xe2, 0x91, 0x0c, 0x13, 0x9e, 0x05,
  4164. 0x9f, 0x22, 0x15, 0x55, 0x66, 0x09, 0x55, 0x92, 0xc9, 0x34, 0x15, 0x93, 0x91, 0x25, 0xd8, 0x52,
  4165. 0x25, 0x28, 0x22, 0xb2, 0x2d, 0x23, 0x32, 0x37, 0x9d, 0x8e, 0x68, 0x3a, 0x23, 0x30, 0x02, 0x9f,
  4166. 0x46, 0x21, 0xc3, 0xc5, 0x9f, 0xce, 0x17, 0x06, 0xb4, 0xb1, 0x4c, 0x8e, 0x33, 0xb4, 0xfc, 0x7a,
  4167. 0xcc, 0x77, 0x02, 0x26, 0x89, 0xde, 0xcc, 0x7a, 0xe9, 0xa0, 0xd6, 0xe7, 0x52, 0x94, 0xb5, 0xaa,
  4168. 0x8d, 0xba, 0x5d, 0x6d, 0xd4, 0x9d, 0x5a, 0xa3, 0x86, 0x2a, 0x1f, 0x3c, 0x4f, 0x90, 0x97, 0x21,
  4169. 0x7f, 0xea, 0x65, 0xc4, 0x72, 0x3b, 0x6e, 0x87, 0x51, 0xf6, 0x33, 0x49, 0xc2, 0xbd, 0x92, 0xcd,
  4170. 0xd3, 0x29, 0xc1, 0x86, 0x3b, 0x84, 0x42, 0x0e, 0x7e, 0x0b, 0x86, 0x82, 0x11, 0x93, 0x35, 0x03,
  4171. 0xb2, 0x66, 0x50, 0x90, 0x39, 0x00, 0x0a, 0x57, 0x30, 0x54, 0x5c, 0x41, 0x85, 0x95, 0x8f, 0x2a,
  4172. 0xad, 0xfc, 0x97, 0xd0, 0x2f, 0xa0, 0x8d, 0xcd, 0x63, 0x02, 0x66, 0x16, 0x65, 0xde, 0x82, 0x41,
  4173. 0x9b, 0x0e, 0x72, 0xfc, 0xea, 0x02, 0x7e, 0x6f, 0xb3, 0x30, 0x6f, 0x90, 0x30, 0x3f, 0x14, 0xcc,
  4174. 0x08, 0x83, 0x82, 0x05, 0xf9, 0x03, 0x18, 0x17, 0xe9, 0xd5, 0x76, 0xc6, 0xe3, 0xdc, 0x82, 0xa1,
  4175. 0x78, 0x46, 0x55, 0x58, 0xf9, 0x39, 0x5c, 0xc5, 0x17, 0x3f, 0x21, 0x5b, 0x0e, 0xcf, 0xbc, 0xf0,
  4176. 0x54, 0x8c, 0x2d, 0xc5, 0xd1, 0x9a, 0xa2, 0x79, 0x45, 0xcf, 0xba, 0xaa, 0x67, 0xe7, 0x2a, 0xec,
  4177. 0x96, 0x0f, 0xc6, 0xf9, 0xc7, 0x3f, 0x34, 0x18, 0x12, 0x86, 0xe4, 0x04, 0xa4, 0xfe, 0xaa, 0xb2,
  4178. 0x9f, 0xbb, 0x0f, 0x23, 0x21, 0x25, 0xc4, 0x29, 0x7b, 0x4a, 0x84, 0xd9, 0x71, 0x87, 0x05, 0xfd,
  4179. 0x10, 0x93, 0x31, 0x9e, 0x78, 0xf6, 0x4a, 0xac, 0xa2, 0xed, 0xb6, 0x58, 0xde, 0xaa, 0xe0, 0xc9,
  4180. 0x54, 0xf1, 0x94, 0x4f, 0xfb, 0x28, 0x9d, 0x33, 0x47, 0x41, 0xa7, 0x8f, 0x50, 0x3a, 0x77, 0xde,
  4181. 0x80, 0x7e, 0xf1, 0x8a, 0x2a, 0xc9, 0xfe, 0x5d, 0x03, 0x8b, 0xac, 0x90, 0x23, 0xb6, 0xea, 0xc5,
  4182. 0x65, 0x2e, 0x74, 0x95, 0x8b, 0x4b, 0x3c, 0x75, 0x63, 0x82, 0xcf, 0x84, 0x68, 0x4a, 0xc1, 0x62,
  4183. 0xd3, 0xfb, 0x3e, 0x84, 0x91, 0xc4, 0x3d, 0x7e, 0xe2, 0x43, 0x25, 0x02, 0x5c, 0x63, 0xd0, 0x2d,
  4184. 0x3f, 0x33, 0x0f, 0x01, 0x27, 0x4c, 0xd9, 0x1b, 0xe2, 0xd8, 0x46, 0xff, 0x5f, 0xaa, 0x63, 0x9c,
  4185. 0x03, 0x26, 0xf8, 0x3c, 0x2e, 0x6d, 0xc1, 0xd5, 0x27, 0xd0, 0x21, 0xb3, 0xc4, 0x09, 0x5f, 0x52,
  4186. 0x23, 0xb2, 0xdc, 0x0c, 0x45, 0x6e, 0x78, 0x9a, 0xb8, 0xf4, 0x79, 0xb4, 0x0a, 0x33, 0xa6, 0x06,
  4187. 0xe2, 0xe4, 0x0f, 0x31, 0xc1, 0xd9, 0x67, 0x62, 0x15, 0x43, 0xe2, 0xe5, 0xd0, 0xef, 0xbc, 0x0f,
  4188. 0x03, 0xe1, 0x08, 0x2c, 0x81, 0x3b, 0x52, 0xdd, 0x30, 0x12, 0xdf, 0x2f, 0x78, 0x14, 0x87, 0x5d,
  4189. 0x7d, 0x1c, 0xbe, 0x88, 0x6a, 0x74, 0xe1, 0xfc, 0xa7, 0xae, 0x02, 0x27, 0x92, 0xaa, 0xae, 0xc0,
  4190. 0xd5, 0x6a, 0x59, 0x2f, 0x55, 0xcb, 0x95, 0x05, 0xf9, 0x75, 0x68, 0xa7, 0x68, 0x81, 0xe6, 0x19,
  4191. 0xf2, 0x99, 0x65, 0xe6, 0x63, 0xa1, 0x58, 0x37, 0x2b, 0x8b, 0xf5, 0xa6, 0x50, 0xac, 0xf3, 0x06,
  4192. 0x40, 0x4b, 0x68, 0x00, 0x7c, 0x0f, 0x9a, 0xf3, 0xb3, 0x60, 0xe1, 0xa7, 0x76, 0xfb, 0xe2, 0xfa,
  4193. 0x8f, 0x88, 0x88, 0xad, 0x77, 0x7e, 0xc8, 0x84, 0x4b, 0x85, 0x84, 0x85, 0xfb, 0x58, 0x12, 0xee,
  4194. 0xc5, 0x27, 0x51, 0x61, 0xc7, 0x30, 0x71, 0x51, 0x8a, 0xb2, 0x13, 0x16, 0xb1, 0x37, 0xd7, 0x90,
  4195. 0x2c, 0x33, 0xd3, 0x8b, 0xcc, 0x6c, 0x02, 0xe6, 0x39, 0x79, 0x2a, 0x16, 0x59, 0xdf, 0xa5, 0x03,
  4196. 0x29, 0x25, 0x30, 0xe5, 0x94, 0xc0, 0x99, 0xc1, 0x58, 0xba, 0x91, 0xf4, 0x4c, 0xca, 0x5d, 0x03,
  4197. 0xb1, 0x51, 0xa1, 0x2b, 0x8d, 0x0a, 0xc5, 0xa9, 0x1b, 0x25, 0xa7, 0x7e, 0x00, 0x96, 0xf2, 0x2a,
  4198. 0x2c, 0xa1, 0xb7, 0x25, 0x09, 0xf1, 0xb4, 0xb0, 0xc4, 0x0c, 0x93, 0xcc, 0x1f, 0x34, 0xd8, 0xa5,
  4199. 0xf1, 0x40, 0x95, 0x4d, 0x99, 0xd9, 0x5b, 0xd0, 0x8b, 0x16, 0xfe, 0x54, 0x49, 0x83, 0xba, 0xd1,
  4200. 0xc2, 0xe7, 0x7b, 0xf1, 0x92, 0x10, 0xbd, 0x2c, 0x96, 0x50, 0xa6, 0xbb, 0x21, 0x7a, 0x99, 0x2f,
  4201. 0x91, 0x93, 0xba, 0x86, 0x92, 0xd4, 0x39, 0xbb, 0xb0, 0xa3, 0xf2, 0x83, 0xe3, 0xd4, 0x67, 0x1a,
  4202. 0x4c, 0x8e, 0xf2, 0xcc, 0x61, 0xfb, 0x60, 0x55, 0x91, 0x97, 0x18, 0x95, 0x79, 0x89, 0x05, 0x0d,
  4203. 0xe2, 0x52, 0x68, 0xf2, 0x46, 0xbe, 0x9d, 0x3b, 0x60, 0x29, 0x3c, 0x54, 0x85, 0x9a, 0xcf, 0x35,
  4204. 0xb8, 0x5a, 0x2c, 0x2b, 0x55, 0x88, 0xf5, 0xdc, 0x56, 0xf0, 0xa6, 0x6f, 0xe4, 0xcd, 0x28, 0x78,
  4205. 0x63, 0x5c, 0x34, 0x72, 0x2e, 0x7e, 0x02, 0xbb, 0x65, 0x26, 0x30, 0xbb, 0xef, 0x2b, 0x0e, 0xfa,
  4206. 0x26, 0x43, 0x48, 0x0d, 0xcb, 0xb9, 0x97, 0x3e, 0x14, 0x15, 0x20, 0x04, 0x90, 0x8d, 0x4f, 0xa2,
  4207. 0x5c, 0xe9, 0x39, 0x57, 0x4f, 0x45, 0x09, 0xe6, 0x31, 0x63, 0x5b, 0x96, 0x7e, 0x0b, 0x83, 0x62,
  4208. 0x49, 0x65, 0xf4, 0x78, 0x25, 0x91, 0xca, 0xc9, 0x71, 0x43, 0x49, 0x8e, 0x1d, 0x24, 0x4a, 0x58,
  4209. 0x8c, 0x20, 0x3c, 0xcb, 0xd4, 0xea, 0xaa, 0x24, 0x5d, 0xa9, 0x92, 0x24, 0x11, 0x1a, 0x4a, 0xda,
  4210. 0xf8, 0x6b, 0xd8, 0x51, 0xaf, 0xc1, 0x32, 0xab, 0xba, 0x24, 0x4f, 0x7a, 0x75, 0x31, 0xe9, 0xbd,
  4211. 0x2f, 0x25, 0xb8, 0xbb, 0x25, 0xd9, 0x0a, 0x7e, 0xf2, 0x47, 0x70, 0x8d, 0xd9, 0xe1, 0x87, 0x61,
  4212. 0xc6, 0xd3, 0xc5, 0x2d, 0x03, 0xe3, 0xef, 0xe0, 0x6a, 0xd5, 0x59, 0x98, 0x77, 0xc5, 0xb3, 0x69,
  4213. 0xa5, 0xb2, 0x44, 0x69, 0x1b, 0xea, 0xdb, 0xb4, 0x0d, 0xdf, 0x04, 0x8b, 0xde, 0x89, 0x83, 0x47,
  4214. 0x2a, 0x78, 0x35, 0x5c, 0x02, 0x6a, 0x45, 0x09, 0xf8, 0x37, 0x13, 0x80, 0x2d, 0xc4, 0x08, 0x2a,
  4215. 0x27, 0xf5, 0xd8, 0xcd, 0x27, 0xd1, 0x79, 0x10, 0xce, 0x73, 0x1f, 0xcd, 0xc7, 0xd6, 0x6d, 0xe8,
  4216. 0xf3, 0xef, 0x69, 0x1e, 0x20, 0x3a, 0x6e, 0x8f, 0x13, 0x0f, 0x59, 0x4c, 0x9c, 0x07, 0xd9, 0x9a,
  4217. 0xbb, 0x12, 0xfc, 0x8d, 0x85, 0x89, 0xff, 0x4e, 0x85, 0x6e, 0x77, 0x1b, 0x13, 0xf8, 0x06, 0x2f,
  4218. 0x41, 0x1e, 0x0f, 0xac, 0xf8, 0x1b, 0x6f, 0xc0, 0x7f, 0xe9, 0x06, 0x1a, 0x5d, 0xdb, 0x98, 0x40,
  4219. 0x36, 0x5c, 0x81, 0x66, 0x9a, 0x25, 0x08, 0x65, 0xac, 0x81, 0xcb, 0x46, 0x58, 0xd0, 0xf4, 0x8b,
  4220. 0x6e, 0x63, 0x4d, 0x1d, 0x4a, 0x22, 0x1b, 0x5f, 0x83, 0xce, 0x3c, 0x5a, 0x2e, 0x83, 0x2c, 0x43,
  4221. 0xbc, 0x3c, 0x2c, 0x08, 0xd6, 0x5d, 0x18, 0xe4, 0x03, 0x7a, 0x02, 0xad, 0x10, 0xfb, 0x39, 0x95,
  4222. 0x1c, 0xa2, 0xa8, 0xb3, 0x57, 0x52, 0x67, 0xb1, 0xc0, 0xf3, 0xfd, 0x84, 0x15, 0x8b, 0x6c, 0xc1,
  4223. 0xbe, 0xef, 0x27, 0xd8, 0x4c, 0xe3, 0x24, 0x8a, 0x51, 0x92, 0xad, 0x71, 0xad, 0x97, 0xb2, 0xbe,
  4224. 0x5c, 0xc7, 0x1d, 0x70, 0xf2, 0x09, 0xa1, 0x62, 0x8e, 0x8a, 0x85, 0x24, 0x72, 0xd3, 0x92, 0xb1,
  4225. 0x9f, 0xaf, 0x23, 0x11, 0x9c, 0xba, 0x81, 0x91, 0x94, 0x44, 0x52, 0x06, 0xe2, 0x60, 0x6e, 0x8f,
  4226. 0x59, 0x96, 0x48, 0x28, 0x27, 0xc1, 0x5c, 0xe0, 0x8f, 0xf8, 0x00, 0x4b, 0xe4, 0x8f, 0xa4, 0x91,
  4227. 0xbb, 0xd0, 0x0c, 0xc2, 0xe9, 0x2a, 0x45, 0xf6, 0x0e, 0xad, 0xda, 0x83, 0xf0, 0x79, 0x4a, 0x12,
  4228. 0x85, 0x45, 0x98, 0xd9, 0x93, 0x3d, 0xed, 0x9e, 0xe6, 0xe2, 0x4f, 0x42, 0xf1, 0x32, 0x7b, 0x97,
  4229. 0x51, 0x3c, 0xf2, 0x53, 0x84, 0x17, 0xc7, 0x28, 0xf4, 0x83, 0x4f, 0xec, 0x2b, 0xa4, 0x54, 0xc8,
  4230. 0xc7, 0x54, 0x6d, 0x5e, 0xb6, 0x4a, 0xed, 0xab, 0xa4, 0xaa, 0x65, 0x23, 0xbc, 0xe7, 0x05, 0x42,
  4231. 0xfe, 0xcc, 0x9b, 0x7f, 0x6c, 0xdb, 0x54, 0xd5, 0x7c, 0xec, 0x7c, 0x00, 0x23, 0x09, 0xd6, 0xf5,
  4232. 0x9d, 0xea, 0x02, 0xd4, 0xcc, 0xba, 0x3f, 0x37, 0xf9, 0x5e, 0x21, 0x7e, 0x7e, 0x8b, 0xf7, 0x6f,
  4233. 0x00, 0xde, 0xbf, 0x03, 0xe3, 0x17, 0x09, 0x42, 0x53, 0x76, 0x2b, 0xad, 0x76, 0x68, 0xa7, 0x64,
  4234. 0x88, 0x27, 0x58, 0xdd, 0x8f, 0xc9, 0xaf, 0x6c, 0x0b, 0x0c, 0xf4, 0x3b, 0x25, 0xd0, 0x4f, 0xaa,
  4235. 0x41, 0xbf, 0x2b, 0x83, 0xde, 0xd9, 0x83, 0x81, 0x00, 0xc2, 0xaa, 0x04, 0xea, 0x0b, 0x0d, 0xc6,
  4236. 0x74, 0xc9, 0x2b, 0x45, 0xd5, 0xf2, 0x8f, 0x6e, 0x65, 0xfd, 0x36, 0xaa, 0xf4, 0x7b, 0x1b, 0xfa,
  4237. 0x21, 0xc2, 0x41, 0x9f, 0x3f, 0x81, 0xb6, 0xea, 0x7a, 0x98, 0xb8, 0xcf, 0x6d, 0x17, 0x67, 0xba,
  4238. 0x51, 0x86, 0xd7, 0x24, 0xd1, 0x39, 0xf2, 0x59, 0xdf, 0xae, 0x1b, 0x46, 0xd9, 0x3e, 0x23, 0x39,
  4239. 0x33, 0x18, 0x8a, 0xcf, 0xb8, 0x5c, 0xd4, 0xbe, 0x2b, 0x45, 0xed, 0x5a, 0x9b, 0xfe, 0x67, 0x03,
  4240. 0x76, 0x28, 0x71, 0x73, 0x63, 0xe3, 0x5b, 0xa3, 0xfe, 0xbf, 0x33, 0x6a, 0x86, 0xdf, 0x91, 0xdc,
  4241. 0x24, 0xfa, 0x1f, 0x9b, 0xae, 0xf3, 0x84, 0xdb, 0x9e, 0x58, 0x33, 0x3c, 0x52, 0x12, 0xf4, 0xeb,
  4242. 0x12, 0x1c, 0x6b, 0x7e, 0x33, 0x31, 0xe0, 0x3a, 0x9d, 0xff, 0x08, 0xad, 0x71, 0xb0, 0x92, 0xfb,
  4243. 0x99, 0x17, 0xff, 0x7e, 0x22, 0x42, 0xd6, 0xb8, 0x08, 0xb2, 0x8d, 0x0d, 0x90, 0x35, 0xeb, 0x20,
  4244. 0xdb, 0xac, 0x81, 0x6c, 0xab, 0x0e, 0xb2, 0xed, 0x5a, 0xc8, 0x76, 0x36, 0x41, 0x16, 0x36, 0x43,
  4245. 0xb6, 0x7b, 0x31, 0x64, 0x7b, 0x5f, 0x02, 0xb2, 0xfd, 0x52, 0x83, 0xe0, 0x3a, 0xd8, 0x95, 0x1a,
  4246. 0xc0, 0x05, 0xf5, 0x9f, 0x35, 0xb8, 0x59, 0x31, 0xf9, 0x0a, 0x3f, 0x0e, 0x15, 0xd9, 0x8c, 0x21,
  4247. 0x65, 0x33, 0xdc, 0xe7, 0x35, 0xea, 0x1c, 0xb7, 0x29, 0x3b, 0x6e, 0xe7, 0xdf, 0xb9, 0xff, 0x67,
  4248. 0xac, 0x91, 0xe6, 0x49, 0x71, 0xbc, 0x26, 0x1d, 0x7f, 0x51, 0xef, 0x1b, 0x63, 0x25, 0x37, 0x8b,
  4249. 0xac, 0xf8, 0x95, 0xa6, 0xc7, 0x0d, 0x03, 0xd3, 0xf8, 0x5b, 0x1b, 0x35, 0x6f, 0x35, 0x2b, 0xeb,
  4250. 0xda, 0xa6, 0xe8, 0x5e, 0xf3, 0x8c, 0xad, 0x25, 0x67, 0x6c, 0x79, 0x43, 0xa6, 0x2d, 0x35, 0x64,
  4251. 0xa4, 0x07, 0x0a, 0x0e, 0xfd, 0x33, 0xf5, 0xf1, 0xa4, 0x2a, 0x79, 0x1d, 0xe0, 0x45, 0x80, 0x16,
  4252. 0xbe, 0x58, 0x30, 0x75, 0x08, 0x85, 0x3c, 0xf1, 0x4d, 0x18, 0xd2, 0xe9, 0x73, 0x6f, 0xb1, 0x42,
  4253. 0xd3, 0x34, 0x99, 0x33, 0x39, 0xf4, 0x09, 0xf9, 0x67, 0x98, 0xfa, 0x2c, 0x99, 0xab, 0xeb, 0x7c,
  4254. 0x12, 0x5f, 0x94, 0x75, 0x47, 0x69, 0xe6, 0x9c, 0xc3, 0x6b, 0xb5, 0xd8, 0xb8, 0x5c, 0x18, 0x7b,
  4255. 0x5b, 0x0a, 0x63, 0x95, 0x8f, 0x17, 0xba, 0x51, 0x1e, 0xdc, 0x90, 0xa6, 0x58, 0x28, 0xdd, 0x10,
  4256. 0xd4, 0x72, 0xa9, 0xeb, 0x8a, 0xd4, 0x65, 0x34, 0xb6, 0x39, 0x5c, 0x9c, 0x1b, 0x70, 0xad, 0xfa,
  4257. 0x0a, 0x6c, 0x14, 0x0b, 0x98, 0xb0, 0xdc, 0xe4, 0x2b, 0xbf, 0xb8, 0x8c, 0x30, 0x67, 0xc2, 0x2b,
  4258. 0x54, 0x89, 0x87, 0xc7, 0x3c, 0x49, 0xbf, 0xcc, 0x8f, 0xcd, 0xce, 0x11, 0xcf, 0xaa, 0xf2, 0xa6,
  4259. 0xca, 0x36, 0x3e, 0xfb, 0x23, 0xee, 0xb2, 0xa9, 0xc2, 0x59, 0xfd, 0xbe, 0x65, 0x03, 0xe0, 0x39,
  4260. 0xf7, 0x3e, 0xca, 0x61, 0x98, 0xb9, 0x0f, 0x14, 0xe6, 0x6e, 0x49, 0xcc, 0x55, 0xdd, 0xce, 0x79,
  4261. 0x3c, 0xd8, 0xfb, 0xc5, 0x4d, 0x1e, 0x27, 0xdf, 0x61, 0x5d, 0xed, 0x77, 0x4e, 0xbd, 0x0c, 0xbd,
  4262. 0xf4, 0xd6, 0xef, 0xc6, 0xb3, 0x77, 0xcf, 0x1f, 0xce, 0x9a, 0xe4, 0xdf, 0xd8, 0xbe, 0xfb, 0xdf,
  4263. 0x00, 0x00, 0x00, 0xff, 0xff, 0x33, 0x6e, 0x3c, 0x9d, 0xd6, 0x26, 0x00, 0x00,
  4264. }