company.pb.go 185 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: company.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 LoginRequest struct {
  20. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username"`
  21. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  22. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  23. XXX_unrecognized []byte `json:"-"`
  24. XXX_sizecache int32 `json:"-"`
  25. }
  26. func (m *LoginRequest) Reset() { *m = LoginRequest{} }
  27. func (m *LoginRequest) String() string { return proto.CompactTextString(m) }
  28. func (*LoginRequest) ProtoMessage() {}
  29. func (*LoginRequest) Descriptor() ([]byte, []int) {
  30. return fileDescriptor_ade57ca5b8f3903f, []int{0}
  31. }
  32. func (m *LoginRequest) XXX_Unmarshal(b []byte) error {
  33. return xxx_messageInfo_LoginRequest.Unmarshal(m, b)
  34. }
  35. func (m *LoginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  36. return xxx_messageInfo_LoginRequest.Marshal(b, m, deterministic)
  37. }
  38. func (m *LoginRequest) XXX_Merge(src proto.Message) {
  39. xxx_messageInfo_LoginRequest.Merge(m, src)
  40. }
  41. func (m *LoginRequest) XXX_Size() int {
  42. return xxx_messageInfo_LoginRequest.Size(m)
  43. }
  44. func (m *LoginRequest) XXX_DiscardUnknown() {
  45. xxx_messageInfo_LoginRequest.DiscardUnknown(m)
  46. }
  47. var xxx_messageInfo_LoginRequest proto.InternalMessageInfo
  48. func (m *LoginRequest) GetUsername() string {
  49. if m != nil {
  50. return m.Username
  51. }
  52. return ""
  53. }
  54. func (m *LoginRequest) GetPassword() string {
  55. if m != nil {
  56. return m.Password
  57. }
  58. return ""
  59. }
  60. type LoginReply struct {
  61. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  62. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  63. User string `protobuf:"bytes,3,opt,name=user,proto3" json:"user"`
  64. CompanyName string `protobuf:"bytes,4,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  65. Super bool `protobuf:"varint,5,opt,name=super,proto3" json:"super"`
  66. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  67. XXX_unrecognized []byte `json:"-"`
  68. XXX_sizecache int32 `json:"-"`
  69. }
  70. func (m *LoginReply) Reset() { *m = LoginReply{} }
  71. func (m *LoginReply) String() string { return proto.CompactTextString(m) }
  72. func (*LoginReply) ProtoMessage() {}
  73. func (*LoginReply) Descriptor() ([]byte, []int) {
  74. return fileDescriptor_ade57ca5b8f3903f, []int{1}
  75. }
  76. func (m *LoginReply) XXX_Unmarshal(b []byte) error {
  77. return xxx_messageInfo_LoginReply.Unmarshal(m, b)
  78. }
  79. func (m *LoginReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  80. return xxx_messageInfo_LoginReply.Marshal(b, m, deterministic)
  81. }
  82. func (m *LoginReply) XXX_Merge(src proto.Message) {
  83. xxx_messageInfo_LoginReply.Merge(m, src)
  84. }
  85. func (m *LoginReply) XXX_Size() int {
  86. return xxx_messageInfo_LoginReply.Size(m)
  87. }
  88. func (m *LoginReply) XXX_DiscardUnknown() {
  89. xxx_messageInfo_LoginReply.DiscardUnknown(m)
  90. }
  91. var xxx_messageInfo_LoginReply proto.InternalMessageInfo
  92. func (m *LoginReply) GetUid() int64 {
  93. if m != nil {
  94. return m.Uid
  95. }
  96. return 0
  97. }
  98. func (m *LoginReply) GetCid() int64 {
  99. if m != nil {
  100. return m.Cid
  101. }
  102. return 0
  103. }
  104. func (m *LoginReply) GetUser() string {
  105. if m != nil {
  106. return m.User
  107. }
  108. return ""
  109. }
  110. func (m *LoginReply) GetCompanyName() string {
  111. if m != nil {
  112. return m.CompanyName
  113. }
  114. return ""
  115. }
  116. func (m *LoginReply) GetSuper() bool {
  117. if m != nil {
  118. return m.Super
  119. }
  120. return false
  121. }
  122. type LoginByPhoneRequest struct {
  123. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  124. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  125. XXX_unrecognized []byte `json:"-"`
  126. XXX_sizecache int32 `json:"-"`
  127. }
  128. func (m *LoginByPhoneRequest) Reset() { *m = LoginByPhoneRequest{} }
  129. func (m *LoginByPhoneRequest) String() string { return proto.CompactTextString(m) }
  130. func (*LoginByPhoneRequest) ProtoMessage() {}
  131. func (*LoginByPhoneRequest) Descriptor() ([]byte, []int) {
  132. return fileDescriptor_ade57ca5b8f3903f, []int{2}
  133. }
  134. func (m *LoginByPhoneRequest) XXX_Unmarshal(b []byte) error {
  135. return xxx_messageInfo_LoginByPhoneRequest.Unmarshal(m, b)
  136. }
  137. func (m *LoginByPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  138. return xxx_messageInfo_LoginByPhoneRequest.Marshal(b, m, deterministic)
  139. }
  140. func (m *LoginByPhoneRequest) XXX_Merge(src proto.Message) {
  141. xxx_messageInfo_LoginByPhoneRequest.Merge(m, src)
  142. }
  143. func (m *LoginByPhoneRequest) XXX_Size() int {
  144. return xxx_messageInfo_LoginByPhoneRequest.Size(m)
  145. }
  146. func (m *LoginByPhoneRequest) XXX_DiscardUnknown() {
  147. xxx_messageInfo_LoginByPhoneRequest.DiscardUnknown(m)
  148. }
  149. var xxx_messageInfo_LoginByPhoneRequest proto.InternalMessageInfo
  150. func (m *LoginByPhoneRequest) GetPhone() string {
  151. if m != nil {
  152. return m.Phone
  153. }
  154. return ""
  155. }
  156. type LoginByPhoneReply struct {
  157. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  158. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  159. User string `protobuf:"bytes,3,opt,name=user,proto3" json:"user"`
  160. CompanyName string `protobuf:"bytes,4,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  161. Super bool `protobuf:"varint,5,opt,name=super,proto3" json:"super"`
  162. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  163. XXX_unrecognized []byte `json:"-"`
  164. XXX_sizecache int32 `json:"-"`
  165. }
  166. func (m *LoginByPhoneReply) Reset() { *m = LoginByPhoneReply{} }
  167. func (m *LoginByPhoneReply) String() string { return proto.CompactTextString(m) }
  168. func (*LoginByPhoneReply) ProtoMessage() {}
  169. func (*LoginByPhoneReply) Descriptor() ([]byte, []int) {
  170. return fileDescriptor_ade57ca5b8f3903f, []int{3}
  171. }
  172. func (m *LoginByPhoneReply) XXX_Unmarshal(b []byte) error {
  173. return xxx_messageInfo_LoginByPhoneReply.Unmarshal(m, b)
  174. }
  175. func (m *LoginByPhoneReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  176. return xxx_messageInfo_LoginByPhoneReply.Marshal(b, m, deterministic)
  177. }
  178. func (m *LoginByPhoneReply) XXX_Merge(src proto.Message) {
  179. xxx_messageInfo_LoginByPhoneReply.Merge(m, src)
  180. }
  181. func (m *LoginByPhoneReply) XXX_Size() int {
  182. return xxx_messageInfo_LoginByPhoneReply.Size(m)
  183. }
  184. func (m *LoginByPhoneReply) XXX_DiscardUnknown() {
  185. xxx_messageInfo_LoginByPhoneReply.DiscardUnknown(m)
  186. }
  187. var xxx_messageInfo_LoginByPhoneReply proto.InternalMessageInfo
  188. func (m *LoginByPhoneReply) GetUid() int64 {
  189. if m != nil {
  190. return m.Uid
  191. }
  192. return 0
  193. }
  194. func (m *LoginByPhoneReply) GetCid() int64 {
  195. if m != nil {
  196. return m.Cid
  197. }
  198. return 0
  199. }
  200. func (m *LoginByPhoneReply) GetUser() string {
  201. if m != nil {
  202. return m.User
  203. }
  204. return ""
  205. }
  206. func (m *LoginByPhoneReply) GetCompanyName() string {
  207. if m != nil {
  208. return m.CompanyName
  209. }
  210. return ""
  211. }
  212. func (m *LoginByPhoneReply) GetSuper() bool {
  213. if m != nil {
  214. return m.Super
  215. }
  216. return false
  217. }
  218. type RegisterRequest struct {
  219. // false 物业公司注册 true 运营人员添加
  220. IsByManager bool `protobuf:"varint,1,opt,name=is_by_manager,json=isByManager,proto3" json:"is_by_manager"`
  221. // 申请人
  222. Applicant string `protobuf:"bytes,2,opt,name=applicant,proto3" json:"applicant"`
  223. // 申请人电话
  224. ApplicantPhone string `protobuf:"bytes,3,opt,name=applicant_phone,json=applicantPhone,proto3" json:"applicant_phone"`
  225. // 公司名称
  226. CompanyName string `protobuf:"bytes,4,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  227. // 公司电话
  228. CompanyPhone string `protobuf:"bytes,5,opt,name=company_phone,json=companyPhone,proto3" json:"company_phone"`
  229. // 申请人职位
  230. ApplicantDuty string `protobuf:"bytes,6,opt,name=applicant_duty,json=applicantDuty,proto3" json:"applicant_duty"`
  231. // 法人
  232. LegalPerson string `protobuf:"bytes,7,opt,name=legal_person,json=legalPerson,proto3" json:"legal_person"`
  233. // 公司地址
  234. CompanyAddr string `protobuf:"bytes,8,opt,name=company_addr,json=companyAddr,proto3" json:"company_addr"`
  235. // 社会信用码
  236. SocialCode string `protobuf:"bytes,9,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
  237. // 营业执照
  238. BusinessLicense string `protobuf:"bytes,10,opt,name=business_license,json=businessLicense,proto3" json:"business_license"`
  239. // 申请人身份
  240. ApplicantIdentification string `protobuf:"bytes,11,opt,name=applicant_identification,json=applicantIdentification,proto3" json:"applicant_identification"`
  241. // 营业执照类型 1 多证合一营业执照 2 普通营业执照
  242. LicenseType int32 `protobuf:"varint,12,opt,name=license_type,json=licenseType,proto3" json:"license_type"`
  243. // 免费小区个数
  244. FreeGardenCount int32 `protobuf:"varint,13,opt,name=free_garden_count,json=freeGardenCount,proto3" json:"free_garden_count"`
  245. // 账户名
  246. Username string `protobuf:"bytes,14,opt,name=username,proto3" json:"username"`
  247. // 密码
  248. Password string `protobuf:"bytes,15,opt,name=password,proto3" json:"password"`
  249. // 小区有效期天
  250. Expire int32 `protobuf:"varint,16,opt,name=expire,proto3" json:"expire"`
  251. Logo string `protobuf:"bytes,17,opt,name=logo,proto3" json:"logo"`
  252. Desc string `protobuf:"bytes,18,opt,name=desc,proto3" json:"desc"`
  253. Site string `protobuf:"bytes,19,opt,name=site,proto3" json:"site"`
  254. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  255. XXX_unrecognized []byte `json:"-"`
  256. XXX_sizecache int32 `json:"-"`
  257. }
  258. func (m *RegisterRequest) Reset() { *m = RegisterRequest{} }
  259. func (m *RegisterRequest) String() string { return proto.CompactTextString(m) }
  260. func (*RegisterRequest) ProtoMessage() {}
  261. func (*RegisterRequest) Descriptor() ([]byte, []int) {
  262. return fileDescriptor_ade57ca5b8f3903f, []int{4}
  263. }
  264. func (m *RegisterRequest) XXX_Unmarshal(b []byte) error {
  265. return xxx_messageInfo_RegisterRequest.Unmarshal(m, b)
  266. }
  267. func (m *RegisterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  268. return xxx_messageInfo_RegisterRequest.Marshal(b, m, deterministic)
  269. }
  270. func (m *RegisterRequest) XXX_Merge(src proto.Message) {
  271. xxx_messageInfo_RegisterRequest.Merge(m, src)
  272. }
  273. func (m *RegisterRequest) XXX_Size() int {
  274. return xxx_messageInfo_RegisterRequest.Size(m)
  275. }
  276. func (m *RegisterRequest) XXX_DiscardUnknown() {
  277. xxx_messageInfo_RegisterRequest.DiscardUnknown(m)
  278. }
  279. var xxx_messageInfo_RegisterRequest proto.InternalMessageInfo
  280. func (m *RegisterRequest) GetIsByManager() bool {
  281. if m != nil {
  282. return m.IsByManager
  283. }
  284. return false
  285. }
  286. func (m *RegisterRequest) GetApplicant() string {
  287. if m != nil {
  288. return m.Applicant
  289. }
  290. return ""
  291. }
  292. func (m *RegisterRequest) GetApplicantPhone() string {
  293. if m != nil {
  294. return m.ApplicantPhone
  295. }
  296. return ""
  297. }
  298. func (m *RegisterRequest) GetCompanyName() string {
  299. if m != nil {
  300. return m.CompanyName
  301. }
  302. return ""
  303. }
  304. func (m *RegisterRequest) GetCompanyPhone() string {
  305. if m != nil {
  306. return m.CompanyPhone
  307. }
  308. return ""
  309. }
  310. func (m *RegisterRequest) GetApplicantDuty() string {
  311. if m != nil {
  312. return m.ApplicantDuty
  313. }
  314. return ""
  315. }
  316. func (m *RegisterRequest) GetLegalPerson() string {
  317. if m != nil {
  318. return m.LegalPerson
  319. }
  320. return ""
  321. }
  322. func (m *RegisterRequest) GetCompanyAddr() string {
  323. if m != nil {
  324. return m.CompanyAddr
  325. }
  326. return ""
  327. }
  328. func (m *RegisterRequest) GetSocialCode() string {
  329. if m != nil {
  330. return m.SocialCode
  331. }
  332. return ""
  333. }
  334. func (m *RegisterRequest) GetBusinessLicense() string {
  335. if m != nil {
  336. return m.BusinessLicense
  337. }
  338. return ""
  339. }
  340. func (m *RegisterRequest) GetApplicantIdentification() string {
  341. if m != nil {
  342. return m.ApplicantIdentification
  343. }
  344. return ""
  345. }
  346. func (m *RegisterRequest) GetLicenseType() int32 {
  347. if m != nil {
  348. return m.LicenseType
  349. }
  350. return 0
  351. }
  352. func (m *RegisterRequest) GetFreeGardenCount() int32 {
  353. if m != nil {
  354. return m.FreeGardenCount
  355. }
  356. return 0
  357. }
  358. func (m *RegisterRequest) GetUsername() string {
  359. if m != nil {
  360. return m.Username
  361. }
  362. return ""
  363. }
  364. func (m *RegisterRequest) GetPassword() string {
  365. if m != nil {
  366. return m.Password
  367. }
  368. return ""
  369. }
  370. func (m *RegisterRequest) GetExpire() int32 {
  371. if m != nil {
  372. return m.Expire
  373. }
  374. return 0
  375. }
  376. func (m *RegisterRequest) GetLogo() string {
  377. if m != nil {
  378. return m.Logo
  379. }
  380. return ""
  381. }
  382. func (m *RegisterRequest) GetDesc() string {
  383. if m != nil {
  384. return m.Desc
  385. }
  386. return ""
  387. }
  388. func (m *RegisterRequest) GetSite() string {
  389. if m != nil {
  390. return m.Site
  391. }
  392. return ""
  393. }
  394. type RegisterReply struct {
  395. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  396. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  397. XXX_unrecognized []byte `json:"-"`
  398. XXX_sizecache int32 `json:"-"`
  399. }
  400. func (m *RegisterReply) Reset() { *m = RegisterReply{} }
  401. func (m *RegisterReply) String() string { return proto.CompactTextString(m) }
  402. func (*RegisterReply) ProtoMessage() {}
  403. func (*RegisterReply) Descriptor() ([]byte, []int) {
  404. return fileDescriptor_ade57ca5b8f3903f, []int{5}
  405. }
  406. func (m *RegisterReply) XXX_Unmarshal(b []byte) error {
  407. return xxx_messageInfo_RegisterReply.Unmarshal(m, b)
  408. }
  409. func (m *RegisterReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  410. return xxx_messageInfo_RegisterReply.Marshal(b, m, deterministic)
  411. }
  412. func (m *RegisterReply) XXX_Merge(src proto.Message) {
  413. xxx_messageInfo_RegisterReply.Merge(m, src)
  414. }
  415. func (m *RegisterReply) XXX_Size() int {
  416. return xxx_messageInfo_RegisterReply.Size(m)
  417. }
  418. func (m *RegisterReply) XXX_DiscardUnknown() {
  419. xxx_messageInfo_RegisterReply.DiscardUnknown(m)
  420. }
  421. var xxx_messageInfo_RegisterReply proto.InternalMessageInfo
  422. func (m *RegisterReply) GetId() int64 {
  423. if m != nil {
  424. return m.Id
  425. }
  426. return 0
  427. }
  428. type CompanyListRequest struct {
  429. CompanyName string `protobuf:"bytes,1,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  430. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  431. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  432. ApproveStatus int32 `protobuf:"varint,4,opt,name=approve_status,json=approveStatus,proto3" json:"approve_status"`
  433. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  434. XXX_unrecognized []byte `json:"-"`
  435. XXX_sizecache int32 `json:"-"`
  436. }
  437. func (m *CompanyListRequest) Reset() { *m = CompanyListRequest{} }
  438. func (m *CompanyListRequest) String() string { return proto.CompactTextString(m) }
  439. func (*CompanyListRequest) ProtoMessage() {}
  440. func (*CompanyListRequest) Descriptor() ([]byte, []int) {
  441. return fileDescriptor_ade57ca5b8f3903f, []int{6}
  442. }
  443. func (m *CompanyListRequest) XXX_Unmarshal(b []byte) error {
  444. return xxx_messageInfo_CompanyListRequest.Unmarshal(m, b)
  445. }
  446. func (m *CompanyListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  447. return xxx_messageInfo_CompanyListRequest.Marshal(b, m, deterministic)
  448. }
  449. func (m *CompanyListRequest) XXX_Merge(src proto.Message) {
  450. xxx_messageInfo_CompanyListRequest.Merge(m, src)
  451. }
  452. func (m *CompanyListRequest) XXX_Size() int {
  453. return xxx_messageInfo_CompanyListRequest.Size(m)
  454. }
  455. func (m *CompanyListRequest) XXX_DiscardUnknown() {
  456. xxx_messageInfo_CompanyListRequest.DiscardUnknown(m)
  457. }
  458. var xxx_messageInfo_CompanyListRequest proto.InternalMessageInfo
  459. func (m *CompanyListRequest) GetCompanyName() string {
  460. if m != nil {
  461. return m.CompanyName
  462. }
  463. return ""
  464. }
  465. func (m *CompanyListRequest) GetPage() int64 {
  466. if m != nil {
  467. return m.Page
  468. }
  469. return 0
  470. }
  471. func (m *CompanyListRequest) GetPageSize() int64 {
  472. if m != nil {
  473. return m.PageSize
  474. }
  475. return 0
  476. }
  477. func (m *CompanyListRequest) GetApproveStatus() int32 {
  478. if m != nil {
  479. return m.ApproveStatus
  480. }
  481. return 0
  482. }
  483. type CompanyItem struct {
  484. // 审核状态
  485. ApproveStatus int32 `protobuf:"varint,1,opt,name=approve_status,json=approveStatus,proto3" json:"approve_status"`
  486. // 申请人
  487. Applicant string `protobuf:"bytes,2,opt,name=applicant,proto3" json:"applicant"`
  488. // 申请人电话
  489. ApplicantPhone string `protobuf:"bytes,3,opt,name=applicant_phone,json=applicantPhone,proto3" json:"applicant_phone"`
  490. // 公司名称
  491. CompanyName string `protobuf:"bytes,4,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  492. // 公司电话
  493. CompanyPhone string `protobuf:"bytes,5,opt,name=company_phone,json=companyPhone,proto3" json:"company_phone"`
  494. // 申请人职位
  495. ApplicantDuty string `protobuf:"bytes,6,opt,name=applicant_duty,json=applicantDuty,proto3" json:"applicant_duty"`
  496. // 法人
  497. LegalPerson string `protobuf:"bytes,7,opt,name=legal_person,json=legalPerson,proto3" json:"legal_person"`
  498. // 公司地址
  499. CompanyAddr string `protobuf:"bytes,8,opt,name=company_addr,json=companyAddr,proto3" json:"company_addr"`
  500. // 社会信用码
  501. SocialCode string `protobuf:"bytes,9,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
  502. // 营业执照
  503. BusinessLicense string `protobuf:"bytes,10,opt,name=business_license,json=businessLicense,proto3" json:"business_license"`
  504. // 申请人身份
  505. ApplicantIdentification string `protobuf:"bytes,11,opt,name=applicant_identification,json=applicantIdentification,proto3" json:"applicant_identification"`
  506. // 营业执照类型
  507. LicenseType int32 `protobuf:"varint,12,opt,name=license_type,json=licenseType,proto3" json:"license_type"`
  508. // 免费小区个数
  509. FreeGardenCount int32 `protobuf:"varint,13,opt,name=free_garden_count,json=freeGardenCount,proto3" json:"free_garden_count"`
  510. // 已有小区个数
  511. GardenCount int32 `protobuf:"varint,14,opt,name=garden_count,json=gardenCount,proto3" json:"garden_count"`
  512. // 账户名
  513. Username string `protobuf:"bytes,15,opt,name=username,proto3" json:"username"`
  514. // 密码
  515. Password string `protobuf:"bytes,16,opt,name=password,proto3" json:"password"`
  516. // 申请时间
  517. CreatedAt string `protobuf:"bytes,17,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  518. // 审批时间
  519. ApprovedAt string `protobuf:"bytes,18,opt,name=approved_at,json=approvedAt,proto3" json:"approved_at"`
  520. Id int64 `protobuf:"varint,19,opt,name=id,proto3" json:"id"`
  521. // 小区有效期天
  522. Expire int32 `protobuf:"varint,20,opt,name=expire,proto3" json:"expire"`
  523. Logo string `protobuf:"bytes,21,opt,name=logo,proto3" json:"logo"`
  524. Desc string `protobuf:"bytes,22,opt,name=desc,proto3" json:"desc"`
  525. Site string `protobuf:"bytes,23,opt,name=site,proto3" json:"site"`
  526. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  527. XXX_unrecognized []byte `json:"-"`
  528. XXX_sizecache int32 `json:"-"`
  529. }
  530. func (m *CompanyItem) Reset() { *m = CompanyItem{} }
  531. func (m *CompanyItem) String() string { return proto.CompactTextString(m) }
  532. func (*CompanyItem) ProtoMessage() {}
  533. func (*CompanyItem) Descriptor() ([]byte, []int) {
  534. return fileDescriptor_ade57ca5b8f3903f, []int{7}
  535. }
  536. func (m *CompanyItem) XXX_Unmarshal(b []byte) error {
  537. return xxx_messageInfo_CompanyItem.Unmarshal(m, b)
  538. }
  539. func (m *CompanyItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  540. return xxx_messageInfo_CompanyItem.Marshal(b, m, deterministic)
  541. }
  542. func (m *CompanyItem) XXX_Merge(src proto.Message) {
  543. xxx_messageInfo_CompanyItem.Merge(m, src)
  544. }
  545. func (m *CompanyItem) XXX_Size() int {
  546. return xxx_messageInfo_CompanyItem.Size(m)
  547. }
  548. func (m *CompanyItem) XXX_DiscardUnknown() {
  549. xxx_messageInfo_CompanyItem.DiscardUnknown(m)
  550. }
  551. var xxx_messageInfo_CompanyItem proto.InternalMessageInfo
  552. func (m *CompanyItem) GetApproveStatus() int32 {
  553. if m != nil {
  554. return m.ApproveStatus
  555. }
  556. return 0
  557. }
  558. func (m *CompanyItem) GetApplicant() string {
  559. if m != nil {
  560. return m.Applicant
  561. }
  562. return ""
  563. }
  564. func (m *CompanyItem) GetApplicantPhone() string {
  565. if m != nil {
  566. return m.ApplicantPhone
  567. }
  568. return ""
  569. }
  570. func (m *CompanyItem) GetCompanyName() string {
  571. if m != nil {
  572. return m.CompanyName
  573. }
  574. return ""
  575. }
  576. func (m *CompanyItem) GetCompanyPhone() string {
  577. if m != nil {
  578. return m.CompanyPhone
  579. }
  580. return ""
  581. }
  582. func (m *CompanyItem) GetApplicantDuty() string {
  583. if m != nil {
  584. return m.ApplicantDuty
  585. }
  586. return ""
  587. }
  588. func (m *CompanyItem) GetLegalPerson() string {
  589. if m != nil {
  590. return m.LegalPerson
  591. }
  592. return ""
  593. }
  594. func (m *CompanyItem) GetCompanyAddr() string {
  595. if m != nil {
  596. return m.CompanyAddr
  597. }
  598. return ""
  599. }
  600. func (m *CompanyItem) GetSocialCode() string {
  601. if m != nil {
  602. return m.SocialCode
  603. }
  604. return ""
  605. }
  606. func (m *CompanyItem) GetBusinessLicense() string {
  607. if m != nil {
  608. return m.BusinessLicense
  609. }
  610. return ""
  611. }
  612. func (m *CompanyItem) GetApplicantIdentification() string {
  613. if m != nil {
  614. return m.ApplicantIdentification
  615. }
  616. return ""
  617. }
  618. func (m *CompanyItem) GetLicenseType() int32 {
  619. if m != nil {
  620. return m.LicenseType
  621. }
  622. return 0
  623. }
  624. func (m *CompanyItem) GetFreeGardenCount() int32 {
  625. if m != nil {
  626. return m.FreeGardenCount
  627. }
  628. return 0
  629. }
  630. func (m *CompanyItem) GetGardenCount() int32 {
  631. if m != nil {
  632. return m.GardenCount
  633. }
  634. return 0
  635. }
  636. func (m *CompanyItem) GetUsername() string {
  637. if m != nil {
  638. return m.Username
  639. }
  640. return ""
  641. }
  642. func (m *CompanyItem) GetPassword() string {
  643. if m != nil {
  644. return m.Password
  645. }
  646. return ""
  647. }
  648. func (m *CompanyItem) GetCreatedAt() string {
  649. if m != nil {
  650. return m.CreatedAt
  651. }
  652. return ""
  653. }
  654. func (m *CompanyItem) GetApprovedAt() string {
  655. if m != nil {
  656. return m.ApprovedAt
  657. }
  658. return ""
  659. }
  660. func (m *CompanyItem) GetId() int64 {
  661. if m != nil {
  662. return m.Id
  663. }
  664. return 0
  665. }
  666. func (m *CompanyItem) GetExpire() int32 {
  667. if m != nil {
  668. return m.Expire
  669. }
  670. return 0
  671. }
  672. func (m *CompanyItem) GetLogo() string {
  673. if m != nil {
  674. return m.Logo
  675. }
  676. return ""
  677. }
  678. func (m *CompanyItem) GetDesc() string {
  679. if m != nil {
  680. return m.Desc
  681. }
  682. return ""
  683. }
  684. func (m *CompanyItem) GetSite() string {
  685. if m != nil {
  686. return m.Site
  687. }
  688. return ""
  689. }
  690. type CompanyListReply struct {
  691. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  692. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  693. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  694. List []*CompanyItem `protobuf:"bytes,4,rep,name=list,proto3" json:"list"`
  695. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  696. XXX_unrecognized []byte `json:"-"`
  697. XXX_sizecache int32 `json:"-"`
  698. }
  699. func (m *CompanyListReply) Reset() { *m = CompanyListReply{} }
  700. func (m *CompanyListReply) String() string { return proto.CompactTextString(m) }
  701. func (*CompanyListReply) ProtoMessage() {}
  702. func (*CompanyListReply) Descriptor() ([]byte, []int) {
  703. return fileDescriptor_ade57ca5b8f3903f, []int{8}
  704. }
  705. func (m *CompanyListReply) XXX_Unmarshal(b []byte) error {
  706. return xxx_messageInfo_CompanyListReply.Unmarshal(m, b)
  707. }
  708. func (m *CompanyListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  709. return xxx_messageInfo_CompanyListReply.Marshal(b, m, deterministic)
  710. }
  711. func (m *CompanyListReply) XXX_Merge(src proto.Message) {
  712. xxx_messageInfo_CompanyListReply.Merge(m, src)
  713. }
  714. func (m *CompanyListReply) XXX_Size() int {
  715. return xxx_messageInfo_CompanyListReply.Size(m)
  716. }
  717. func (m *CompanyListReply) XXX_DiscardUnknown() {
  718. xxx_messageInfo_CompanyListReply.DiscardUnknown(m)
  719. }
  720. var xxx_messageInfo_CompanyListReply proto.InternalMessageInfo
  721. func (m *CompanyListReply) GetTotal() int64 {
  722. if m != nil {
  723. return m.Total
  724. }
  725. return 0
  726. }
  727. func (m *CompanyListReply) GetPage() int64 {
  728. if m != nil {
  729. return m.Page
  730. }
  731. return 0
  732. }
  733. func (m *CompanyListReply) GetPageSize() int64 {
  734. if m != nil {
  735. return m.PageSize
  736. }
  737. return 0
  738. }
  739. func (m *CompanyListReply) GetList() []*CompanyItem {
  740. if m != nil {
  741. return m.List
  742. }
  743. return nil
  744. }
  745. type CompanyInfoRequest struct {
  746. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  747. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  748. XXX_unrecognized []byte `json:"-"`
  749. XXX_sizecache int32 `json:"-"`
  750. }
  751. func (m *CompanyInfoRequest) Reset() { *m = CompanyInfoRequest{} }
  752. func (m *CompanyInfoRequest) String() string { return proto.CompactTextString(m) }
  753. func (*CompanyInfoRequest) ProtoMessage() {}
  754. func (*CompanyInfoRequest) Descriptor() ([]byte, []int) {
  755. return fileDescriptor_ade57ca5b8f3903f, []int{9}
  756. }
  757. func (m *CompanyInfoRequest) XXX_Unmarshal(b []byte) error {
  758. return xxx_messageInfo_CompanyInfoRequest.Unmarshal(m, b)
  759. }
  760. func (m *CompanyInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  761. return xxx_messageInfo_CompanyInfoRequest.Marshal(b, m, deterministic)
  762. }
  763. func (m *CompanyInfoRequest) XXX_Merge(src proto.Message) {
  764. xxx_messageInfo_CompanyInfoRequest.Merge(m, src)
  765. }
  766. func (m *CompanyInfoRequest) XXX_Size() int {
  767. return xxx_messageInfo_CompanyInfoRequest.Size(m)
  768. }
  769. func (m *CompanyInfoRequest) XXX_DiscardUnknown() {
  770. xxx_messageInfo_CompanyInfoRequest.DiscardUnknown(m)
  771. }
  772. var xxx_messageInfo_CompanyInfoRequest proto.InternalMessageInfo
  773. func (m *CompanyInfoRequest) GetId() int64 {
  774. if m != nil {
  775. return m.Id
  776. }
  777. return 0
  778. }
  779. type CompanyInfoReply struct {
  780. // 审核状态
  781. ApproveStatus int32 `protobuf:"varint,1,opt,name=approve_status,json=approveStatus,proto3" json:"approve_status"`
  782. // 申请人
  783. Applicant string `protobuf:"bytes,2,opt,name=applicant,proto3" json:"applicant"`
  784. // 申请人电话
  785. ApplicantPhone string `protobuf:"bytes,3,opt,name=applicant_phone,json=applicantPhone,proto3" json:"applicant_phone"`
  786. // 公司名称
  787. CompanyName string `protobuf:"bytes,4,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  788. // 公司电话
  789. CompanyPhone string `protobuf:"bytes,5,opt,name=company_phone,json=companyPhone,proto3" json:"company_phone"`
  790. // 申请人职位
  791. ApplicantDuty string `protobuf:"bytes,6,opt,name=applicant_duty,json=applicantDuty,proto3" json:"applicant_duty"`
  792. // 法人
  793. LegalPerson string `protobuf:"bytes,7,opt,name=legal_person,json=legalPerson,proto3" json:"legal_person"`
  794. // 公司地址
  795. CompanyAddr string `protobuf:"bytes,8,opt,name=company_addr,json=companyAddr,proto3" json:"company_addr"`
  796. // 社会信用码
  797. SocialCode string `protobuf:"bytes,9,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
  798. // 营业执照
  799. BusinessLicense string `protobuf:"bytes,10,opt,name=business_license,json=businessLicense,proto3" json:"business_license"`
  800. // 申请人身份
  801. ApplicantIdentification string `protobuf:"bytes,11,opt,name=applicant_identification,json=applicantIdentification,proto3" json:"applicant_identification"`
  802. // 营业执照类型 1 多证合一营业执照 2 普通营业执照
  803. LicenseType int32 `protobuf:"varint,12,opt,name=license_type,json=licenseType,proto3" json:"license_type"`
  804. // 免费小区个数
  805. FreeGardenCount int32 `protobuf:"varint,13,opt,name=free_garden_count,json=freeGardenCount,proto3" json:"free_garden_count"`
  806. // 已有小区个数
  807. GardenCount int32 `protobuf:"varint,14,opt,name=garden_count,json=gardenCount,proto3" json:"garden_count"`
  808. // 账户名
  809. Username string `protobuf:"bytes,15,opt,name=username,proto3" json:"username"`
  810. // 密码
  811. Password string `protobuf:"bytes,16,opt,name=password,proto3" json:"password"`
  812. // 申请时间
  813. CreatedAt string `protobuf:"bytes,17,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  814. // 审批时间
  815. ApprovedAt string `protobuf:"bytes,18,opt,name=approved_at,json=approvedAt,proto3" json:"approved_at"`
  816. // 小区有效天数
  817. Expire int32 `protobuf:"varint,19,opt,name=expire,proto3" json:"expire"`
  818. // 公司logo
  819. Logo string `protobuf:"bytes,20,opt,name=logo,proto3" json:"logo"`
  820. // 简介
  821. Desc string `protobuf:"bytes,21,opt,name=desc,proto3" json:"desc"`
  822. // 网址
  823. Site string `protobuf:"bytes,22,opt,name=site,proto3" json:"site"`
  824. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  825. XXX_unrecognized []byte `json:"-"`
  826. XXX_sizecache int32 `json:"-"`
  827. }
  828. func (m *CompanyInfoReply) Reset() { *m = CompanyInfoReply{} }
  829. func (m *CompanyInfoReply) String() string { return proto.CompactTextString(m) }
  830. func (*CompanyInfoReply) ProtoMessage() {}
  831. func (*CompanyInfoReply) Descriptor() ([]byte, []int) {
  832. return fileDescriptor_ade57ca5b8f3903f, []int{10}
  833. }
  834. func (m *CompanyInfoReply) XXX_Unmarshal(b []byte) error {
  835. return xxx_messageInfo_CompanyInfoReply.Unmarshal(m, b)
  836. }
  837. func (m *CompanyInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  838. return xxx_messageInfo_CompanyInfoReply.Marshal(b, m, deterministic)
  839. }
  840. func (m *CompanyInfoReply) XXX_Merge(src proto.Message) {
  841. xxx_messageInfo_CompanyInfoReply.Merge(m, src)
  842. }
  843. func (m *CompanyInfoReply) XXX_Size() int {
  844. return xxx_messageInfo_CompanyInfoReply.Size(m)
  845. }
  846. func (m *CompanyInfoReply) XXX_DiscardUnknown() {
  847. xxx_messageInfo_CompanyInfoReply.DiscardUnknown(m)
  848. }
  849. var xxx_messageInfo_CompanyInfoReply proto.InternalMessageInfo
  850. func (m *CompanyInfoReply) GetApproveStatus() int32 {
  851. if m != nil {
  852. return m.ApproveStatus
  853. }
  854. return 0
  855. }
  856. func (m *CompanyInfoReply) GetApplicant() string {
  857. if m != nil {
  858. return m.Applicant
  859. }
  860. return ""
  861. }
  862. func (m *CompanyInfoReply) GetApplicantPhone() string {
  863. if m != nil {
  864. return m.ApplicantPhone
  865. }
  866. return ""
  867. }
  868. func (m *CompanyInfoReply) GetCompanyName() string {
  869. if m != nil {
  870. return m.CompanyName
  871. }
  872. return ""
  873. }
  874. func (m *CompanyInfoReply) GetCompanyPhone() string {
  875. if m != nil {
  876. return m.CompanyPhone
  877. }
  878. return ""
  879. }
  880. func (m *CompanyInfoReply) GetApplicantDuty() string {
  881. if m != nil {
  882. return m.ApplicantDuty
  883. }
  884. return ""
  885. }
  886. func (m *CompanyInfoReply) GetLegalPerson() string {
  887. if m != nil {
  888. return m.LegalPerson
  889. }
  890. return ""
  891. }
  892. func (m *CompanyInfoReply) GetCompanyAddr() string {
  893. if m != nil {
  894. return m.CompanyAddr
  895. }
  896. return ""
  897. }
  898. func (m *CompanyInfoReply) GetSocialCode() string {
  899. if m != nil {
  900. return m.SocialCode
  901. }
  902. return ""
  903. }
  904. func (m *CompanyInfoReply) GetBusinessLicense() string {
  905. if m != nil {
  906. return m.BusinessLicense
  907. }
  908. return ""
  909. }
  910. func (m *CompanyInfoReply) GetApplicantIdentification() string {
  911. if m != nil {
  912. return m.ApplicantIdentification
  913. }
  914. return ""
  915. }
  916. func (m *CompanyInfoReply) GetLicenseType() int32 {
  917. if m != nil {
  918. return m.LicenseType
  919. }
  920. return 0
  921. }
  922. func (m *CompanyInfoReply) GetFreeGardenCount() int32 {
  923. if m != nil {
  924. return m.FreeGardenCount
  925. }
  926. return 0
  927. }
  928. func (m *CompanyInfoReply) GetGardenCount() int32 {
  929. if m != nil {
  930. return m.GardenCount
  931. }
  932. return 0
  933. }
  934. func (m *CompanyInfoReply) GetUsername() string {
  935. if m != nil {
  936. return m.Username
  937. }
  938. return ""
  939. }
  940. func (m *CompanyInfoReply) GetPassword() string {
  941. if m != nil {
  942. return m.Password
  943. }
  944. return ""
  945. }
  946. func (m *CompanyInfoReply) GetCreatedAt() string {
  947. if m != nil {
  948. return m.CreatedAt
  949. }
  950. return ""
  951. }
  952. func (m *CompanyInfoReply) GetApprovedAt() string {
  953. if m != nil {
  954. return m.ApprovedAt
  955. }
  956. return ""
  957. }
  958. func (m *CompanyInfoReply) GetExpire() int32 {
  959. if m != nil {
  960. return m.Expire
  961. }
  962. return 0
  963. }
  964. func (m *CompanyInfoReply) GetLogo() string {
  965. if m != nil {
  966. return m.Logo
  967. }
  968. return ""
  969. }
  970. func (m *CompanyInfoReply) GetDesc() string {
  971. if m != nil {
  972. return m.Desc
  973. }
  974. return ""
  975. }
  976. func (m *CompanyInfoReply) GetSite() string {
  977. if m != nil {
  978. return m.Site
  979. }
  980. return ""
  981. }
  982. type CompanyUpdateRequest struct {
  983. //
  984. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  985. // 公司名称
  986. CompanyName string `protobuf:"bytes,2,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  987. // 公司电话
  988. CompanyPhone string `protobuf:"bytes,3,opt,name=company_phone,json=companyPhone,proto3" json:"company_phone"`
  989. // 公司地址
  990. CompanyAddr string `protobuf:"bytes,4,opt,name=company_addr,json=companyAddr,proto3" json:"company_addr"`
  991. // 社会信用码
  992. SocialCode string `protobuf:"bytes,5,opt,name=social_code,json=socialCode,proto3" json:"social_code"`
  993. // 营业执照
  994. BusinessLicense string `protobuf:"bytes,6,opt,name=business_license,json=businessLicense,proto3" json:"business_license"`
  995. // 营业执照类型
  996. LicenseType int32 `protobuf:"varint,7,opt,name=license_type,json=licenseType,proto3" json:"license_type"`
  997. // 公司logo
  998. Logo string `protobuf:"bytes,8,opt,name=logo,proto3" json:"logo"`
  999. // 简介
  1000. Desc string `protobuf:"bytes,9,opt,name=desc,proto3" json:"desc"`
  1001. // 网址
  1002. Site string `protobuf:"bytes,10,opt,name=site,proto3" json:"site"`
  1003. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1004. XXX_unrecognized []byte `json:"-"`
  1005. XXX_sizecache int32 `json:"-"`
  1006. }
  1007. func (m *CompanyUpdateRequest) Reset() { *m = CompanyUpdateRequest{} }
  1008. func (m *CompanyUpdateRequest) String() string { return proto.CompactTextString(m) }
  1009. func (*CompanyUpdateRequest) ProtoMessage() {}
  1010. func (*CompanyUpdateRequest) Descriptor() ([]byte, []int) {
  1011. return fileDescriptor_ade57ca5b8f3903f, []int{11}
  1012. }
  1013. func (m *CompanyUpdateRequest) XXX_Unmarshal(b []byte) error {
  1014. return xxx_messageInfo_CompanyUpdateRequest.Unmarshal(m, b)
  1015. }
  1016. func (m *CompanyUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1017. return xxx_messageInfo_CompanyUpdateRequest.Marshal(b, m, deterministic)
  1018. }
  1019. func (m *CompanyUpdateRequest) XXX_Merge(src proto.Message) {
  1020. xxx_messageInfo_CompanyUpdateRequest.Merge(m, src)
  1021. }
  1022. func (m *CompanyUpdateRequest) XXX_Size() int {
  1023. return xxx_messageInfo_CompanyUpdateRequest.Size(m)
  1024. }
  1025. func (m *CompanyUpdateRequest) XXX_DiscardUnknown() {
  1026. xxx_messageInfo_CompanyUpdateRequest.DiscardUnknown(m)
  1027. }
  1028. var xxx_messageInfo_CompanyUpdateRequest proto.InternalMessageInfo
  1029. func (m *CompanyUpdateRequest) GetCid() int64 {
  1030. if m != nil {
  1031. return m.Cid
  1032. }
  1033. return 0
  1034. }
  1035. func (m *CompanyUpdateRequest) GetCompanyName() string {
  1036. if m != nil {
  1037. return m.CompanyName
  1038. }
  1039. return ""
  1040. }
  1041. func (m *CompanyUpdateRequest) GetCompanyPhone() string {
  1042. if m != nil {
  1043. return m.CompanyPhone
  1044. }
  1045. return ""
  1046. }
  1047. func (m *CompanyUpdateRequest) GetCompanyAddr() string {
  1048. if m != nil {
  1049. return m.CompanyAddr
  1050. }
  1051. return ""
  1052. }
  1053. func (m *CompanyUpdateRequest) GetSocialCode() string {
  1054. if m != nil {
  1055. return m.SocialCode
  1056. }
  1057. return ""
  1058. }
  1059. func (m *CompanyUpdateRequest) GetBusinessLicense() string {
  1060. if m != nil {
  1061. return m.BusinessLicense
  1062. }
  1063. return ""
  1064. }
  1065. func (m *CompanyUpdateRequest) GetLicenseType() int32 {
  1066. if m != nil {
  1067. return m.LicenseType
  1068. }
  1069. return 0
  1070. }
  1071. func (m *CompanyUpdateRequest) GetLogo() string {
  1072. if m != nil {
  1073. return m.Logo
  1074. }
  1075. return ""
  1076. }
  1077. func (m *CompanyUpdateRequest) GetDesc() string {
  1078. if m != nil {
  1079. return m.Desc
  1080. }
  1081. return ""
  1082. }
  1083. func (m *CompanyUpdateRequest) GetSite() string {
  1084. if m != nil {
  1085. return m.Site
  1086. }
  1087. return ""
  1088. }
  1089. type CompanyUpdateReply struct {
  1090. Origin *CompanyUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  1091. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1092. XXX_unrecognized []byte `json:"-"`
  1093. XXX_sizecache int32 `json:"-"`
  1094. }
  1095. func (m *CompanyUpdateReply) Reset() { *m = CompanyUpdateReply{} }
  1096. func (m *CompanyUpdateReply) String() string { return proto.CompactTextString(m) }
  1097. func (*CompanyUpdateReply) ProtoMessage() {}
  1098. func (*CompanyUpdateReply) Descriptor() ([]byte, []int) {
  1099. return fileDescriptor_ade57ca5b8f3903f, []int{12}
  1100. }
  1101. func (m *CompanyUpdateReply) XXX_Unmarshal(b []byte) error {
  1102. return xxx_messageInfo_CompanyUpdateReply.Unmarshal(m, b)
  1103. }
  1104. func (m *CompanyUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1105. return xxx_messageInfo_CompanyUpdateReply.Marshal(b, m, deterministic)
  1106. }
  1107. func (m *CompanyUpdateReply) XXX_Merge(src proto.Message) {
  1108. xxx_messageInfo_CompanyUpdateReply.Merge(m, src)
  1109. }
  1110. func (m *CompanyUpdateReply) XXX_Size() int {
  1111. return xxx_messageInfo_CompanyUpdateReply.Size(m)
  1112. }
  1113. func (m *CompanyUpdateReply) XXX_DiscardUnknown() {
  1114. xxx_messageInfo_CompanyUpdateReply.DiscardUnknown(m)
  1115. }
  1116. var xxx_messageInfo_CompanyUpdateReply proto.InternalMessageInfo
  1117. func (m *CompanyUpdateReply) GetOrigin() *CompanyUpdateRequest {
  1118. if m != nil {
  1119. return m.Origin
  1120. }
  1121. return nil
  1122. }
  1123. type CompanyApproveRequest struct {
  1124. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1125. Status bool `protobuf:"varint,2,opt,name=status,proto3" json:"status"`
  1126. Feedback string `protobuf:"bytes,3,opt,name=feedback,proto3" json:"feedback"`
  1127. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1128. XXX_unrecognized []byte `json:"-"`
  1129. XXX_sizecache int32 `json:"-"`
  1130. }
  1131. func (m *CompanyApproveRequest) Reset() { *m = CompanyApproveRequest{} }
  1132. func (m *CompanyApproveRequest) String() string { return proto.CompactTextString(m) }
  1133. func (*CompanyApproveRequest) ProtoMessage() {}
  1134. func (*CompanyApproveRequest) Descriptor() ([]byte, []int) {
  1135. return fileDescriptor_ade57ca5b8f3903f, []int{13}
  1136. }
  1137. func (m *CompanyApproveRequest) XXX_Unmarshal(b []byte) error {
  1138. return xxx_messageInfo_CompanyApproveRequest.Unmarshal(m, b)
  1139. }
  1140. func (m *CompanyApproveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1141. return xxx_messageInfo_CompanyApproveRequest.Marshal(b, m, deterministic)
  1142. }
  1143. func (m *CompanyApproveRequest) XXX_Merge(src proto.Message) {
  1144. xxx_messageInfo_CompanyApproveRequest.Merge(m, src)
  1145. }
  1146. func (m *CompanyApproveRequest) XXX_Size() int {
  1147. return xxx_messageInfo_CompanyApproveRequest.Size(m)
  1148. }
  1149. func (m *CompanyApproveRequest) XXX_DiscardUnknown() {
  1150. xxx_messageInfo_CompanyApproveRequest.DiscardUnknown(m)
  1151. }
  1152. var xxx_messageInfo_CompanyApproveRequest proto.InternalMessageInfo
  1153. func (m *CompanyApproveRequest) GetId() int64 {
  1154. if m != nil {
  1155. return m.Id
  1156. }
  1157. return 0
  1158. }
  1159. func (m *CompanyApproveRequest) GetStatus() bool {
  1160. if m != nil {
  1161. return m.Status
  1162. }
  1163. return false
  1164. }
  1165. func (m *CompanyApproveRequest) GetFeedback() string {
  1166. if m != nil {
  1167. return m.Feedback
  1168. }
  1169. return ""
  1170. }
  1171. type CompanyApproveReply struct {
  1172. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1173. XXX_unrecognized []byte `json:"-"`
  1174. XXX_sizecache int32 `json:"-"`
  1175. }
  1176. func (m *CompanyApproveReply) Reset() { *m = CompanyApproveReply{} }
  1177. func (m *CompanyApproveReply) String() string { return proto.CompactTextString(m) }
  1178. func (*CompanyApproveReply) ProtoMessage() {}
  1179. func (*CompanyApproveReply) Descriptor() ([]byte, []int) {
  1180. return fileDescriptor_ade57ca5b8f3903f, []int{14}
  1181. }
  1182. func (m *CompanyApproveReply) XXX_Unmarshal(b []byte) error {
  1183. return xxx_messageInfo_CompanyApproveReply.Unmarshal(m, b)
  1184. }
  1185. func (m *CompanyApproveReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1186. return xxx_messageInfo_CompanyApproveReply.Marshal(b, m, deterministic)
  1187. }
  1188. func (m *CompanyApproveReply) XXX_Merge(src proto.Message) {
  1189. xxx_messageInfo_CompanyApproveReply.Merge(m, src)
  1190. }
  1191. func (m *CompanyApproveReply) XXX_Size() int {
  1192. return xxx_messageInfo_CompanyApproveReply.Size(m)
  1193. }
  1194. func (m *CompanyApproveReply) XXX_DiscardUnknown() {
  1195. xxx_messageInfo_CompanyApproveReply.DiscardUnknown(m)
  1196. }
  1197. var xxx_messageInfo_CompanyApproveReply proto.InternalMessageInfo
  1198. type CompanyChangeFreeGardenRequest struct {
  1199. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1200. Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count"`
  1201. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1202. XXX_unrecognized []byte `json:"-"`
  1203. XXX_sizecache int32 `json:"-"`
  1204. }
  1205. func (m *CompanyChangeFreeGardenRequest) Reset() { *m = CompanyChangeFreeGardenRequest{} }
  1206. func (m *CompanyChangeFreeGardenRequest) String() string { return proto.CompactTextString(m) }
  1207. func (*CompanyChangeFreeGardenRequest) ProtoMessage() {}
  1208. func (*CompanyChangeFreeGardenRequest) Descriptor() ([]byte, []int) {
  1209. return fileDescriptor_ade57ca5b8f3903f, []int{15}
  1210. }
  1211. func (m *CompanyChangeFreeGardenRequest) XXX_Unmarshal(b []byte) error {
  1212. return xxx_messageInfo_CompanyChangeFreeGardenRequest.Unmarshal(m, b)
  1213. }
  1214. func (m *CompanyChangeFreeGardenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1215. return xxx_messageInfo_CompanyChangeFreeGardenRequest.Marshal(b, m, deterministic)
  1216. }
  1217. func (m *CompanyChangeFreeGardenRequest) XXX_Merge(src proto.Message) {
  1218. xxx_messageInfo_CompanyChangeFreeGardenRequest.Merge(m, src)
  1219. }
  1220. func (m *CompanyChangeFreeGardenRequest) XXX_Size() int {
  1221. return xxx_messageInfo_CompanyChangeFreeGardenRequest.Size(m)
  1222. }
  1223. func (m *CompanyChangeFreeGardenRequest) XXX_DiscardUnknown() {
  1224. xxx_messageInfo_CompanyChangeFreeGardenRequest.DiscardUnknown(m)
  1225. }
  1226. var xxx_messageInfo_CompanyChangeFreeGardenRequest proto.InternalMessageInfo
  1227. func (m *CompanyChangeFreeGardenRequest) GetId() int64 {
  1228. if m != nil {
  1229. return m.Id
  1230. }
  1231. return 0
  1232. }
  1233. func (m *CompanyChangeFreeGardenRequest) GetCount() int32 {
  1234. if m != nil {
  1235. return m.Count
  1236. }
  1237. return 0
  1238. }
  1239. type CompanyChangeFreeGardenReply struct {
  1240. Origin *CompanyChangeFreeGardenRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  1241. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1242. XXX_unrecognized []byte `json:"-"`
  1243. XXX_sizecache int32 `json:"-"`
  1244. }
  1245. func (m *CompanyChangeFreeGardenReply) Reset() { *m = CompanyChangeFreeGardenReply{} }
  1246. func (m *CompanyChangeFreeGardenReply) String() string { return proto.CompactTextString(m) }
  1247. func (*CompanyChangeFreeGardenReply) ProtoMessage() {}
  1248. func (*CompanyChangeFreeGardenReply) Descriptor() ([]byte, []int) {
  1249. return fileDescriptor_ade57ca5b8f3903f, []int{16}
  1250. }
  1251. func (m *CompanyChangeFreeGardenReply) XXX_Unmarshal(b []byte) error {
  1252. return xxx_messageInfo_CompanyChangeFreeGardenReply.Unmarshal(m, b)
  1253. }
  1254. func (m *CompanyChangeFreeGardenReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1255. return xxx_messageInfo_CompanyChangeFreeGardenReply.Marshal(b, m, deterministic)
  1256. }
  1257. func (m *CompanyChangeFreeGardenReply) XXX_Merge(src proto.Message) {
  1258. xxx_messageInfo_CompanyChangeFreeGardenReply.Merge(m, src)
  1259. }
  1260. func (m *CompanyChangeFreeGardenReply) XXX_Size() int {
  1261. return xxx_messageInfo_CompanyChangeFreeGardenReply.Size(m)
  1262. }
  1263. func (m *CompanyChangeFreeGardenReply) XXX_DiscardUnknown() {
  1264. xxx_messageInfo_CompanyChangeFreeGardenReply.DiscardUnknown(m)
  1265. }
  1266. var xxx_messageInfo_CompanyChangeFreeGardenReply proto.InternalMessageInfo
  1267. func (m *CompanyChangeFreeGardenReply) GetOrigin() *CompanyChangeFreeGardenRequest {
  1268. if m != nil {
  1269. return m.Origin
  1270. }
  1271. return nil
  1272. }
  1273. type CompanyAddGardenRequest struct {
  1274. // 物业公司id
  1275. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  1276. // 省
  1277. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"`
  1278. ProvinceCode string `protobuf:"bytes,3,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
  1279. // 市
  1280. City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city"`
  1281. CityCode string `protobuf:"bytes,5,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
  1282. // 区
  1283. Area string `protobuf:"bytes,6,opt,name=area,proto3" json:"area"`
  1284. AreaCode string `protobuf:"bytes,7,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
  1285. // 街道
  1286. Street string `protobuf:"bytes,8,opt,name=street,proto3" json:"street"`
  1287. StreetCode string `protobuf:"bytes,9,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
  1288. // 社区
  1289. Committee string `protobuf:"bytes,10,opt,name=committee,proto3" json:"committee"`
  1290. CommitteeCode string `protobuf:"bytes,11,opt,name=committee_code,json=committeeCode,proto3" json:"committee_code"`
  1291. // 小区名字
  1292. GardenName string `protobuf:"bytes,12,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  1293. // 小区地址
  1294. GardenAddr string `protobuf:"bytes,13,opt,name=garden_addr,json=gardenAddr,proto3" json:"garden_addr"`
  1295. // 物业联系人
  1296. PropertyPerson string `protobuf:"bytes,14,opt,name=property_person,json=propertyPerson,proto3" json:"property_person"`
  1297. // 物业联系人手机号
  1298. PropertyPhone string `protobuf:"bytes,15,opt,name=property_phone,json=propertyPhone,proto3" json:"property_phone"`
  1299. GardenPic string `protobuf:"bytes,16,opt,name=garden_pic,json=gardenPic,proto3" json:"garden_pic"`
  1300. GardenDesc string `protobuf:"bytes,17,opt,name=garden_desc,json=gardenDesc,proto3" json:"garden_desc"`
  1301. // 经度
  1302. Lnt float64 `protobuf:"fixed64,18,opt,name=lnt,proto3" json:"lnt"`
  1303. // 纬度
  1304. Lat float64 `protobuf:"fixed64,19,opt,name=lat,proto3" json:"lat"`
  1305. Appendix []string `protobuf:"bytes,20,rep,name=appendix,proto3" json:"appendix"`
  1306. OrderId int64 `protobuf:"varint,21,opt,name=order_id,json=orderId,proto3" json:"order_id"`
  1307. // 1塔楼 2 板楼 3 塔板结合 4 其他
  1308. BuildingType int32 `protobuf:"varint,31,opt,name=building_type,json=buildingType,proto3" json:"building_type"`
  1309. // 建成年份开始时间戳
  1310. BuildingStart int64 `protobuf:"varint,32,opt,name=building_start,json=buildingStart,proto3" json:"building_start"`
  1311. // 建成年份结束时间戳
  1312. BuildingEnd int64 `protobuf:"varint,33,opt,name=building_end,json=buildingEnd,proto3" json:"building_end"`
  1313. // 绿化率
  1314. GreenPercent float64 `protobuf:"fixed64,34,opt,name=green_percent,json=greenPercent,proto3" json:"green_percent"`
  1315. // 容积率
  1316. AreaPercent float64 `protobuf:"fixed64,35,opt,name=area_percent,json=areaPercent,proto3" json:"area_percent"`
  1317. // 车位配比
  1318. SpaceInfo string `protobuf:"bytes,36,opt,name=space_info,json=spaceInfo,proto3" json:"space_info"`
  1319. // 占地面积
  1320. CoveredArea float64 `protobuf:"fixed64,37,opt,name=covered_area,json=coveredArea,proto3" json:"covered_area"`
  1321. // 建筑面积
  1322. BuildingArea float64 `protobuf:"fixed64,38,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
  1323. // 小区图片
  1324. GardenPics []string `protobuf:"bytes,39,rep,name=garden_pics,json=gardenPics,proto3" json:"garden_pics"`
  1325. // 开发企业
  1326. BuildingCompany string `protobuf:"bytes,40,opt,name=building_company,json=buildingCompany,proto3" json:"building_company"`
  1327. // 总户数
  1328. HouseTotal int64 `protobuf:"varint,41,opt,name=house_total,json=houseTotal,proto3" json:"house_total"`
  1329. // 固定车位数
  1330. SpaceTotal int64 `protobuf:"varint,42,opt,name=space_total,json=spaceTotal,proto3" json:"space_total"`
  1331. // 物业费开始,单位分
  1332. PropertyFeeStart int64 `protobuf:"varint,43,opt,name=property_fee_start,json=propertyFeeStart,proto3" json:"property_fee_start"`
  1333. // 物业费结束, 单位分
  1334. PropertyFeeEnd int64 `protobuf:"varint,44,opt,name=property_fee_end,json=propertyFeeEnd,proto3" json:"property_fee_end"`
  1335. // 水费类型多选 1 民用 2 商用
  1336. WaterType []int32 `protobuf:"varint,45,rep,packed,name=water_type,json=waterType,proto3" json:"water_type"`
  1337. // 电费类型多选 1 民用 2 商用
  1338. ElectricType []int32 `protobuf:"varint,46,rep,packed,name=electric_type,json=electricType,proto3" json:"electric_type"`
  1339. // 燃气费开始,单位分
  1340. GasFeeStart int64 `protobuf:"varint,47,opt,name=gas_fee_start,json=gasFeeStart,proto3" json:"gas_fee_start"`
  1341. // 燃气费开始,单位分
  1342. GasFeeEnd int64 `protobuf:"varint,48,opt,name=gas_fee_end,json=gasFeeEnd,proto3" json:"gas_fee_end"`
  1343. AvgPrice int64 `protobuf:"varint,49,opt,name=avg_price,json=avgPrice,proto3" json:"avg_price"`
  1344. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1345. XXX_unrecognized []byte `json:"-"`
  1346. XXX_sizecache int32 `json:"-"`
  1347. }
  1348. func (m *CompanyAddGardenRequest) Reset() { *m = CompanyAddGardenRequest{} }
  1349. func (m *CompanyAddGardenRequest) String() string { return proto.CompactTextString(m) }
  1350. func (*CompanyAddGardenRequest) ProtoMessage() {}
  1351. func (*CompanyAddGardenRequest) Descriptor() ([]byte, []int) {
  1352. return fileDescriptor_ade57ca5b8f3903f, []int{17}
  1353. }
  1354. func (m *CompanyAddGardenRequest) XXX_Unmarshal(b []byte) error {
  1355. return xxx_messageInfo_CompanyAddGardenRequest.Unmarshal(m, b)
  1356. }
  1357. func (m *CompanyAddGardenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1358. return xxx_messageInfo_CompanyAddGardenRequest.Marshal(b, m, deterministic)
  1359. }
  1360. func (m *CompanyAddGardenRequest) XXX_Merge(src proto.Message) {
  1361. xxx_messageInfo_CompanyAddGardenRequest.Merge(m, src)
  1362. }
  1363. func (m *CompanyAddGardenRequest) XXX_Size() int {
  1364. return xxx_messageInfo_CompanyAddGardenRequest.Size(m)
  1365. }
  1366. func (m *CompanyAddGardenRequest) XXX_DiscardUnknown() {
  1367. xxx_messageInfo_CompanyAddGardenRequest.DiscardUnknown(m)
  1368. }
  1369. var xxx_messageInfo_CompanyAddGardenRequest proto.InternalMessageInfo
  1370. func (m *CompanyAddGardenRequest) GetCid() int64 {
  1371. if m != nil {
  1372. return m.Cid
  1373. }
  1374. return 0
  1375. }
  1376. func (m *CompanyAddGardenRequest) GetProvince() string {
  1377. if m != nil {
  1378. return m.Province
  1379. }
  1380. return ""
  1381. }
  1382. func (m *CompanyAddGardenRequest) GetProvinceCode() string {
  1383. if m != nil {
  1384. return m.ProvinceCode
  1385. }
  1386. return ""
  1387. }
  1388. func (m *CompanyAddGardenRequest) GetCity() string {
  1389. if m != nil {
  1390. return m.City
  1391. }
  1392. return ""
  1393. }
  1394. func (m *CompanyAddGardenRequest) GetCityCode() string {
  1395. if m != nil {
  1396. return m.CityCode
  1397. }
  1398. return ""
  1399. }
  1400. func (m *CompanyAddGardenRequest) GetArea() string {
  1401. if m != nil {
  1402. return m.Area
  1403. }
  1404. return ""
  1405. }
  1406. func (m *CompanyAddGardenRequest) GetAreaCode() string {
  1407. if m != nil {
  1408. return m.AreaCode
  1409. }
  1410. return ""
  1411. }
  1412. func (m *CompanyAddGardenRequest) GetStreet() string {
  1413. if m != nil {
  1414. return m.Street
  1415. }
  1416. return ""
  1417. }
  1418. func (m *CompanyAddGardenRequest) GetStreetCode() string {
  1419. if m != nil {
  1420. return m.StreetCode
  1421. }
  1422. return ""
  1423. }
  1424. func (m *CompanyAddGardenRequest) GetCommittee() string {
  1425. if m != nil {
  1426. return m.Committee
  1427. }
  1428. return ""
  1429. }
  1430. func (m *CompanyAddGardenRequest) GetCommitteeCode() string {
  1431. if m != nil {
  1432. return m.CommitteeCode
  1433. }
  1434. return ""
  1435. }
  1436. func (m *CompanyAddGardenRequest) GetGardenName() string {
  1437. if m != nil {
  1438. return m.GardenName
  1439. }
  1440. return ""
  1441. }
  1442. func (m *CompanyAddGardenRequest) GetGardenAddr() string {
  1443. if m != nil {
  1444. return m.GardenAddr
  1445. }
  1446. return ""
  1447. }
  1448. func (m *CompanyAddGardenRequest) GetPropertyPerson() string {
  1449. if m != nil {
  1450. return m.PropertyPerson
  1451. }
  1452. return ""
  1453. }
  1454. func (m *CompanyAddGardenRequest) GetPropertyPhone() string {
  1455. if m != nil {
  1456. return m.PropertyPhone
  1457. }
  1458. return ""
  1459. }
  1460. func (m *CompanyAddGardenRequest) GetGardenPic() string {
  1461. if m != nil {
  1462. return m.GardenPic
  1463. }
  1464. return ""
  1465. }
  1466. func (m *CompanyAddGardenRequest) GetGardenDesc() string {
  1467. if m != nil {
  1468. return m.GardenDesc
  1469. }
  1470. return ""
  1471. }
  1472. func (m *CompanyAddGardenRequest) GetLnt() float64 {
  1473. if m != nil {
  1474. return m.Lnt
  1475. }
  1476. return 0
  1477. }
  1478. func (m *CompanyAddGardenRequest) GetLat() float64 {
  1479. if m != nil {
  1480. return m.Lat
  1481. }
  1482. return 0
  1483. }
  1484. func (m *CompanyAddGardenRequest) GetAppendix() []string {
  1485. if m != nil {
  1486. return m.Appendix
  1487. }
  1488. return nil
  1489. }
  1490. func (m *CompanyAddGardenRequest) GetOrderId() int64 {
  1491. if m != nil {
  1492. return m.OrderId
  1493. }
  1494. return 0
  1495. }
  1496. func (m *CompanyAddGardenRequest) GetBuildingType() int32 {
  1497. if m != nil {
  1498. return m.BuildingType
  1499. }
  1500. return 0
  1501. }
  1502. func (m *CompanyAddGardenRequest) GetBuildingStart() int64 {
  1503. if m != nil {
  1504. return m.BuildingStart
  1505. }
  1506. return 0
  1507. }
  1508. func (m *CompanyAddGardenRequest) GetBuildingEnd() int64 {
  1509. if m != nil {
  1510. return m.BuildingEnd
  1511. }
  1512. return 0
  1513. }
  1514. func (m *CompanyAddGardenRequest) GetGreenPercent() float64 {
  1515. if m != nil {
  1516. return m.GreenPercent
  1517. }
  1518. return 0
  1519. }
  1520. func (m *CompanyAddGardenRequest) GetAreaPercent() float64 {
  1521. if m != nil {
  1522. return m.AreaPercent
  1523. }
  1524. return 0
  1525. }
  1526. func (m *CompanyAddGardenRequest) GetSpaceInfo() string {
  1527. if m != nil {
  1528. return m.SpaceInfo
  1529. }
  1530. return ""
  1531. }
  1532. func (m *CompanyAddGardenRequest) GetCoveredArea() float64 {
  1533. if m != nil {
  1534. return m.CoveredArea
  1535. }
  1536. return 0
  1537. }
  1538. func (m *CompanyAddGardenRequest) GetBuildingArea() float64 {
  1539. if m != nil {
  1540. return m.BuildingArea
  1541. }
  1542. return 0
  1543. }
  1544. func (m *CompanyAddGardenRequest) GetGardenPics() []string {
  1545. if m != nil {
  1546. return m.GardenPics
  1547. }
  1548. return nil
  1549. }
  1550. func (m *CompanyAddGardenRequest) GetBuildingCompany() string {
  1551. if m != nil {
  1552. return m.BuildingCompany
  1553. }
  1554. return ""
  1555. }
  1556. func (m *CompanyAddGardenRequest) GetHouseTotal() int64 {
  1557. if m != nil {
  1558. return m.HouseTotal
  1559. }
  1560. return 0
  1561. }
  1562. func (m *CompanyAddGardenRequest) GetSpaceTotal() int64 {
  1563. if m != nil {
  1564. return m.SpaceTotal
  1565. }
  1566. return 0
  1567. }
  1568. func (m *CompanyAddGardenRequest) GetPropertyFeeStart() int64 {
  1569. if m != nil {
  1570. return m.PropertyFeeStart
  1571. }
  1572. return 0
  1573. }
  1574. func (m *CompanyAddGardenRequest) GetPropertyFeeEnd() int64 {
  1575. if m != nil {
  1576. return m.PropertyFeeEnd
  1577. }
  1578. return 0
  1579. }
  1580. func (m *CompanyAddGardenRequest) GetWaterType() []int32 {
  1581. if m != nil {
  1582. return m.WaterType
  1583. }
  1584. return nil
  1585. }
  1586. func (m *CompanyAddGardenRequest) GetElectricType() []int32 {
  1587. if m != nil {
  1588. return m.ElectricType
  1589. }
  1590. return nil
  1591. }
  1592. func (m *CompanyAddGardenRequest) GetGasFeeStart() int64 {
  1593. if m != nil {
  1594. return m.GasFeeStart
  1595. }
  1596. return 0
  1597. }
  1598. func (m *CompanyAddGardenRequest) GetGasFeeEnd() int64 {
  1599. if m != nil {
  1600. return m.GasFeeEnd
  1601. }
  1602. return 0
  1603. }
  1604. func (m *CompanyAddGardenRequest) GetAvgPrice() int64 {
  1605. if m != nil {
  1606. return m.AvgPrice
  1607. }
  1608. return 0
  1609. }
  1610. type CompanyAddGardenReply struct {
  1611. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1612. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1613. XXX_unrecognized []byte `json:"-"`
  1614. XXX_sizecache int32 `json:"-"`
  1615. }
  1616. func (m *CompanyAddGardenReply) Reset() { *m = CompanyAddGardenReply{} }
  1617. func (m *CompanyAddGardenReply) String() string { return proto.CompactTextString(m) }
  1618. func (*CompanyAddGardenReply) ProtoMessage() {}
  1619. func (*CompanyAddGardenReply) Descriptor() ([]byte, []int) {
  1620. return fileDescriptor_ade57ca5b8f3903f, []int{18}
  1621. }
  1622. func (m *CompanyAddGardenReply) XXX_Unmarshal(b []byte) error {
  1623. return xxx_messageInfo_CompanyAddGardenReply.Unmarshal(m, b)
  1624. }
  1625. func (m *CompanyAddGardenReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1626. return xxx_messageInfo_CompanyAddGardenReply.Marshal(b, m, deterministic)
  1627. }
  1628. func (m *CompanyAddGardenReply) XXX_Merge(src proto.Message) {
  1629. xxx_messageInfo_CompanyAddGardenReply.Merge(m, src)
  1630. }
  1631. func (m *CompanyAddGardenReply) XXX_Size() int {
  1632. return xxx_messageInfo_CompanyAddGardenReply.Size(m)
  1633. }
  1634. func (m *CompanyAddGardenReply) XXX_DiscardUnknown() {
  1635. xxx_messageInfo_CompanyAddGardenReply.DiscardUnknown(m)
  1636. }
  1637. var xxx_messageInfo_CompanyAddGardenReply proto.InternalMessageInfo
  1638. func (m *CompanyAddGardenReply) GetId() int64 {
  1639. if m != nil {
  1640. return m.Id
  1641. }
  1642. return 0
  1643. }
  1644. type ResetPasswordRequest struct {
  1645. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1646. Vcode uint32 `protobuf:"varint,2,opt,name=vcode,proto3" json:"vcode"`
  1647. Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password"`
  1648. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1649. XXX_unrecognized []byte `json:"-"`
  1650. XXX_sizecache int32 `json:"-"`
  1651. }
  1652. func (m *ResetPasswordRequest) Reset() { *m = ResetPasswordRequest{} }
  1653. func (m *ResetPasswordRequest) String() string { return proto.CompactTextString(m) }
  1654. func (*ResetPasswordRequest) ProtoMessage() {}
  1655. func (*ResetPasswordRequest) Descriptor() ([]byte, []int) {
  1656. return fileDescriptor_ade57ca5b8f3903f, []int{19}
  1657. }
  1658. func (m *ResetPasswordRequest) XXX_Unmarshal(b []byte) error {
  1659. return xxx_messageInfo_ResetPasswordRequest.Unmarshal(m, b)
  1660. }
  1661. func (m *ResetPasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1662. return xxx_messageInfo_ResetPasswordRequest.Marshal(b, m, deterministic)
  1663. }
  1664. func (m *ResetPasswordRequest) XXX_Merge(src proto.Message) {
  1665. xxx_messageInfo_ResetPasswordRequest.Merge(m, src)
  1666. }
  1667. func (m *ResetPasswordRequest) XXX_Size() int {
  1668. return xxx_messageInfo_ResetPasswordRequest.Size(m)
  1669. }
  1670. func (m *ResetPasswordRequest) XXX_DiscardUnknown() {
  1671. xxx_messageInfo_ResetPasswordRequest.DiscardUnknown(m)
  1672. }
  1673. var xxx_messageInfo_ResetPasswordRequest proto.InternalMessageInfo
  1674. func (m *ResetPasswordRequest) GetPhone() string {
  1675. if m != nil {
  1676. return m.Phone
  1677. }
  1678. return ""
  1679. }
  1680. func (m *ResetPasswordRequest) GetVcode() uint32 {
  1681. if m != nil {
  1682. return m.Vcode
  1683. }
  1684. return 0
  1685. }
  1686. func (m *ResetPasswordRequest) GetPassword() string {
  1687. if m != nil {
  1688. return m.Password
  1689. }
  1690. return ""
  1691. }
  1692. type ResetPasswordReply struct {
  1693. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1694. XXX_unrecognized []byte `json:"-"`
  1695. XXX_sizecache int32 `json:"-"`
  1696. }
  1697. func (m *ResetPasswordReply) Reset() { *m = ResetPasswordReply{} }
  1698. func (m *ResetPasswordReply) String() string { return proto.CompactTextString(m) }
  1699. func (*ResetPasswordReply) ProtoMessage() {}
  1700. func (*ResetPasswordReply) Descriptor() ([]byte, []int) {
  1701. return fileDescriptor_ade57ca5b8f3903f, []int{20}
  1702. }
  1703. func (m *ResetPasswordReply) XXX_Unmarshal(b []byte) error {
  1704. return xxx_messageInfo_ResetPasswordReply.Unmarshal(m, b)
  1705. }
  1706. func (m *ResetPasswordReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1707. return xxx_messageInfo_ResetPasswordReply.Marshal(b, m, deterministic)
  1708. }
  1709. func (m *ResetPasswordReply) XXX_Merge(src proto.Message) {
  1710. xxx_messageInfo_ResetPasswordReply.Merge(m, src)
  1711. }
  1712. func (m *ResetPasswordReply) XXX_Size() int {
  1713. return xxx_messageInfo_ResetPasswordReply.Size(m)
  1714. }
  1715. func (m *ResetPasswordReply) XXX_DiscardUnknown() {
  1716. xxx_messageInfo_ResetPasswordReply.DiscardUnknown(m)
  1717. }
  1718. var xxx_messageInfo_ResetPasswordReply proto.InternalMessageInfo
  1719. type ChangePasswordRequest struct {
  1720. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  1721. OldPassword string `protobuf:"bytes,2,opt,name=old_password,json=oldPassword,proto3" json:"old_password"`
  1722. NewPassword string `protobuf:"bytes,3,opt,name=new_password,json=newPassword,proto3" json:"new_password"`
  1723. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1724. XXX_unrecognized []byte `json:"-"`
  1725. XXX_sizecache int32 `json:"-"`
  1726. }
  1727. func (m *ChangePasswordRequest) Reset() { *m = ChangePasswordRequest{} }
  1728. func (m *ChangePasswordRequest) String() string { return proto.CompactTextString(m) }
  1729. func (*ChangePasswordRequest) ProtoMessage() {}
  1730. func (*ChangePasswordRequest) Descriptor() ([]byte, []int) {
  1731. return fileDescriptor_ade57ca5b8f3903f, []int{21}
  1732. }
  1733. func (m *ChangePasswordRequest) XXX_Unmarshal(b []byte) error {
  1734. return xxx_messageInfo_ChangePasswordRequest.Unmarshal(m, b)
  1735. }
  1736. func (m *ChangePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1737. return xxx_messageInfo_ChangePasswordRequest.Marshal(b, m, deterministic)
  1738. }
  1739. func (m *ChangePasswordRequest) XXX_Merge(src proto.Message) {
  1740. xxx_messageInfo_ChangePasswordRequest.Merge(m, src)
  1741. }
  1742. func (m *ChangePasswordRequest) XXX_Size() int {
  1743. return xxx_messageInfo_ChangePasswordRequest.Size(m)
  1744. }
  1745. func (m *ChangePasswordRequest) XXX_DiscardUnknown() {
  1746. xxx_messageInfo_ChangePasswordRequest.DiscardUnknown(m)
  1747. }
  1748. var xxx_messageInfo_ChangePasswordRequest proto.InternalMessageInfo
  1749. func (m *ChangePasswordRequest) GetUid() int64 {
  1750. if m != nil {
  1751. return m.Uid
  1752. }
  1753. return 0
  1754. }
  1755. func (m *ChangePasswordRequest) GetOldPassword() string {
  1756. if m != nil {
  1757. return m.OldPassword
  1758. }
  1759. return ""
  1760. }
  1761. func (m *ChangePasswordRequest) GetNewPassword() string {
  1762. if m != nil {
  1763. return m.NewPassword
  1764. }
  1765. return ""
  1766. }
  1767. type ChangePasswordReply struct {
  1768. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1769. XXX_unrecognized []byte `json:"-"`
  1770. XXX_sizecache int32 `json:"-"`
  1771. }
  1772. func (m *ChangePasswordReply) Reset() { *m = ChangePasswordReply{} }
  1773. func (m *ChangePasswordReply) String() string { return proto.CompactTextString(m) }
  1774. func (*ChangePasswordReply) ProtoMessage() {}
  1775. func (*ChangePasswordReply) Descriptor() ([]byte, []int) {
  1776. return fileDescriptor_ade57ca5b8f3903f, []int{22}
  1777. }
  1778. func (m *ChangePasswordReply) XXX_Unmarshal(b []byte) error {
  1779. return xxx_messageInfo_ChangePasswordReply.Unmarshal(m, b)
  1780. }
  1781. func (m *ChangePasswordReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1782. return xxx_messageInfo_ChangePasswordReply.Marshal(b, m, deterministic)
  1783. }
  1784. func (m *ChangePasswordReply) XXX_Merge(src proto.Message) {
  1785. xxx_messageInfo_ChangePasswordReply.Merge(m, src)
  1786. }
  1787. func (m *ChangePasswordReply) XXX_Size() int {
  1788. return xxx_messageInfo_ChangePasswordReply.Size(m)
  1789. }
  1790. func (m *ChangePasswordReply) XXX_DiscardUnknown() {
  1791. xxx_messageInfo_ChangePasswordReply.DiscardUnknown(m)
  1792. }
  1793. var xxx_messageInfo_ChangePasswordReply proto.InternalMessageInfo
  1794. type CheckPhoneRequest struct {
  1795. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone"`
  1796. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1797. XXX_unrecognized []byte `json:"-"`
  1798. XXX_sizecache int32 `json:"-"`
  1799. }
  1800. func (m *CheckPhoneRequest) Reset() { *m = CheckPhoneRequest{} }
  1801. func (m *CheckPhoneRequest) String() string { return proto.CompactTextString(m) }
  1802. func (*CheckPhoneRequest) ProtoMessage() {}
  1803. func (*CheckPhoneRequest) Descriptor() ([]byte, []int) {
  1804. return fileDescriptor_ade57ca5b8f3903f, []int{23}
  1805. }
  1806. func (m *CheckPhoneRequest) XXX_Unmarshal(b []byte) error {
  1807. return xxx_messageInfo_CheckPhoneRequest.Unmarshal(m, b)
  1808. }
  1809. func (m *CheckPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1810. return xxx_messageInfo_CheckPhoneRequest.Marshal(b, m, deterministic)
  1811. }
  1812. func (m *CheckPhoneRequest) XXX_Merge(src proto.Message) {
  1813. xxx_messageInfo_CheckPhoneRequest.Merge(m, src)
  1814. }
  1815. func (m *CheckPhoneRequest) XXX_Size() int {
  1816. return xxx_messageInfo_CheckPhoneRequest.Size(m)
  1817. }
  1818. func (m *CheckPhoneRequest) XXX_DiscardUnknown() {
  1819. xxx_messageInfo_CheckPhoneRequest.DiscardUnknown(m)
  1820. }
  1821. var xxx_messageInfo_CheckPhoneRequest proto.InternalMessageInfo
  1822. func (m *CheckPhoneRequest) GetPhone() string {
  1823. if m != nil {
  1824. return m.Phone
  1825. }
  1826. return ""
  1827. }
  1828. type CheckPhoneReply struct {
  1829. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1830. XXX_unrecognized []byte `json:"-"`
  1831. XXX_sizecache int32 `json:"-"`
  1832. }
  1833. func (m *CheckPhoneReply) Reset() { *m = CheckPhoneReply{} }
  1834. func (m *CheckPhoneReply) String() string { return proto.CompactTextString(m) }
  1835. func (*CheckPhoneReply) ProtoMessage() {}
  1836. func (*CheckPhoneReply) Descriptor() ([]byte, []int) {
  1837. return fileDescriptor_ade57ca5b8f3903f, []int{24}
  1838. }
  1839. func (m *CheckPhoneReply) XXX_Unmarshal(b []byte) error {
  1840. return xxx_messageInfo_CheckPhoneReply.Unmarshal(m, b)
  1841. }
  1842. func (m *CheckPhoneReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1843. return xxx_messageInfo_CheckPhoneReply.Marshal(b, m, deterministic)
  1844. }
  1845. func (m *CheckPhoneReply) XXX_Merge(src proto.Message) {
  1846. xxx_messageInfo_CheckPhoneReply.Merge(m, src)
  1847. }
  1848. func (m *CheckPhoneReply) XXX_Size() int {
  1849. return xxx_messageInfo_CheckPhoneReply.Size(m)
  1850. }
  1851. func (m *CheckPhoneReply) XXX_DiscardUnknown() {
  1852. xxx_messageInfo_CheckPhoneReply.DiscardUnknown(m)
  1853. }
  1854. var xxx_messageInfo_CheckPhoneReply proto.InternalMessageInfo
  1855. type CompanyGardenDecreaseRequest struct {
  1856. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  1857. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1858. XXX_unrecognized []byte `json:"-"`
  1859. XXX_sizecache int32 `json:"-"`
  1860. }
  1861. func (m *CompanyGardenDecreaseRequest) Reset() { *m = CompanyGardenDecreaseRequest{} }
  1862. func (m *CompanyGardenDecreaseRequest) String() string { return proto.CompactTextString(m) }
  1863. func (*CompanyGardenDecreaseRequest) ProtoMessage() {}
  1864. func (*CompanyGardenDecreaseRequest) Descriptor() ([]byte, []int) {
  1865. return fileDescriptor_ade57ca5b8f3903f, []int{25}
  1866. }
  1867. func (m *CompanyGardenDecreaseRequest) XXX_Unmarshal(b []byte) error {
  1868. return xxx_messageInfo_CompanyGardenDecreaseRequest.Unmarshal(m, b)
  1869. }
  1870. func (m *CompanyGardenDecreaseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1871. return xxx_messageInfo_CompanyGardenDecreaseRequest.Marshal(b, m, deterministic)
  1872. }
  1873. func (m *CompanyGardenDecreaseRequest) XXX_Merge(src proto.Message) {
  1874. xxx_messageInfo_CompanyGardenDecreaseRequest.Merge(m, src)
  1875. }
  1876. func (m *CompanyGardenDecreaseRequest) XXX_Size() int {
  1877. return xxx_messageInfo_CompanyGardenDecreaseRequest.Size(m)
  1878. }
  1879. func (m *CompanyGardenDecreaseRequest) XXX_DiscardUnknown() {
  1880. xxx_messageInfo_CompanyGardenDecreaseRequest.DiscardUnknown(m)
  1881. }
  1882. var xxx_messageInfo_CompanyGardenDecreaseRequest proto.InternalMessageInfo
  1883. func (m *CompanyGardenDecreaseRequest) GetCid() int64 {
  1884. if m != nil {
  1885. return m.Cid
  1886. }
  1887. return 0
  1888. }
  1889. type CompanyGardenDecreaseReply struct {
  1890. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1891. XXX_unrecognized []byte `json:"-"`
  1892. XXX_sizecache int32 `json:"-"`
  1893. }
  1894. func (m *CompanyGardenDecreaseReply) Reset() { *m = CompanyGardenDecreaseReply{} }
  1895. func (m *CompanyGardenDecreaseReply) String() string { return proto.CompactTextString(m) }
  1896. func (*CompanyGardenDecreaseReply) ProtoMessage() {}
  1897. func (*CompanyGardenDecreaseReply) Descriptor() ([]byte, []int) {
  1898. return fileDescriptor_ade57ca5b8f3903f, []int{26}
  1899. }
  1900. func (m *CompanyGardenDecreaseReply) XXX_Unmarshal(b []byte) error {
  1901. return xxx_messageInfo_CompanyGardenDecreaseReply.Unmarshal(m, b)
  1902. }
  1903. func (m *CompanyGardenDecreaseReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1904. return xxx_messageInfo_CompanyGardenDecreaseReply.Marshal(b, m, deterministic)
  1905. }
  1906. func (m *CompanyGardenDecreaseReply) XXX_Merge(src proto.Message) {
  1907. xxx_messageInfo_CompanyGardenDecreaseReply.Merge(m, src)
  1908. }
  1909. func (m *CompanyGardenDecreaseReply) XXX_Size() int {
  1910. return xxx_messageInfo_CompanyGardenDecreaseReply.Size(m)
  1911. }
  1912. func (m *CompanyGardenDecreaseReply) XXX_DiscardUnknown() {
  1913. xxx_messageInfo_CompanyGardenDecreaseReply.DiscardUnknown(m)
  1914. }
  1915. var xxx_messageInfo_CompanyGardenDecreaseReply proto.InternalMessageInfo
  1916. // 主体为政府机关/事业单位/其他组织时,必填
  1917. type CompanyWxCertificateInfo struct {
  1918. // 证书图片id
  1919. CertCopy string `protobuf:"bytes,1,opt,name=cert_copy,json=certCopy,proto3" json:"cert_copy"`
  1920. // 当主体为事业单位时,选择此枚举值:
  1921. //CERTIFICATE_TYPE_2388:事业单位法人证书
  1922. //
  1923. //当主体为政府机关,选择此枚举值:
  1924. //CERTIFICATE_TYPE_2389:统一社会信用代码证书
  1925. //
  1926. //当主体为社会组织,选择以下枚举值之一:
  1927. //CERTIFICATE_TYPE_2389:统一社会信用代码证书
  1928. //CERTIFICATE_TYPE_2394:社会团体法人登记证书
  1929. //CERTIFICATE_TYPE_2395:民办非企业单位登记证书
  1930. //CERTIFICATE_TYPE_2396:基金会法人登记证书
  1931. //CERTIFICATE_TYPE_2397:慈善组织公开募捐资格证书(已废弃)
  1932. //CERTIFICATE_TYPE_2398:农民专业合作社法人营业执照(已废弃)
  1933. //CERTIFICATE_TYPE_2520:执业许可证/执业证
  1934. //CERTIFICATE_TYPE_2521:基层群众性自治组织特别法人统一社会信用代码证
  1935. //CERTIFICATE_TYPE_2522:农村集体经济组织登记证
  1936. //CERTIFICATE_TYPE_2399:宗教活动场所登记证
  1937. //CERTIFICATE_TYPE_2400:政府部门下发的其他有效证明文件
  1938. CertType string `protobuf:"bytes,2,opt,name=cert_type,json=certType,proto3" json:"cert_type"`
  1939. // 证书号
  1940. CertNumber string `protobuf:"bytes,3,opt,name=cert_number,json=certNumber,proto3" json:"cert_number"`
  1941. // 商户名称
  1942. MerchantName string `protobuf:"bytes,4,opt,name=merchant_name,json=merchantName,proto3" json:"merchant_name"`
  1943. // 证书上的注册地址
  1944. CompanyAddress string `protobuf:"bytes,5,opt,name=company_address,json=companyAddress,proto3" json:"company_address"`
  1945. // 证书上的法人
  1946. LegalPerson string `protobuf:"bytes,6,opt,name=legal_person,json=legalPerson,proto3" json:"legal_person"`
  1947. // 证书开始时间 2006-01-02
  1948. PeriodBegin string `protobuf:"bytes,7,opt,name=period_begin,json=periodBegin,proto3" json:"period_begin"`
  1949. // 证书结束时间2006-01-02,若为长期则填长期
  1950. PeriodEnd string `protobuf:"bytes,8,opt,name=period_end,json=periodEnd,proto3" json:"period_end"`
  1951. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1952. XXX_unrecognized []byte `json:"-"`
  1953. XXX_sizecache int32 `json:"-"`
  1954. }
  1955. func (m *CompanyWxCertificateInfo) Reset() { *m = CompanyWxCertificateInfo{} }
  1956. func (m *CompanyWxCertificateInfo) String() string { return proto.CompactTextString(m) }
  1957. func (*CompanyWxCertificateInfo) ProtoMessage() {}
  1958. func (*CompanyWxCertificateInfo) Descriptor() ([]byte, []int) {
  1959. return fileDescriptor_ade57ca5b8f3903f, []int{27}
  1960. }
  1961. func (m *CompanyWxCertificateInfo) XXX_Unmarshal(b []byte) error {
  1962. return xxx_messageInfo_CompanyWxCertificateInfo.Unmarshal(m, b)
  1963. }
  1964. func (m *CompanyWxCertificateInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1965. return xxx_messageInfo_CompanyWxCertificateInfo.Marshal(b, m, deterministic)
  1966. }
  1967. func (m *CompanyWxCertificateInfo) XXX_Merge(src proto.Message) {
  1968. xxx_messageInfo_CompanyWxCertificateInfo.Merge(m, src)
  1969. }
  1970. func (m *CompanyWxCertificateInfo) XXX_Size() int {
  1971. return xxx_messageInfo_CompanyWxCertificateInfo.Size(m)
  1972. }
  1973. func (m *CompanyWxCertificateInfo) XXX_DiscardUnknown() {
  1974. xxx_messageInfo_CompanyWxCertificateInfo.DiscardUnknown(m)
  1975. }
  1976. var xxx_messageInfo_CompanyWxCertificateInfo proto.InternalMessageInfo
  1977. func (m *CompanyWxCertificateInfo) GetCertCopy() string {
  1978. if m != nil {
  1979. return m.CertCopy
  1980. }
  1981. return ""
  1982. }
  1983. func (m *CompanyWxCertificateInfo) GetCertType() string {
  1984. if m != nil {
  1985. return m.CertType
  1986. }
  1987. return ""
  1988. }
  1989. func (m *CompanyWxCertificateInfo) GetCertNumber() string {
  1990. if m != nil {
  1991. return m.CertNumber
  1992. }
  1993. return ""
  1994. }
  1995. func (m *CompanyWxCertificateInfo) GetMerchantName() string {
  1996. if m != nil {
  1997. return m.MerchantName
  1998. }
  1999. return ""
  2000. }
  2001. func (m *CompanyWxCertificateInfo) GetCompanyAddress() string {
  2002. if m != nil {
  2003. return m.CompanyAddress
  2004. }
  2005. return ""
  2006. }
  2007. func (m *CompanyWxCertificateInfo) GetLegalPerson() string {
  2008. if m != nil {
  2009. return m.LegalPerson
  2010. }
  2011. return ""
  2012. }
  2013. func (m *CompanyWxCertificateInfo) GetPeriodBegin() string {
  2014. if m != nil {
  2015. return m.PeriodBegin
  2016. }
  2017. return ""
  2018. }
  2019. func (m *CompanyWxCertificateInfo) GetPeriodEnd() string {
  2020. if m != nil {
  2021. return m.PeriodEnd
  2022. }
  2023. return ""
  2024. }
  2025. type CompanyWxIdCardInfo struct {
  2026. // 身份证人像面照片
  2027. IdCardCopy string `protobuf:"bytes,1,opt,name=id_card_copy,json=idCardCopy,proto3" json:"id_card_copy"`
  2028. // 身份证国徽面照片
  2029. IdCardNational string `protobuf:"bytes,2,opt,name=id_card_national,json=idCardNational,proto3" json:"id_card_national"`
  2030. // 身份证号码
  2031. IdCardNumber string `protobuf:"bytes,3,opt,name=id_card_number,json=idCardNumber,proto3" json:"id_card_number"`
  2032. // 有效期开始时间
  2033. CardPeriodBegin string `protobuf:"bytes,4,opt,name=card_period_begin,json=cardPeriodBegin,proto3" json:"card_period_begin"`
  2034. // 有效期结束时间
  2035. CardPeriodEnd string `protobuf:"bytes,5,opt,name=card_period_end,json=cardPeriodEnd,proto3" json:"card_period_end"`
  2036. // 身份证姓名
  2037. IdCardName string `protobuf:"bytes,6,opt,name=id_card_name,json=idCardName,proto3" json:"id_card_name"`
  2038. IdCardAddress string `protobuf:"bytes,7,opt,name=id_card_address,json=idCardAddress,proto3" json:"id_card_address"`
  2039. // 身份证人像面照片url
  2040. IdCardCopyUrl string `protobuf:"bytes,8,opt,name=id_card_copy_url,json=idCardCopyUrl,proto3" json:"id_card_copy_url"`
  2041. // 身份证国徽面照片url
  2042. IdCardNationalUrl string `protobuf:"bytes,9,opt,name=id_card_national_url,json=idCardNationalUrl,proto3" json:"id_card_national_url"`
  2043. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2044. XXX_unrecognized []byte `json:"-"`
  2045. XXX_sizecache int32 `json:"-"`
  2046. }
  2047. func (m *CompanyWxIdCardInfo) Reset() { *m = CompanyWxIdCardInfo{} }
  2048. func (m *CompanyWxIdCardInfo) String() string { return proto.CompactTextString(m) }
  2049. func (*CompanyWxIdCardInfo) ProtoMessage() {}
  2050. func (*CompanyWxIdCardInfo) Descriptor() ([]byte, []int) {
  2051. return fileDescriptor_ade57ca5b8f3903f, []int{28}
  2052. }
  2053. func (m *CompanyWxIdCardInfo) XXX_Unmarshal(b []byte) error {
  2054. return xxx_messageInfo_CompanyWxIdCardInfo.Unmarshal(m, b)
  2055. }
  2056. func (m *CompanyWxIdCardInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2057. return xxx_messageInfo_CompanyWxIdCardInfo.Marshal(b, m, deterministic)
  2058. }
  2059. func (m *CompanyWxIdCardInfo) XXX_Merge(src proto.Message) {
  2060. xxx_messageInfo_CompanyWxIdCardInfo.Merge(m, src)
  2061. }
  2062. func (m *CompanyWxIdCardInfo) XXX_Size() int {
  2063. return xxx_messageInfo_CompanyWxIdCardInfo.Size(m)
  2064. }
  2065. func (m *CompanyWxIdCardInfo) XXX_DiscardUnknown() {
  2066. xxx_messageInfo_CompanyWxIdCardInfo.DiscardUnknown(m)
  2067. }
  2068. var xxx_messageInfo_CompanyWxIdCardInfo proto.InternalMessageInfo
  2069. func (m *CompanyWxIdCardInfo) GetIdCardCopy() string {
  2070. if m != nil {
  2071. return m.IdCardCopy
  2072. }
  2073. return ""
  2074. }
  2075. func (m *CompanyWxIdCardInfo) GetIdCardNational() string {
  2076. if m != nil {
  2077. return m.IdCardNational
  2078. }
  2079. return ""
  2080. }
  2081. func (m *CompanyWxIdCardInfo) GetIdCardNumber() string {
  2082. if m != nil {
  2083. return m.IdCardNumber
  2084. }
  2085. return ""
  2086. }
  2087. func (m *CompanyWxIdCardInfo) GetCardPeriodBegin() string {
  2088. if m != nil {
  2089. return m.CardPeriodBegin
  2090. }
  2091. return ""
  2092. }
  2093. func (m *CompanyWxIdCardInfo) GetCardPeriodEnd() string {
  2094. if m != nil {
  2095. return m.CardPeriodEnd
  2096. }
  2097. return ""
  2098. }
  2099. func (m *CompanyWxIdCardInfo) GetIdCardName() string {
  2100. if m != nil {
  2101. return m.IdCardName
  2102. }
  2103. return ""
  2104. }
  2105. func (m *CompanyWxIdCardInfo) GetIdCardAddress() string {
  2106. if m != nil {
  2107. return m.IdCardAddress
  2108. }
  2109. return ""
  2110. }
  2111. func (m *CompanyWxIdCardInfo) GetIdCardCopyUrl() string {
  2112. if m != nil {
  2113. return m.IdCardCopyUrl
  2114. }
  2115. return ""
  2116. }
  2117. func (m *CompanyWxIdCardInfo) GetIdCardNationalUrl() string {
  2118. if m != nil {
  2119. return m.IdCardNationalUrl
  2120. }
  2121. return ""
  2122. }
  2123. type CompanyWxIdDocInfo struct {
  2124. // 证件图片
  2125. IdDocCopy string `protobuf:"bytes,1,opt,name=id_doc_copy,json=idDocCopy,proto3" json:"id_doc_copy"`
  2126. IdDocCopyBack string `protobuf:"bytes,2,opt,name=id_doc_copy_back,json=idDocCopyBack,proto3" json:"id_doc_copy_back"`
  2127. // 证件姓名
  2128. IdDocName string `protobuf:"bytes,3,opt,name=id_doc_name,json=idDocName,proto3" json:"id_doc_name"`
  2129. // 证件号
  2130. IdDocNumber string `protobuf:"bytes,4,opt,name=id_doc_number,json=idDocNumber,proto3" json:"id_doc_number"`
  2131. // 开始时间
  2132. DocPeriodBegin string `protobuf:"bytes,5,opt,name=doc_period_begin,json=docPeriodBegin,proto3" json:"doc_period_begin"`
  2133. // 结束时间
  2134. DocPeriodEnd string `protobuf:"bytes,6,opt,name=doc_period_end,json=docPeriodEnd,proto3" json:"doc_period_end"`
  2135. IdDocAddress string `protobuf:"bytes,7,opt,name=id_doc_address,json=idDocAddress,proto3" json:"id_doc_address"`
  2136. // 证件图片url
  2137. IdDocCopyUrl string `protobuf:"bytes,8,opt,name=id_doc_copy_url,json=idDocCopyUrl,proto3" json:"id_doc_copy_url"`
  2138. IdDocCopyBackUrl string `protobuf:"bytes,9,opt,name=id_doc_copy_back_url,json=idDocCopyBackUrl,proto3" json:"id_doc_copy_back_url"`
  2139. // IDENTIFICATION_TYPE_IDCARD:中国大陆居民-身份证
  2140. // IDENTIFICATION_TYPE_OVERSEA_PASSPORT:其他国家或地区居民-护照
  2141. // IDENTIFICATION_TYPE_HONGKONG_PASSPORT:中国香港居民-来往内地通行证
  2142. // IDENTIFICATION_TYPE_MACAO_PASSPORT:中国澳门居民-来往内地通行证
  2143. // IDENTIFICATION_TYPE_TAIWAN_PASSPORT:中国台湾居民-来往大陆通行证
  2144. IdDocType string `protobuf:"bytes,10,opt,name=id_doc_type,json=idDocType,proto3" json:"id_doc_type"`
  2145. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2146. XXX_unrecognized []byte `json:"-"`
  2147. XXX_sizecache int32 `json:"-"`
  2148. }
  2149. func (m *CompanyWxIdDocInfo) Reset() { *m = CompanyWxIdDocInfo{} }
  2150. func (m *CompanyWxIdDocInfo) String() string { return proto.CompactTextString(m) }
  2151. func (*CompanyWxIdDocInfo) ProtoMessage() {}
  2152. func (*CompanyWxIdDocInfo) Descriptor() ([]byte, []int) {
  2153. return fileDescriptor_ade57ca5b8f3903f, []int{29}
  2154. }
  2155. func (m *CompanyWxIdDocInfo) XXX_Unmarshal(b []byte) error {
  2156. return xxx_messageInfo_CompanyWxIdDocInfo.Unmarshal(m, b)
  2157. }
  2158. func (m *CompanyWxIdDocInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2159. return xxx_messageInfo_CompanyWxIdDocInfo.Marshal(b, m, deterministic)
  2160. }
  2161. func (m *CompanyWxIdDocInfo) XXX_Merge(src proto.Message) {
  2162. xxx_messageInfo_CompanyWxIdDocInfo.Merge(m, src)
  2163. }
  2164. func (m *CompanyWxIdDocInfo) XXX_Size() int {
  2165. return xxx_messageInfo_CompanyWxIdDocInfo.Size(m)
  2166. }
  2167. func (m *CompanyWxIdDocInfo) XXX_DiscardUnknown() {
  2168. xxx_messageInfo_CompanyWxIdDocInfo.DiscardUnknown(m)
  2169. }
  2170. var xxx_messageInfo_CompanyWxIdDocInfo proto.InternalMessageInfo
  2171. func (m *CompanyWxIdDocInfo) GetIdDocCopy() string {
  2172. if m != nil {
  2173. return m.IdDocCopy
  2174. }
  2175. return ""
  2176. }
  2177. func (m *CompanyWxIdDocInfo) GetIdDocCopyBack() string {
  2178. if m != nil {
  2179. return m.IdDocCopyBack
  2180. }
  2181. return ""
  2182. }
  2183. func (m *CompanyWxIdDocInfo) GetIdDocName() string {
  2184. if m != nil {
  2185. return m.IdDocName
  2186. }
  2187. return ""
  2188. }
  2189. func (m *CompanyWxIdDocInfo) GetIdDocNumber() string {
  2190. if m != nil {
  2191. return m.IdDocNumber
  2192. }
  2193. return ""
  2194. }
  2195. func (m *CompanyWxIdDocInfo) GetDocPeriodBegin() string {
  2196. if m != nil {
  2197. return m.DocPeriodBegin
  2198. }
  2199. return ""
  2200. }
  2201. func (m *CompanyWxIdDocInfo) GetDocPeriodEnd() string {
  2202. if m != nil {
  2203. return m.DocPeriodEnd
  2204. }
  2205. return ""
  2206. }
  2207. func (m *CompanyWxIdDocInfo) GetIdDocAddress() string {
  2208. if m != nil {
  2209. return m.IdDocAddress
  2210. }
  2211. return ""
  2212. }
  2213. func (m *CompanyWxIdDocInfo) GetIdDocCopyUrl() string {
  2214. if m != nil {
  2215. return m.IdDocCopyUrl
  2216. }
  2217. return ""
  2218. }
  2219. func (m *CompanyWxIdDocInfo) GetIdDocCopyBackUrl() string {
  2220. if m != nil {
  2221. return m.IdDocCopyBackUrl
  2222. }
  2223. return ""
  2224. }
  2225. func (m *CompanyWxIdDocInfo) GetIdDocType() string {
  2226. if m != nil {
  2227. return m.IdDocType
  2228. }
  2229. return ""
  2230. }
  2231. type CompanyWxIdentityInfo struct {
  2232. // 1. 主体类型为政府机关、事业单位时选传:
  2233. //(1)若上传的是法人证件,则不需要上传该字段
  2234. //(2)若因特殊情况,无法提供法人证件时,可上传经办人。 (经办人:经商户授权办理微信支付业务的人员,授权范围包括但不限于签约,入驻过程需完成账户验证)。
  2235. IdHolderType string `protobuf:"bytes,1,opt,name=id_holder_type,json=idHolderType,proto3" json:"id_holder_type"`
  2236. // 法定代表人说明函图片id
  2237. // 1、当证件持有人类型为经办人时,必须上传。其他情况,无需上传。
  2238. // 2、若因特殊情况,无法提供法定代表人证件时,请参照示例图打印法定代表人说明函,全部信息需打印,不支持手写商户信息,并加盖公章。
  2239. // 3、可上传1张图片,请填写通过图片上传APIAPI预先上传图片生成好的MediaID。
  2240. AuthorizeLetterCopy string `protobuf:"bytes,2,opt,name=authorize_letter_copy,json=authorizeLetterCopy,proto3" json:"authorize_letter_copy"`
  2241. // 证件信息
  2242. IdDocInfo *CompanyWxIdDocInfo `protobuf:"bytes,3,opt,name=id_doc_info,json=idDocInfo,proto3" json:"id_doc_info"`
  2243. // 法人是否为最终受益人
  2244. Owner bool `protobuf:"varint,4,opt,name=owner,proto3" json:"owner"`
  2245. AuthorizeLetterCopyUrl string `protobuf:"bytes,5,opt,name=authorize_letter_copy_url,json=authorizeLetterCopyUrl,proto3" json:"authorize_letter_copy_url"`
  2246. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2247. XXX_unrecognized []byte `json:"-"`
  2248. XXX_sizecache int32 `json:"-"`
  2249. }
  2250. func (m *CompanyWxIdentityInfo) Reset() { *m = CompanyWxIdentityInfo{} }
  2251. func (m *CompanyWxIdentityInfo) String() string { return proto.CompactTextString(m) }
  2252. func (*CompanyWxIdentityInfo) ProtoMessage() {}
  2253. func (*CompanyWxIdentityInfo) Descriptor() ([]byte, []int) {
  2254. return fileDescriptor_ade57ca5b8f3903f, []int{30}
  2255. }
  2256. func (m *CompanyWxIdentityInfo) XXX_Unmarshal(b []byte) error {
  2257. return xxx_messageInfo_CompanyWxIdentityInfo.Unmarshal(m, b)
  2258. }
  2259. func (m *CompanyWxIdentityInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2260. return xxx_messageInfo_CompanyWxIdentityInfo.Marshal(b, m, deterministic)
  2261. }
  2262. func (m *CompanyWxIdentityInfo) XXX_Merge(src proto.Message) {
  2263. xxx_messageInfo_CompanyWxIdentityInfo.Merge(m, src)
  2264. }
  2265. func (m *CompanyWxIdentityInfo) XXX_Size() int {
  2266. return xxx_messageInfo_CompanyWxIdentityInfo.Size(m)
  2267. }
  2268. func (m *CompanyWxIdentityInfo) XXX_DiscardUnknown() {
  2269. xxx_messageInfo_CompanyWxIdentityInfo.DiscardUnknown(m)
  2270. }
  2271. var xxx_messageInfo_CompanyWxIdentityInfo proto.InternalMessageInfo
  2272. func (m *CompanyWxIdentityInfo) GetIdHolderType() string {
  2273. if m != nil {
  2274. return m.IdHolderType
  2275. }
  2276. return ""
  2277. }
  2278. func (m *CompanyWxIdentityInfo) GetAuthorizeLetterCopy() string {
  2279. if m != nil {
  2280. return m.AuthorizeLetterCopy
  2281. }
  2282. return ""
  2283. }
  2284. func (m *CompanyWxIdentityInfo) GetIdDocInfo() *CompanyWxIdDocInfo {
  2285. if m != nil {
  2286. return m.IdDocInfo
  2287. }
  2288. return nil
  2289. }
  2290. func (m *CompanyWxIdentityInfo) GetOwner() bool {
  2291. if m != nil {
  2292. return m.Owner
  2293. }
  2294. return false
  2295. }
  2296. func (m *CompanyWxIdentityInfo) GetAuthorizeLetterCopyUrl() string {
  2297. if m != nil {
  2298. return m.AuthorizeLetterCopyUrl
  2299. }
  2300. return ""
  2301. }
  2302. type CompanyWxUboInfo struct {
  2303. // IDENTIFICATION_TYPE_IDCARD:中国大陆居民-身份证
  2304. // IDENTIFICATION_TYPE_OVERSEA_PASSPORT:其他国家或地区居民-护照
  2305. // IDENTIFICATION_TYPE_HONGKONG_PASSPORT:中国香港居民-来往内地通行证
  2306. // IDENTIFICATION_TYPE_MACAO_PASSPORT:中国澳门居民-来往内地通行证
  2307. // IDENTIFICATION_TYPE_TAIWAN_PASSPORT:中国台湾居民-来往大陆通行证
  2308. UboIdDocType string `protobuf:"bytes,1,opt,name=ubo_id_doc_type,json=uboIdDocType,proto3" json:"ubo_id_doc_type"`
  2309. // 收益人证件正面
  2310. UboIdDocCopy string `protobuf:"bytes,2,opt,name=ubo_id_doc_copy,json=uboIdDocCopy,proto3" json:"ubo_id_doc_copy"`
  2311. // 背面
  2312. UboIdDocCopyBack string `protobuf:"bytes,3,opt,name=ubo_id_doc_copy_back,json=uboIdDocCopyBack,proto3" json:"ubo_id_doc_copy_back"`
  2313. // 证件居住地址
  2314. UboIdDocAddress string `protobuf:"bytes,4,opt,name=ubo_id_doc_address,json=uboIdDocAddress,proto3" json:"ubo_id_doc_address"`
  2315. // 受益人姓名
  2316. UboIdDocName string `protobuf:"bytes,5,opt,name=ubo_id_doc_name,json=uboIdDocName,proto3" json:"ubo_id_doc_name"`
  2317. // 证件号码
  2318. UboIdDocNumber string `protobuf:"bytes,6,opt,name=ubo_id_doc_number,json=uboIdDocNumber,proto3" json:"ubo_id_doc_number"`
  2319. // 开始时间
  2320. UboPeriodBegin string `protobuf:"bytes,7,opt,name=ubo_period_begin,json=uboPeriodBegin,proto3" json:"ubo_period_begin"`
  2321. // 结束时间
  2322. UboPeriodEnd string `protobuf:"bytes,8,opt,name=ubo_period_end,json=uboPeriodEnd,proto3" json:"ubo_period_end"`
  2323. // 收益人证件正面url
  2324. UboIdDocCopyUrl string `protobuf:"bytes,9,opt,name=ubo_id_doc_copy_url,json=uboIdDocCopyUrl,proto3" json:"ubo_id_doc_copy_url"`
  2325. // 背面url
  2326. UboIdDocCopyBackUrl string `protobuf:"bytes,10,opt,name=ubo_id_doc_copy_back_url,json=uboIdDocCopyBackUrl,proto3" json:"ubo_id_doc_copy_back_url"`
  2327. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2328. XXX_unrecognized []byte `json:"-"`
  2329. XXX_sizecache int32 `json:"-"`
  2330. }
  2331. func (m *CompanyWxUboInfo) Reset() { *m = CompanyWxUboInfo{} }
  2332. func (m *CompanyWxUboInfo) String() string { return proto.CompactTextString(m) }
  2333. func (*CompanyWxUboInfo) ProtoMessage() {}
  2334. func (*CompanyWxUboInfo) Descriptor() ([]byte, []int) {
  2335. return fileDescriptor_ade57ca5b8f3903f, []int{31}
  2336. }
  2337. func (m *CompanyWxUboInfo) XXX_Unmarshal(b []byte) error {
  2338. return xxx_messageInfo_CompanyWxUboInfo.Unmarshal(m, b)
  2339. }
  2340. func (m *CompanyWxUboInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2341. return xxx_messageInfo_CompanyWxUboInfo.Marshal(b, m, deterministic)
  2342. }
  2343. func (m *CompanyWxUboInfo) XXX_Merge(src proto.Message) {
  2344. xxx_messageInfo_CompanyWxUboInfo.Merge(m, src)
  2345. }
  2346. func (m *CompanyWxUboInfo) XXX_Size() int {
  2347. return xxx_messageInfo_CompanyWxUboInfo.Size(m)
  2348. }
  2349. func (m *CompanyWxUboInfo) XXX_DiscardUnknown() {
  2350. xxx_messageInfo_CompanyWxUboInfo.DiscardUnknown(m)
  2351. }
  2352. var xxx_messageInfo_CompanyWxUboInfo proto.InternalMessageInfo
  2353. func (m *CompanyWxUboInfo) GetUboIdDocType() string {
  2354. if m != nil {
  2355. return m.UboIdDocType
  2356. }
  2357. return ""
  2358. }
  2359. func (m *CompanyWxUboInfo) GetUboIdDocCopy() string {
  2360. if m != nil {
  2361. return m.UboIdDocCopy
  2362. }
  2363. return ""
  2364. }
  2365. func (m *CompanyWxUboInfo) GetUboIdDocCopyBack() string {
  2366. if m != nil {
  2367. return m.UboIdDocCopyBack
  2368. }
  2369. return ""
  2370. }
  2371. func (m *CompanyWxUboInfo) GetUboIdDocAddress() string {
  2372. if m != nil {
  2373. return m.UboIdDocAddress
  2374. }
  2375. return ""
  2376. }
  2377. func (m *CompanyWxUboInfo) GetUboIdDocName() string {
  2378. if m != nil {
  2379. return m.UboIdDocName
  2380. }
  2381. return ""
  2382. }
  2383. func (m *CompanyWxUboInfo) GetUboIdDocNumber() string {
  2384. if m != nil {
  2385. return m.UboIdDocNumber
  2386. }
  2387. return ""
  2388. }
  2389. func (m *CompanyWxUboInfo) GetUboPeriodBegin() string {
  2390. if m != nil {
  2391. return m.UboPeriodBegin
  2392. }
  2393. return ""
  2394. }
  2395. func (m *CompanyWxUboInfo) GetUboPeriodEnd() string {
  2396. if m != nil {
  2397. return m.UboPeriodEnd
  2398. }
  2399. return ""
  2400. }
  2401. func (m *CompanyWxUboInfo) GetUboIdDocCopyUrl() string {
  2402. if m != nil {
  2403. return m.UboIdDocCopyUrl
  2404. }
  2405. return ""
  2406. }
  2407. func (m *CompanyWxUboInfo) GetUboIdDocCopyBackUrl() string {
  2408. if m != nil {
  2409. return m.UboIdDocCopyBackUrl
  2410. }
  2411. return ""
  2412. }
  2413. type CompanyWxBusinessLicenseInfo struct {
  2414. // 营业执照图片
  2415. LicenseCopy string `protobuf:"bytes,1,opt,name=license_copy,json=licenseCopy,proto3" json:"license_copy"`
  2416. // 统一社会信用码
  2417. LicenseNumber string `protobuf:"bytes,2,opt,name=license_number,json=licenseNumber,proto3" json:"license_number"`
  2418. // 营业执照上的商户名称
  2419. MerchantName string `protobuf:"bytes,3,opt,name=merchant_name,json=merchantName,proto3" json:"merchant_name"`
  2420. // 法人姓名
  2421. LegalPerson string `protobuf:"bytes,4,opt,name=legal_person,json=legalPerson,proto3" json:"legal_person"`
  2422. LicenseAddress string `protobuf:"bytes,5,opt,name=license_address,json=licenseAddress,proto3" json:"license_address"`
  2423. PeriodBegin string `protobuf:"bytes,6,opt,name=period_begin,json=periodBegin,proto3" json:"period_begin"`
  2424. PeriodEnd string `protobuf:"bytes,7,opt,name=period_end,json=periodEnd,proto3" json:"period_end"`
  2425. // 营业执照图片
  2426. LicenseCopyUrl string `protobuf:"bytes,8,opt,name=license_copy_url,json=licenseCopyUrl,proto3" json:"license_copy_url"`
  2427. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2428. XXX_unrecognized []byte `json:"-"`
  2429. XXX_sizecache int32 `json:"-"`
  2430. }
  2431. func (m *CompanyWxBusinessLicenseInfo) Reset() { *m = CompanyWxBusinessLicenseInfo{} }
  2432. func (m *CompanyWxBusinessLicenseInfo) String() string { return proto.CompactTextString(m) }
  2433. func (*CompanyWxBusinessLicenseInfo) ProtoMessage() {}
  2434. func (*CompanyWxBusinessLicenseInfo) Descriptor() ([]byte, []int) {
  2435. return fileDescriptor_ade57ca5b8f3903f, []int{32}
  2436. }
  2437. func (m *CompanyWxBusinessLicenseInfo) XXX_Unmarshal(b []byte) error {
  2438. return xxx_messageInfo_CompanyWxBusinessLicenseInfo.Unmarshal(m, b)
  2439. }
  2440. func (m *CompanyWxBusinessLicenseInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2441. return xxx_messageInfo_CompanyWxBusinessLicenseInfo.Marshal(b, m, deterministic)
  2442. }
  2443. func (m *CompanyWxBusinessLicenseInfo) XXX_Merge(src proto.Message) {
  2444. xxx_messageInfo_CompanyWxBusinessLicenseInfo.Merge(m, src)
  2445. }
  2446. func (m *CompanyWxBusinessLicenseInfo) XXX_Size() int {
  2447. return xxx_messageInfo_CompanyWxBusinessLicenseInfo.Size(m)
  2448. }
  2449. func (m *CompanyWxBusinessLicenseInfo) XXX_DiscardUnknown() {
  2450. xxx_messageInfo_CompanyWxBusinessLicenseInfo.DiscardUnknown(m)
  2451. }
  2452. var xxx_messageInfo_CompanyWxBusinessLicenseInfo proto.InternalMessageInfo
  2453. func (m *CompanyWxBusinessLicenseInfo) GetLicenseCopy() string {
  2454. if m != nil {
  2455. return m.LicenseCopy
  2456. }
  2457. return ""
  2458. }
  2459. func (m *CompanyWxBusinessLicenseInfo) GetLicenseNumber() string {
  2460. if m != nil {
  2461. return m.LicenseNumber
  2462. }
  2463. return ""
  2464. }
  2465. func (m *CompanyWxBusinessLicenseInfo) GetMerchantName() string {
  2466. if m != nil {
  2467. return m.MerchantName
  2468. }
  2469. return ""
  2470. }
  2471. func (m *CompanyWxBusinessLicenseInfo) GetLegalPerson() string {
  2472. if m != nil {
  2473. return m.LegalPerson
  2474. }
  2475. return ""
  2476. }
  2477. func (m *CompanyWxBusinessLicenseInfo) GetLicenseAddress() string {
  2478. if m != nil {
  2479. return m.LicenseAddress
  2480. }
  2481. return ""
  2482. }
  2483. func (m *CompanyWxBusinessLicenseInfo) GetPeriodBegin() string {
  2484. if m != nil {
  2485. return m.PeriodBegin
  2486. }
  2487. return ""
  2488. }
  2489. func (m *CompanyWxBusinessLicenseInfo) GetPeriodEnd() string {
  2490. if m != nil {
  2491. return m.PeriodEnd
  2492. }
  2493. return ""
  2494. }
  2495. func (m *CompanyWxBusinessLicenseInfo) GetLicenseCopyUrl() string {
  2496. if m != nil {
  2497. return m.LicenseCopyUrl
  2498. }
  2499. return ""
  2500. }
  2501. type CompanyWxSubjectInfo struct {
  2502. //主体类型需与营业执照/登记证书上一致,可参考选择主体指引
  2503. //SUBJECT_TYPE_INDIVIDUAL(个体户):营业执照上的主体类型一般为个体户、个体工商户、个体经营;
  2504. //SUBJECT_TYPE_ENTERPRISE(企业):营业执照上的主体类型一般为有限公司、有限责任公司;
  2505. //SUBJECT_TYPE_INSTITUTIONS(党政、机关及事业单位):包括国内各级、各类政府机构、事业单位等(如:公安、党团、司法、交通、旅游、工商税务、市政、医疗、教育、学校等机构);
  2506. //SUBJECT_TYPE_OTHERS(其他组织):不属于企业、政府/事业单位的组织机构(如社会团体、民办非企业、基金会),要求机构已办理组织机构代码证。
  2507. SubjectType string `protobuf:"bytes,1,opt,name=subject_type,json=subjectType,proto3" json:"subject_type"`
  2508. // 营业执照信息
  2509. BusinessLicenseInfo *CompanyWxBusinessLicenseInfo `protobuf:"bytes,2,opt,name=business_license_info,json=businessLicenseInfo,proto3" json:"business_license_info"`
  2510. // 法人身份信息
  2511. IdentityInfo *CompanyWxIdentityInfo `protobuf:"bytes,4,opt,name=identity_info,json=identityInfo,proto3" json:"identity_info"`
  2512. // 受益人身份信息,若法人不是最终受益人,该字段必填
  2513. // 若经营者/法人不是最终受益所有人,则需提填写受益所有人信息。
  2514. // 根据国家相关法律法规,需要提供公司受益所有人信息,受益所有人需符合至少以下条件之一:
  2515. // 1、直接或者间接拥有超过25%公司股权或者表决权的自然人。
  2516. // 2、通过人事、财务等其他方式对公司进行控制的自然人。
  2517. // 3、公司的高级管理人员,包括公司的经理、副经理、财务负责人、上市公司董事会秘书和公司章程规定的其他人员。
  2518. UboInfos []*CompanyWxIdDocInfo `protobuf:"bytes,5,rep,name=ubo_infos,json=uboInfos,proto3" json:"ubo_infos"`
  2519. // 主体为政府机关/事业单位/其他组织时,必填。
  2520. CertInfo *CompanyWxCertificateInfo `protobuf:"bytes,6,opt,name=cert_info,json=certInfo,proto3" json:"cert_info"`
  2521. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2522. XXX_unrecognized []byte `json:"-"`
  2523. XXX_sizecache int32 `json:"-"`
  2524. }
  2525. func (m *CompanyWxSubjectInfo) Reset() { *m = CompanyWxSubjectInfo{} }
  2526. func (m *CompanyWxSubjectInfo) String() string { return proto.CompactTextString(m) }
  2527. func (*CompanyWxSubjectInfo) ProtoMessage() {}
  2528. func (*CompanyWxSubjectInfo) Descriptor() ([]byte, []int) {
  2529. return fileDescriptor_ade57ca5b8f3903f, []int{33}
  2530. }
  2531. func (m *CompanyWxSubjectInfo) XXX_Unmarshal(b []byte) error {
  2532. return xxx_messageInfo_CompanyWxSubjectInfo.Unmarshal(m, b)
  2533. }
  2534. func (m *CompanyWxSubjectInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2535. return xxx_messageInfo_CompanyWxSubjectInfo.Marshal(b, m, deterministic)
  2536. }
  2537. func (m *CompanyWxSubjectInfo) XXX_Merge(src proto.Message) {
  2538. xxx_messageInfo_CompanyWxSubjectInfo.Merge(m, src)
  2539. }
  2540. func (m *CompanyWxSubjectInfo) XXX_Size() int {
  2541. return xxx_messageInfo_CompanyWxSubjectInfo.Size(m)
  2542. }
  2543. func (m *CompanyWxSubjectInfo) XXX_DiscardUnknown() {
  2544. xxx_messageInfo_CompanyWxSubjectInfo.DiscardUnknown(m)
  2545. }
  2546. var xxx_messageInfo_CompanyWxSubjectInfo proto.InternalMessageInfo
  2547. func (m *CompanyWxSubjectInfo) GetSubjectType() string {
  2548. if m != nil {
  2549. return m.SubjectType
  2550. }
  2551. return ""
  2552. }
  2553. func (m *CompanyWxSubjectInfo) GetBusinessLicenseInfo() *CompanyWxBusinessLicenseInfo {
  2554. if m != nil {
  2555. return m.BusinessLicenseInfo
  2556. }
  2557. return nil
  2558. }
  2559. func (m *CompanyWxSubjectInfo) GetIdentityInfo() *CompanyWxIdentityInfo {
  2560. if m != nil {
  2561. return m.IdentityInfo
  2562. }
  2563. return nil
  2564. }
  2565. func (m *CompanyWxSubjectInfo) GetUboInfos() []*CompanyWxIdDocInfo {
  2566. if m != nil {
  2567. return m.UboInfos
  2568. }
  2569. return nil
  2570. }
  2571. func (m *CompanyWxSubjectInfo) GetCertInfo() *CompanyWxCertificateInfo {
  2572. if m != nil {
  2573. return m.CertInfo
  2574. }
  2575. return nil
  2576. }
  2577. type CompanyWxBusinessInfo struct {
  2578. // 1、请输入2-30个字符,支持中文/字母/数字/特殊符号
  2579. // 2、在支付完成页向买家展示,需与微信经营类目相关;
  2580. // 3、简称要求
  2581. // (1)不支持单纯以人名来命名,若为个体户经营,可用“个体户+经营者名称”或“经营者名称+业务”命名,如“个体户张三”或“张三餐饮店”;
  2582. // (2)不支持无实际意义的文案,如“XX特约商户”、“800”、“XX客服电话XXX”
  2583. MerchantShortname string `protobuf:"bytes,1,opt,name=merchant_shortname,json=merchantShortname,proto3" json:"merchant_shortname"`
  2584. // 客服电话
  2585. ServicePhone string `protobuf:"bytes,2,opt,name=service_phone,json=servicePhone,proto3" json:"service_phone"`
  2586. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2587. XXX_unrecognized []byte `json:"-"`
  2588. XXX_sizecache int32 `json:"-"`
  2589. }
  2590. func (m *CompanyWxBusinessInfo) Reset() { *m = CompanyWxBusinessInfo{} }
  2591. func (m *CompanyWxBusinessInfo) String() string { return proto.CompactTextString(m) }
  2592. func (*CompanyWxBusinessInfo) ProtoMessage() {}
  2593. func (*CompanyWxBusinessInfo) Descriptor() ([]byte, []int) {
  2594. return fileDescriptor_ade57ca5b8f3903f, []int{34}
  2595. }
  2596. func (m *CompanyWxBusinessInfo) XXX_Unmarshal(b []byte) error {
  2597. return xxx_messageInfo_CompanyWxBusinessInfo.Unmarshal(m, b)
  2598. }
  2599. func (m *CompanyWxBusinessInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2600. return xxx_messageInfo_CompanyWxBusinessInfo.Marshal(b, m, deterministic)
  2601. }
  2602. func (m *CompanyWxBusinessInfo) XXX_Merge(src proto.Message) {
  2603. xxx_messageInfo_CompanyWxBusinessInfo.Merge(m, src)
  2604. }
  2605. func (m *CompanyWxBusinessInfo) XXX_Size() int {
  2606. return xxx_messageInfo_CompanyWxBusinessInfo.Size(m)
  2607. }
  2608. func (m *CompanyWxBusinessInfo) XXX_DiscardUnknown() {
  2609. xxx_messageInfo_CompanyWxBusinessInfo.DiscardUnknown(m)
  2610. }
  2611. var xxx_messageInfo_CompanyWxBusinessInfo proto.InternalMessageInfo
  2612. func (m *CompanyWxBusinessInfo) GetMerchantShortname() string {
  2613. if m != nil {
  2614. return m.MerchantShortname
  2615. }
  2616. return ""
  2617. }
  2618. func (m *CompanyWxBusinessInfo) GetServicePhone() string {
  2619. if m != nil {
  2620. return m.ServicePhone
  2621. }
  2622. return ""
  2623. }
  2624. type CompanyWxBankAccountInfo struct {
  2625. // 开户姓名, 开户名称必须与营业执照/登记证书的“商户名称”一致
  2626. AccountName string `protobuf:"bytes,1,opt,name=account_name,json=accountName,proto3" json:"account_name"`
  2627. // 开户行
  2628. AccountBank string `protobuf:"bytes,2,opt,name=account_bank,json=accountBank,proto3" json:"account_bank"`
  2629. // 开户银行省市编码
  2630. BankAddressCode string `protobuf:"bytes,3,opt,name=bank_address_code,json=bankAddressCode,proto3" json:"bank_address_code"`
  2631. // 开户银行联行号
  2632. // 1、17家直连银行无需填写,如为其他银行,则开户银行全称(含支行)和开户银行联行号二选一。
  2633. // 2、详细参见开户银行全称(含支行)对照表。
  2634. // 示例值:402713354941
  2635. BankBranchId string `protobuf:"bytes,4,opt,name=bank_branch_id,json=bankBranchId,proto3" json:"bank_branch_id"`
  2636. // 开户银行全称(含支行)
  2637. // 1、17家直连银行无需填写,如为其他银行,则开户银行全称(含支行)和 开户银行联行号二选一。
  2638. //2、需填写银行全称,如"深圳农村商业银行XXX支行",详细参见开户银行全称(含支行)对照表。
  2639. //示例值:施秉县农村信用合作联社城关信用社
  2640. BankName string `protobuf:"bytes,5,opt,name=bank_name,json=bankName,proto3" json:"bank_name"`
  2641. // 银行账号
  2642. AccountNumber string `protobuf:"bytes,6,opt,name=account_number,json=accountNumber,proto3" json:"account_number"`
  2643. BankAccountType string `protobuf:"bytes,7,opt,name=bank_account_type,json=bankAccountType,proto3" json:"bank_account_type"`
  2644. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2645. XXX_unrecognized []byte `json:"-"`
  2646. XXX_sizecache int32 `json:"-"`
  2647. }
  2648. func (m *CompanyWxBankAccountInfo) Reset() { *m = CompanyWxBankAccountInfo{} }
  2649. func (m *CompanyWxBankAccountInfo) String() string { return proto.CompactTextString(m) }
  2650. func (*CompanyWxBankAccountInfo) ProtoMessage() {}
  2651. func (*CompanyWxBankAccountInfo) Descriptor() ([]byte, []int) {
  2652. return fileDescriptor_ade57ca5b8f3903f, []int{35}
  2653. }
  2654. func (m *CompanyWxBankAccountInfo) XXX_Unmarshal(b []byte) error {
  2655. return xxx_messageInfo_CompanyWxBankAccountInfo.Unmarshal(m, b)
  2656. }
  2657. func (m *CompanyWxBankAccountInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2658. return xxx_messageInfo_CompanyWxBankAccountInfo.Marshal(b, m, deterministic)
  2659. }
  2660. func (m *CompanyWxBankAccountInfo) XXX_Merge(src proto.Message) {
  2661. xxx_messageInfo_CompanyWxBankAccountInfo.Merge(m, src)
  2662. }
  2663. func (m *CompanyWxBankAccountInfo) XXX_Size() int {
  2664. return xxx_messageInfo_CompanyWxBankAccountInfo.Size(m)
  2665. }
  2666. func (m *CompanyWxBankAccountInfo) XXX_DiscardUnknown() {
  2667. xxx_messageInfo_CompanyWxBankAccountInfo.DiscardUnknown(m)
  2668. }
  2669. var xxx_messageInfo_CompanyWxBankAccountInfo proto.InternalMessageInfo
  2670. func (m *CompanyWxBankAccountInfo) GetAccountName() string {
  2671. if m != nil {
  2672. return m.AccountName
  2673. }
  2674. return ""
  2675. }
  2676. func (m *CompanyWxBankAccountInfo) GetAccountBank() string {
  2677. if m != nil {
  2678. return m.AccountBank
  2679. }
  2680. return ""
  2681. }
  2682. func (m *CompanyWxBankAccountInfo) GetBankAddressCode() string {
  2683. if m != nil {
  2684. return m.BankAddressCode
  2685. }
  2686. return ""
  2687. }
  2688. func (m *CompanyWxBankAccountInfo) GetBankBranchId() string {
  2689. if m != nil {
  2690. return m.BankBranchId
  2691. }
  2692. return ""
  2693. }
  2694. func (m *CompanyWxBankAccountInfo) GetBankName() string {
  2695. if m != nil {
  2696. return m.BankName
  2697. }
  2698. return ""
  2699. }
  2700. func (m *CompanyWxBankAccountInfo) GetAccountNumber() string {
  2701. if m != nil {
  2702. return m.AccountNumber
  2703. }
  2704. return ""
  2705. }
  2706. func (m *CompanyWxBankAccountInfo) GetBankAccountType() string {
  2707. if m != nil {
  2708. return m.BankAccountType
  2709. }
  2710. return ""
  2711. }
  2712. type CompanyWxContactInfo struct {
  2713. // LEGAL:经营者/法人,SUPER:经办人 。
  2714. ContactType string `protobuf:"bytes,1,opt,name=contact_type,json=contactType,proto3" json:"contact_type"`
  2715. // 联系人姓名
  2716. ContactName string `protobuf:"bytes,2,opt,name=contact_name,json=contactName,proto3" json:"contact_name"`
  2717. // 联系人证件类型(当为经办人时才填)
  2718. ContactIdDocType string `protobuf:"bytes,3,opt,name=contact_id_doc_type,json=contactIdDocType,proto3" json:"contact_id_doc_type"`
  2719. // 证件号(当为经办人时才填)
  2720. ContactIdNumber string `protobuf:"bytes,4,opt,name=contact_id_number,json=contactIdNumber,proto3" json:"contact_id_number"`
  2721. // 证件正面图片id(当为经办人时才填)
  2722. ContactIdDocCopy string `protobuf:"bytes,5,opt,name=contact_id_doc_copy,json=contactIdDocCopy,proto3" json:"contact_id_doc_copy"`
  2723. // 证件背面图片id(当为经办人时才填)
  2724. ContactIdDocCopyBack string `protobuf:"bytes,6,opt,name=contact_id_doc_copy_back,json=contactIdDocCopyBack,proto3" json:"contact_id_doc_copy_back"`
  2725. // 证件开始时间(当为经办人时才填)
  2726. ContactPeriodBegin string `protobuf:"bytes,7,opt,name=contact_period_begin,json=contactPeriodBegin,proto3" json:"contact_period_begin"`
  2727. // 证件结束时间(当为经办人时才填)
  2728. ContactPeriodEnd string `protobuf:"bytes,8,opt,name=contact_period_end,json=contactPeriodEnd,proto3" json:"contact_period_end"`
  2729. // 授权函(当为经办人时才填)
  2730. BusinessAuthorizationLetter string `protobuf:"bytes,9,opt,name=business_authorization_letter,json=businessAuthorizationLetter,proto3" json:"business_authorization_letter"`
  2731. // 联系人电话(当为经办人时才填)
  2732. MobilePhone string `protobuf:"bytes,10,opt,name=mobile_phone,json=mobilePhone,proto3" json:"mobile_phone"`
  2733. Openid string `protobuf:"bytes,11,opt,name=openid,proto3" json:"openid"`
  2734. // 联系人邮箱(当为经办人时才填)
  2735. ContactEmail string `protobuf:"bytes,12,opt,name=contact_email,json=contactEmail,proto3" json:"contact_email"`
  2736. // 证件正面图片id(当为经办人时才填)
  2737. ContactIdDocCopyUrl string `protobuf:"bytes,13,opt,name=contact_id_doc_copy_url,json=contactIdDocCopyUrl,proto3" json:"contact_id_doc_copy_url"`
  2738. // 证件背面图片id(当为经办人时才填)
  2739. ContactIdDocCopyBackUrl string `protobuf:"bytes,14,opt,name=contact_id_doc_copy_back_url,json=contactIdDocCopyBackUrl,proto3" json:"contact_id_doc_copy_back_url"`
  2740. // 授权函(当为经办人时才填)
  2741. BusinessAuthorizationLetterUrl string `protobuf:"bytes,15,opt,name=business_authorization_letter_url,json=businessAuthorizationLetterUrl,proto3" json:"business_authorization_letter_url"`
  2742. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2743. XXX_unrecognized []byte `json:"-"`
  2744. XXX_sizecache int32 `json:"-"`
  2745. }
  2746. func (m *CompanyWxContactInfo) Reset() { *m = CompanyWxContactInfo{} }
  2747. func (m *CompanyWxContactInfo) String() string { return proto.CompactTextString(m) }
  2748. func (*CompanyWxContactInfo) ProtoMessage() {}
  2749. func (*CompanyWxContactInfo) Descriptor() ([]byte, []int) {
  2750. return fileDescriptor_ade57ca5b8f3903f, []int{36}
  2751. }
  2752. func (m *CompanyWxContactInfo) XXX_Unmarshal(b []byte) error {
  2753. return xxx_messageInfo_CompanyWxContactInfo.Unmarshal(m, b)
  2754. }
  2755. func (m *CompanyWxContactInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2756. return xxx_messageInfo_CompanyWxContactInfo.Marshal(b, m, deterministic)
  2757. }
  2758. func (m *CompanyWxContactInfo) XXX_Merge(src proto.Message) {
  2759. xxx_messageInfo_CompanyWxContactInfo.Merge(m, src)
  2760. }
  2761. func (m *CompanyWxContactInfo) XXX_Size() int {
  2762. return xxx_messageInfo_CompanyWxContactInfo.Size(m)
  2763. }
  2764. func (m *CompanyWxContactInfo) XXX_DiscardUnknown() {
  2765. xxx_messageInfo_CompanyWxContactInfo.DiscardUnknown(m)
  2766. }
  2767. var xxx_messageInfo_CompanyWxContactInfo proto.InternalMessageInfo
  2768. func (m *CompanyWxContactInfo) GetContactType() string {
  2769. if m != nil {
  2770. return m.ContactType
  2771. }
  2772. return ""
  2773. }
  2774. func (m *CompanyWxContactInfo) GetContactName() string {
  2775. if m != nil {
  2776. return m.ContactName
  2777. }
  2778. return ""
  2779. }
  2780. func (m *CompanyWxContactInfo) GetContactIdDocType() string {
  2781. if m != nil {
  2782. return m.ContactIdDocType
  2783. }
  2784. return ""
  2785. }
  2786. func (m *CompanyWxContactInfo) GetContactIdNumber() string {
  2787. if m != nil {
  2788. return m.ContactIdNumber
  2789. }
  2790. return ""
  2791. }
  2792. func (m *CompanyWxContactInfo) GetContactIdDocCopy() string {
  2793. if m != nil {
  2794. return m.ContactIdDocCopy
  2795. }
  2796. return ""
  2797. }
  2798. func (m *CompanyWxContactInfo) GetContactIdDocCopyBack() string {
  2799. if m != nil {
  2800. return m.ContactIdDocCopyBack
  2801. }
  2802. return ""
  2803. }
  2804. func (m *CompanyWxContactInfo) GetContactPeriodBegin() string {
  2805. if m != nil {
  2806. return m.ContactPeriodBegin
  2807. }
  2808. return ""
  2809. }
  2810. func (m *CompanyWxContactInfo) GetContactPeriodEnd() string {
  2811. if m != nil {
  2812. return m.ContactPeriodEnd
  2813. }
  2814. return ""
  2815. }
  2816. func (m *CompanyWxContactInfo) GetBusinessAuthorizationLetter() string {
  2817. if m != nil {
  2818. return m.BusinessAuthorizationLetter
  2819. }
  2820. return ""
  2821. }
  2822. func (m *CompanyWxContactInfo) GetMobilePhone() string {
  2823. if m != nil {
  2824. return m.MobilePhone
  2825. }
  2826. return ""
  2827. }
  2828. func (m *CompanyWxContactInfo) GetOpenid() string {
  2829. if m != nil {
  2830. return m.Openid
  2831. }
  2832. return ""
  2833. }
  2834. func (m *CompanyWxContactInfo) GetContactEmail() string {
  2835. if m != nil {
  2836. return m.ContactEmail
  2837. }
  2838. return ""
  2839. }
  2840. func (m *CompanyWxContactInfo) GetContactIdDocCopyUrl() string {
  2841. if m != nil {
  2842. return m.ContactIdDocCopyUrl
  2843. }
  2844. return ""
  2845. }
  2846. func (m *CompanyWxContactInfo) GetContactIdDocCopyBackUrl() string {
  2847. if m != nil {
  2848. return m.ContactIdDocCopyBackUrl
  2849. }
  2850. return ""
  2851. }
  2852. func (m *CompanyWxContactInfo) GetBusinessAuthorizationLetterUrl() string {
  2853. if m != nil {
  2854. return m.BusinessAuthorizationLetterUrl
  2855. }
  2856. return ""
  2857. }
  2858. type CompanyWxAccountApplyRequest struct {
  2859. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  2860. // 主体资料
  2861. SubjectInfo *CompanyWxSubjectInfo `protobuf:"bytes,2,opt,name=subject_info,json=subjectInfo,proto3" json:"subject_info"`
  2862. // 经营资料
  2863. BusinessInfo *CompanyWxBusinessInfo `protobuf:"bytes,3,opt,name=business_info,json=businessInfo,proto3" json:"business_info"`
  2864. // 银行账号资料
  2865. BankAccountInfo *CompanyWxBankAccountInfo `protobuf:"bytes,4,opt,name=bank_account_info,json=bankAccountInfo,proto3" json:"bank_account_info"`
  2866. // 超管员资料
  2867. ContactInfo *CompanyWxContactInfo `protobuf:"bytes,5,opt,name=contact_info,json=contactInfo,proto3" json:"contact_info"`
  2868. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2869. XXX_unrecognized []byte `json:"-"`
  2870. XXX_sizecache int32 `json:"-"`
  2871. }
  2872. func (m *CompanyWxAccountApplyRequest) Reset() { *m = CompanyWxAccountApplyRequest{} }
  2873. func (m *CompanyWxAccountApplyRequest) String() string { return proto.CompactTextString(m) }
  2874. func (*CompanyWxAccountApplyRequest) ProtoMessage() {}
  2875. func (*CompanyWxAccountApplyRequest) Descriptor() ([]byte, []int) {
  2876. return fileDescriptor_ade57ca5b8f3903f, []int{37}
  2877. }
  2878. func (m *CompanyWxAccountApplyRequest) XXX_Unmarshal(b []byte) error {
  2879. return xxx_messageInfo_CompanyWxAccountApplyRequest.Unmarshal(m, b)
  2880. }
  2881. func (m *CompanyWxAccountApplyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2882. return xxx_messageInfo_CompanyWxAccountApplyRequest.Marshal(b, m, deterministic)
  2883. }
  2884. func (m *CompanyWxAccountApplyRequest) XXX_Merge(src proto.Message) {
  2885. xxx_messageInfo_CompanyWxAccountApplyRequest.Merge(m, src)
  2886. }
  2887. func (m *CompanyWxAccountApplyRequest) XXX_Size() int {
  2888. return xxx_messageInfo_CompanyWxAccountApplyRequest.Size(m)
  2889. }
  2890. func (m *CompanyWxAccountApplyRequest) XXX_DiscardUnknown() {
  2891. xxx_messageInfo_CompanyWxAccountApplyRequest.DiscardUnknown(m)
  2892. }
  2893. var xxx_messageInfo_CompanyWxAccountApplyRequest proto.InternalMessageInfo
  2894. func (m *CompanyWxAccountApplyRequest) GetCid() int64 {
  2895. if m != nil {
  2896. return m.Cid
  2897. }
  2898. return 0
  2899. }
  2900. func (m *CompanyWxAccountApplyRequest) GetSubjectInfo() *CompanyWxSubjectInfo {
  2901. if m != nil {
  2902. return m.SubjectInfo
  2903. }
  2904. return nil
  2905. }
  2906. func (m *CompanyWxAccountApplyRequest) GetBusinessInfo() *CompanyWxBusinessInfo {
  2907. if m != nil {
  2908. return m.BusinessInfo
  2909. }
  2910. return nil
  2911. }
  2912. func (m *CompanyWxAccountApplyRequest) GetBankAccountInfo() *CompanyWxBankAccountInfo {
  2913. if m != nil {
  2914. return m.BankAccountInfo
  2915. }
  2916. return nil
  2917. }
  2918. func (m *CompanyWxAccountApplyRequest) GetContactInfo() *CompanyWxContactInfo {
  2919. if m != nil {
  2920. return m.ContactInfo
  2921. }
  2922. return nil
  2923. }
  2924. type CompanyWxAccountApplyReply struct {
  2925. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2926. XXX_unrecognized []byte `json:"-"`
  2927. XXX_sizecache int32 `json:"-"`
  2928. }
  2929. func (m *CompanyWxAccountApplyReply) Reset() { *m = CompanyWxAccountApplyReply{} }
  2930. func (m *CompanyWxAccountApplyReply) String() string { return proto.CompactTextString(m) }
  2931. func (*CompanyWxAccountApplyReply) ProtoMessage() {}
  2932. func (*CompanyWxAccountApplyReply) Descriptor() ([]byte, []int) {
  2933. return fileDescriptor_ade57ca5b8f3903f, []int{38}
  2934. }
  2935. func (m *CompanyWxAccountApplyReply) XXX_Unmarshal(b []byte) error {
  2936. return xxx_messageInfo_CompanyWxAccountApplyReply.Unmarshal(m, b)
  2937. }
  2938. func (m *CompanyWxAccountApplyReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2939. return xxx_messageInfo_CompanyWxAccountApplyReply.Marshal(b, m, deterministic)
  2940. }
  2941. func (m *CompanyWxAccountApplyReply) XXX_Merge(src proto.Message) {
  2942. xxx_messageInfo_CompanyWxAccountApplyReply.Merge(m, src)
  2943. }
  2944. func (m *CompanyWxAccountApplyReply) XXX_Size() int {
  2945. return xxx_messageInfo_CompanyWxAccountApplyReply.Size(m)
  2946. }
  2947. func (m *CompanyWxAccountApplyReply) XXX_DiscardUnknown() {
  2948. xxx_messageInfo_CompanyWxAccountApplyReply.DiscardUnknown(m)
  2949. }
  2950. var xxx_messageInfo_CompanyWxAccountApplyReply proto.InternalMessageInfo
  2951. type CompanyWxAccountApplyListRequest struct {
  2952. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  2953. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  2954. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  2955. MerchantName string `protobuf:"bytes,4,opt,name=merchant_name,json=merchantName,proto3" json:"merchant_name"`
  2956. Management bool `protobuf:"varint,5,opt,name=management,proto3" json:"management"`
  2957. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2958. XXX_unrecognized []byte `json:"-"`
  2959. XXX_sizecache int32 `json:"-"`
  2960. }
  2961. func (m *CompanyWxAccountApplyListRequest) Reset() { *m = CompanyWxAccountApplyListRequest{} }
  2962. func (m *CompanyWxAccountApplyListRequest) String() string { return proto.CompactTextString(m) }
  2963. func (*CompanyWxAccountApplyListRequest) ProtoMessage() {}
  2964. func (*CompanyWxAccountApplyListRequest) Descriptor() ([]byte, []int) {
  2965. return fileDescriptor_ade57ca5b8f3903f, []int{39}
  2966. }
  2967. func (m *CompanyWxAccountApplyListRequest) XXX_Unmarshal(b []byte) error {
  2968. return xxx_messageInfo_CompanyWxAccountApplyListRequest.Unmarshal(m, b)
  2969. }
  2970. func (m *CompanyWxAccountApplyListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2971. return xxx_messageInfo_CompanyWxAccountApplyListRequest.Marshal(b, m, deterministic)
  2972. }
  2973. func (m *CompanyWxAccountApplyListRequest) XXX_Merge(src proto.Message) {
  2974. xxx_messageInfo_CompanyWxAccountApplyListRequest.Merge(m, src)
  2975. }
  2976. func (m *CompanyWxAccountApplyListRequest) XXX_Size() int {
  2977. return xxx_messageInfo_CompanyWxAccountApplyListRequest.Size(m)
  2978. }
  2979. func (m *CompanyWxAccountApplyListRequest) XXX_DiscardUnknown() {
  2980. xxx_messageInfo_CompanyWxAccountApplyListRequest.DiscardUnknown(m)
  2981. }
  2982. var xxx_messageInfo_CompanyWxAccountApplyListRequest proto.InternalMessageInfo
  2983. func (m *CompanyWxAccountApplyListRequest) GetCid() int64 {
  2984. if m != nil {
  2985. return m.Cid
  2986. }
  2987. return 0
  2988. }
  2989. func (m *CompanyWxAccountApplyListRequest) GetPage() int64 {
  2990. if m != nil {
  2991. return m.Page
  2992. }
  2993. return 0
  2994. }
  2995. func (m *CompanyWxAccountApplyListRequest) GetPageSize() int64 {
  2996. if m != nil {
  2997. return m.PageSize
  2998. }
  2999. return 0
  3000. }
  3001. func (m *CompanyWxAccountApplyListRequest) GetMerchantName() string {
  3002. if m != nil {
  3003. return m.MerchantName
  3004. }
  3005. return ""
  3006. }
  3007. func (m *CompanyWxAccountApplyListRequest) GetManagement() bool {
  3008. if m != nil {
  3009. return m.Management
  3010. }
  3011. return false
  3012. }
  3013. type CompanyWxAccountApplyListItem struct {
  3014. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3015. // 单号
  3016. BusinessCode string `protobuf:"bytes,2,opt,name=business_code,json=businessCode,proto3" json:"business_code"`
  3017. // 申请的商户名称
  3018. MerchantName string `protobuf:"bytes,3,opt,name=merchant_name,json=merchantName,proto3" json:"merchant_name"`
  3019. // 1、APPLYMENT_STATE_EDITTING(编辑中):提交申请发生错误导致,请尝试重新提交。
  3020. //2、APPLYMENT_STATE_AUDITING(审核中):申请单正在审核中,超级管理员用微信打开“签约链接”,完成绑定微信号后,申请单进度将通过微信公众号通知超级管理员,引导完成后续步骤。
  3021. //3、APPLYMENT_STATE_REJECTED(已驳回):请按照驳回原因修改申请资料,超级管理员用微信打开“签约链接”,完成绑定微信号,后续申请单进度将通过微信公众号通知超级管理员。
  3022. //4、APPLYMENT_STATE_TO_BE_CONFIRMED(待账户验证):请超级管理员使用微信打开返回的“签约链接”,根据页面指引完成账户验证。
  3023. //5、APPLYMENT_STATE_TO_BE_SIGNED(待签约):请超级管理员使用微信打开返回的“签约链接”,根据页面指引完成签约。
  3024. //6、APPLYMENT_STATE_SIGNING(开通权限中):系统开通相关权限中,请耐心等待。
  3025. //7、APPLYMENT_STATE_FINISHED(已完成):商户入驻申请已完成。
  3026. //8、APPLYMENT_STATE_CANCELED(已作废):申请单已被撤销。
  3027. State string `protobuf:"bytes,4,opt,name=state,proto3" json:"state"`
  3028. // 状态描述
  3029. StateMsg string `protobuf:"bytes,5,opt,name=state_msg,json=stateMsg,proto3" json:"state_msg"`
  3030. // 商户号(申请审批成功才会有)
  3031. MchId string `protobuf:"bytes,6,opt,name=mch_id,json=mchId,proto3" json:"mch_id"`
  3032. // 二维码
  3033. SignUrl string `protobuf:"bytes,7,opt,name=sign_url,json=signUrl,proto3" json:"sign_url"`
  3034. // 驳回原因
  3035. Reason string `protobuf:"bytes,8,opt,name=reason,proto3" json:"reason"`
  3036. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3037. XXX_unrecognized []byte `json:"-"`
  3038. XXX_sizecache int32 `json:"-"`
  3039. }
  3040. func (m *CompanyWxAccountApplyListItem) Reset() { *m = CompanyWxAccountApplyListItem{} }
  3041. func (m *CompanyWxAccountApplyListItem) String() string { return proto.CompactTextString(m) }
  3042. func (*CompanyWxAccountApplyListItem) ProtoMessage() {}
  3043. func (*CompanyWxAccountApplyListItem) Descriptor() ([]byte, []int) {
  3044. return fileDescriptor_ade57ca5b8f3903f, []int{40}
  3045. }
  3046. func (m *CompanyWxAccountApplyListItem) XXX_Unmarshal(b []byte) error {
  3047. return xxx_messageInfo_CompanyWxAccountApplyListItem.Unmarshal(m, b)
  3048. }
  3049. func (m *CompanyWxAccountApplyListItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3050. return xxx_messageInfo_CompanyWxAccountApplyListItem.Marshal(b, m, deterministic)
  3051. }
  3052. func (m *CompanyWxAccountApplyListItem) XXX_Merge(src proto.Message) {
  3053. xxx_messageInfo_CompanyWxAccountApplyListItem.Merge(m, src)
  3054. }
  3055. func (m *CompanyWxAccountApplyListItem) XXX_Size() int {
  3056. return xxx_messageInfo_CompanyWxAccountApplyListItem.Size(m)
  3057. }
  3058. func (m *CompanyWxAccountApplyListItem) XXX_DiscardUnknown() {
  3059. xxx_messageInfo_CompanyWxAccountApplyListItem.DiscardUnknown(m)
  3060. }
  3061. var xxx_messageInfo_CompanyWxAccountApplyListItem proto.InternalMessageInfo
  3062. func (m *CompanyWxAccountApplyListItem) GetId() int64 {
  3063. if m != nil {
  3064. return m.Id
  3065. }
  3066. return 0
  3067. }
  3068. func (m *CompanyWxAccountApplyListItem) GetBusinessCode() string {
  3069. if m != nil {
  3070. return m.BusinessCode
  3071. }
  3072. return ""
  3073. }
  3074. func (m *CompanyWxAccountApplyListItem) GetMerchantName() string {
  3075. if m != nil {
  3076. return m.MerchantName
  3077. }
  3078. return ""
  3079. }
  3080. func (m *CompanyWxAccountApplyListItem) GetState() string {
  3081. if m != nil {
  3082. return m.State
  3083. }
  3084. return ""
  3085. }
  3086. func (m *CompanyWxAccountApplyListItem) GetStateMsg() string {
  3087. if m != nil {
  3088. return m.StateMsg
  3089. }
  3090. return ""
  3091. }
  3092. func (m *CompanyWxAccountApplyListItem) GetMchId() string {
  3093. if m != nil {
  3094. return m.MchId
  3095. }
  3096. return ""
  3097. }
  3098. func (m *CompanyWxAccountApplyListItem) GetSignUrl() string {
  3099. if m != nil {
  3100. return m.SignUrl
  3101. }
  3102. return ""
  3103. }
  3104. func (m *CompanyWxAccountApplyListItem) GetReason() string {
  3105. if m != nil {
  3106. return m.Reason
  3107. }
  3108. return ""
  3109. }
  3110. type CompanyWxAccountApplyListReply struct {
  3111. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  3112. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  3113. List []*CompanyWxAccountApplyListItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3114. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3115. XXX_unrecognized []byte `json:"-"`
  3116. XXX_sizecache int32 `json:"-"`
  3117. }
  3118. func (m *CompanyWxAccountApplyListReply) Reset() { *m = CompanyWxAccountApplyListReply{} }
  3119. func (m *CompanyWxAccountApplyListReply) String() string { return proto.CompactTextString(m) }
  3120. func (*CompanyWxAccountApplyListReply) ProtoMessage() {}
  3121. func (*CompanyWxAccountApplyListReply) Descriptor() ([]byte, []int) {
  3122. return fileDescriptor_ade57ca5b8f3903f, []int{41}
  3123. }
  3124. func (m *CompanyWxAccountApplyListReply) XXX_Unmarshal(b []byte) error {
  3125. return xxx_messageInfo_CompanyWxAccountApplyListReply.Unmarshal(m, b)
  3126. }
  3127. func (m *CompanyWxAccountApplyListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3128. return xxx_messageInfo_CompanyWxAccountApplyListReply.Marshal(b, m, deterministic)
  3129. }
  3130. func (m *CompanyWxAccountApplyListReply) XXX_Merge(src proto.Message) {
  3131. xxx_messageInfo_CompanyWxAccountApplyListReply.Merge(m, src)
  3132. }
  3133. func (m *CompanyWxAccountApplyListReply) XXX_Size() int {
  3134. return xxx_messageInfo_CompanyWxAccountApplyListReply.Size(m)
  3135. }
  3136. func (m *CompanyWxAccountApplyListReply) XXX_DiscardUnknown() {
  3137. xxx_messageInfo_CompanyWxAccountApplyListReply.DiscardUnknown(m)
  3138. }
  3139. var xxx_messageInfo_CompanyWxAccountApplyListReply proto.InternalMessageInfo
  3140. func (m *CompanyWxAccountApplyListReply) GetTotal() int64 {
  3141. if m != nil {
  3142. return m.Total
  3143. }
  3144. return 0
  3145. }
  3146. func (m *CompanyWxAccountApplyListReply) GetPage() int64 {
  3147. if m != nil {
  3148. return m.Page
  3149. }
  3150. return 0
  3151. }
  3152. func (m *CompanyWxAccountApplyListReply) GetList() []*CompanyWxAccountApplyListItem {
  3153. if m != nil {
  3154. return m.List
  3155. }
  3156. return nil
  3157. }
  3158. type CompanyWxAccountInfo struct {
  3159. CompanyName string `protobuf:"bytes,1,opt,name=company_name,json=companyName,proto3" json:"company_name"`
  3160. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3161. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"`
  3162. // 主体资料
  3163. SubjectInfo *CompanyWxSubjectInfo `protobuf:"bytes,4,opt,name=subject_info,json=subjectInfo,proto3" json:"subject_info"`
  3164. // 经营资料
  3165. // CompanyWxBusinessInfo business_info = 5;
  3166. // 银行账号资料
  3167. // CompanyWxBankAccountInfo bank_account_info = 6;
  3168. Status int32 `protobuf:"varint,7,opt,name=status,proto3" json:"status"`
  3169. Feedback string `protobuf:"bytes,8,opt,name=feedback,proto3" json:"feedback"`
  3170. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3171. XXX_unrecognized []byte `json:"-"`
  3172. XXX_sizecache int32 `json:"-"`
  3173. }
  3174. func (m *CompanyWxAccountInfo) Reset() { *m = CompanyWxAccountInfo{} }
  3175. func (m *CompanyWxAccountInfo) String() string { return proto.CompactTextString(m) }
  3176. func (*CompanyWxAccountInfo) ProtoMessage() {}
  3177. func (*CompanyWxAccountInfo) Descriptor() ([]byte, []int) {
  3178. return fileDescriptor_ade57ca5b8f3903f, []int{42}
  3179. }
  3180. func (m *CompanyWxAccountInfo) XXX_Unmarshal(b []byte) error {
  3181. return xxx_messageInfo_CompanyWxAccountInfo.Unmarshal(m, b)
  3182. }
  3183. func (m *CompanyWxAccountInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3184. return xxx_messageInfo_CompanyWxAccountInfo.Marshal(b, m, deterministic)
  3185. }
  3186. func (m *CompanyWxAccountInfo) XXX_Merge(src proto.Message) {
  3187. xxx_messageInfo_CompanyWxAccountInfo.Merge(m, src)
  3188. }
  3189. func (m *CompanyWxAccountInfo) XXX_Size() int {
  3190. return xxx_messageInfo_CompanyWxAccountInfo.Size(m)
  3191. }
  3192. func (m *CompanyWxAccountInfo) XXX_DiscardUnknown() {
  3193. xxx_messageInfo_CompanyWxAccountInfo.DiscardUnknown(m)
  3194. }
  3195. var xxx_messageInfo_CompanyWxAccountInfo proto.InternalMessageInfo
  3196. func (m *CompanyWxAccountInfo) GetCompanyName() string {
  3197. if m != nil {
  3198. return m.CompanyName
  3199. }
  3200. return ""
  3201. }
  3202. func (m *CompanyWxAccountInfo) GetCid() int64 {
  3203. if m != nil {
  3204. return m.Cid
  3205. }
  3206. return 0
  3207. }
  3208. func (m *CompanyWxAccountInfo) GetId() int64 {
  3209. if m != nil {
  3210. return m.Id
  3211. }
  3212. return 0
  3213. }
  3214. func (m *CompanyWxAccountInfo) GetSubjectInfo() *CompanyWxSubjectInfo {
  3215. if m != nil {
  3216. return m.SubjectInfo
  3217. }
  3218. return nil
  3219. }
  3220. func (m *CompanyWxAccountInfo) GetStatus() int32 {
  3221. if m != nil {
  3222. return m.Status
  3223. }
  3224. return 0
  3225. }
  3226. func (m *CompanyWxAccountInfo) GetFeedback() string {
  3227. if m != nil {
  3228. return m.Feedback
  3229. }
  3230. return ""
  3231. }
  3232. type CompanyWxAccountApplyInfoRequest struct {
  3233. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3234. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3235. Management bool `protobuf:"varint,3,opt,name=management,proto3" json:"management"`
  3236. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3237. XXX_unrecognized []byte `json:"-"`
  3238. XXX_sizecache int32 `json:"-"`
  3239. }
  3240. func (m *CompanyWxAccountApplyInfoRequest) Reset() { *m = CompanyWxAccountApplyInfoRequest{} }
  3241. func (m *CompanyWxAccountApplyInfoRequest) String() string { return proto.CompactTextString(m) }
  3242. func (*CompanyWxAccountApplyInfoRequest) ProtoMessage() {}
  3243. func (*CompanyWxAccountApplyInfoRequest) Descriptor() ([]byte, []int) {
  3244. return fileDescriptor_ade57ca5b8f3903f, []int{43}
  3245. }
  3246. func (m *CompanyWxAccountApplyInfoRequest) XXX_Unmarshal(b []byte) error {
  3247. return xxx_messageInfo_CompanyWxAccountApplyInfoRequest.Unmarshal(m, b)
  3248. }
  3249. func (m *CompanyWxAccountApplyInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3250. return xxx_messageInfo_CompanyWxAccountApplyInfoRequest.Marshal(b, m, deterministic)
  3251. }
  3252. func (m *CompanyWxAccountApplyInfoRequest) XXX_Merge(src proto.Message) {
  3253. xxx_messageInfo_CompanyWxAccountApplyInfoRequest.Merge(m, src)
  3254. }
  3255. func (m *CompanyWxAccountApplyInfoRequest) XXX_Size() int {
  3256. return xxx_messageInfo_CompanyWxAccountApplyInfoRequest.Size(m)
  3257. }
  3258. func (m *CompanyWxAccountApplyInfoRequest) XXX_DiscardUnknown() {
  3259. xxx_messageInfo_CompanyWxAccountApplyInfoRequest.DiscardUnknown(m)
  3260. }
  3261. var xxx_messageInfo_CompanyWxAccountApplyInfoRequest proto.InternalMessageInfo
  3262. func (m *CompanyWxAccountApplyInfoRequest) GetId() int64 {
  3263. if m != nil {
  3264. return m.Id
  3265. }
  3266. return 0
  3267. }
  3268. func (m *CompanyWxAccountApplyInfoRequest) GetCid() int64 {
  3269. if m != nil {
  3270. return m.Cid
  3271. }
  3272. return 0
  3273. }
  3274. func (m *CompanyWxAccountApplyInfoRequest) GetManagement() bool {
  3275. if m != nil {
  3276. return m.Management
  3277. }
  3278. return false
  3279. }
  3280. type CompanyWxAccountApplyInfoReply struct {
  3281. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3282. // 主体资料
  3283. SubjectInfo *CompanyWxSubjectInfo `protobuf:"bytes,2,opt,name=subject_info,json=subjectInfo,proto3" json:"subject_info"`
  3284. // 经营资料
  3285. BusinessInfo *CompanyWxBusinessInfo `protobuf:"bytes,3,opt,name=business_info,json=businessInfo,proto3" json:"business_info"`
  3286. // 银行账号资料
  3287. BankAccountInfo *CompanyWxBankAccountInfo `protobuf:"bytes,4,opt,name=bank_account_info,json=bankAccountInfo,proto3" json:"bank_account_info"`
  3288. // 超管员资料
  3289. ContactInfo *CompanyWxContactInfo `protobuf:"bytes,5,opt,name=contact_info,json=contactInfo,proto3" json:"contact_info"`
  3290. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3291. XXX_unrecognized []byte `json:"-"`
  3292. XXX_sizecache int32 `json:"-"`
  3293. }
  3294. func (m *CompanyWxAccountApplyInfoReply) Reset() { *m = CompanyWxAccountApplyInfoReply{} }
  3295. func (m *CompanyWxAccountApplyInfoReply) String() string { return proto.CompactTextString(m) }
  3296. func (*CompanyWxAccountApplyInfoReply) ProtoMessage() {}
  3297. func (*CompanyWxAccountApplyInfoReply) Descriptor() ([]byte, []int) {
  3298. return fileDescriptor_ade57ca5b8f3903f, []int{44}
  3299. }
  3300. func (m *CompanyWxAccountApplyInfoReply) XXX_Unmarshal(b []byte) error {
  3301. return xxx_messageInfo_CompanyWxAccountApplyInfoReply.Unmarshal(m, b)
  3302. }
  3303. func (m *CompanyWxAccountApplyInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3304. return xxx_messageInfo_CompanyWxAccountApplyInfoReply.Marshal(b, m, deterministic)
  3305. }
  3306. func (m *CompanyWxAccountApplyInfoReply) XXX_Merge(src proto.Message) {
  3307. xxx_messageInfo_CompanyWxAccountApplyInfoReply.Merge(m, src)
  3308. }
  3309. func (m *CompanyWxAccountApplyInfoReply) XXX_Size() int {
  3310. return xxx_messageInfo_CompanyWxAccountApplyInfoReply.Size(m)
  3311. }
  3312. func (m *CompanyWxAccountApplyInfoReply) XXX_DiscardUnknown() {
  3313. xxx_messageInfo_CompanyWxAccountApplyInfoReply.DiscardUnknown(m)
  3314. }
  3315. var xxx_messageInfo_CompanyWxAccountApplyInfoReply proto.InternalMessageInfo
  3316. func (m *CompanyWxAccountApplyInfoReply) GetId() int64 {
  3317. if m != nil {
  3318. return m.Id
  3319. }
  3320. return 0
  3321. }
  3322. func (m *CompanyWxAccountApplyInfoReply) GetSubjectInfo() *CompanyWxSubjectInfo {
  3323. if m != nil {
  3324. return m.SubjectInfo
  3325. }
  3326. return nil
  3327. }
  3328. func (m *CompanyWxAccountApplyInfoReply) GetBusinessInfo() *CompanyWxBusinessInfo {
  3329. if m != nil {
  3330. return m.BusinessInfo
  3331. }
  3332. return nil
  3333. }
  3334. func (m *CompanyWxAccountApplyInfoReply) GetBankAccountInfo() *CompanyWxBankAccountInfo {
  3335. if m != nil {
  3336. return m.BankAccountInfo
  3337. }
  3338. return nil
  3339. }
  3340. func (m *CompanyWxAccountApplyInfoReply) GetContactInfo() *CompanyWxContactInfo {
  3341. if m != nil {
  3342. return m.ContactInfo
  3343. }
  3344. return nil
  3345. }
  3346. type CompanyPayModelRequest struct {
  3347. // 1 仅支持线下支付 2 支付到公司账户 3 支付到系统提供商账户
  3348. PayMode int32 `protobuf:"varint,1,opt,name=pay_mode,json=payMode,proto3" json:"pay_mode"`
  3349. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3350. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3351. XXX_unrecognized []byte `json:"-"`
  3352. XXX_sizecache int32 `json:"-"`
  3353. }
  3354. func (m *CompanyPayModelRequest) Reset() { *m = CompanyPayModelRequest{} }
  3355. func (m *CompanyPayModelRequest) String() string { return proto.CompactTextString(m) }
  3356. func (*CompanyPayModelRequest) ProtoMessage() {}
  3357. func (*CompanyPayModelRequest) Descriptor() ([]byte, []int) {
  3358. return fileDescriptor_ade57ca5b8f3903f, []int{45}
  3359. }
  3360. func (m *CompanyPayModelRequest) XXX_Unmarshal(b []byte) error {
  3361. return xxx_messageInfo_CompanyPayModelRequest.Unmarshal(m, b)
  3362. }
  3363. func (m *CompanyPayModelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3364. return xxx_messageInfo_CompanyPayModelRequest.Marshal(b, m, deterministic)
  3365. }
  3366. func (m *CompanyPayModelRequest) XXX_Merge(src proto.Message) {
  3367. xxx_messageInfo_CompanyPayModelRequest.Merge(m, src)
  3368. }
  3369. func (m *CompanyPayModelRequest) XXX_Size() int {
  3370. return xxx_messageInfo_CompanyPayModelRequest.Size(m)
  3371. }
  3372. func (m *CompanyPayModelRequest) XXX_DiscardUnknown() {
  3373. xxx_messageInfo_CompanyPayModelRequest.DiscardUnknown(m)
  3374. }
  3375. var xxx_messageInfo_CompanyPayModelRequest proto.InternalMessageInfo
  3376. func (m *CompanyPayModelRequest) GetPayMode() int32 {
  3377. if m != nil {
  3378. return m.PayMode
  3379. }
  3380. return 0
  3381. }
  3382. func (m *CompanyPayModelRequest) GetCid() int64 {
  3383. if m != nil {
  3384. return m.Cid
  3385. }
  3386. return 0
  3387. }
  3388. type CompanyPayModelReply struct {
  3389. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3390. XXX_unrecognized []byte `json:"-"`
  3391. XXX_sizecache int32 `json:"-"`
  3392. }
  3393. func (m *CompanyPayModelReply) Reset() { *m = CompanyPayModelReply{} }
  3394. func (m *CompanyPayModelReply) String() string { return proto.CompactTextString(m) }
  3395. func (*CompanyPayModelReply) ProtoMessage() {}
  3396. func (*CompanyPayModelReply) Descriptor() ([]byte, []int) {
  3397. return fileDescriptor_ade57ca5b8f3903f, []int{46}
  3398. }
  3399. func (m *CompanyPayModelReply) XXX_Unmarshal(b []byte) error {
  3400. return xxx_messageInfo_CompanyPayModelReply.Unmarshal(m, b)
  3401. }
  3402. func (m *CompanyPayModelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3403. return xxx_messageInfo_CompanyPayModelReply.Marshal(b, m, deterministic)
  3404. }
  3405. func (m *CompanyPayModelReply) XXX_Merge(src proto.Message) {
  3406. xxx_messageInfo_CompanyPayModelReply.Merge(m, src)
  3407. }
  3408. func (m *CompanyPayModelReply) XXX_Size() int {
  3409. return xxx_messageInfo_CompanyPayModelReply.Size(m)
  3410. }
  3411. func (m *CompanyPayModelReply) XXX_DiscardUnknown() {
  3412. xxx_messageInfo_CompanyPayModelReply.DiscardUnknown(m)
  3413. }
  3414. var xxx_messageInfo_CompanyPayModelReply proto.InternalMessageInfo
  3415. type CompanyMchIdSetRequest struct {
  3416. MchId string `protobuf:"bytes,1,opt,name=mch_id,json=mchId,proto3" json:"mch_id"`
  3417. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3418. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3419. XXX_unrecognized []byte `json:"-"`
  3420. XXX_sizecache int32 `json:"-"`
  3421. }
  3422. func (m *CompanyMchIdSetRequest) Reset() { *m = CompanyMchIdSetRequest{} }
  3423. func (m *CompanyMchIdSetRequest) String() string { return proto.CompactTextString(m) }
  3424. func (*CompanyMchIdSetRequest) ProtoMessage() {}
  3425. func (*CompanyMchIdSetRequest) Descriptor() ([]byte, []int) {
  3426. return fileDescriptor_ade57ca5b8f3903f, []int{47}
  3427. }
  3428. func (m *CompanyMchIdSetRequest) XXX_Unmarshal(b []byte) error {
  3429. return xxx_messageInfo_CompanyMchIdSetRequest.Unmarshal(m, b)
  3430. }
  3431. func (m *CompanyMchIdSetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3432. return xxx_messageInfo_CompanyMchIdSetRequest.Marshal(b, m, deterministic)
  3433. }
  3434. func (m *CompanyMchIdSetRequest) XXX_Merge(src proto.Message) {
  3435. xxx_messageInfo_CompanyMchIdSetRequest.Merge(m, src)
  3436. }
  3437. func (m *CompanyMchIdSetRequest) XXX_Size() int {
  3438. return xxx_messageInfo_CompanyMchIdSetRequest.Size(m)
  3439. }
  3440. func (m *CompanyMchIdSetRequest) XXX_DiscardUnknown() {
  3441. xxx_messageInfo_CompanyMchIdSetRequest.DiscardUnknown(m)
  3442. }
  3443. var xxx_messageInfo_CompanyMchIdSetRequest proto.InternalMessageInfo
  3444. func (m *CompanyMchIdSetRequest) GetMchId() string {
  3445. if m != nil {
  3446. return m.MchId
  3447. }
  3448. return ""
  3449. }
  3450. func (m *CompanyMchIdSetRequest) GetCid() int64 {
  3451. if m != nil {
  3452. return m.Cid
  3453. }
  3454. return 0
  3455. }
  3456. type CompanyMchIdSetReply struct {
  3457. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3458. XXX_unrecognized []byte `json:"-"`
  3459. XXX_sizecache int32 `json:"-"`
  3460. }
  3461. func (m *CompanyMchIdSetReply) Reset() { *m = CompanyMchIdSetReply{} }
  3462. func (m *CompanyMchIdSetReply) String() string { return proto.CompactTextString(m) }
  3463. func (*CompanyMchIdSetReply) ProtoMessage() {}
  3464. func (*CompanyMchIdSetReply) Descriptor() ([]byte, []int) {
  3465. return fileDescriptor_ade57ca5b8f3903f, []int{48}
  3466. }
  3467. func (m *CompanyMchIdSetReply) XXX_Unmarshal(b []byte) error {
  3468. return xxx_messageInfo_CompanyMchIdSetReply.Unmarshal(m, b)
  3469. }
  3470. func (m *CompanyMchIdSetReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3471. return xxx_messageInfo_CompanyMchIdSetReply.Marshal(b, m, deterministic)
  3472. }
  3473. func (m *CompanyMchIdSetReply) XXX_Merge(src proto.Message) {
  3474. xxx_messageInfo_CompanyMchIdSetReply.Merge(m, src)
  3475. }
  3476. func (m *CompanyMchIdSetReply) XXX_Size() int {
  3477. return xxx_messageInfo_CompanyMchIdSetReply.Size(m)
  3478. }
  3479. func (m *CompanyMchIdSetReply) XXX_DiscardUnknown() {
  3480. xxx_messageInfo_CompanyMchIdSetReply.DiscardUnknown(m)
  3481. }
  3482. var xxx_messageInfo_CompanyMchIdSetReply proto.InternalMessageInfo
  3483. type CompanyCanAddGardenRequest struct {
  3484. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  3485. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3486. XXX_unrecognized []byte `json:"-"`
  3487. XXX_sizecache int32 `json:"-"`
  3488. }
  3489. func (m *CompanyCanAddGardenRequest) Reset() { *m = CompanyCanAddGardenRequest{} }
  3490. func (m *CompanyCanAddGardenRequest) String() string { return proto.CompactTextString(m) }
  3491. func (*CompanyCanAddGardenRequest) ProtoMessage() {}
  3492. func (*CompanyCanAddGardenRequest) Descriptor() ([]byte, []int) {
  3493. return fileDescriptor_ade57ca5b8f3903f, []int{49}
  3494. }
  3495. func (m *CompanyCanAddGardenRequest) XXX_Unmarshal(b []byte) error {
  3496. return xxx_messageInfo_CompanyCanAddGardenRequest.Unmarshal(m, b)
  3497. }
  3498. func (m *CompanyCanAddGardenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3499. return xxx_messageInfo_CompanyCanAddGardenRequest.Marshal(b, m, deterministic)
  3500. }
  3501. func (m *CompanyCanAddGardenRequest) XXX_Merge(src proto.Message) {
  3502. xxx_messageInfo_CompanyCanAddGardenRequest.Merge(m, src)
  3503. }
  3504. func (m *CompanyCanAddGardenRequest) XXX_Size() int {
  3505. return xxx_messageInfo_CompanyCanAddGardenRequest.Size(m)
  3506. }
  3507. func (m *CompanyCanAddGardenRequest) XXX_DiscardUnknown() {
  3508. xxx_messageInfo_CompanyCanAddGardenRequest.DiscardUnknown(m)
  3509. }
  3510. var xxx_messageInfo_CompanyCanAddGardenRequest proto.InternalMessageInfo
  3511. func (m *CompanyCanAddGardenRequest) GetCid() int64 {
  3512. if m != nil {
  3513. return m.Cid
  3514. }
  3515. return 0
  3516. }
  3517. type CompanyCanAddGardenReply struct {
  3518. CanAdd bool `protobuf:"varint,1,opt,name=can_add,json=canAdd,proto3" json:"can_add"`
  3519. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3520. XXX_unrecognized []byte `json:"-"`
  3521. XXX_sizecache int32 `json:"-"`
  3522. }
  3523. func (m *CompanyCanAddGardenReply) Reset() { *m = CompanyCanAddGardenReply{} }
  3524. func (m *CompanyCanAddGardenReply) String() string { return proto.CompactTextString(m) }
  3525. func (*CompanyCanAddGardenReply) ProtoMessage() {}
  3526. func (*CompanyCanAddGardenReply) Descriptor() ([]byte, []int) {
  3527. return fileDescriptor_ade57ca5b8f3903f, []int{50}
  3528. }
  3529. func (m *CompanyCanAddGardenReply) XXX_Unmarshal(b []byte) error {
  3530. return xxx_messageInfo_CompanyCanAddGardenReply.Unmarshal(m, b)
  3531. }
  3532. func (m *CompanyCanAddGardenReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3533. return xxx_messageInfo_CompanyCanAddGardenReply.Marshal(b, m, deterministic)
  3534. }
  3535. func (m *CompanyCanAddGardenReply) XXX_Merge(src proto.Message) {
  3536. xxx_messageInfo_CompanyCanAddGardenReply.Merge(m, src)
  3537. }
  3538. func (m *CompanyCanAddGardenReply) XXX_Size() int {
  3539. return xxx_messageInfo_CompanyCanAddGardenReply.Size(m)
  3540. }
  3541. func (m *CompanyCanAddGardenReply) XXX_DiscardUnknown() {
  3542. xxx_messageInfo_CompanyCanAddGardenReply.DiscardUnknown(m)
  3543. }
  3544. var xxx_messageInfo_CompanyCanAddGardenReply proto.InternalMessageInfo
  3545. func (m *CompanyCanAddGardenReply) GetCanAdd() bool {
  3546. if m != nil {
  3547. return m.CanAdd
  3548. }
  3549. return false
  3550. }
  3551. type CompanyUserAddRequest struct {
  3552. UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name"`
  3553. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  3554. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email"`
  3555. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  3556. Cid int64 `protobuf:"varint,5,opt,name=cid,proto3" json:"cid"`
  3557. RealName string `protobuf:"bytes,6,opt,name=real_name,json=realName,proto3" json:"real_name"`
  3558. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3559. XXX_unrecognized []byte `json:"-"`
  3560. XXX_sizecache int32 `json:"-"`
  3561. }
  3562. func (m *CompanyUserAddRequest) Reset() { *m = CompanyUserAddRequest{} }
  3563. func (m *CompanyUserAddRequest) String() string { return proto.CompactTextString(m) }
  3564. func (*CompanyUserAddRequest) ProtoMessage() {}
  3565. func (*CompanyUserAddRequest) Descriptor() ([]byte, []int) {
  3566. return fileDescriptor_ade57ca5b8f3903f, []int{51}
  3567. }
  3568. func (m *CompanyUserAddRequest) XXX_Unmarshal(b []byte) error {
  3569. return xxx_messageInfo_CompanyUserAddRequest.Unmarshal(m, b)
  3570. }
  3571. func (m *CompanyUserAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3572. return xxx_messageInfo_CompanyUserAddRequest.Marshal(b, m, deterministic)
  3573. }
  3574. func (m *CompanyUserAddRequest) XXX_Merge(src proto.Message) {
  3575. xxx_messageInfo_CompanyUserAddRequest.Merge(m, src)
  3576. }
  3577. func (m *CompanyUserAddRequest) XXX_Size() int {
  3578. return xxx_messageInfo_CompanyUserAddRequest.Size(m)
  3579. }
  3580. func (m *CompanyUserAddRequest) XXX_DiscardUnknown() {
  3581. xxx_messageInfo_CompanyUserAddRequest.DiscardUnknown(m)
  3582. }
  3583. var xxx_messageInfo_CompanyUserAddRequest proto.InternalMessageInfo
  3584. func (m *CompanyUserAddRequest) GetUserName() string {
  3585. if m != nil {
  3586. return m.UserName
  3587. }
  3588. return ""
  3589. }
  3590. func (m *CompanyUserAddRequest) GetPassword() string {
  3591. if m != nil {
  3592. return m.Password
  3593. }
  3594. return ""
  3595. }
  3596. func (m *CompanyUserAddRequest) GetEmail() string {
  3597. if m != nil {
  3598. return m.Email
  3599. }
  3600. return ""
  3601. }
  3602. func (m *CompanyUserAddRequest) GetPhone() string {
  3603. if m != nil {
  3604. return m.Phone
  3605. }
  3606. return ""
  3607. }
  3608. func (m *CompanyUserAddRequest) GetCid() int64 {
  3609. if m != nil {
  3610. return m.Cid
  3611. }
  3612. return 0
  3613. }
  3614. func (m *CompanyUserAddRequest) GetRealName() string {
  3615. if m != nil {
  3616. return m.RealName
  3617. }
  3618. return ""
  3619. }
  3620. type CompanyUserAddReply struct {
  3621. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3622. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3623. XXX_unrecognized []byte `json:"-"`
  3624. XXX_sizecache int32 `json:"-"`
  3625. }
  3626. func (m *CompanyUserAddReply) Reset() { *m = CompanyUserAddReply{} }
  3627. func (m *CompanyUserAddReply) String() string { return proto.CompactTextString(m) }
  3628. func (*CompanyUserAddReply) ProtoMessage() {}
  3629. func (*CompanyUserAddReply) Descriptor() ([]byte, []int) {
  3630. return fileDescriptor_ade57ca5b8f3903f, []int{52}
  3631. }
  3632. func (m *CompanyUserAddReply) XXX_Unmarshal(b []byte) error {
  3633. return xxx_messageInfo_CompanyUserAddReply.Unmarshal(m, b)
  3634. }
  3635. func (m *CompanyUserAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3636. return xxx_messageInfo_CompanyUserAddReply.Marshal(b, m, deterministic)
  3637. }
  3638. func (m *CompanyUserAddReply) XXX_Merge(src proto.Message) {
  3639. xxx_messageInfo_CompanyUserAddReply.Merge(m, src)
  3640. }
  3641. func (m *CompanyUserAddReply) XXX_Size() int {
  3642. return xxx_messageInfo_CompanyUserAddReply.Size(m)
  3643. }
  3644. func (m *CompanyUserAddReply) XXX_DiscardUnknown() {
  3645. xxx_messageInfo_CompanyUserAddReply.DiscardUnknown(m)
  3646. }
  3647. var xxx_messageInfo_CompanyUserAddReply proto.InternalMessageInfo
  3648. func (m *CompanyUserAddReply) GetId() int64 {
  3649. if m != nil {
  3650. return m.Id
  3651. }
  3652. return 0
  3653. }
  3654. type CompanyUserUpdateRequest struct {
  3655. UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name"`
  3656. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  3657. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email"`
  3658. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  3659. Super bool `protobuf:"varint,5,opt,name=super,proto3" json:"super"`
  3660. Id int64 `protobuf:"varint,6,opt,name=id,proto3" json:"id"`
  3661. RealName string `protobuf:"bytes,7,opt,name=real_name,json=realName,proto3" json:"real_name"`
  3662. Cid int64 `protobuf:"varint,8,opt,name=cid,proto3" json:"cid"`
  3663. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3664. XXX_unrecognized []byte `json:"-"`
  3665. XXX_sizecache int32 `json:"-"`
  3666. }
  3667. func (m *CompanyUserUpdateRequest) Reset() { *m = CompanyUserUpdateRequest{} }
  3668. func (m *CompanyUserUpdateRequest) String() string { return proto.CompactTextString(m) }
  3669. func (*CompanyUserUpdateRequest) ProtoMessage() {}
  3670. func (*CompanyUserUpdateRequest) Descriptor() ([]byte, []int) {
  3671. return fileDescriptor_ade57ca5b8f3903f, []int{53}
  3672. }
  3673. func (m *CompanyUserUpdateRequest) XXX_Unmarshal(b []byte) error {
  3674. return xxx_messageInfo_CompanyUserUpdateRequest.Unmarshal(m, b)
  3675. }
  3676. func (m *CompanyUserUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3677. return xxx_messageInfo_CompanyUserUpdateRequest.Marshal(b, m, deterministic)
  3678. }
  3679. func (m *CompanyUserUpdateRequest) XXX_Merge(src proto.Message) {
  3680. xxx_messageInfo_CompanyUserUpdateRequest.Merge(m, src)
  3681. }
  3682. func (m *CompanyUserUpdateRequest) XXX_Size() int {
  3683. return xxx_messageInfo_CompanyUserUpdateRequest.Size(m)
  3684. }
  3685. func (m *CompanyUserUpdateRequest) XXX_DiscardUnknown() {
  3686. xxx_messageInfo_CompanyUserUpdateRequest.DiscardUnknown(m)
  3687. }
  3688. var xxx_messageInfo_CompanyUserUpdateRequest proto.InternalMessageInfo
  3689. func (m *CompanyUserUpdateRequest) GetUserName() string {
  3690. if m != nil {
  3691. return m.UserName
  3692. }
  3693. return ""
  3694. }
  3695. func (m *CompanyUserUpdateRequest) GetPassword() string {
  3696. if m != nil {
  3697. return m.Password
  3698. }
  3699. return ""
  3700. }
  3701. func (m *CompanyUserUpdateRequest) GetEmail() string {
  3702. if m != nil {
  3703. return m.Email
  3704. }
  3705. return ""
  3706. }
  3707. func (m *CompanyUserUpdateRequest) GetPhone() string {
  3708. if m != nil {
  3709. return m.Phone
  3710. }
  3711. return ""
  3712. }
  3713. func (m *CompanyUserUpdateRequest) GetSuper() bool {
  3714. if m != nil {
  3715. return m.Super
  3716. }
  3717. return false
  3718. }
  3719. func (m *CompanyUserUpdateRequest) GetId() int64 {
  3720. if m != nil {
  3721. return m.Id
  3722. }
  3723. return 0
  3724. }
  3725. func (m *CompanyUserUpdateRequest) GetRealName() string {
  3726. if m != nil {
  3727. return m.RealName
  3728. }
  3729. return ""
  3730. }
  3731. func (m *CompanyUserUpdateRequest) GetCid() int64 {
  3732. if m != nil {
  3733. return m.Cid
  3734. }
  3735. return 0
  3736. }
  3737. type CompanyUserUpdateReply struct {
  3738. Origin *CompanyUserUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  3739. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3740. XXX_unrecognized []byte `json:"-"`
  3741. XXX_sizecache int32 `json:"-"`
  3742. }
  3743. func (m *CompanyUserUpdateReply) Reset() { *m = CompanyUserUpdateReply{} }
  3744. func (m *CompanyUserUpdateReply) String() string { return proto.CompactTextString(m) }
  3745. func (*CompanyUserUpdateReply) ProtoMessage() {}
  3746. func (*CompanyUserUpdateReply) Descriptor() ([]byte, []int) {
  3747. return fileDescriptor_ade57ca5b8f3903f, []int{54}
  3748. }
  3749. func (m *CompanyUserUpdateReply) XXX_Unmarshal(b []byte) error {
  3750. return xxx_messageInfo_CompanyUserUpdateReply.Unmarshal(m, b)
  3751. }
  3752. func (m *CompanyUserUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3753. return xxx_messageInfo_CompanyUserUpdateReply.Marshal(b, m, deterministic)
  3754. }
  3755. func (m *CompanyUserUpdateReply) XXX_Merge(src proto.Message) {
  3756. xxx_messageInfo_CompanyUserUpdateReply.Merge(m, src)
  3757. }
  3758. func (m *CompanyUserUpdateReply) XXX_Size() int {
  3759. return xxx_messageInfo_CompanyUserUpdateReply.Size(m)
  3760. }
  3761. func (m *CompanyUserUpdateReply) XXX_DiscardUnknown() {
  3762. xxx_messageInfo_CompanyUserUpdateReply.DiscardUnknown(m)
  3763. }
  3764. var xxx_messageInfo_CompanyUserUpdateReply proto.InternalMessageInfo
  3765. func (m *CompanyUserUpdateReply) GetOrigin() *CompanyUserUpdateRequest {
  3766. if m != nil {
  3767. return m.Origin
  3768. }
  3769. return nil
  3770. }
  3771. type CompanyUserDelRequest struct {
  3772. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3773. Cid int64 `protobuf:"varint,2,opt,name=cid,proto3" json:"cid"`
  3774. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3775. XXX_unrecognized []byte `json:"-"`
  3776. XXX_sizecache int32 `json:"-"`
  3777. }
  3778. func (m *CompanyUserDelRequest) Reset() { *m = CompanyUserDelRequest{} }
  3779. func (m *CompanyUserDelRequest) String() string { return proto.CompactTextString(m) }
  3780. func (*CompanyUserDelRequest) ProtoMessage() {}
  3781. func (*CompanyUserDelRequest) Descriptor() ([]byte, []int) {
  3782. return fileDescriptor_ade57ca5b8f3903f, []int{55}
  3783. }
  3784. func (m *CompanyUserDelRequest) XXX_Unmarshal(b []byte) error {
  3785. return xxx_messageInfo_CompanyUserDelRequest.Unmarshal(m, b)
  3786. }
  3787. func (m *CompanyUserDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3788. return xxx_messageInfo_CompanyUserDelRequest.Marshal(b, m, deterministic)
  3789. }
  3790. func (m *CompanyUserDelRequest) XXX_Merge(src proto.Message) {
  3791. xxx_messageInfo_CompanyUserDelRequest.Merge(m, src)
  3792. }
  3793. func (m *CompanyUserDelRequest) XXX_Size() int {
  3794. return xxx_messageInfo_CompanyUserDelRequest.Size(m)
  3795. }
  3796. func (m *CompanyUserDelRequest) XXX_DiscardUnknown() {
  3797. xxx_messageInfo_CompanyUserDelRequest.DiscardUnknown(m)
  3798. }
  3799. var xxx_messageInfo_CompanyUserDelRequest proto.InternalMessageInfo
  3800. func (m *CompanyUserDelRequest) GetId() int64 {
  3801. if m != nil {
  3802. return m.Id
  3803. }
  3804. return 0
  3805. }
  3806. func (m *CompanyUserDelRequest) GetCid() int64 {
  3807. if m != nil {
  3808. return m.Cid
  3809. }
  3810. return 0
  3811. }
  3812. type CompanyUserDelReply struct {
  3813. Origin *CompanyUserUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  3814. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3815. XXX_unrecognized []byte `json:"-"`
  3816. XXX_sizecache int32 `json:"-"`
  3817. }
  3818. func (m *CompanyUserDelReply) Reset() { *m = CompanyUserDelReply{} }
  3819. func (m *CompanyUserDelReply) String() string { return proto.CompactTextString(m) }
  3820. func (*CompanyUserDelReply) ProtoMessage() {}
  3821. func (*CompanyUserDelReply) Descriptor() ([]byte, []int) {
  3822. return fileDescriptor_ade57ca5b8f3903f, []int{56}
  3823. }
  3824. func (m *CompanyUserDelReply) XXX_Unmarshal(b []byte) error {
  3825. return xxx_messageInfo_CompanyUserDelReply.Unmarshal(m, b)
  3826. }
  3827. func (m *CompanyUserDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3828. return xxx_messageInfo_CompanyUserDelReply.Marshal(b, m, deterministic)
  3829. }
  3830. func (m *CompanyUserDelReply) XXX_Merge(src proto.Message) {
  3831. xxx_messageInfo_CompanyUserDelReply.Merge(m, src)
  3832. }
  3833. func (m *CompanyUserDelReply) XXX_Size() int {
  3834. return xxx_messageInfo_CompanyUserDelReply.Size(m)
  3835. }
  3836. func (m *CompanyUserDelReply) XXX_DiscardUnknown() {
  3837. xxx_messageInfo_CompanyUserDelReply.DiscardUnknown(m)
  3838. }
  3839. var xxx_messageInfo_CompanyUserDelReply proto.InternalMessageInfo
  3840. func (m *CompanyUserDelReply) GetOrigin() *CompanyUserUpdateRequest {
  3841. if m != nil {
  3842. return m.Origin
  3843. }
  3844. return nil
  3845. }
  3846. type CompanyUserListRequest struct {
  3847. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  3848. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  3849. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  3850. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3851. XXX_unrecognized []byte `json:"-"`
  3852. XXX_sizecache int32 `json:"-"`
  3853. }
  3854. func (m *CompanyUserListRequest) Reset() { *m = CompanyUserListRequest{} }
  3855. func (m *CompanyUserListRequest) String() string { return proto.CompactTextString(m) }
  3856. func (*CompanyUserListRequest) ProtoMessage() {}
  3857. func (*CompanyUserListRequest) Descriptor() ([]byte, []int) {
  3858. return fileDescriptor_ade57ca5b8f3903f, []int{57}
  3859. }
  3860. func (m *CompanyUserListRequest) XXX_Unmarshal(b []byte) error {
  3861. return xxx_messageInfo_CompanyUserListRequest.Unmarshal(m, b)
  3862. }
  3863. func (m *CompanyUserListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3864. return xxx_messageInfo_CompanyUserListRequest.Marshal(b, m, deterministic)
  3865. }
  3866. func (m *CompanyUserListRequest) XXX_Merge(src proto.Message) {
  3867. xxx_messageInfo_CompanyUserListRequest.Merge(m, src)
  3868. }
  3869. func (m *CompanyUserListRequest) XXX_Size() int {
  3870. return xxx_messageInfo_CompanyUserListRequest.Size(m)
  3871. }
  3872. func (m *CompanyUserListRequest) XXX_DiscardUnknown() {
  3873. xxx_messageInfo_CompanyUserListRequest.DiscardUnknown(m)
  3874. }
  3875. var xxx_messageInfo_CompanyUserListRequest proto.InternalMessageInfo
  3876. func (m *CompanyUserListRequest) GetCid() int64 {
  3877. if m != nil {
  3878. return m.Cid
  3879. }
  3880. return 0
  3881. }
  3882. func (m *CompanyUserListRequest) GetPage() int64 {
  3883. if m != nil {
  3884. return m.Page
  3885. }
  3886. return 0
  3887. }
  3888. func (m *CompanyUserListRequest) GetPageSize() int64 {
  3889. if m != nil {
  3890. return m.PageSize
  3891. }
  3892. return 0
  3893. }
  3894. type CompanyUserItem struct {
  3895. UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name"`
  3896. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password"`
  3897. Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email"`
  3898. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  3899. Super bool `protobuf:"varint,5,opt,name=super,proto3" json:"super"`
  3900. Id int64 `protobuf:"varint,6,opt,name=id,proto3" json:"id"`
  3901. RealName string `protobuf:"bytes,7,opt,name=real_name,json=realName,proto3" json:"real_name"`
  3902. CreatedAt int64 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  3903. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3904. XXX_unrecognized []byte `json:"-"`
  3905. XXX_sizecache int32 `json:"-"`
  3906. }
  3907. func (m *CompanyUserItem) Reset() { *m = CompanyUserItem{} }
  3908. func (m *CompanyUserItem) String() string { return proto.CompactTextString(m) }
  3909. func (*CompanyUserItem) ProtoMessage() {}
  3910. func (*CompanyUserItem) Descriptor() ([]byte, []int) {
  3911. return fileDescriptor_ade57ca5b8f3903f, []int{58}
  3912. }
  3913. func (m *CompanyUserItem) XXX_Unmarshal(b []byte) error {
  3914. return xxx_messageInfo_CompanyUserItem.Unmarshal(m, b)
  3915. }
  3916. func (m *CompanyUserItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3917. return xxx_messageInfo_CompanyUserItem.Marshal(b, m, deterministic)
  3918. }
  3919. func (m *CompanyUserItem) XXX_Merge(src proto.Message) {
  3920. xxx_messageInfo_CompanyUserItem.Merge(m, src)
  3921. }
  3922. func (m *CompanyUserItem) XXX_Size() int {
  3923. return xxx_messageInfo_CompanyUserItem.Size(m)
  3924. }
  3925. func (m *CompanyUserItem) XXX_DiscardUnknown() {
  3926. xxx_messageInfo_CompanyUserItem.DiscardUnknown(m)
  3927. }
  3928. var xxx_messageInfo_CompanyUserItem proto.InternalMessageInfo
  3929. func (m *CompanyUserItem) GetUserName() string {
  3930. if m != nil {
  3931. return m.UserName
  3932. }
  3933. return ""
  3934. }
  3935. func (m *CompanyUserItem) GetPassword() string {
  3936. if m != nil {
  3937. return m.Password
  3938. }
  3939. return ""
  3940. }
  3941. func (m *CompanyUserItem) GetEmail() string {
  3942. if m != nil {
  3943. return m.Email
  3944. }
  3945. return ""
  3946. }
  3947. func (m *CompanyUserItem) GetPhone() string {
  3948. if m != nil {
  3949. return m.Phone
  3950. }
  3951. return ""
  3952. }
  3953. func (m *CompanyUserItem) GetSuper() bool {
  3954. if m != nil {
  3955. return m.Super
  3956. }
  3957. return false
  3958. }
  3959. func (m *CompanyUserItem) GetId() int64 {
  3960. if m != nil {
  3961. return m.Id
  3962. }
  3963. return 0
  3964. }
  3965. func (m *CompanyUserItem) GetRealName() string {
  3966. if m != nil {
  3967. return m.RealName
  3968. }
  3969. return ""
  3970. }
  3971. func (m *CompanyUserItem) GetCreatedAt() int64 {
  3972. if m != nil {
  3973. return m.CreatedAt
  3974. }
  3975. return 0
  3976. }
  3977. type CompanyUserListReply struct {
  3978. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  3979. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  3980. List []*CompanyUserItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3981. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3982. XXX_unrecognized []byte `json:"-"`
  3983. XXX_sizecache int32 `json:"-"`
  3984. }
  3985. func (m *CompanyUserListReply) Reset() { *m = CompanyUserListReply{} }
  3986. func (m *CompanyUserListReply) String() string { return proto.CompactTextString(m) }
  3987. func (*CompanyUserListReply) ProtoMessage() {}
  3988. func (*CompanyUserListReply) Descriptor() ([]byte, []int) {
  3989. return fileDescriptor_ade57ca5b8f3903f, []int{59}
  3990. }
  3991. func (m *CompanyUserListReply) XXX_Unmarshal(b []byte) error {
  3992. return xxx_messageInfo_CompanyUserListReply.Unmarshal(m, b)
  3993. }
  3994. func (m *CompanyUserListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3995. return xxx_messageInfo_CompanyUserListReply.Marshal(b, m, deterministic)
  3996. }
  3997. func (m *CompanyUserListReply) XXX_Merge(src proto.Message) {
  3998. xxx_messageInfo_CompanyUserListReply.Merge(m, src)
  3999. }
  4000. func (m *CompanyUserListReply) XXX_Size() int {
  4001. return xxx_messageInfo_CompanyUserListReply.Size(m)
  4002. }
  4003. func (m *CompanyUserListReply) XXX_DiscardUnknown() {
  4004. xxx_messageInfo_CompanyUserListReply.DiscardUnknown(m)
  4005. }
  4006. var xxx_messageInfo_CompanyUserListReply proto.InternalMessageInfo
  4007. func (m *CompanyUserListReply) GetTotal() int64 {
  4008. if m != nil {
  4009. return m.Total
  4010. }
  4011. return 0
  4012. }
  4013. func (m *CompanyUserListReply) GetPage() int64 {
  4014. if m != nil {
  4015. return m.Page
  4016. }
  4017. return 0
  4018. }
  4019. func (m *CompanyUserListReply) GetList() []*CompanyUserItem {
  4020. if m != nil {
  4021. return m.List
  4022. }
  4023. return nil
  4024. }
  4025. type CompanyObjStatisticSetRequest struct {
  4026. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  4027. ObjType int32 `protobuf:"varint,2,opt,name=obj_type,json=objType,proto3" json:"obj_type"`
  4028. // 为负数表示减少
  4029. TotalIncrease int64 `protobuf:"varint,3,opt,name=total_increase,json=totalIncrease,proto3" json:"total_increase"`
  4030. Cid int64 `protobuf:"varint,4,opt,name=cid,proto3" json:"cid"`
  4031. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4032. XXX_unrecognized []byte `json:"-"`
  4033. XXX_sizecache int32 `json:"-"`
  4034. }
  4035. func (m *CompanyObjStatisticSetRequest) Reset() { *m = CompanyObjStatisticSetRequest{} }
  4036. func (m *CompanyObjStatisticSetRequest) String() string { return proto.CompactTextString(m) }
  4037. func (*CompanyObjStatisticSetRequest) ProtoMessage() {}
  4038. func (*CompanyObjStatisticSetRequest) Descriptor() ([]byte, []int) {
  4039. return fileDescriptor_ade57ca5b8f3903f, []int{60}
  4040. }
  4041. func (m *CompanyObjStatisticSetRequest) XXX_Unmarshal(b []byte) error {
  4042. return xxx_messageInfo_CompanyObjStatisticSetRequest.Unmarshal(m, b)
  4043. }
  4044. func (m *CompanyObjStatisticSetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4045. return xxx_messageInfo_CompanyObjStatisticSetRequest.Marshal(b, m, deterministic)
  4046. }
  4047. func (m *CompanyObjStatisticSetRequest) XXX_Merge(src proto.Message) {
  4048. xxx_messageInfo_CompanyObjStatisticSetRequest.Merge(m, src)
  4049. }
  4050. func (m *CompanyObjStatisticSetRequest) XXX_Size() int {
  4051. return xxx_messageInfo_CompanyObjStatisticSetRequest.Size(m)
  4052. }
  4053. func (m *CompanyObjStatisticSetRequest) XXX_DiscardUnknown() {
  4054. xxx_messageInfo_CompanyObjStatisticSetRequest.DiscardUnknown(m)
  4055. }
  4056. var xxx_messageInfo_CompanyObjStatisticSetRequest proto.InternalMessageInfo
  4057. func (m *CompanyObjStatisticSetRequest) GetGardenId() int64 {
  4058. if m != nil {
  4059. return m.GardenId
  4060. }
  4061. return 0
  4062. }
  4063. func (m *CompanyObjStatisticSetRequest) GetObjType() int32 {
  4064. if m != nil {
  4065. return m.ObjType
  4066. }
  4067. return 0
  4068. }
  4069. func (m *CompanyObjStatisticSetRequest) GetTotalIncrease() int64 {
  4070. if m != nil {
  4071. return m.TotalIncrease
  4072. }
  4073. return 0
  4074. }
  4075. func (m *CompanyObjStatisticSetRequest) GetCid() int64 {
  4076. if m != nil {
  4077. return m.Cid
  4078. }
  4079. return 0
  4080. }
  4081. type CompanyObjStatisticSetReply struct {
  4082. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4083. XXX_unrecognized []byte `json:"-"`
  4084. XXX_sizecache int32 `json:"-"`
  4085. }
  4086. func (m *CompanyObjStatisticSetReply) Reset() { *m = CompanyObjStatisticSetReply{} }
  4087. func (m *CompanyObjStatisticSetReply) String() string { return proto.CompactTextString(m) }
  4088. func (*CompanyObjStatisticSetReply) ProtoMessage() {}
  4089. func (*CompanyObjStatisticSetReply) Descriptor() ([]byte, []int) {
  4090. return fileDescriptor_ade57ca5b8f3903f, []int{61}
  4091. }
  4092. func (m *CompanyObjStatisticSetReply) XXX_Unmarshal(b []byte) error {
  4093. return xxx_messageInfo_CompanyObjStatisticSetReply.Unmarshal(m, b)
  4094. }
  4095. func (m *CompanyObjStatisticSetReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4096. return xxx_messageInfo_CompanyObjStatisticSetReply.Marshal(b, m, deterministic)
  4097. }
  4098. func (m *CompanyObjStatisticSetReply) XXX_Merge(src proto.Message) {
  4099. xxx_messageInfo_CompanyObjStatisticSetReply.Merge(m, src)
  4100. }
  4101. func (m *CompanyObjStatisticSetReply) XXX_Size() int {
  4102. return xxx_messageInfo_CompanyObjStatisticSetReply.Size(m)
  4103. }
  4104. func (m *CompanyObjStatisticSetReply) XXX_DiscardUnknown() {
  4105. xxx_messageInfo_CompanyObjStatisticSetReply.DiscardUnknown(m)
  4106. }
  4107. var xxx_messageInfo_CompanyObjStatisticSetReply proto.InternalMessageInfo
  4108. type CompanyDealStatisticSetRequest struct {
  4109. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  4110. Amount int64 `protobuf:"varint,2,opt,name=amount,proto3" json:"amount"`
  4111. DateTimestamp int64 `protobuf:"varint,3,opt,name=date_timestamp,json=dateTimestamp,proto3" json:"date_timestamp"`
  4112. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4113. XXX_unrecognized []byte `json:"-"`
  4114. XXX_sizecache int32 `json:"-"`
  4115. }
  4116. func (m *CompanyDealStatisticSetRequest) Reset() { *m = CompanyDealStatisticSetRequest{} }
  4117. func (m *CompanyDealStatisticSetRequest) String() string { return proto.CompactTextString(m) }
  4118. func (*CompanyDealStatisticSetRequest) ProtoMessage() {}
  4119. func (*CompanyDealStatisticSetRequest) Descriptor() ([]byte, []int) {
  4120. return fileDescriptor_ade57ca5b8f3903f, []int{62}
  4121. }
  4122. func (m *CompanyDealStatisticSetRequest) XXX_Unmarshal(b []byte) error {
  4123. return xxx_messageInfo_CompanyDealStatisticSetRequest.Unmarshal(m, b)
  4124. }
  4125. func (m *CompanyDealStatisticSetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4126. return xxx_messageInfo_CompanyDealStatisticSetRequest.Marshal(b, m, deterministic)
  4127. }
  4128. func (m *CompanyDealStatisticSetRequest) XXX_Merge(src proto.Message) {
  4129. xxx_messageInfo_CompanyDealStatisticSetRequest.Merge(m, src)
  4130. }
  4131. func (m *CompanyDealStatisticSetRequest) XXX_Size() int {
  4132. return xxx_messageInfo_CompanyDealStatisticSetRequest.Size(m)
  4133. }
  4134. func (m *CompanyDealStatisticSetRequest) XXX_DiscardUnknown() {
  4135. xxx_messageInfo_CompanyDealStatisticSetRequest.DiscardUnknown(m)
  4136. }
  4137. var xxx_messageInfo_CompanyDealStatisticSetRequest proto.InternalMessageInfo
  4138. func (m *CompanyDealStatisticSetRequest) GetGardenId() int64 {
  4139. if m != nil {
  4140. return m.GardenId
  4141. }
  4142. return 0
  4143. }
  4144. func (m *CompanyDealStatisticSetRequest) GetAmount() int64 {
  4145. if m != nil {
  4146. return m.Amount
  4147. }
  4148. return 0
  4149. }
  4150. func (m *CompanyDealStatisticSetRequest) GetDateTimestamp() int64 {
  4151. if m != nil {
  4152. return m.DateTimestamp
  4153. }
  4154. return 0
  4155. }
  4156. type CompanyDealStatisticSetReply struct {
  4157. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4158. XXX_unrecognized []byte `json:"-"`
  4159. XXX_sizecache int32 `json:"-"`
  4160. }
  4161. func (m *CompanyDealStatisticSetReply) Reset() { *m = CompanyDealStatisticSetReply{} }
  4162. func (m *CompanyDealStatisticSetReply) String() string { return proto.CompactTextString(m) }
  4163. func (*CompanyDealStatisticSetReply) ProtoMessage() {}
  4164. func (*CompanyDealStatisticSetReply) Descriptor() ([]byte, []int) {
  4165. return fileDescriptor_ade57ca5b8f3903f, []int{63}
  4166. }
  4167. func (m *CompanyDealStatisticSetReply) XXX_Unmarshal(b []byte) error {
  4168. return xxx_messageInfo_CompanyDealStatisticSetReply.Unmarshal(m, b)
  4169. }
  4170. func (m *CompanyDealStatisticSetReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4171. return xxx_messageInfo_CompanyDealStatisticSetReply.Marshal(b, m, deterministic)
  4172. }
  4173. func (m *CompanyDealStatisticSetReply) XXX_Merge(src proto.Message) {
  4174. xxx_messageInfo_CompanyDealStatisticSetReply.Merge(m, src)
  4175. }
  4176. func (m *CompanyDealStatisticSetReply) XXX_Size() int {
  4177. return xxx_messageInfo_CompanyDealStatisticSetReply.Size(m)
  4178. }
  4179. func (m *CompanyDealStatisticSetReply) XXX_DiscardUnknown() {
  4180. xxx_messageInfo_CompanyDealStatisticSetReply.DiscardUnknown(m)
  4181. }
  4182. var xxx_messageInfo_CompanyDealStatisticSetReply proto.InternalMessageInfo
  4183. type CompanyStatisticRequest struct {
  4184. Cid int64 `protobuf:"varint,1,opt,name=cid,proto3" json:"cid"`
  4185. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4186. XXX_unrecognized []byte `json:"-"`
  4187. XXX_sizecache int32 `json:"-"`
  4188. }
  4189. func (m *CompanyStatisticRequest) Reset() { *m = CompanyStatisticRequest{} }
  4190. func (m *CompanyStatisticRequest) String() string { return proto.CompactTextString(m) }
  4191. func (*CompanyStatisticRequest) ProtoMessage() {}
  4192. func (*CompanyStatisticRequest) Descriptor() ([]byte, []int) {
  4193. return fileDescriptor_ade57ca5b8f3903f, []int{64}
  4194. }
  4195. func (m *CompanyStatisticRequest) XXX_Unmarshal(b []byte) error {
  4196. return xxx_messageInfo_CompanyStatisticRequest.Unmarshal(m, b)
  4197. }
  4198. func (m *CompanyStatisticRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4199. return xxx_messageInfo_CompanyStatisticRequest.Marshal(b, m, deterministic)
  4200. }
  4201. func (m *CompanyStatisticRequest) XXX_Merge(src proto.Message) {
  4202. xxx_messageInfo_CompanyStatisticRequest.Merge(m, src)
  4203. }
  4204. func (m *CompanyStatisticRequest) XXX_Size() int {
  4205. return xxx_messageInfo_CompanyStatisticRequest.Size(m)
  4206. }
  4207. func (m *CompanyStatisticRequest) XXX_DiscardUnknown() {
  4208. xxx_messageInfo_CompanyStatisticRequest.DiscardUnknown(m)
  4209. }
  4210. var xxx_messageInfo_CompanyStatisticRequest proto.InternalMessageInfo
  4211. func (m *CompanyStatisticRequest) GetCid() int64 {
  4212. if m != nil {
  4213. return m.Cid
  4214. }
  4215. return 0
  4216. }
  4217. type DealItem struct {
  4218. // 成交量
  4219. DealCount int64 `protobuf:"varint,1,opt,name=deal_count,json=dealCount,proto3" json:"deal_count"`
  4220. // 成交额
  4221. DealAmount int64 `protobuf:"varint,2,opt,name=deal_amount,json=dealAmount,proto3" json:"deal_amount"`
  4222. DateTimestamp int64 `protobuf:"varint,3,opt,name=date_timestamp,json=dateTimestamp,proto3" json:"date_timestamp"`
  4223. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4224. XXX_unrecognized []byte `json:"-"`
  4225. XXX_sizecache int32 `json:"-"`
  4226. }
  4227. func (m *DealItem) Reset() { *m = DealItem{} }
  4228. func (m *DealItem) String() string { return proto.CompactTextString(m) }
  4229. func (*DealItem) ProtoMessage() {}
  4230. func (*DealItem) Descriptor() ([]byte, []int) {
  4231. return fileDescriptor_ade57ca5b8f3903f, []int{65}
  4232. }
  4233. func (m *DealItem) XXX_Unmarshal(b []byte) error {
  4234. return xxx_messageInfo_DealItem.Unmarshal(m, b)
  4235. }
  4236. func (m *DealItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4237. return xxx_messageInfo_DealItem.Marshal(b, m, deterministic)
  4238. }
  4239. func (m *DealItem) XXX_Merge(src proto.Message) {
  4240. xxx_messageInfo_DealItem.Merge(m, src)
  4241. }
  4242. func (m *DealItem) XXX_Size() int {
  4243. return xxx_messageInfo_DealItem.Size(m)
  4244. }
  4245. func (m *DealItem) XXX_DiscardUnknown() {
  4246. xxx_messageInfo_DealItem.DiscardUnknown(m)
  4247. }
  4248. var xxx_messageInfo_DealItem proto.InternalMessageInfo
  4249. func (m *DealItem) GetDealCount() int64 {
  4250. if m != nil {
  4251. return m.DealCount
  4252. }
  4253. return 0
  4254. }
  4255. func (m *DealItem) GetDealAmount() int64 {
  4256. if m != nil {
  4257. return m.DealAmount
  4258. }
  4259. return 0
  4260. }
  4261. func (m *DealItem) GetDateTimestamp() int64 {
  4262. if m != nil {
  4263. return m.DateTimestamp
  4264. }
  4265. return 0
  4266. }
  4267. type CompanyStatisticReply struct {
  4268. // 房屋数
  4269. HouseCount int64 `protobuf:"varint,1,opt,name=house_count,json=houseCount,proto3" json:"house_count"`
  4270. // 住户数
  4271. UserCount int64 `protobuf:"varint,2,opt,name=user_count,json=userCount,proto3" json:"user_count"`
  4272. // 车位数
  4273. SpaceCount int64 `protobuf:"varint,3,opt,name=space_count,json=spaceCount,proto3" json:"space_count"`
  4274. // 小区数
  4275. GardenCount int64 `protobuf:"varint,4,opt,name=garden_count,json=gardenCount,proto3" json:"garden_count"`
  4276. DealList []*DealItem `protobuf:"bytes,5,rep,name=deal_list,json=dealList,proto3" json:"deal_list"`
  4277. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4278. XXX_unrecognized []byte `json:"-"`
  4279. XXX_sizecache int32 `json:"-"`
  4280. }
  4281. func (m *CompanyStatisticReply) Reset() { *m = CompanyStatisticReply{} }
  4282. func (m *CompanyStatisticReply) String() string { return proto.CompactTextString(m) }
  4283. func (*CompanyStatisticReply) ProtoMessage() {}
  4284. func (*CompanyStatisticReply) Descriptor() ([]byte, []int) {
  4285. return fileDescriptor_ade57ca5b8f3903f, []int{66}
  4286. }
  4287. func (m *CompanyStatisticReply) XXX_Unmarshal(b []byte) error {
  4288. return xxx_messageInfo_CompanyStatisticReply.Unmarshal(m, b)
  4289. }
  4290. func (m *CompanyStatisticReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4291. return xxx_messageInfo_CompanyStatisticReply.Marshal(b, m, deterministic)
  4292. }
  4293. func (m *CompanyStatisticReply) XXX_Merge(src proto.Message) {
  4294. xxx_messageInfo_CompanyStatisticReply.Merge(m, src)
  4295. }
  4296. func (m *CompanyStatisticReply) XXX_Size() int {
  4297. return xxx_messageInfo_CompanyStatisticReply.Size(m)
  4298. }
  4299. func (m *CompanyStatisticReply) XXX_DiscardUnknown() {
  4300. xxx_messageInfo_CompanyStatisticReply.DiscardUnknown(m)
  4301. }
  4302. var xxx_messageInfo_CompanyStatisticReply proto.InternalMessageInfo
  4303. func (m *CompanyStatisticReply) GetHouseCount() int64 {
  4304. if m != nil {
  4305. return m.HouseCount
  4306. }
  4307. return 0
  4308. }
  4309. func (m *CompanyStatisticReply) GetUserCount() int64 {
  4310. if m != nil {
  4311. return m.UserCount
  4312. }
  4313. return 0
  4314. }
  4315. func (m *CompanyStatisticReply) GetSpaceCount() int64 {
  4316. if m != nil {
  4317. return m.SpaceCount
  4318. }
  4319. return 0
  4320. }
  4321. func (m *CompanyStatisticReply) GetGardenCount() int64 {
  4322. if m != nil {
  4323. return m.GardenCount
  4324. }
  4325. return 0
  4326. }
  4327. func (m *CompanyStatisticReply) GetDealList() []*DealItem {
  4328. if m != nil {
  4329. return m.DealList
  4330. }
  4331. return nil
  4332. }
  4333. func init() {
  4334. proto.RegisterType((*LoginRequest)(nil), "pb_v1.LoginRequest")
  4335. proto.RegisterType((*LoginReply)(nil), "pb_v1.LoginReply")
  4336. proto.RegisterType((*LoginByPhoneRequest)(nil), "pb_v1.LoginByPhoneRequest")
  4337. proto.RegisterType((*LoginByPhoneReply)(nil), "pb_v1.LoginByPhoneReply")
  4338. proto.RegisterType((*RegisterRequest)(nil), "pb_v1.RegisterRequest")
  4339. proto.RegisterType((*RegisterReply)(nil), "pb_v1.RegisterReply")
  4340. proto.RegisterType((*CompanyListRequest)(nil), "pb_v1.CompanyListRequest")
  4341. proto.RegisterType((*CompanyItem)(nil), "pb_v1.CompanyItem")
  4342. proto.RegisterType((*CompanyListReply)(nil), "pb_v1.CompanyListReply")
  4343. proto.RegisterType((*CompanyInfoRequest)(nil), "pb_v1.CompanyInfoRequest")
  4344. proto.RegisterType((*CompanyInfoReply)(nil), "pb_v1.CompanyInfoReply")
  4345. proto.RegisterType((*CompanyUpdateRequest)(nil), "pb_v1.CompanyUpdateRequest")
  4346. proto.RegisterType((*CompanyUpdateReply)(nil), "pb_v1.CompanyUpdateReply")
  4347. proto.RegisterType((*CompanyApproveRequest)(nil), "pb_v1.CompanyApproveRequest")
  4348. proto.RegisterType((*CompanyApproveReply)(nil), "pb_v1.CompanyApproveReply")
  4349. proto.RegisterType((*CompanyChangeFreeGardenRequest)(nil), "pb_v1.CompanyChangeFreeGardenRequest")
  4350. proto.RegisterType((*CompanyChangeFreeGardenReply)(nil), "pb_v1.CompanyChangeFreeGardenReply")
  4351. proto.RegisterType((*CompanyAddGardenRequest)(nil), "pb_v1.CompanyAddGardenRequest")
  4352. proto.RegisterType((*CompanyAddGardenReply)(nil), "pb_v1.CompanyAddGardenReply")
  4353. proto.RegisterType((*ResetPasswordRequest)(nil), "pb_v1.ResetPasswordRequest")
  4354. proto.RegisterType((*ResetPasswordReply)(nil), "pb_v1.ResetPasswordReply")
  4355. proto.RegisterType((*ChangePasswordRequest)(nil), "pb_v1.ChangePasswordRequest")
  4356. proto.RegisterType((*ChangePasswordReply)(nil), "pb_v1.ChangePasswordReply")
  4357. proto.RegisterType((*CheckPhoneRequest)(nil), "pb_v1.CheckPhoneRequest")
  4358. proto.RegisterType((*CheckPhoneReply)(nil), "pb_v1.CheckPhoneReply")
  4359. proto.RegisterType((*CompanyGardenDecreaseRequest)(nil), "pb_v1.CompanyGardenDecreaseRequest")
  4360. proto.RegisterType((*CompanyGardenDecreaseReply)(nil), "pb_v1.CompanyGardenDecreaseReply")
  4361. proto.RegisterType((*CompanyWxCertificateInfo)(nil), "pb_v1.CompanyWxCertificateInfo")
  4362. proto.RegisterType((*CompanyWxIdCardInfo)(nil), "pb_v1.CompanyWxIdCardInfo")
  4363. proto.RegisterType((*CompanyWxIdDocInfo)(nil), "pb_v1.CompanyWxIdDocInfo")
  4364. proto.RegisterType((*CompanyWxIdentityInfo)(nil), "pb_v1.CompanyWxIdentityInfo")
  4365. proto.RegisterType((*CompanyWxUboInfo)(nil), "pb_v1.CompanyWxUboInfo")
  4366. proto.RegisterType((*CompanyWxBusinessLicenseInfo)(nil), "pb_v1.CompanyWxBusinessLicenseInfo")
  4367. proto.RegisterType((*CompanyWxSubjectInfo)(nil), "pb_v1.CompanyWxSubjectInfo")
  4368. proto.RegisterType((*CompanyWxBusinessInfo)(nil), "pb_v1.CompanyWxBusinessInfo")
  4369. proto.RegisterType((*CompanyWxBankAccountInfo)(nil), "pb_v1.CompanyWxBankAccountInfo")
  4370. proto.RegisterType((*CompanyWxContactInfo)(nil), "pb_v1.CompanyWxContactInfo")
  4371. proto.RegisterType((*CompanyWxAccountApplyRequest)(nil), "pb_v1.CompanyWxAccountApplyRequest")
  4372. proto.RegisterType((*CompanyWxAccountApplyReply)(nil), "pb_v1.CompanyWxAccountApplyReply")
  4373. proto.RegisterType((*CompanyWxAccountApplyListRequest)(nil), "pb_v1.CompanyWxAccountApplyListRequest")
  4374. proto.RegisterType((*CompanyWxAccountApplyListItem)(nil), "pb_v1.CompanyWxAccountApplyListItem")
  4375. proto.RegisterType((*CompanyWxAccountApplyListReply)(nil), "pb_v1.CompanyWxAccountApplyListReply")
  4376. proto.RegisterType((*CompanyWxAccountInfo)(nil), "pb_v1.CompanyWxAccountInfo")
  4377. proto.RegisterType((*CompanyWxAccountApplyInfoRequest)(nil), "pb_v1.CompanyWxAccountApplyInfoRequest")
  4378. proto.RegisterType((*CompanyWxAccountApplyInfoReply)(nil), "pb_v1.CompanyWxAccountApplyInfoReply")
  4379. proto.RegisterType((*CompanyPayModelRequest)(nil), "pb_v1.CompanyPayModelRequest")
  4380. proto.RegisterType((*CompanyPayModelReply)(nil), "pb_v1.CompanyPayModelReply")
  4381. proto.RegisterType((*CompanyMchIdSetRequest)(nil), "pb_v1.CompanyMchIdSetRequest")
  4382. proto.RegisterType((*CompanyMchIdSetReply)(nil), "pb_v1.CompanyMchIdSetReply")
  4383. proto.RegisterType((*CompanyCanAddGardenRequest)(nil), "pb_v1.CompanyCanAddGardenRequest")
  4384. proto.RegisterType((*CompanyCanAddGardenReply)(nil), "pb_v1.CompanyCanAddGardenReply")
  4385. proto.RegisterType((*CompanyUserAddRequest)(nil), "pb_v1.CompanyUserAddRequest")
  4386. proto.RegisterType((*CompanyUserAddReply)(nil), "pb_v1.CompanyUserAddReply")
  4387. proto.RegisterType((*CompanyUserUpdateRequest)(nil), "pb_v1.CompanyUserUpdateRequest")
  4388. proto.RegisterType((*CompanyUserUpdateReply)(nil), "pb_v1.CompanyUserUpdateReply")
  4389. proto.RegisterType((*CompanyUserDelRequest)(nil), "pb_v1.CompanyUserDelRequest")
  4390. proto.RegisterType((*CompanyUserDelReply)(nil), "pb_v1.CompanyUserDelReply")
  4391. proto.RegisterType((*CompanyUserListRequest)(nil), "pb_v1.CompanyUserListRequest")
  4392. proto.RegisterType((*CompanyUserItem)(nil), "pb_v1.CompanyUserItem")
  4393. proto.RegisterType((*CompanyUserListReply)(nil), "pb_v1.CompanyUserListReply")
  4394. proto.RegisterType((*CompanyObjStatisticSetRequest)(nil), "pb_v1.CompanyObjStatisticSetRequest")
  4395. proto.RegisterType((*CompanyObjStatisticSetReply)(nil), "pb_v1.CompanyObjStatisticSetReply")
  4396. proto.RegisterType((*CompanyDealStatisticSetRequest)(nil), "pb_v1.CompanyDealStatisticSetRequest")
  4397. proto.RegisterType((*CompanyDealStatisticSetReply)(nil), "pb_v1.CompanyDealStatisticSetReply")
  4398. proto.RegisterType((*CompanyStatisticRequest)(nil), "pb_v1.CompanyStatisticRequest")
  4399. proto.RegisterType((*DealItem)(nil), "pb_v1.DealItem")
  4400. proto.RegisterType((*CompanyStatisticReply)(nil), "pb_v1.CompanyStatisticReply")
  4401. }
  4402. func init() {
  4403. proto.RegisterFile("company.proto", fileDescriptor_ade57ca5b8f3903f)
  4404. }
  4405. var fileDescriptor_ade57ca5b8f3903f = []byte{
  4406. // 3572 bytes of a gzipped FileDescriptorProto
  4407. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0x4b, 0x6f, 0xdc, 0xd8,
  4408. 0xb1, 0x46, 0xab, 0xd5, 0xad, 0xee, 0xea, 0x97, 0x44, 0xb5, 0xe4, 0xf6, 0xc8, 0xb2, 0x65, 0xda,
  4409. 0xb2, 0xe5, 0xf7, 0x3c, 0xee, 0x9d, 0x7b, 0x0d, 0xdc, 0x19, 0x40, 0x92, 0xed, 0xb9, 0xc2, 0xb5,
  4410. 0x7d, 0x95, 0xf6, 0x18, 0x06, 0x32, 0x48, 0x08, 0x36, 0x79, 0xdc, 0xa2, 0xdd, 0x4d, 0x72, 0x48,
  4411. 0xb6, 0xec, 0x1e, 0x24, 0x8b, 0x00, 0x93, 0x6d, 0x12, 0x20, 0xff, 0x60, 0x56, 0x41, 0xf2, 0x1f,
  4412. 0x82, 0x59, 0x24, 0x8b, 0x20, 0x8b, 0x6c, 0xb2, 0xc8, 0x3a, 0x3f, 0x22, 0x8b, 0x00, 0x41, 0x82,
  4413. 0xaa, 0xf3, 0xe0, 0x21, 0x9b, 0x2d, 0xdb, 0x41, 0x90, 0x17, 0xbc, 0x52, 0x9f, 0x3a, 0xc5, 0xc3,
  4414. 0x3a, 0x55, 0x5f, 0x7d, 0x75, 0x1e, 0x14, 0xb4, 0x9c, 0x60, 0x1c, 0xda, 0xfe, 0xf4, 0x66, 0x18,
  4415. 0x05, 0x49, 0x60, 0x54, 0xc2, 0x81, 0x75, 0xfc, 0x9e, 0x79, 0x0f, 0x9a, 0xf7, 0x83, 0xa1, 0xe7,
  4416. 0xf7, 0xd9, 0xe7, 0x13, 0x16, 0x27, 0xc6, 0x3b, 0x50, 0x9b, 0xc4, 0x2c, 0xf2, 0xed, 0x31, 0xeb,
  4417. 0x95, 0xb6, 0x4a, 0x3b, 0xf5, 0xbe, 0x6a, 0x63, 0x5f, 0x68, 0xc7, 0xf1, 0x8b, 0x20, 0x72, 0x7b,
  4418. 0x0b, 0xbc, 0x4f, 0xb6, 0xcd, 0xef, 0x02, 0x88, 0x71, 0xc2, 0xd1, 0xd4, 0x58, 0x86, 0xf2, 0xc4,
  4419. 0x73, 0x69, 0x80, 0x72, 0x1f, 0x7f, 0xa2, 0xc4, 0xf1, 0xf8, 0x63, 0xe5, 0x3e, 0xfe, 0x34, 0x0c,
  4420. 0x58, 0xc4, 0x91, 0x7b, 0x65, 0x1a, 0x89, 0x7e, 0x1b, 0xe7, 0xa1, 0x29, 0xac, 0xb4, 0xc8, 0x82,
  4421. 0x45, 0xea, 0x6b, 0x08, 0xd9, 0x43, 0x34, 0xa2, 0x0b, 0x95, 0x78, 0x12, 0xb2, 0xa8, 0x57, 0xd9,
  4422. 0x2a, 0xed, 0xd4, 0xfa, 0xbc, 0x61, 0x5e, 0x83, 0x55, 0x7a, 0xfd, 0xde, 0xf4, 0xf0, 0x28, 0xf0,
  4423. 0x99, 0x9c, 0x4d, 0x17, 0x2a, 0x21, 0xb6, 0xc5, 0x54, 0x78, 0xc3, 0xfc, 0xb2, 0x04, 0x2b, 0x59,
  4424. 0xed, 0x7f, 0x88, 0xcd, 0x3f, 0xae, 0x40, 0xa7, 0xcf, 0x86, 0x5e, 0x9c, 0xb0, 0x48, 0x1a, 0x6c,
  4425. 0x42, 0xcb, 0x8b, 0xad, 0xc1, 0xd4, 0x1a, 0xdb, 0xbe, 0x3d, 0x64, 0x11, 0x99, 0x53, 0xeb, 0x37,
  4426. 0xbc, 0x78, 0x6f, 0xfa, 0x80, 0x8b, 0x8c, 0x33, 0x50, 0xb7, 0xc3, 0x70, 0xe4, 0x39, 0xb6, 0x9f,
  4427. 0x88, 0x38, 0xa4, 0x02, 0xe3, 0x32, 0x74, 0x54, 0xc3, 0xe2, 0x93, 0xe7, 0xd6, 0xb6, 0x95, 0x98,
  4428. 0x26, 0xfd, 0x3a, 0x76, 0x5f, 0x50, 0xa0, 0x11, 0x23, 0x55, 0x48, 0x47, 0x3e, 0xc7, 0xc7, 0xd9,
  4429. 0x86, 0x74, 0x64, 0xcb, 0x9d, 0x24, 0xd3, 0x5e, 0x95, 0xb4, 0x5a, 0x4a, 0x7a, 0x67, 0x92, 0x4c,
  4430. 0xf1, 0x75, 0x23, 0x36, 0xb4, 0x47, 0x56, 0xc8, 0xa2, 0x38, 0xf0, 0x7b, 0x4b, 0xfc, 0x75, 0x24,
  4431. 0x3b, 0x24, 0x91, 0x6e, 0x91, 0xed, 0xba, 0x51, 0xaf, 0x96, 0xb1, 0x68, 0xd7, 0x75, 0x23, 0xe3,
  4432. 0x1c, 0x34, 0xe2, 0xc0, 0xf1, 0xec, 0x91, 0xe5, 0x04, 0x2e, 0xeb, 0xd5, 0x49, 0x03, 0xb8, 0x68,
  4433. 0x3f, 0x70, 0x99, 0x71, 0x05, 0x96, 0x07, 0x93, 0xd8, 0xf3, 0x59, 0x1c, 0x5b, 0x23, 0xcf, 0x61,
  4434. 0x7e, 0xcc, 0x7a, 0x40, 0x5a, 0x1d, 0x29, 0xbf, 0xcf, 0xc5, 0xc6, 0x6d, 0xe8, 0xa5, 0x86, 0x7b,
  4435. 0x2e, 0xf3, 0x13, 0xef, 0xa9, 0xe7, 0xd8, 0x89, 0x17, 0xf8, 0xbd, 0x06, 0x3d, 0x72, 0x4a, 0xf5,
  4436. 0x1f, 0x64, 0xba, 0x69, 0x32, 0x7c, 0x14, 0x2b, 0x99, 0x86, 0xac, 0xd7, 0xdc, 0x2a, 0xed, 0x54,
  4437. 0xfa, 0x0d, 0x21, 0xfb, 0x74, 0x1a, 0x32, 0xe3, 0x2a, 0xac, 0x3c, 0x8d, 0x18, 0xb3, 0x86, 0x76,
  4438. 0xe4, 0x32, 0xdf, 0x72, 0x82, 0x89, 0x9f, 0xf4, 0x5a, 0xa4, 0xd7, 0xc1, 0x8e, 0x4f, 0x48, 0xbe,
  4439. 0x8f, 0xe2, 0x4c, 0xd2, 0xb5, 0x4f, 0x48, 0xba, 0x4e, 0x36, 0xe9, 0x8c, 0x75, 0xa8, 0xb2, 0x97,
  4440. 0xa1, 0x17, 0xb1, 0xde, 0x32, 0x0d, 0x2c, 0x5a, 0x08, 0xd3, 0x51, 0x30, 0x0c, 0x7a, 0x2b, 0x1c,
  4441. 0xa6, 0xf8, 0x1b, 0x65, 0x2e, 0x8b, 0x9d, 0x9e, 0xc1, 0x65, 0xf8, 0x1b, 0x65, 0xb1, 0x97, 0xb0,
  4442. 0xde, 0x2a, 0x97, 0xe1, 0x6f, 0xf3, 0x1c, 0xb4, 0x52, 0x50, 0x62, 0x5e, 0xb4, 0x61, 0x41, 0xa5,
  4443. 0xc5, 0x82, 0xe7, 0x9a, 0x3f, 0x2c, 0x81, 0xb1, 0xcf, 0x43, 0x72, 0xdf, 0x8b, 0x13, 0x89, 0xdc,
  4444. 0x3c, 0x9c, 0x4a, 0xb3, 0x70, 0x32, 0x60, 0x31, 0xb4, 0x87, 0x4c, 0x24, 0x14, 0xfd, 0x36, 0x36,
  4445. 0xa0, 0x8e, 0x7f, 0xad, 0xd8, 0xfb, 0x82, 0x03, 0xb5, 0x8c, 0xf3, 0x1b, 0xb2, 0x47, 0xde, 0x17,
  4446. 0x12, 0x5a, 0x51, 0x70, 0xcc, 0xac, 0x38, 0xb1, 0x93, 0x49, 0x4c, 0x20, 0xad, 0x10, 0xb4, 0x50,
  4447. 0xfa, 0x88, 0x84, 0xe6, 0xf7, 0xab, 0xd0, 0x10, 0x16, 0x1d, 0x24, 0x6c, 0x5c, 0xf0, 0x58, 0xa9,
  4448. 0xe0, 0xb1, 0xb7, 0x79, 0xf4, 0x6f, 0x97, 0x47, 0xe7, 0xa1, 0x99, 0x51, 0x6b, 0xf3, 0xe1, 0x86,
  4449. 0x73, 0x52, 0xad, 0x73, 0x42, 0xaa, 0x2d, 0xe7, 0x52, 0x6d, 0x13, 0xc0, 0x89, 0x98, 0x9d, 0x30,
  4450. 0xd7, 0xb2, 0x13, 0x91, 0x58, 0x75, 0x21, 0xd9, 0x4d, 0xd0, 0x9f, 0x02, 0x5c, 0xd4, 0xcf, 0x93,
  4451. 0x0c, 0xa4, 0x68, 0x37, 0x11, 0x59, 0xb4, 0x2a, 0xb3, 0x48, 0x4b, 0xdd, 0x6e, 0x61, 0xea, 0xae,
  4452. 0x15, 0xa4, 0xee, 0x7a, 0x41, 0xea, 0x9e, 0xd2, 0x52, 0xf7, 0x7b, 0x25, 0x58, 0xce, 0x64, 0x26,
  4453. 0xa6, 0x6f, 0x17, 0x2a, 0x49, 0x90, 0xd8, 0x23, 0x91, 0xc1, 0xbc, 0xf1, 0xe6, 0xa9, 0x78, 0x09,
  4454. 0x16, 0x47, 0x5e, 0x9c, 0xf4, 0x16, 0xb7, 0xca, 0x3b, 0x8d, 0xf7, 0x8d, 0x9b, 0xb4, 0x7a, 0xb8,
  4455. 0xa9, 0x65, 0x5d, 0x9f, 0xfa, 0xcd, 0x8b, 0x8a, 0x1c, 0x0e, 0xfc, 0xa7, 0x81, 0x24, 0x87, 0x3c,
  4456. 0x87, 0xfc, 0xb1, 0xa2, 0x2c, 0xe5, 0x6a, 0x68, 0xe9, 0xdb, 0xb4, 0x7d, 0x9b, 0xb6, 0xff, 0x6c,
  4457. 0x69, 0x9b, 0xa6, 0xe9, 0x6a, 0x61, 0x9a, 0x76, 0x0b, 0xd2, 0x74, 0xad, 0x20, 0x4d, 0xd7, 0xb5,
  4458. 0x34, 0xfd, 0xf9, 0x02, 0x74, 0x05, 0xf8, 0x1f, 0x87, 0xae, 0x9d, 0xa8, 0xd5, 0xaa, 0x58, 0x6f,
  4459. 0x96, 0xd2, 0xf5, 0x66, 0x1e, 0xa4, 0x0b, 0xaf, 0x01, 0xd2, 0x72, 0x01, 0x48, 0xf3, 0xd0, 0x5a,
  4460. 0x7c, 0x25, 0xb4, 0x2a, 0xaf, 0x05, 0xad, 0x6a, 0x31, 0xb4, 0xf2, 0xf8, 0x58, 0x9a, 0xc5, 0x87,
  4461. 0x74, 0x60, 0xad, 0xc0, 0x81, 0xf5, 0x02, 0x07, 0x82, 0xe6, 0xc0, 0x03, 0xc5, 0x31, 0xd2, 0x7f,
  4462. 0x48, 0x1f, 0x1f, 0x40, 0x35, 0x88, 0xbc, 0xa1, 0xe7, 0x93, 0x03, 0x1b, 0xef, 0x6f, 0x64, 0x39,
  4463. 0x2a, 0xe3, 0xea, 0xbe, 0x50, 0x35, 0x3f, 0x83, 0x35, 0xd1, 0xbf, 0xcb, 0x83, 0x3e, 0x87, 0xb1,
  4464. 0x10, 0x08, 0x82, 0x94, 0x16, 0x68, 0x45, 0x2e, 0x5a, 0x08, 0xbe, 0xa7, 0x8c, 0xb9, 0x03, 0xdb,
  4465. 0x79, 0x2e, 0x3c, 0xaf, 0xda, 0xe6, 0x1a, 0xac, 0xe6, 0x07, 0x0f, 0x47, 0x53, 0xf3, 0x1e, 0x9c,
  4466. 0x15, 0xe2, 0xfd, 0x23, 0xdb, 0x1f, 0xb2, 0x7b, 0x2a, 0x1d, 0xe6, 0xbd, 0xbc, 0x0b, 0x15, 0x9e,
  4467. 0x19, 0x0b, 0xe4, 0x48, 0xde, 0x30, 0xbf, 0x05, 0x67, 0xe6, 0x8e, 0x83, 0x0e, 0xf9, 0x28, 0xe7,
  4468. 0x90, 0xed, 0xac, 0x43, 0xe6, 0xbc, 0x5c, 0xb9, 0xe6, 0x2b, 0x80, 0x53, 0xfb, 0x0a, 0x20, 0x59,
  4469. 0x03, 0x67, 0x91, 0x8a, 0x49, 0x18, 0x05, 0xc7, 0x9e, 0xef, 0x30, 0xb5, 0x37, 0x14, 0x6d, 0x84,
  4470. 0xa8, 0xfc, 0xcd, 0xc1, 0x25, 0x20, 0x2a, 0x85, 0x04, 0x2f, 0x03, 0x16, 0x1d, 0x2f, 0x99, 0x0a,
  4471. 0x68, 0xd2, 0x6f, 0xac, 0x48, 0xf8, 0x57, 0x47, 0x64, 0x0d, 0x05, 0xf2, 0x01, 0x3b, 0x62, 0xb6,
  4472. 0xc0, 0x20, 0xfd, 0xc6, 0x07, 0xf0, 0x2f, 0x7f, 0x80, 0x53, 0x6c, 0x0d, 0x05, 0xf4, 0x00, 0x85,
  4473. 0x30, 0x62, 0x2c, 0x11, 0xa0, 0x13, 0x2d, 0x42, 0x3e, 0xfd, 0xca, 0x92, 0x2a, 0x89, 0xe8, 0xc1,
  4474. 0x33, 0x50, 0x77, 0x82, 0xf1, 0xd8, 0x4b, 0x12, 0x26, 0x81, 0x98, 0x0a, 0xb0, 0x00, 0xa8, 0x06,
  4475. 0x1f, 0x81, 0xb3, 0x67, 0x4b, 0x49, 0x69, 0x90, 0x73, 0x20, 0x08, 0x8d, 0x67, 0x72, 0x93, 0xbf,
  4476. 0x85, 0x8b, 0x28, 0x91, 0x53, 0x05, 0x4a, 0xd1, 0x96, 0xae, 0x40, 0x19, 0x7a, 0x19, 0x3a, 0x61,
  4477. 0x14, 0x84, 0x2c, 0x4a, 0xa6, 0xb2, 0x8a, 0xf0, 0xcd, 0x42, 0x5b, 0x8a, 0x45, 0x21, 0xd9, 0x86,
  4478. 0x76, 0xaa, 0x48, 0x9c, 0xc0, 0x29, 0xb3, 0xa5, 0xf4, 0x88, 0x14, 0x36, 0x41, 0x8c, 0x6e, 0x85,
  4479. 0x9e, 0x23, 0x98, 0xb3, 0xce, 0x25, 0x87, 0x9e, 0xa3, 0xd9, 0x43, 0x49, 0xb9, 0xa2, 0xdb, 0x73,
  4480. 0x07, 0x53, 0x73, 0x19, 0xca, 0x23, 0x9f, 0x93, 0x66, 0xa9, 0x8f, 0x3f, 0x49, 0x62, 0x27, 0x44,
  4481. 0x95, 0x28, 0xb1, 0x89, 0xb7, 0xed, 0x30, 0x64, 0xbe, 0xeb, 0xbd, 0xec, 0x75, 0xb7, 0xca, 0x14,
  4482. 0x0f, 0xd1, 0x36, 0x4e, 0x43, 0x2d, 0x88, 0x5c, 0x16, 0x59, 0x9e, 0x4b, 0x9c, 0x59, 0xee, 0x2f,
  4483. 0x51, 0xfb, 0xc0, 0x45, 0xc4, 0x0c, 0x26, 0xde, 0xc8, 0xf5, 0xfc, 0x21, 0x67, 0x90, 0x73, 0x04,
  4484. 0xfc, 0xa6, 0x14, 0x12, 0x85, 0x6c, 0x43, 0x5b, 0x29, 0xc5, 0x89, 0x1d, 0x25, 0xbd, 0x2d, 0x1a,
  4485. 0x45, 0x3d, 0xfa, 0x08, 0x85, 0x48, 0x46, 0x4a, 0x8d, 0xf9, 0x6e, 0xef, 0x3c, 0x29, 0x35, 0xa4,
  4486. 0xec, 0xae, 0x4f, 0xaf, 0x1b, 0x46, 0x0c, 0x1d, 0xc1, 0x22, 0x87, 0xf9, 0x49, 0xcf, 0xa4, 0x19,
  4487. 0x34, 0x49, 0x78, 0xc8, 0x65, 0x38, 0x0e, 0x61, 0x4b, 0xea, 0x5c, 0x20, 0x9d, 0x06, 0xca, 0xa4,
  4488. 0xca, 0x26, 0x40, 0x1c, 0xda, 0x0e, 0xb3, 0x3c, 0xff, 0x69, 0xd0, 0xbb, 0xc8, 0x3d, 0x4a, 0x12,
  4489. 0x5c, 0xe5, 0x70, 0x16, 0x3e, 0x66, 0x11, 0x16, 0x1b, 0x44, 0xee, 0x36, 0x1f, 0x41, 0xc8, 0x76,
  4490. 0x11, 0xc0, 0xfa, 0xc4, 0x49, 0xe7, 0x12, 0xb7, 0x44, 0x0a, 0x49, 0x29, 0x8d, 0x4c, 0xe8, 0x39,
  4491. 0x71, 0xef, 0x32, 0xf9, 0x15, 0x54, 0xe4, 0x62, 0x4e, 0xd5, 0x62, 0x14, 0xc1, 0xf1, 0xbd, 0x1d,
  4492. 0x49, 0xd5, 0x5c, 0x2e, 0x32, 0x1b, 0xc7, 0x3a, 0x0a, 0x26, 0x48, 0xd4, 0xb4, 0x48, 0xbc, 0x42,
  4493. 0xce, 0x01, 0x12, 0x7d, 0x4a, 0x2b, 0x45, 0xcc, 0x0e, 0x9a, 0x13, 0x57, 0xb8, 0xca, 0x15, 0x48,
  4494. 0xc4, 0x15, 0xae, 0x83, 0xa1, 0xd0, 0xf6, 0x94, 0x31, 0x11, 0x8a, 0x6b, 0xa4, 0xb7, 0x2c, 0x7b,
  4495. 0xee, 0x31, 0xc6, 0xa3, 0xb1, 0x03, 0xcb, 0x19, 0x6d, 0x8c, 0xc8, 0x75, 0xd2, 0x6d, 0x6b, 0xba,
  4496. 0x18, 0x94, 0x4d, 0x80, 0x17, 0x76, 0xc2, 0x22, 0x0e, 0x80, 0x1b, 0x5b, 0xe5, 0x9d, 0x4a, 0xbf,
  4497. 0x4e, 0x12, 0x8a, 0xfe, 0x05, 0x68, 0xb1, 0x11, 0x73, 0x92, 0xc8, 0x73, 0xb8, 0xc6, 0x4d, 0xd2,
  4498. 0x68, 0x4a, 0x21, 0x29, 0x99, 0xd0, 0x1a, 0xda, 0xb1, 0x66, 0xd6, 0x2d, 0x1e, 0xfc, 0xa1, 0x1d,
  4499. 0x2b, 0x8b, 0xce, 0xa2, 0x37, 0x63, 0x65, 0xcc, 0xbb, 0xa4, 0x51, 0xe7, 0x1a, 0x68, 0x07, 0x72,
  4500. 0xca, 0xf1, 0xd0, 0x0a, 0x23, 0xcf, 0x61, 0xbd, 0xf7, 0xf8, 0xb2, 0xd8, 0x3e, 0x1e, 0x1e, 0x62,
  4501. 0xdb, 0xbc, 0x9c, 0xd6, 0x8f, 0x94, 0x23, 0x8b, 0x76, 0xcd, 0xdf, 0x86, 0x6e, 0x9f, 0xc5, 0x2c,
  4502. 0x39, 0x14, 0x2b, 0x93, 0x13, 0x4f, 0xa8, 0x50, 0x7a, 0x4c, 0x54, 0x82, 0x54, 0xda, 0xea, 0xf3,
  4503. 0x46, 0x66, 0xa1, 0x53, 0xce, 0x9d, 0xbf, 0x75, 0xc1, 0xc8, 0x8d, 0x8f, 0xa5, 0x26, 0x80, 0x35,
  4504. 0x4e, 0xf3, 0xf9, 0xd7, 0xce, 0x1e, 0x76, 0x9d, 0x87, 0x66, 0x30, 0x72, 0xad, 0xdc, 0x01, 0x5f,
  4505. 0x23, 0x18, 0xb9, 0xf2, 0x59, 0x54, 0xf1, 0xd9, 0x0b, 0x2b, 0x67, 0x43, 0xc3, 0x67, 0x2f, 0xa4,
  4506. 0x0a, 0x95, 0xbc, 0xdc, 0x0b, 0xd1, 0x8e, 0x2b, 0xb0, 0xb2, 0x7f, 0xc4, 0x9c, 0xe7, 0xaf, 0x71,
  4507. 0x38, 0xb7, 0x02, 0x1d, 0x5d, 0x15, 0x9f, 0x7e, 0x57, 0x15, 0xba, 0x4f, 0x04, 0xfb, 0xe0, 0x0a,
  4508. 0x2e, 0x9e, 0xbf, 0x6e, 0x32, 0xcf, 0xc0, 0x3b, 0x73, 0x9e, 0xc0, 0xf1, 0x7e, 0xb2, 0x00, 0x3d,
  4509. 0xd1, 0xfd, 0xe4, 0xe5, 0x3e, 0x8b, 0xc4, 0xca, 0x96, 0x27, 0x29, 0xd6, 0x1c, 0x16, 0x61, 0x2d,
  4510. 0x08, 0xa7, 0xf2, 0x04, 0x14, 0x05, 0xfb, 0x41, 0x38, 0x55, 0x9d, 0x04, 0xb8, 0x85, 0xb4, 0x93,
  4511. 0xc0, 0x76, 0x0e, 0x1a, 0xd4, 0xe9, 0x4f, 0xc6, 0x03, 0x75, 0x46, 0x08, 0x28, 0x7a, 0x48, 0x12,
  4512. 0x84, 0xec, 0x98, 0x45, 0xce, 0x11, 0x2e, 0xb8, 0xb5, 0x3d, 0x47, 0x53, 0x0a, 0xa9, 0x0c, 0x5c,
  4513. 0x86, 0x8e, 0xbe, 0x54, 0x63, 0x71, 0x2c, 0x2a, 0x5f, 0x5b, 0x5b, 0xad, 0xb1, 0x38, 0x9e, 0xd9,
  4514. 0x51, 0x54, 0x0b, 0x77, 0x14, 0x21, 0x8b, 0xbc, 0xc0, 0xb5, 0x06, 0x0c, 0xd7, 0x01, 0x62, 0xd3,
  4515. 0xc1, 0x65, 0x7b, 0x28, 0xc2, 0x2c, 0x13, 0x2a, 0x08, 0x7e, 0x5e, 0x18, 0xeb, 0x5c, 0x72, 0xd7,
  4516. 0x77, 0xcd, 0x3f, 0x2f, 0xa8, 0x35, 0xcc, 0x93, 0x97, 0x07, 0xee, 0xbe, 0x1d, 0xb9, 0xe4, 0xa5,
  4517. 0x2d, 0x68, 0x7a, 0xae, 0xe5, 0xd8, 0x91, 0xab, 0x3b, 0x0a, 0x3c, 0xd2, 0x20, 0x57, 0xed, 0xc0,
  4518. 0xb2, 0xd4, 0xf0, 0x69, 0xd7, 0x60, 0x8f, 0x84, 0xc7, 0xda, 0x5c, 0xeb, 0xa1, 0x90, 0x1a, 0x17,
  4519. 0xa1, 0xad, 0x34, 0x75, 0xd7, 0x35, 0x85, 0x1e, 0x77, 0xde, 0x55, 0x58, 0x21, 0x95, 0xcc, 0x84,
  4520. 0xb8, 0x03, 0x3b, 0xd8, 0x71, 0xa8, 0x4d, 0xea, 0x12, 0x74, 0x74, 0x5d, 0x9c, 0x59, 0x45, 0xd4,
  4521. 0x64, 0xa5, 0x89, 0xa9, 0xad, 0xcd, 0x82, 0xe2, 0x51, 0xd5, 0x67, 0x41, 0xd1, 0xb8, 0x04, 0x1d,
  4522. 0xa9, 0x21, 0xa3, 0xc1, 0x9d, 0xd8, 0xe2, 0x4a, 0x32, 0x18, 0x97, 0xd3, 0xd9, 0xa2, 0x3f, 0xac,
  4523. 0x49, 0x34, 0x12, 0xce, 0x6c, 0xa5, 0x3e, 0x79, 0x1c, 0x8d, 0x8c, 0x5b, 0xd0, 0xcd, 0xbb, 0x85,
  4524. 0x94, 0xf9, 0xaa, 0x63, 0x25, 0xeb, 0x9a, 0xc7, 0xd1, 0xc8, 0xfc, 0x41, 0x59, 0xad, 0x76, 0x31,
  4525. 0x02, 0x77, 0x02, 0x87, 0x02, 0x70, 0x16, 0x1a, 0x9e, 0x6b, 0xb9, 0x81, 0xa3, 0xfb, 0xbf, 0xee,
  4526. 0x61, 0x3f, 0xb9, 0x9f, 0x1b, 0x24, 0xfb, 0x2d, 0x5a, 0x9f, 0x2e, 0x48, 0x83, 0x84, 0xd2, 0x9e,
  4527. 0xed, 0x3c, 0xd7, 0x06, 0x22, 0x17, 0x94, 0xb5, 0x81, 0xc8, 0x03, 0x26, 0xb4, 0x64, 0x3f, 0x0f,
  4528. 0x8e, 0xd8, 0x3b, 0x70, 0x0d, 0x1e, 0x9b, 0x1d, 0x58, 0x46, 0x85, 0x4c, 0x68, 0x04, 0x68, 0xdd,
  4529. 0xc0, 0xd1, 0x23, 0x73, 0x11, 0xda, 0x9a, 0x26, 0x06, 0x86, 0xfb, 0xbc, 0xa9, 0xf4, 0x30, 0x2e,
  4530. 0x1c, 0x11, 0xa8, 0x98, 0x75, 0x7a, 0x93, 0x5e, 0x2a, 0x7d, 0xbe, 0x4d, 0xb1, 0x51, 0x53, 0x4c,
  4531. 0x5d, 0xde, 0x54, 0x33, 0x44, 0x8f, 0xdf, 0x24, 0x8f, 0x67, 0x3c, 0xa1, 0x79, 0x7c, 0x39, 0xe3,
  4532. 0x0d, 0xd4, 0x4f, 0x1d, 0x42, 0x59, 0x0e, 0x9a, 0x43, 0x30, 0xcd, 0xcd, 0x3f, 0x95, 0x14, 0xe7,
  4533. 0x63, 0x40, 0x70, 0x63, 0x9c, 0xd0, 0x29, 0x86, 0x30, 0xfb, 0x28, 0x18, 0xb9, 0xb2, 0x6a, 0x95,
  4534. 0xa4, 0x3d, 0xff, 0x4b, 0x42, 0xa2, 0x89, 0xf7, 0x61, 0xcd, 0x9e, 0x24, 0x47, 0x41, 0xe4, 0x7d,
  4535. 0xc1, 0xac, 0x11, 0x4b, 0xb0, 0xc4, 0x51, 0x0c, 0x79, 0x78, 0x56, 0x55, 0xe7, 0x7d, 0xea, 0xa3,
  4536. 0x68, 0xde, 0x56, 0x36, 0xd1, 0xca, 0xa2, 0x4c, 0xeb, 0xf9, 0xd3, 0xd9, 0xf5, 0xbc, 0x86, 0x0e,
  4537. 0x61, 0x2e, 0x19, 0xd5, 0x85, 0x4a, 0xf0, 0xc2, 0x17, 0x71, 0xab, 0xf5, 0x79, 0xc3, 0xb8, 0x0d,
  4538. 0xa7, 0x0b, 0x8d, 0x20, 0xcf, 0xf0, 0xd0, 0xad, 0x17, 0x18, 0x82, 0x80, 0xfc, 0x45, 0x59, 0x9d,
  4539. 0xdd, 0x3c, 0x79, 0xf9, 0x78, 0x10, 0xd0, 0x5b, 0xb6, 0xa1, 0x33, 0x19, 0x04, 0x96, 0xee, 0x38,
  4540. 0x31, 0xf7, 0xc9, 0x20, 0x38, 0x90, 0xbe, 0xcb, 0xa9, 0x69, 0xb3, 0x56, 0x6a, 0x34, 0xdd, 0x9b,
  4541. 0xd0, 0xcd, 0xa9, 0x59, 0xda, 0x06, 0x6b, 0x59, 0xd7, 0x25, 0x0c, 0x5f, 0x03, 0x43, 0xd3, 0x97,
  4542. 0x98, 0x11, 0xe4, 0x20, 0xb5, 0x35, 0xd8, 0x68, 0xca, 0x04, 0xfa, 0x4a, 0xd6, 0x06, 0xc2, 0xfd,
  4543. 0x15, 0x58, 0xd1, 0xd5, 0x38, 0xf6, 0x39, 0x58, 0xdb, 0x4a, 0x51, 0xc1, 0x1f, 0x55, 0x0b, 0xa8,
  4544. 0x16, 0x35, 0x73, 0xf0, 0xd7, 0x34, 0x53, 0xc6, 0x6d, 0x2a, 0x3d, 0x84, 0xff, 0x75, 0x58, 0xcd,
  4545. 0x4f, 0x3f, 0x05, 0x6c, 0x47, 0x9f, 0x3d, 0xe2, 0xf5, 0x3f, 0xa1, 0x57, 0xe4, 0x2c, 0x7a, 0x84,
  4546. 0x83, 0x77, 0x35, 0xef, 0x30, 0x0c, 0xe3, 0x2f, 0x17, 0x54, 0x55, 0x7d, 0xf2, 0x72, 0x2f, 0xbb,
  4547. 0x81, 0x97, 0xab, 0x55, 0xb9, 0x89, 0xd7, 0x28, 0x46, 0x6e, 0xe2, 0x29, 0x4e, 0xdb, 0xd0, 0x96,
  4548. 0x2a, 0xc2, 0x41, 0x82, 0x62, 0x84, 0x74, 0x5e, 0xdd, 0x2b, 0x17, 0xd4, 0xbd, 0x7c, 0x39, 0x5b,
  4549. 0x9c, 0x2d, 0x67, 0x97, 0xa1, 0x23, 0x5f, 0x97, 0x2b, 0x8d, 0x42, 0xac, 0x95, 0xc6, 0x4c, 0x30,
  4550. 0xaa, 0xaf, 0xaa, 0x7b, 0x4b, 0xb9, 0xba, 0x87, 0x21, 0xd5, 0x27, 0xaf, 0x91, 0x4b, 0x5b, 0x73,
  4551. 0x00, 0xfa, 0xf1, 0xd7, 0xe9, 0x69, 0xce, 0x93, 0x97, 0x8f, 0x26, 0x83, 0x67, 0xcc, 0x49, 0xa4,
  4552. 0xff, 0x62, 0xde, 0xd4, 0xf3, 0xa1, 0x21, 0x64, 0x94, 0x0e, 0x4f, 0x60, 0x2d, 0x7f, 0xa4, 0xc2,
  4553. 0x13, 0x7c, 0x81, 0x12, 0xfc, 0x42, 0x3e, 0xc1, 0x0b, 0xc2, 0xd4, 0x5f, 0x1d, 0x14, 0xc4, 0x6e,
  4554. 0x17, 0x49, 0x9b, 0x33, 0x13, 0x1f, 0x70, 0x91, 0x06, 0x3c, 0x33, 0xcb, 0x18, 0x29, 0x7d, 0x21,
  4555. 0x4d, 0x69, 0x64, 0xf6, 0x21, 0xd4, 0x09, 0x56, 0xfe, 0xd3, 0x00, 0xdd, 0x5c, 0x3e, 0x99, 0x70,
  4556. 0x6a, 0x13, 0x4e, 0x04, 0xb1, 0xf1, 0x3f, 0x62, 0x89, 0x44, 0xaf, 0xad, 0xd2, 0x6b, 0xcf, 0xe5,
  4557. 0x9f, 0xcb, 0xad, 0xb9, 0xf8, 0x1a, 0x0a, 0x7f, 0x99, 0xcf, 0x35, 0x6e, 0x95, 0xb3, 0x25, 0x73,
  4558. 0x6e, 0x80, 0xa1, 0x30, 0x14, 0x1f, 0x05, 0x51, 0xa2, 0x5d, 0x32, 0xad, 0xc8, 0x9e, 0x47, 0xb2,
  4559. 0x03, 0x21, 0x17, 0xb3, 0xe8, 0xd8, 0x73, 0x98, 0xd8, 0x01, 0x0b, 0x9a, 0x11, 0x42, 0x5a, 0x5c,
  4560. 0x9a, 0x5f, 0xe9, 0xeb, 0xc0, 0x3d, 0xdb, 0x7f, 0xbe, 0xeb, 0xd0, 0xc9, 0x8a, 0x0c, 0x9f, 0xcd,
  4561. 0x9b, 0x99, 0xfb, 0x2c, 0x21, 0x93, 0x90, 0x95, 0x2a, 0x03, 0xdb, 0x97, 0xf5, 0x55, 0xaa, 0xe0,
  4562. 0x80, 0xb8, 0x6a, 0xc1, 0x2e, 0x89, 0x57, 0xfd, 0xf8, 0xa3, 0x83, 0x1d, 0x02, 0xb1, 0x74, 0x42,
  4563. 0x70, 0x11, 0xda, 0xa4, 0x3b, 0x88, 0x6c, 0xdf, 0x39, 0xc2, 0x5d, 0xb1, 0x58, 0x1f, 0xa2, 0x74,
  4564. 0x8f, 0x84, 0x07, 0xb4, 0x1d, 0x21, 0x2d, 0x8d, 0xb8, 0x6a, 0x28, 0x20, 0x8b, 0xb6, 0xa1, 0xad,
  4565. 0x8c, 0xd6, 0x19, 0xab, 0x25, 0xcd, 0x56, 0x6b, 0x29, 0x6e, 0x95, 0xd0, 0x55, 0x87, 0x74, 0xd2,
  4566. 0x2a, 0x2e, 0xa7, 0x72, 0xf7, 0xfb, 0x8a, 0x86, 0xef, 0xfd, 0xc0, 0x4f, 0xec, 0x14, 0xdf, 0x0e,
  4567. 0x6f, 0x66, 0xf0, 0x2d, 0x64, 0x84, 0x6f, 0x4d, 0x25, 0x7b, 0x7c, 0x49, 0x32, 0xb2, 0xf8, 0x06,
  4568. 0xac, 0x4a, 0x15, 0xbd, 0x78, 0x08, 0xa6, 0x17, 0x5d, 0x69, 0x01, 0xc1, 0x55, 0x60, 0xaa, 0x9e,
  4569. 0x59, 0x91, 0x74, 0x94, 0xb2, 0x98, 0xe5, 0xec, 0xd0, 0xc4, 0x63, 0x95, 0xd9, 0xa1, 0x89, 0xcc,
  4570. 0x3e, 0x84, 0x5e, 0x81, 0x3a, 0x2f, 0x3c, 0xdc, 0x8b, 0xdd, 0xfc, 0x33, 0x54, 0x7c, 0xde, 0x05,
  4571. 0x29, 0x2f, 0xaa, 0x00, 0x86, 0xe8, 0xd3, 0xab, 0xc0, 0x75, 0x30, 0x72, 0x4f, 0xa4, 0x95, 0x60,
  4572. 0x39, 0xa3, 0x8f, 0x54, 0xb4, 0x07, 0x9b, 0x8a, 0x24, 0x64, 0x49, 0xa6, 0xf5, 0xa1, 0xa8, 0xdb,
  4573. 0xa2, 0x2e, 0x6c, 0x48, 0xa5, 0x5d, 0x5d, 0x87, 0x97, 0x6e, 0x0c, 0xc4, 0x38, 0x18, 0x78, 0x23,
  4574. 0x99, 0x0d, 0xbc, 0x2e, 0x34, 0xb8, 0x8c, 0x9f, 0x06, 0xad, 0x43, 0x35, 0x08, 0x99, 0xef, 0xb9,
  4575. 0xe2, 0xf8, 0x4a, 0xb4, 0xf8, 0xf9, 0x32, 0x37, 0x96, 0x8d, 0x6d, 0x6f, 0x24, 0x4e, 0xae, 0x64,
  4576. 0x60, 0xef, 0xa2, 0xcc, 0xf8, 0x0f, 0x38, 0x55, 0xe4, 0x3b, 0x64, 0x4d, 0x7e, 0x8e, 0xb5, 0x9a,
  4577. 0x77, 0x1d, 0x56, 0xae, 0x8f, 0xe0, 0xcc, 0x3c, 0x8f, 0xd3, 0xa3, 0xfc, 0x74, 0xeb, 0x54, 0x91,
  4578. 0xd7, 0xf1, 0xf1, 0x03, 0x38, 0x7f, 0xa2, 0x63, 0x68, 0x0c, 0x7e, 0xf2, 0x75, 0xf6, 0x04, 0xe7,
  4579. 0x20, 0x89, 0x7f, 0xad, 0x17, 0x43, 0x81, 0xfe, 0xdd, 0x30, 0x1c, 0x4d, 0xe7, 0x1f, 0x78, 0x7e,
  4580. 0x9c, 0xd2, 0xbb, 0x46, 0xd9, 0x1b, 0x79, 0xaa, 0xd3, 0x2a, 0x82, 0xe2, 0x7e, 0x49, 0xd1, 0xca,
  4581. 0x7a, 0x6d, 0x51, 0x77, 0x66, 0x1e, 0xe7, 0x73, 0x8a, 0x1e, 0xe8, 0x9c, 0xf8, 0x7f, 0xb9, 0x34,
  4582. 0xd6, 0x98, 0x7e, 0x86, 0x72, 0x73, 0xf4, 0x96, 0xc9, 0x73, 0x1a, 0xec, 0xe3, 0x34, 0x57, 0x69,
  4583. 0x9c, 0x4a, 0xf1, 0x7c, 0x34, 0x06, 0x50, 0x89, 0x4c, 0xcc, 0x9d, 0x6e, 0xb9, 0xf3, 0x1e, 0xc4,
  4584. 0x2d, 0xf7, 0x4f, 0x4b, 0xb0, 0x55, 0xd8, 0xad, 0x7f, 0x42, 0x30, 0xeb, 0xe4, 0x37, 0xbe, 0xa6,
  4585. 0x7c, 0xad, 0x2d, 0xf6, 0x59, 0x00, 0xfe, 0x79, 0xcd, 0x98, 0xf9, 0x89, 0xf8, 0x26, 0x47, 0x93,
  4586. 0x98, 0x7f, 0x28, 0xc1, 0xe6, 0x5c, 0x63, 0xe9, 0x0b, 0x83, 0xfc, 0x01, 0xfd, 0x05, 0x2d, 0x98,
  4587. 0xea, 0xdc, 0xa6, 0x9e, 0x86, 0x8b, 0xf8, 0xfd, 0xb5, 0x96, 0x41, 0x5d, 0xa8, 0xc4, 0x89, 0x9d,
  4588. 0x48, 0xc3, 0x79, 0x03, 0xe7, 0x4c, 0x3f, 0xac, 0x71, 0x3c, 0x94, 0xa4, 0x4f, 0x82, 0x07, 0xf1,
  4589. 0xd0, 0x58, 0x83, 0xea, 0x98, 0xd7, 0x0b, 0x4e, 0x53, 0x95, 0x31, 0x15, 0x8a, 0xd3, 0x50, 0x8b,
  4590. 0xbd, 0xa1, 0x4f, 0x59, 0xc0, 0xb9, 0x68, 0x09, 0xdb, 0x98, 0x39, 0xeb, 0x50, 0x8d, 0x98, 0x8d,
  4591. 0xab, 0x2c, 0x71, 0x12, 0xce, 0x5b, 0xe6, 0x97, 0x25, 0x75, 0x35, 0x51, 0x14, 0xa5, 0x37, 0xbb,
  4592. 0x4e, 0xfe, 0x6f, 0x71, 0x63, 0x5c, 0xa6, 0xb5, 0xc3, 0xc5, 0x3c, 0x90, 0x8a, 0xfc, 0x2a, 0xee,
  4593. 0x90, 0x7f, 0x53, 0xd2, 0x4a, 0x4e, 0xae, 0x26, 0xbf, 0xea, 0x1b, 0x93, 0xd9, 0x6f, 0xb6, 0x78,
  4594. 0xac, 0xca, 0x2a, 0x56, 0xf9, 0xc4, 0x5d, 0x7c, 0xc3, 0xc4, 0x4d, 0x6f, 0x82, 0xf8, 0xb5, 0x56,
  4595. 0xd1, 0x4d, 0x50, 0x2d, 0x77, 0x13, 0xe4, 0xce, 0x41, 0xff, 0x09, 0x77, 0xe4, 0x05, 0x33, 0xc9,
  4596. 0xe2, 0xb6, 0x3c, 0x83, 0xdb, 0xaf, 0x17, 0xe6, 0x84, 0x2f, 0xbd, 0x63, 0xcf, 0xbf, 0xe4, 0x2d,
  4597. 0x8b, 0x65, 0x59, 0xec, 0x2e, 0xac, 0x0b, 0xa5, 0x43, 0x7b, 0xfa, 0x20, 0x70, 0xd9, 0x48, 0x86,
  4598. 0xe7, 0x34, 0xd4, 0x42, 0x7b, 0x6a, 0x8d, 0x31, 0xbb, 0xf9, 0x77, 0x09, 0x4b, 0x21, 0x57, 0x99,
  4599. 0x8d, 0x94, 0xb9, 0xae, 0x00, 0x9c, 0x0e, 0x83, 0x34, 0xb8, 0xab, 0x86, 0x7f, 0x80, 0x39, 0xfa,
  4600. 0x88, 0x29, 0xee, 0x4b, 0x93, 0xb8, 0xa4, 0x27, 0xf1, 0x49, 0x43, 0xa7, 0x43, 0xe0, 0xd0, 0x37,
  4601. 0x15, 0xff, 0xee, 0xdb, 0xfe, 0xab, 0x2f, 0xec, 0xcc, 0x0f, 0xd4, 0xda, 0x37, 0xab, 0x8f, 0x28,
  4602. 0x39, 0x05, 0x4b, 0x8e, 0x4d, 0xf7, 0x50, 0xe2, 0xfb, 0xc3, 0xaa, 0x43, 0x3a, 0xe6, 0xcf, 0xd2,
  4603. 0xb3, 0x8f, 0xc7, 0x31, 0x8b, 0x76, 0x5d, 0x75, 0xa0, 0xbc, 0x01, 0xf5, 0x49, 0xcc, 0x22, 0x2b,
  4604. 0xff, 0xe1, 0xe8, 0xc3, 0x57, 0x7c, 0x38, 0x8a, 0x84, 0xc2, 0xd7, 0x15, 0x9c, 0x0d, 0x79, 0x23,
  4605. 0x3d, 0x1b, 0x5e, 0xd4, 0x8f, 0xc5, 0xc5, 0x2c, 0x2a, 0x69, 0x4a, 0x6c, 0x40, 0x3d, 0x62, 0xf6,
  4606. 0x48, 0x3f, 0xbe, 0xab, 0xa1, 0x00, 0x5f, 0x6b, 0x6e, 0xab, 0xb3, 0x4b, 0x65, 0x6c, 0xd1, 0xd1,
  4607. 0xfc, 0x6f, 0x4b, 0xca, 0x15, 0xa8, 0x97, 0xbd, 0x93, 0xff, 0xbb, 0xcc, 0xab, 0xf0, 0xfb, 0x50,
  4608. 0x61, 0x67, 0x55, 0xe5, 0x6a, 0x66, 0xae, 0x4b, 0xd9, 0xb9, 0x4a, 0xd7, 0xd4, 0xd2, 0x00, 0x7f,
  4609. 0x43, 0x61, 0x4d, 0x9f, 0x15, 0x3a, 0xe0, 0xbf, 0x72, 0x17, 0xc3, 0xb9, 0x34, 0x9b, 0x71, 0x82,
  4610. 0xba, 0x12, 0xbe, 0x9d, 0x89, 0xfe, 0x9d, 0x34, 0x39, 0x5e, 0xc9, 0x5d, 0xe6, 0xc3, 0x4c, 0x2c,
  4611. 0xee, 0x88, 0x84, 0xf8, 0xeb, 0x4d, 0xf9, 0x2c, 0x33, 0xbb, 0xbf, 0xed, 0x2a, 0xc2, 0xfc, 0x5d,
  4612. 0x09, 0x3a, 0xda, 0xe8, 0x54, 0xf2, 0xff, 0x55, 0x80, 0x90, 0xfd, 0xe2, 0x85, 0xe3, 0x21, 0xfd,
  4613. 0xe2, 0xc5, 0x1c, 0xa5, 0xdf, 0x9e, 0x28, 0xbf, 0xbd, 0x59, 0x5d, 0xbf, 0x9a, 0xa9, 0xeb, 0xeb,
  4614. 0xb3, 0x01, 0xd3, 0x2a, 0xf9, 0x8f, 0xd2, 0x95, 0xd4, 0xff, 0x0f, 0x9e, 0x3d, 0x4a, 0xec, 0xc4,
  4615. 0x8b, 0x13, 0xcf, 0xd1, 0x78, 0x6f, 0x03, 0xc4, 0x95, 0xb3, 0xa5, 0x62, 0x56, 0xe3, 0x02, 0xbe,
  4616. 0x84, 0x09, 0x06, 0xcf, 0xd2, 0xdb, 0x96, 0x4a, 0x7f, 0x29, 0x18, 0x3c, 0x93, 0x97, 0xbf, 0x64,
  4617. 0xa2, 0xe5, 0xf9, 0xfc, 0x6a, 0x47, 0x04, 0xb1, 0x45, 0xd2, 0x03, 0x21, 0x94, 0x60, 0x58, 0x4c,
  4618. 0x81, 0xb8, 0x09, 0x1b, 0xf3, 0x2c, 0x42, 0x1a, 0xfd, 0x8e, 0x2a, 0xa1, 0x77, 0x98, 0x3d, 0x7a,
  4619. 0x63, 0x8b, 0xd7, 0xa1, 0x6a, 0x8f, 0xd5, 0xa7, 0x1a, 0xe5, 0xbe, 0x68, 0xa1, 0xb9, 0x88, 0x62,
  4620. 0x2b, 0xf1, 0xc6, 0x2c, 0x4e, 0xec, 0x71, 0x28, 0xcd, 0x45, 0xe9, 0xa7, 0x52, 0x68, 0x9e, 0x55,
  4621. 0xdb, 0x90, 0xd9, 0xb7, 0xa3, 0x75, 0xd7, 0xd4, 0x27, 0x19, 0xaa, 0x6f, 0x3e, 0xc3, 0x7f, 0x0e,
  4622. 0x35, 0x1c, 0x85, 0xd0, 0xbb, 0x09, 0xe0, 0x32, 0xfa, 0xb6, 0x07, 0x6d, 0xe3, 0x4a, 0x75, 0x94,
  4623. 0xf0, 0xcf, 0xab, 0xce, 0x41, 0x83, 0xba, 0x33, 0xb6, 0xd3, 0x13, 0xbb, 0x6f, 0x64, 0xff, 0xaf,
  4624. 0xd2, 0xfa, 0xa0, 0x19, 0x88, 0xf8, 0x52, 0xf7, 0xcc, 0xba, 0x05, 0xfc, 0x9e, 0x99, 0x9b, 0xb0,
  4625. 0x09, 0x40, 0xf9, 0xe5, 0x68, 0x16, 0x50, 0xc6, 0x29, 0x0b, 0xf9, 0x35, 0x34, 0xef, 0x2f, 0x6b,
  4626. 0xd7, 0xd0, 0xc5, 0x1f, 0x91, 0x2d, 0xca, 0x9b, 0xde, 0xf4, 0x23, 0xb2, 0xeb, 0x40, 0x53, 0xb6,
  4627. 0x08, 0xbe, 0xfc, 0x48, 0xab, 0x23, 0xe0, 0x2b, 0x1d, 0xd5, 0xaf, 0xa1, 0x06, 0xa6, 0xc5, 0x5e,
  4628. 0xef, 0x9b, 0xeb, 0xf2, 0x46, 0xfa, 0x86, 0x58, 0x61, 0xde, 0x0a, 0x07, 0xb7, 0x8e, 0xdf, 0x1b,
  4629. 0x54, 0xe9, 0x3f, 0x28, 0x3e, 0xf8, 0x4b, 0x00, 0x00, 0x00, 0xff, 0xff, 0x03, 0xb3, 0x33, 0xf0,
  4630. 0x52, 0x31, 0x00, 0x00,
  4631. }