garden.pb.go 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: garden.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 BuildingAddRequest struct {
  20. // 小区id
  21. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  22. // 楼栋编号
  23. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  24. // 楼栋名
  25. BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
  26. // 楼栋建筑面积
  27. BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
  28. // 楼栋使用面积
  29. BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
  30. // 备注
  31. Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
  32. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  33. XXX_unrecognized []byte `json:"-"`
  34. XXX_sizecache int32 `json:"-"`
  35. }
  36. func (m *BuildingAddRequest) Reset() { *m = BuildingAddRequest{} }
  37. func (m *BuildingAddRequest) String() string { return proto.CompactTextString(m) }
  38. func (*BuildingAddRequest) ProtoMessage() {}
  39. func (*BuildingAddRequest) Descriptor() ([]byte, []int) {
  40. return fileDescriptor_5b775c37bba03b28, []int{0}
  41. }
  42. func (m *BuildingAddRequest) XXX_Unmarshal(b []byte) error {
  43. return xxx_messageInfo_BuildingAddRequest.Unmarshal(m, b)
  44. }
  45. func (m *BuildingAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  46. return xxx_messageInfo_BuildingAddRequest.Marshal(b, m, deterministic)
  47. }
  48. func (m *BuildingAddRequest) XXX_Merge(src proto.Message) {
  49. xxx_messageInfo_BuildingAddRequest.Merge(m, src)
  50. }
  51. func (m *BuildingAddRequest) XXX_Size() int {
  52. return xxx_messageInfo_BuildingAddRequest.Size(m)
  53. }
  54. func (m *BuildingAddRequest) XXX_DiscardUnknown() {
  55. xxx_messageInfo_BuildingAddRequest.DiscardUnknown(m)
  56. }
  57. var xxx_messageInfo_BuildingAddRequest proto.InternalMessageInfo
  58. func (m *BuildingAddRequest) GetGardenId() int64 {
  59. if m != nil {
  60. return m.GardenId
  61. }
  62. return 0
  63. }
  64. func (m *BuildingAddRequest) GetBuildingNumber() string {
  65. if m != nil {
  66. return m.BuildingNumber
  67. }
  68. return ""
  69. }
  70. func (m *BuildingAddRequest) GetBuildingName() string {
  71. if m != nil {
  72. return m.BuildingName
  73. }
  74. return ""
  75. }
  76. func (m *BuildingAddRequest) GetBuildingArea() float64 {
  77. if m != nil {
  78. return m.BuildingArea
  79. }
  80. return 0
  81. }
  82. func (m *BuildingAddRequest) GetBuildingUsedArea() float64 {
  83. if m != nil {
  84. return m.BuildingUsedArea
  85. }
  86. return 0
  87. }
  88. func (m *BuildingAddRequest) GetComment() string {
  89. if m != nil {
  90. return m.Comment
  91. }
  92. return ""
  93. }
  94. type BuildingAddReply struct {
  95. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  96. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  97. XXX_unrecognized []byte `json:"-"`
  98. XXX_sizecache int32 `json:"-"`
  99. }
  100. func (m *BuildingAddReply) Reset() { *m = BuildingAddReply{} }
  101. func (m *BuildingAddReply) String() string { return proto.CompactTextString(m) }
  102. func (*BuildingAddReply) ProtoMessage() {}
  103. func (*BuildingAddReply) Descriptor() ([]byte, []int) {
  104. return fileDescriptor_5b775c37bba03b28, []int{1}
  105. }
  106. func (m *BuildingAddReply) XXX_Unmarshal(b []byte) error {
  107. return xxx_messageInfo_BuildingAddReply.Unmarshal(m, b)
  108. }
  109. func (m *BuildingAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  110. return xxx_messageInfo_BuildingAddReply.Marshal(b, m, deterministic)
  111. }
  112. func (m *BuildingAddReply) XXX_Merge(src proto.Message) {
  113. xxx_messageInfo_BuildingAddReply.Merge(m, src)
  114. }
  115. func (m *BuildingAddReply) XXX_Size() int {
  116. return xxx_messageInfo_BuildingAddReply.Size(m)
  117. }
  118. func (m *BuildingAddReply) XXX_DiscardUnknown() {
  119. xxx_messageInfo_BuildingAddReply.DiscardUnknown(m)
  120. }
  121. var xxx_messageInfo_BuildingAddReply proto.InternalMessageInfo
  122. func (m *BuildingAddReply) GetId() int64 {
  123. if m != nil {
  124. return m.Id
  125. }
  126. return 0
  127. }
  128. type BuildingUpdateRequest struct {
  129. // id
  130. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  131. // 楼栋编号
  132. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  133. // 楼栋名
  134. BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
  135. // 楼栋建筑面积
  136. BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
  137. // 楼栋使用面积
  138. BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
  139. // 备注
  140. Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
  141. GardenId int64 `protobuf:"varint,7,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  142. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  143. XXX_unrecognized []byte `json:"-"`
  144. XXX_sizecache int32 `json:"-"`
  145. }
  146. func (m *BuildingUpdateRequest) Reset() { *m = BuildingUpdateRequest{} }
  147. func (m *BuildingUpdateRequest) String() string { return proto.CompactTextString(m) }
  148. func (*BuildingUpdateRequest) ProtoMessage() {}
  149. func (*BuildingUpdateRequest) Descriptor() ([]byte, []int) {
  150. return fileDescriptor_5b775c37bba03b28, []int{2}
  151. }
  152. func (m *BuildingUpdateRequest) XXX_Unmarshal(b []byte) error {
  153. return xxx_messageInfo_BuildingUpdateRequest.Unmarshal(m, b)
  154. }
  155. func (m *BuildingUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  156. return xxx_messageInfo_BuildingUpdateRequest.Marshal(b, m, deterministic)
  157. }
  158. func (m *BuildingUpdateRequest) XXX_Merge(src proto.Message) {
  159. xxx_messageInfo_BuildingUpdateRequest.Merge(m, src)
  160. }
  161. func (m *BuildingUpdateRequest) XXX_Size() int {
  162. return xxx_messageInfo_BuildingUpdateRequest.Size(m)
  163. }
  164. func (m *BuildingUpdateRequest) XXX_DiscardUnknown() {
  165. xxx_messageInfo_BuildingUpdateRequest.DiscardUnknown(m)
  166. }
  167. var xxx_messageInfo_BuildingUpdateRequest proto.InternalMessageInfo
  168. func (m *BuildingUpdateRequest) GetId() int64 {
  169. if m != nil {
  170. return m.Id
  171. }
  172. return 0
  173. }
  174. func (m *BuildingUpdateRequest) GetBuildingNumber() string {
  175. if m != nil {
  176. return m.BuildingNumber
  177. }
  178. return ""
  179. }
  180. func (m *BuildingUpdateRequest) GetBuildingName() string {
  181. if m != nil {
  182. return m.BuildingName
  183. }
  184. return ""
  185. }
  186. func (m *BuildingUpdateRequest) GetBuildingArea() float64 {
  187. if m != nil {
  188. return m.BuildingArea
  189. }
  190. return 0
  191. }
  192. func (m *BuildingUpdateRequest) GetBuildingUsedArea() float64 {
  193. if m != nil {
  194. return m.BuildingUsedArea
  195. }
  196. return 0
  197. }
  198. func (m *BuildingUpdateRequest) GetComment() string {
  199. if m != nil {
  200. return m.Comment
  201. }
  202. return ""
  203. }
  204. func (m *BuildingUpdateRequest) GetGardenId() int64 {
  205. if m != nil {
  206. return m.GardenId
  207. }
  208. return 0
  209. }
  210. type BuildingUpdateReply struct {
  211. Origin *BuildingUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  212. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  213. XXX_unrecognized []byte `json:"-"`
  214. XXX_sizecache int32 `json:"-"`
  215. }
  216. func (m *BuildingUpdateReply) Reset() { *m = BuildingUpdateReply{} }
  217. func (m *BuildingUpdateReply) String() string { return proto.CompactTextString(m) }
  218. func (*BuildingUpdateReply) ProtoMessage() {}
  219. func (*BuildingUpdateReply) Descriptor() ([]byte, []int) {
  220. return fileDescriptor_5b775c37bba03b28, []int{3}
  221. }
  222. func (m *BuildingUpdateReply) XXX_Unmarshal(b []byte) error {
  223. return xxx_messageInfo_BuildingUpdateReply.Unmarshal(m, b)
  224. }
  225. func (m *BuildingUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  226. return xxx_messageInfo_BuildingUpdateReply.Marshal(b, m, deterministic)
  227. }
  228. func (m *BuildingUpdateReply) XXX_Merge(src proto.Message) {
  229. xxx_messageInfo_BuildingUpdateReply.Merge(m, src)
  230. }
  231. func (m *BuildingUpdateReply) XXX_Size() int {
  232. return xxx_messageInfo_BuildingUpdateReply.Size(m)
  233. }
  234. func (m *BuildingUpdateReply) XXX_DiscardUnknown() {
  235. xxx_messageInfo_BuildingUpdateReply.DiscardUnknown(m)
  236. }
  237. var xxx_messageInfo_BuildingUpdateReply proto.InternalMessageInfo
  238. func (m *BuildingUpdateReply) GetOrigin() *BuildingUpdateRequest {
  239. if m != nil {
  240. return m.Origin
  241. }
  242. return nil
  243. }
  244. type BuildingDelRequest struct {
  245. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  246. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  247. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  248. XXX_unrecognized []byte `json:"-"`
  249. XXX_sizecache int32 `json:"-"`
  250. }
  251. func (m *BuildingDelRequest) Reset() { *m = BuildingDelRequest{} }
  252. func (m *BuildingDelRequest) String() string { return proto.CompactTextString(m) }
  253. func (*BuildingDelRequest) ProtoMessage() {}
  254. func (*BuildingDelRequest) Descriptor() ([]byte, []int) {
  255. return fileDescriptor_5b775c37bba03b28, []int{4}
  256. }
  257. func (m *BuildingDelRequest) XXX_Unmarshal(b []byte) error {
  258. return xxx_messageInfo_BuildingDelRequest.Unmarshal(m, b)
  259. }
  260. func (m *BuildingDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  261. return xxx_messageInfo_BuildingDelRequest.Marshal(b, m, deterministic)
  262. }
  263. func (m *BuildingDelRequest) XXX_Merge(src proto.Message) {
  264. xxx_messageInfo_BuildingDelRequest.Merge(m, src)
  265. }
  266. func (m *BuildingDelRequest) XXX_Size() int {
  267. return xxx_messageInfo_BuildingDelRequest.Size(m)
  268. }
  269. func (m *BuildingDelRequest) XXX_DiscardUnknown() {
  270. xxx_messageInfo_BuildingDelRequest.DiscardUnknown(m)
  271. }
  272. var xxx_messageInfo_BuildingDelRequest proto.InternalMessageInfo
  273. func (m *BuildingDelRequest) GetId() int64 {
  274. if m != nil {
  275. return m.Id
  276. }
  277. return 0
  278. }
  279. func (m *BuildingDelRequest) GetGardenId() int64 {
  280. if m != nil {
  281. return m.GardenId
  282. }
  283. return 0
  284. }
  285. type BuildingDelReply struct {
  286. Origin *BuildingUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  287. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  288. XXX_unrecognized []byte `json:"-"`
  289. XXX_sizecache int32 `json:"-"`
  290. }
  291. func (m *BuildingDelReply) Reset() { *m = BuildingDelReply{} }
  292. func (m *BuildingDelReply) String() string { return proto.CompactTextString(m) }
  293. func (*BuildingDelReply) ProtoMessage() {}
  294. func (*BuildingDelReply) Descriptor() ([]byte, []int) {
  295. return fileDescriptor_5b775c37bba03b28, []int{5}
  296. }
  297. func (m *BuildingDelReply) XXX_Unmarshal(b []byte) error {
  298. return xxx_messageInfo_BuildingDelReply.Unmarshal(m, b)
  299. }
  300. func (m *BuildingDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  301. return xxx_messageInfo_BuildingDelReply.Marshal(b, m, deterministic)
  302. }
  303. func (m *BuildingDelReply) XXX_Merge(src proto.Message) {
  304. xxx_messageInfo_BuildingDelReply.Merge(m, src)
  305. }
  306. func (m *BuildingDelReply) XXX_Size() int {
  307. return xxx_messageInfo_BuildingDelReply.Size(m)
  308. }
  309. func (m *BuildingDelReply) XXX_DiscardUnknown() {
  310. xxx_messageInfo_BuildingDelReply.DiscardUnknown(m)
  311. }
  312. var xxx_messageInfo_BuildingDelReply proto.InternalMessageInfo
  313. func (m *BuildingDelReply) GetOrigin() *BuildingUpdateRequest {
  314. if m != nil {
  315. return m.Origin
  316. }
  317. return nil
  318. }
  319. type BuildingListRequest struct {
  320. BuildingNumber string `protobuf:"bytes,1,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  321. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  322. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  323. GardenId int64 `protobuf:"varint,4,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  324. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  325. XXX_unrecognized []byte `json:"-"`
  326. XXX_sizecache int32 `json:"-"`
  327. }
  328. func (m *BuildingListRequest) Reset() { *m = BuildingListRequest{} }
  329. func (m *BuildingListRequest) String() string { return proto.CompactTextString(m) }
  330. func (*BuildingListRequest) ProtoMessage() {}
  331. func (*BuildingListRequest) Descriptor() ([]byte, []int) {
  332. return fileDescriptor_5b775c37bba03b28, []int{6}
  333. }
  334. func (m *BuildingListRequest) XXX_Unmarshal(b []byte) error {
  335. return xxx_messageInfo_BuildingListRequest.Unmarshal(m, b)
  336. }
  337. func (m *BuildingListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  338. return xxx_messageInfo_BuildingListRequest.Marshal(b, m, deterministic)
  339. }
  340. func (m *BuildingListRequest) XXX_Merge(src proto.Message) {
  341. xxx_messageInfo_BuildingListRequest.Merge(m, src)
  342. }
  343. func (m *BuildingListRequest) XXX_Size() int {
  344. return xxx_messageInfo_BuildingListRequest.Size(m)
  345. }
  346. func (m *BuildingListRequest) XXX_DiscardUnknown() {
  347. xxx_messageInfo_BuildingListRequest.DiscardUnknown(m)
  348. }
  349. var xxx_messageInfo_BuildingListRequest proto.InternalMessageInfo
  350. func (m *BuildingListRequest) GetBuildingNumber() string {
  351. if m != nil {
  352. return m.BuildingNumber
  353. }
  354. return ""
  355. }
  356. func (m *BuildingListRequest) GetPage() int64 {
  357. if m != nil {
  358. return m.Page
  359. }
  360. return 0
  361. }
  362. func (m *BuildingListRequest) GetPageSize() int64 {
  363. if m != nil {
  364. return m.PageSize
  365. }
  366. return 0
  367. }
  368. func (m *BuildingListRequest) GetGardenId() int64 {
  369. if m != nil {
  370. return m.GardenId
  371. }
  372. return 0
  373. }
  374. type BuildingItem struct {
  375. // id
  376. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  377. // 楼栋编号
  378. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  379. // 楼栋名
  380. BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
  381. // 楼栋建筑面积
  382. BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
  383. // 楼栋使用面积
  384. BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
  385. // 备注
  386. Comment string `protobuf:"bytes,6,opt,name=comment,proto3" json:"comment"`
  387. UnitCount int64 `protobuf:"varint,7,opt,name=unit_count,json=unitCount,proto3" json:"unit_count"`
  388. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  389. XXX_unrecognized []byte `json:"-"`
  390. XXX_sizecache int32 `json:"-"`
  391. }
  392. func (m *BuildingItem) Reset() { *m = BuildingItem{} }
  393. func (m *BuildingItem) String() string { return proto.CompactTextString(m) }
  394. func (*BuildingItem) ProtoMessage() {}
  395. func (*BuildingItem) Descriptor() ([]byte, []int) {
  396. return fileDescriptor_5b775c37bba03b28, []int{7}
  397. }
  398. func (m *BuildingItem) XXX_Unmarshal(b []byte) error {
  399. return xxx_messageInfo_BuildingItem.Unmarshal(m, b)
  400. }
  401. func (m *BuildingItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  402. return xxx_messageInfo_BuildingItem.Marshal(b, m, deterministic)
  403. }
  404. func (m *BuildingItem) XXX_Merge(src proto.Message) {
  405. xxx_messageInfo_BuildingItem.Merge(m, src)
  406. }
  407. func (m *BuildingItem) XXX_Size() int {
  408. return xxx_messageInfo_BuildingItem.Size(m)
  409. }
  410. func (m *BuildingItem) XXX_DiscardUnknown() {
  411. xxx_messageInfo_BuildingItem.DiscardUnknown(m)
  412. }
  413. var xxx_messageInfo_BuildingItem proto.InternalMessageInfo
  414. func (m *BuildingItem) GetId() int64 {
  415. if m != nil {
  416. return m.Id
  417. }
  418. return 0
  419. }
  420. func (m *BuildingItem) GetBuildingNumber() string {
  421. if m != nil {
  422. return m.BuildingNumber
  423. }
  424. return ""
  425. }
  426. func (m *BuildingItem) GetBuildingName() string {
  427. if m != nil {
  428. return m.BuildingName
  429. }
  430. return ""
  431. }
  432. func (m *BuildingItem) GetBuildingArea() float64 {
  433. if m != nil {
  434. return m.BuildingArea
  435. }
  436. return 0
  437. }
  438. func (m *BuildingItem) GetBuildingUsedArea() float64 {
  439. if m != nil {
  440. return m.BuildingUsedArea
  441. }
  442. return 0
  443. }
  444. func (m *BuildingItem) GetComment() string {
  445. if m != nil {
  446. return m.Comment
  447. }
  448. return ""
  449. }
  450. func (m *BuildingItem) GetUnitCount() int64 {
  451. if m != nil {
  452. return m.UnitCount
  453. }
  454. return 0
  455. }
  456. type BuildingListReply struct {
  457. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  458. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  459. List []*BuildingItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  460. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  461. XXX_unrecognized []byte `json:"-"`
  462. XXX_sizecache int32 `json:"-"`
  463. }
  464. func (m *BuildingListReply) Reset() { *m = BuildingListReply{} }
  465. func (m *BuildingListReply) String() string { return proto.CompactTextString(m) }
  466. func (*BuildingListReply) ProtoMessage() {}
  467. func (*BuildingListReply) Descriptor() ([]byte, []int) {
  468. return fileDescriptor_5b775c37bba03b28, []int{8}
  469. }
  470. func (m *BuildingListReply) XXX_Unmarshal(b []byte) error {
  471. return xxx_messageInfo_BuildingListReply.Unmarshal(m, b)
  472. }
  473. func (m *BuildingListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  474. return xxx_messageInfo_BuildingListReply.Marshal(b, m, deterministic)
  475. }
  476. func (m *BuildingListReply) XXX_Merge(src proto.Message) {
  477. xxx_messageInfo_BuildingListReply.Merge(m, src)
  478. }
  479. func (m *BuildingListReply) XXX_Size() int {
  480. return xxx_messageInfo_BuildingListReply.Size(m)
  481. }
  482. func (m *BuildingListReply) XXX_DiscardUnknown() {
  483. xxx_messageInfo_BuildingListReply.DiscardUnknown(m)
  484. }
  485. var xxx_messageInfo_BuildingListReply proto.InternalMessageInfo
  486. func (m *BuildingListReply) GetTotal() int64 {
  487. if m != nil {
  488. return m.Total
  489. }
  490. return 0
  491. }
  492. func (m *BuildingListReply) GetPage() int64 {
  493. if m != nil {
  494. return m.Page
  495. }
  496. return 0
  497. }
  498. func (m *BuildingListReply) GetList() []*BuildingItem {
  499. if m != nil {
  500. return m.List
  501. }
  502. return nil
  503. }
  504. type BuildingAddManagerRequest struct {
  505. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  506. ManagerUid int64 `protobuf:"varint,2,opt,name=manager_uid,json=managerUid,proto3" json:"manager_uid"`
  507. BuildingId int64 `protobuf:"varint,3,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  508. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  509. XXX_unrecognized []byte `json:"-"`
  510. XXX_sizecache int32 `json:"-"`
  511. }
  512. func (m *BuildingAddManagerRequest) Reset() { *m = BuildingAddManagerRequest{} }
  513. func (m *BuildingAddManagerRequest) String() string { return proto.CompactTextString(m) }
  514. func (*BuildingAddManagerRequest) ProtoMessage() {}
  515. func (*BuildingAddManagerRequest) Descriptor() ([]byte, []int) {
  516. return fileDescriptor_5b775c37bba03b28, []int{9}
  517. }
  518. func (m *BuildingAddManagerRequest) XXX_Unmarshal(b []byte) error {
  519. return xxx_messageInfo_BuildingAddManagerRequest.Unmarshal(m, b)
  520. }
  521. func (m *BuildingAddManagerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  522. return xxx_messageInfo_BuildingAddManagerRequest.Marshal(b, m, deterministic)
  523. }
  524. func (m *BuildingAddManagerRequest) XXX_Merge(src proto.Message) {
  525. xxx_messageInfo_BuildingAddManagerRequest.Merge(m, src)
  526. }
  527. func (m *BuildingAddManagerRequest) XXX_Size() int {
  528. return xxx_messageInfo_BuildingAddManagerRequest.Size(m)
  529. }
  530. func (m *BuildingAddManagerRequest) XXX_DiscardUnknown() {
  531. xxx_messageInfo_BuildingAddManagerRequest.DiscardUnknown(m)
  532. }
  533. var xxx_messageInfo_BuildingAddManagerRequest proto.InternalMessageInfo
  534. func (m *BuildingAddManagerRequest) GetGardenId() int64 {
  535. if m != nil {
  536. return m.GardenId
  537. }
  538. return 0
  539. }
  540. func (m *BuildingAddManagerRequest) GetManagerUid() int64 {
  541. if m != nil {
  542. return m.ManagerUid
  543. }
  544. return 0
  545. }
  546. func (m *BuildingAddManagerRequest) GetBuildingId() int64 {
  547. if m != nil {
  548. return m.BuildingId
  549. }
  550. return 0
  551. }
  552. type BuildingAddManagerReply struct {
  553. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  554. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  555. XXX_unrecognized []byte `json:"-"`
  556. XXX_sizecache int32 `json:"-"`
  557. }
  558. func (m *BuildingAddManagerReply) Reset() { *m = BuildingAddManagerReply{} }
  559. func (m *BuildingAddManagerReply) String() string { return proto.CompactTextString(m) }
  560. func (*BuildingAddManagerReply) ProtoMessage() {}
  561. func (*BuildingAddManagerReply) Descriptor() ([]byte, []int) {
  562. return fileDescriptor_5b775c37bba03b28, []int{10}
  563. }
  564. func (m *BuildingAddManagerReply) XXX_Unmarshal(b []byte) error {
  565. return xxx_messageInfo_BuildingAddManagerReply.Unmarshal(m, b)
  566. }
  567. func (m *BuildingAddManagerReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  568. return xxx_messageInfo_BuildingAddManagerReply.Marshal(b, m, deterministic)
  569. }
  570. func (m *BuildingAddManagerReply) XXX_Merge(src proto.Message) {
  571. xxx_messageInfo_BuildingAddManagerReply.Merge(m, src)
  572. }
  573. func (m *BuildingAddManagerReply) XXX_Size() int {
  574. return xxx_messageInfo_BuildingAddManagerReply.Size(m)
  575. }
  576. func (m *BuildingAddManagerReply) XXX_DiscardUnknown() {
  577. xxx_messageInfo_BuildingAddManagerReply.DiscardUnknown(m)
  578. }
  579. var xxx_messageInfo_BuildingAddManagerReply proto.InternalMessageInfo
  580. func (m *BuildingAddManagerReply) GetId() int64 {
  581. if m != nil {
  582. return m.Id
  583. }
  584. return 0
  585. }
  586. type BuildingDelManagerRequest struct {
  587. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  588. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
  589. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  590. XXX_unrecognized []byte `json:"-"`
  591. XXX_sizecache int32 `json:"-"`
  592. }
  593. func (m *BuildingDelManagerRequest) Reset() { *m = BuildingDelManagerRequest{} }
  594. func (m *BuildingDelManagerRequest) String() string { return proto.CompactTextString(m) }
  595. func (*BuildingDelManagerRequest) ProtoMessage() {}
  596. func (*BuildingDelManagerRequest) Descriptor() ([]byte, []int) {
  597. return fileDescriptor_5b775c37bba03b28, []int{11}
  598. }
  599. func (m *BuildingDelManagerRequest) XXX_Unmarshal(b []byte) error {
  600. return xxx_messageInfo_BuildingDelManagerRequest.Unmarshal(m, b)
  601. }
  602. func (m *BuildingDelManagerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  603. return xxx_messageInfo_BuildingDelManagerRequest.Marshal(b, m, deterministic)
  604. }
  605. func (m *BuildingDelManagerRequest) XXX_Merge(src proto.Message) {
  606. xxx_messageInfo_BuildingDelManagerRequest.Merge(m, src)
  607. }
  608. func (m *BuildingDelManagerRequest) XXX_Size() int {
  609. return xxx_messageInfo_BuildingDelManagerRequest.Size(m)
  610. }
  611. func (m *BuildingDelManagerRequest) XXX_DiscardUnknown() {
  612. xxx_messageInfo_BuildingDelManagerRequest.DiscardUnknown(m)
  613. }
  614. var xxx_messageInfo_BuildingDelManagerRequest proto.InternalMessageInfo
  615. func (m *BuildingDelManagerRequest) GetGardenId() int64 {
  616. if m != nil {
  617. return m.GardenId
  618. }
  619. return 0
  620. }
  621. func (m *BuildingDelManagerRequest) GetId() int64 {
  622. if m != nil {
  623. return m.Id
  624. }
  625. return 0
  626. }
  627. type BuildingDelManagerReply struct {
  628. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  629. XXX_unrecognized []byte `json:"-"`
  630. XXX_sizecache int32 `json:"-"`
  631. }
  632. func (m *BuildingDelManagerReply) Reset() { *m = BuildingDelManagerReply{} }
  633. func (m *BuildingDelManagerReply) String() string { return proto.CompactTextString(m) }
  634. func (*BuildingDelManagerReply) ProtoMessage() {}
  635. func (*BuildingDelManagerReply) Descriptor() ([]byte, []int) {
  636. return fileDescriptor_5b775c37bba03b28, []int{12}
  637. }
  638. func (m *BuildingDelManagerReply) XXX_Unmarshal(b []byte) error {
  639. return xxx_messageInfo_BuildingDelManagerReply.Unmarshal(m, b)
  640. }
  641. func (m *BuildingDelManagerReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  642. return xxx_messageInfo_BuildingDelManagerReply.Marshal(b, m, deterministic)
  643. }
  644. func (m *BuildingDelManagerReply) XXX_Merge(src proto.Message) {
  645. xxx_messageInfo_BuildingDelManagerReply.Merge(m, src)
  646. }
  647. func (m *BuildingDelManagerReply) XXX_Size() int {
  648. return xxx_messageInfo_BuildingDelManagerReply.Size(m)
  649. }
  650. func (m *BuildingDelManagerReply) XXX_DiscardUnknown() {
  651. xxx_messageInfo_BuildingDelManagerReply.DiscardUnknown(m)
  652. }
  653. var xxx_messageInfo_BuildingDelManagerReply proto.InternalMessageInfo
  654. type BuildingManagerListRequest struct {
  655. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  656. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  657. HouseId int64 `protobuf:"varint,3,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  658. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  659. XXX_unrecognized []byte `json:"-"`
  660. XXX_sizecache int32 `json:"-"`
  661. }
  662. func (m *BuildingManagerListRequest) Reset() { *m = BuildingManagerListRequest{} }
  663. func (m *BuildingManagerListRequest) String() string { return proto.CompactTextString(m) }
  664. func (*BuildingManagerListRequest) ProtoMessage() {}
  665. func (*BuildingManagerListRequest) Descriptor() ([]byte, []int) {
  666. return fileDescriptor_5b775c37bba03b28, []int{13}
  667. }
  668. func (m *BuildingManagerListRequest) XXX_Unmarshal(b []byte) error {
  669. return xxx_messageInfo_BuildingManagerListRequest.Unmarshal(m, b)
  670. }
  671. func (m *BuildingManagerListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  672. return xxx_messageInfo_BuildingManagerListRequest.Marshal(b, m, deterministic)
  673. }
  674. func (m *BuildingManagerListRequest) XXX_Merge(src proto.Message) {
  675. xxx_messageInfo_BuildingManagerListRequest.Merge(m, src)
  676. }
  677. func (m *BuildingManagerListRequest) XXX_Size() int {
  678. return xxx_messageInfo_BuildingManagerListRequest.Size(m)
  679. }
  680. func (m *BuildingManagerListRequest) XXX_DiscardUnknown() {
  681. xxx_messageInfo_BuildingManagerListRequest.DiscardUnknown(m)
  682. }
  683. var xxx_messageInfo_BuildingManagerListRequest proto.InternalMessageInfo
  684. func (m *BuildingManagerListRequest) GetGardenId() int64 {
  685. if m != nil {
  686. return m.GardenId
  687. }
  688. return 0
  689. }
  690. func (m *BuildingManagerListRequest) GetBuildingId() int64 {
  691. if m != nil {
  692. return m.BuildingId
  693. }
  694. return 0
  695. }
  696. func (m *BuildingManagerListRequest) GetHouseId() int64 {
  697. if m != nil {
  698. return m.HouseId
  699. }
  700. return 0
  701. }
  702. type BuildingManagerItem struct {
  703. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  704. ManagerUid int64 `protobuf:"varint,2,opt,name=manager_uid,json=managerUid,proto3" json:"manager_uid"`
  705. // 姓名
  706. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  707. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone"`
  708. // 账号
  709. UserName string `protobuf:"bytes,5,opt,name=user_name,json=userName,proto3" json:"user_name"`
  710. OpenimId string `protobuf:"bytes,6,opt,name=openim_id,json=openimId,proto3" json:"openim_id"`
  711. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  712. XXX_unrecognized []byte `json:"-"`
  713. XXX_sizecache int32 `json:"-"`
  714. }
  715. func (m *BuildingManagerItem) Reset() { *m = BuildingManagerItem{} }
  716. func (m *BuildingManagerItem) String() string { return proto.CompactTextString(m) }
  717. func (*BuildingManagerItem) ProtoMessage() {}
  718. func (*BuildingManagerItem) Descriptor() ([]byte, []int) {
  719. return fileDescriptor_5b775c37bba03b28, []int{14}
  720. }
  721. func (m *BuildingManagerItem) XXX_Unmarshal(b []byte) error {
  722. return xxx_messageInfo_BuildingManagerItem.Unmarshal(m, b)
  723. }
  724. func (m *BuildingManagerItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  725. return xxx_messageInfo_BuildingManagerItem.Marshal(b, m, deterministic)
  726. }
  727. func (m *BuildingManagerItem) XXX_Merge(src proto.Message) {
  728. xxx_messageInfo_BuildingManagerItem.Merge(m, src)
  729. }
  730. func (m *BuildingManagerItem) XXX_Size() int {
  731. return xxx_messageInfo_BuildingManagerItem.Size(m)
  732. }
  733. func (m *BuildingManagerItem) XXX_DiscardUnknown() {
  734. xxx_messageInfo_BuildingManagerItem.DiscardUnknown(m)
  735. }
  736. var xxx_messageInfo_BuildingManagerItem proto.InternalMessageInfo
  737. func (m *BuildingManagerItem) GetId() int64 {
  738. if m != nil {
  739. return m.Id
  740. }
  741. return 0
  742. }
  743. func (m *BuildingManagerItem) GetManagerUid() int64 {
  744. if m != nil {
  745. return m.ManagerUid
  746. }
  747. return 0
  748. }
  749. func (m *BuildingManagerItem) GetName() string {
  750. if m != nil {
  751. return m.Name
  752. }
  753. return ""
  754. }
  755. func (m *BuildingManagerItem) GetPhone() string {
  756. if m != nil {
  757. return m.Phone
  758. }
  759. return ""
  760. }
  761. func (m *BuildingManagerItem) GetUserName() string {
  762. if m != nil {
  763. return m.UserName
  764. }
  765. return ""
  766. }
  767. func (m *BuildingManagerItem) GetOpenimId() string {
  768. if m != nil {
  769. return m.OpenimId
  770. }
  771. return ""
  772. }
  773. type BuildingManagerListReply struct {
  774. List []*BuildingManagerItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  775. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  776. XXX_unrecognized []byte `json:"-"`
  777. XXX_sizecache int32 `json:"-"`
  778. }
  779. func (m *BuildingManagerListReply) Reset() { *m = BuildingManagerListReply{} }
  780. func (m *BuildingManagerListReply) String() string { return proto.CompactTextString(m) }
  781. func (*BuildingManagerListReply) ProtoMessage() {}
  782. func (*BuildingManagerListReply) Descriptor() ([]byte, []int) {
  783. return fileDescriptor_5b775c37bba03b28, []int{15}
  784. }
  785. func (m *BuildingManagerListReply) XXX_Unmarshal(b []byte) error {
  786. return xxx_messageInfo_BuildingManagerListReply.Unmarshal(m, b)
  787. }
  788. func (m *BuildingManagerListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  789. return xxx_messageInfo_BuildingManagerListReply.Marshal(b, m, deterministic)
  790. }
  791. func (m *BuildingManagerListReply) XXX_Merge(src proto.Message) {
  792. xxx_messageInfo_BuildingManagerListReply.Merge(m, src)
  793. }
  794. func (m *BuildingManagerListReply) XXX_Size() int {
  795. return xxx_messageInfo_BuildingManagerListReply.Size(m)
  796. }
  797. func (m *BuildingManagerListReply) XXX_DiscardUnknown() {
  798. xxx_messageInfo_BuildingManagerListReply.DiscardUnknown(m)
  799. }
  800. var xxx_messageInfo_BuildingManagerListReply proto.InternalMessageInfo
  801. func (m *BuildingManagerListReply) GetList() []*BuildingManagerItem {
  802. if m != nil {
  803. return m.List
  804. }
  805. return nil
  806. }
  807. type UnitAddRequest struct {
  808. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  809. // 楼栋id
  810. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  811. // 单元编号
  812. UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  813. // 单元名
  814. UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
  815. // 楼层数
  816. UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
  817. HasLift bool `protobuf:"varint,6,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
  818. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  819. XXX_unrecognized []byte `json:"-"`
  820. XXX_sizecache int32 `json:"-"`
  821. }
  822. func (m *UnitAddRequest) Reset() { *m = UnitAddRequest{} }
  823. func (m *UnitAddRequest) String() string { return proto.CompactTextString(m) }
  824. func (*UnitAddRequest) ProtoMessage() {}
  825. func (*UnitAddRequest) Descriptor() ([]byte, []int) {
  826. return fileDescriptor_5b775c37bba03b28, []int{16}
  827. }
  828. func (m *UnitAddRequest) XXX_Unmarshal(b []byte) error {
  829. return xxx_messageInfo_UnitAddRequest.Unmarshal(m, b)
  830. }
  831. func (m *UnitAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  832. return xxx_messageInfo_UnitAddRequest.Marshal(b, m, deterministic)
  833. }
  834. func (m *UnitAddRequest) XXX_Merge(src proto.Message) {
  835. xxx_messageInfo_UnitAddRequest.Merge(m, src)
  836. }
  837. func (m *UnitAddRequest) XXX_Size() int {
  838. return xxx_messageInfo_UnitAddRequest.Size(m)
  839. }
  840. func (m *UnitAddRequest) XXX_DiscardUnknown() {
  841. xxx_messageInfo_UnitAddRequest.DiscardUnknown(m)
  842. }
  843. var xxx_messageInfo_UnitAddRequest proto.InternalMessageInfo
  844. func (m *UnitAddRequest) GetGardenId() int64 {
  845. if m != nil {
  846. return m.GardenId
  847. }
  848. return 0
  849. }
  850. func (m *UnitAddRequest) GetBuildingId() int64 {
  851. if m != nil {
  852. return m.BuildingId
  853. }
  854. return 0
  855. }
  856. func (m *UnitAddRequest) GetUnitNumber() int64 {
  857. if m != nil {
  858. return m.UnitNumber
  859. }
  860. return 0
  861. }
  862. func (m *UnitAddRequest) GetUnitName() string {
  863. if m != nil {
  864. return m.UnitName
  865. }
  866. return ""
  867. }
  868. func (m *UnitAddRequest) GetUnitLayers() int64 {
  869. if m != nil {
  870. return m.UnitLayers
  871. }
  872. return 0
  873. }
  874. func (m *UnitAddRequest) GetHasLift() bool {
  875. if m != nil {
  876. return m.HasLift
  877. }
  878. return false
  879. }
  880. type UnitAddReply struct {
  881. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  882. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  883. XXX_unrecognized []byte `json:"-"`
  884. XXX_sizecache int32 `json:"-"`
  885. }
  886. func (m *UnitAddReply) Reset() { *m = UnitAddReply{} }
  887. func (m *UnitAddReply) String() string { return proto.CompactTextString(m) }
  888. func (*UnitAddReply) ProtoMessage() {}
  889. func (*UnitAddReply) Descriptor() ([]byte, []int) {
  890. return fileDescriptor_5b775c37bba03b28, []int{17}
  891. }
  892. func (m *UnitAddReply) XXX_Unmarshal(b []byte) error {
  893. return xxx_messageInfo_UnitAddReply.Unmarshal(m, b)
  894. }
  895. func (m *UnitAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  896. return xxx_messageInfo_UnitAddReply.Marshal(b, m, deterministic)
  897. }
  898. func (m *UnitAddReply) XXX_Merge(src proto.Message) {
  899. xxx_messageInfo_UnitAddReply.Merge(m, src)
  900. }
  901. func (m *UnitAddReply) XXX_Size() int {
  902. return xxx_messageInfo_UnitAddReply.Size(m)
  903. }
  904. func (m *UnitAddReply) XXX_DiscardUnknown() {
  905. xxx_messageInfo_UnitAddReply.DiscardUnknown(m)
  906. }
  907. var xxx_messageInfo_UnitAddReply proto.InternalMessageInfo
  908. func (m *UnitAddReply) GetId() int64 {
  909. if m != nil {
  910. return m.Id
  911. }
  912. return 0
  913. }
  914. type UnitUpdateRequest struct {
  915. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  916. //
  917. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  918. // 单元编号
  919. UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  920. // 单元名
  921. UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
  922. // 楼层数
  923. UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
  924. BuildingId int64 `protobuf:"varint,6,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  925. HasLift bool `protobuf:"varint,7,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
  926. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  927. XXX_unrecognized []byte `json:"-"`
  928. XXX_sizecache int32 `json:"-"`
  929. }
  930. func (m *UnitUpdateRequest) Reset() { *m = UnitUpdateRequest{} }
  931. func (m *UnitUpdateRequest) String() string { return proto.CompactTextString(m) }
  932. func (*UnitUpdateRequest) ProtoMessage() {}
  933. func (*UnitUpdateRequest) Descriptor() ([]byte, []int) {
  934. return fileDescriptor_5b775c37bba03b28, []int{18}
  935. }
  936. func (m *UnitUpdateRequest) XXX_Unmarshal(b []byte) error {
  937. return xxx_messageInfo_UnitUpdateRequest.Unmarshal(m, b)
  938. }
  939. func (m *UnitUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  940. return xxx_messageInfo_UnitUpdateRequest.Marshal(b, m, deterministic)
  941. }
  942. func (m *UnitUpdateRequest) XXX_Merge(src proto.Message) {
  943. xxx_messageInfo_UnitUpdateRequest.Merge(m, src)
  944. }
  945. func (m *UnitUpdateRequest) XXX_Size() int {
  946. return xxx_messageInfo_UnitUpdateRequest.Size(m)
  947. }
  948. func (m *UnitUpdateRequest) XXX_DiscardUnknown() {
  949. xxx_messageInfo_UnitUpdateRequest.DiscardUnknown(m)
  950. }
  951. var xxx_messageInfo_UnitUpdateRequest proto.InternalMessageInfo
  952. func (m *UnitUpdateRequest) GetId() int64 {
  953. if m != nil {
  954. return m.Id
  955. }
  956. return 0
  957. }
  958. func (m *UnitUpdateRequest) GetGardenId() int64 {
  959. if m != nil {
  960. return m.GardenId
  961. }
  962. return 0
  963. }
  964. func (m *UnitUpdateRequest) GetUnitNumber() int64 {
  965. if m != nil {
  966. return m.UnitNumber
  967. }
  968. return 0
  969. }
  970. func (m *UnitUpdateRequest) GetUnitName() string {
  971. if m != nil {
  972. return m.UnitName
  973. }
  974. return ""
  975. }
  976. func (m *UnitUpdateRequest) GetUnitLayers() int64 {
  977. if m != nil {
  978. return m.UnitLayers
  979. }
  980. return 0
  981. }
  982. func (m *UnitUpdateRequest) GetBuildingId() int64 {
  983. if m != nil {
  984. return m.BuildingId
  985. }
  986. return 0
  987. }
  988. func (m *UnitUpdateRequest) GetHasLift() bool {
  989. if m != nil {
  990. return m.HasLift
  991. }
  992. return false
  993. }
  994. type UnitUpdateReply struct {
  995. Origin *UnitUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  996. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  997. XXX_unrecognized []byte `json:"-"`
  998. XXX_sizecache int32 `json:"-"`
  999. }
  1000. func (m *UnitUpdateReply) Reset() { *m = UnitUpdateReply{} }
  1001. func (m *UnitUpdateReply) String() string { return proto.CompactTextString(m) }
  1002. func (*UnitUpdateReply) ProtoMessage() {}
  1003. func (*UnitUpdateReply) Descriptor() ([]byte, []int) {
  1004. return fileDescriptor_5b775c37bba03b28, []int{19}
  1005. }
  1006. func (m *UnitUpdateReply) XXX_Unmarshal(b []byte) error {
  1007. return xxx_messageInfo_UnitUpdateReply.Unmarshal(m, b)
  1008. }
  1009. func (m *UnitUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1010. return xxx_messageInfo_UnitUpdateReply.Marshal(b, m, deterministic)
  1011. }
  1012. func (m *UnitUpdateReply) XXX_Merge(src proto.Message) {
  1013. xxx_messageInfo_UnitUpdateReply.Merge(m, src)
  1014. }
  1015. func (m *UnitUpdateReply) XXX_Size() int {
  1016. return xxx_messageInfo_UnitUpdateReply.Size(m)
  1017. }
  1018. func (m *UnitUpdateReply) XXX_DiscardUnknown() {
  1019. xxx_messageInfo_UnitUpdateReply.DiscardUnknown(m)
  1020. }
  1021. var xxx_messageInfo_UnitUpdateReply proto.InternalMessageInfo
  1022. func (m *UnitUpdateReply) GetOrigin() *UnitUpdateRequest {
  1023. if m != nil {
  1024. return m.Origin
  1025. }
  1026. return nil
  1027. }
  1028. type UnitDelRequest struct {
  1029. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1030. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1031. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1032. XXX_unrecognized []byte `json:"-"`
  1033. XXX_sizecache int32 `json:"-"`
  1034. }
  1035. func (m *UnitDelRequest) Reset() { *m = UnitDelRequest{} }
  1036. func (m *UnitDelRequest) String() string { return proto.CompactTextString(m) }
  1037. func (*UnitDelRequest) ProtoMessage() {}
  1038. func (*UnitDelRequest) Descriptor() ([]byte, []int) {
  1039. return fileDescriptor_5b775c37bba03b28, []int{20}
  1040. }
  1041. func (m *UnitDelRequest) XXX_Unmarshal(b []byte) error {
  1042. return xxx_messageInfo_UnitDelRequest.Unmarshal(m, b)
  1043. }
  1044. func (m *UnitDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1045. return xxx_messageInfo_UnitDelRequest.Marshal(b, m, deterministic)
  1046. }
  1047. func (m *UnitDelRequest) XXX_Merge(src proto.Message) {
  1048. xxx_messageInfo_UnitDelRequest.Merge(m, src)
  1049. }
  1050. func (m *UnitDelRequest) XXX_Size() int {
  1051. return xxx_messageInfo_UnitDelRequest.Size(m)
  1052. }
  1053. func (m *UnitDelRequest) XXX_DiscardUnknown() {
  1054. xxx_messageInfo_UnitDelRequest.DiscardUnknown(m)
  1055. }
  1056. var xxx_messageInfo_UnitDelRequest proto.InternalMessageInfo
  1057. func (m *UnitDelRequest) GetId() int64 {
  1058. if m != nil {
  1059. return m.Id
  1060. }
  1061. return 0
  1062. }
  1063. func (m *UnitDelRequest) GetGardenId() int64 {
  1064. if m != nil {
  1065. return m.GardenId
  1066. }
  1067. return 0
  1068. }
  1069. type UnitDelReply struct {
  1070. Origin *UnitUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  1071. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1072. XXX_unrecognized []byte `json:"-"`
  1073. XXX_sizecache int32 `json:"-"`
  1074. }
  1075. func (m *UnitDelReply) Reset() { *m = UnitDelReply{} }
  1076. func (m *UnitDelReply) String() string { return proto.CompactTextString(m) }
  1077. func (*UnitDelReply) ProtoMessage() {}
  1078. func (*UnitDelReply) Descriptor() ([]byte, []int) {
  1079. return fileDescriptor_5b775c37bba03b28, []int{21}
  1080. }
  1081. func (m *UnitDelReply) XXX_Unmarshal(b []byte) error {
  1082. return xxx_messageInfo_UnitDelReply.Unmarshal(m, b)
  1083. }
  1084. func (m *UnitDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1085. return xxx_messageInfo_UnitDelReply.Marshal(b, m, deterministic)
  1086. }
  1087. func (m *UnitDelReply) XXX_Merge(src proto.Message) {
  1088. xxx_messageInfo_UnitDelReply.Merge(m, src)
  1089. }
  1090. func (m *UnitDelReply) XXX_Size() int {
  1091. return xxx_messageInfo_UnitDelReply.Size(m)
  1092. }
  1093. func (m *UnitDelReply) XXX_DiscardUnknown() {
  1094. xxx_messageInfo_UnitDelReply.DiscardUnknown(m)
  1095. }
  1096. var xxx_messageInfo_UnitDelReply proto.InternalMessageInfo
  1097. func (m *UnitDelReply) GetOrigin() *UnitUpdateRequest {
  1098. if m != nil {
  1099. return m.Origin
  1100. }
  1101. return nil
  1102. }
  1103. type UnitListRequest struct {
  1104. UnitNumber int64 `protobuf:"varint,1,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  1105. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  1106. Page int64 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  1107. PageSize int64 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  1108. GardenId int64 `protobuf:"varint,5,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1109. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1110. XXX_unrecognized []byte `json:"-"`
  1111. XXX_sizecache int32 `json:"-"`
  1112. }
  1113. func (m *UnitListRequest) Reset() { *m = UnitListRequest{} }
  1114. func (m *UnitListRequest) String() string { return proto.CompactTextString(m) }
  1115. func (*UnitListRequest) ProtoMessage() {}
  1116. func (*UnitListRequest) Descriptor() ([]byte, []int) {
  1117. return fileDescriptor_5b775c37bba03b28, []int{22}
  1118. }
  1119. func (m *UnitListRequest) XXX_Unmarshal(b []byte) error {
  1120. return xxx_messageInfo_UnitListRequest.Unmarshal(m, b)
  1121. }
  1122. func (m *UnitListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1123. return xxx_messageInfo_UnitListRequest.Marshal(b, m, deterministic)
  1124. }
  1125. func (m *UnitListRequest) XXX_Merge(src proto.Message) {
  1126. xxx_messageInfo_UnitListRequest.Merge(m, src)
  1127. }
  1128. func (m *UnitListRequest) XXX_Size() int {
  1129. return xxx_messageInfo_UnitListRequest.Size(m)
  1130. }
  1131. func (m *UnitListRequest) XXX_DiscardUnknown() {
  1132. xxx_messageInfo_UnitListRequest.DiscardUnknown(m)
  1133. }
  1134. var xxx_messageInfo_UnitListRequest proto.InternalMessageInfo
  1135. func (m *UnitListRequest) GetUnitNumber() int64 {
  1136. if m != nil {
  1137. return m.UnitNumber
  1138. }
  1139. return 0
  1140. }
  1141. func (m *UnitListRequest) GetBuildingId() int64 {
  1142. if m != nil {
  1143. return m.BuildingId
  1144. }
  1145. return 0
  1146. }
  1147. func (m *UnitListRequest) GetPage() int64 {
  1148. if m != nil {
  1149. return m.Page
  1150. }
  1151. return 0
  1152. }
  1153. func (m *UnitListRequest) GetPageSize() int64 {
  1154. if m != nil {
  1155. return m.PageSize
  1156. }
  1157. return 0
  1158. }
  1159. func (m *UnitListRequest) GetGardenId() int64 {
  1160. if m != nil {
  1161. return m.GardenId
  1162. }
  1163. return 0
  1164. }
  1165. type UnitItem struct {
  1166. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1167. // 楼栋id
  1168. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  1169. // 单元编号
  1170. UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  1171. // 单元名
  1172. UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
  1173. // 楼层数
  1174. UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
  1175. BuildingName string `protobuf:"bytes,6,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
  1176. HasLift bool `protobuf:"varint,7,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
  1177. BuildingNumber string `protobuf:"bytes,8,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  1178. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1179. XXX_unrecognized []byte `json:"-"`
  1180. XXX_sizecache int32 `json:"-"`
  1181. }
  1182. func (m *UnitItem) Reset() { *m = UnitItem{} }
  1183. func (m *UnitItem) String() string { return proto.CompactTextString(m) }
  1184. func (*UnitItem) ProtoMessage() {}
  1185. func (*UnitItem) Descriptor() ([]byte, []int) {
  1186. return fileDescriptor_5b775c37bba03b28, []int{23}
  1187. }
  1188. func (m *UnitItem) XXX_Unmarshal(b []byte) error {
  1189. return xxx_messageInfo_UnitItem.Unmarshal(m, b)
  1190. }
  1191. func (m *UnitItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1192. return xxx_messageInfo_UnitItem.Marshal(b, m, deterministic)
  1193. }
  1194. func (m *UnitItem) XXX_Merge(src proto.Message) {
  1195. xxx_messageInfo_UnitItem.Merge(m, src)
  1196. }
  1197. func (m *UnitItem) XXX_Size() int {
  1198. return xxx_messageInfo_UnitItem.Size(m)
  1199. }
  1200. func (m *UnitItem) XXX_DiscardUnknown() {
  1201. xxx_messageInfo_UnitItem.DiscardUnknown(m)
  1202. }
  1203. var xxx_messageInfo_UnitItem proto.InternalMessageInfo
  1204. func (m *UnitItem) GetId() int64 {
  1205. if m != nil {
  1206. return m.Id
  1207. }
  1208. return 0
  1209. }
  1210. func (m *UnitItem) GetBuildingId() int64 {
  1211. if m != nil {
  1212. return m.BuildingId
  1213. }
  1214. return 0
  1215. }
  1216. func (m *UnitItem) GetUnitNumber() int64 {
  1217. if m != nil {
  1218. return m.UnitNumber
  1219. }
  1220. return 0
  1221. }
  1222. func (m *UnitItem) GetUnitName() string {
  1223. if m != nil {
  1224. return m.UnitName
  1225. }
  1226. return ""
  1227. }
  1228. func (m *UnitItem) GetUnitLayers() int64 {
  1229. if m != nil {
  1230. return m.UnitLayers
  1231. }
  1232. return 0
  1233. }
  1234. func (m *UnitItem) GetBuildingName() string {
  1235. if m != nil {
  1236. return m.BuildingName
  1237. }
  1238. return ""
  1239. }
  1240. func (m *UnitItem) GetHasLift() bool {
  1241. if m != nil {
  1242. return m.HasLift
  1243. }
  1244. return false
  1245. }
  1246. func (m *UnitItem) GetBuildingNumber() string {
  1247. if m != nil {
  1248. return m.BuildingNumber
  1249. }
  1250. return ""
  1251. }
  1252. type UnitListReply struct {
  1253. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  1254. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  1255. List []*UnitItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  1256. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1257. XXX_unrecognized []byte `json:"-"`
  1258. XXX_sizecache int32 `json:"-"`
  1259. }
  1260. func (m *UnitListReply) Reset() { *m = UnitListReply{} }
  1261. func (m *UnitListReply) String() string { return proto.CompactTextString(m) }
  1262. func (*UnitListReply) ProtoMessage() {}
  1263. func (*UnitListReply) Descriptor() ([]byte, []int) {
  1264. return fileDescriptor_5b775c37bba03b28, []int{24}
  1265. }
  1266. func (m *UnitListReply) XXX_Unmarshal(b []byte) error {
  1267. return xxx_messageInfo_UnitListReply.Unmarshal(m, b)
  1268. }
  1269. func (m *UnitListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1270. return xxx_messageInfo_UnitListReply.Marshal(b, m, deterministic)
  1271. }
  1272. func (m *UnitListReply) XXX_Merge(src proto.Message) {
  1273. xxx_messageInfo_UnitListReply.Merge(m, src)
  1274. }
  1275. func (m *UnitListReply) XXX_Size() int {
  1276. return xxx_messageInfo_UnitListReply.Size(m)
  1277. }
  1278. func (m *UnitListReply) XXX_DiscardUnknown() {
  1279. xxx_messageInfo_UnitListReply.DiscardUnknown(m)
  1280. }
  1281. var xxx_messageInfo_UnitListReply proto.InternalMessageInfo
  1282. func (m *UnitListReply) GetTotal() int64 {
  1283. if m != nil {
  1284. return m.Total
  1285. }
  1286. return 0
  1287. }
  1288. func (m *UnitListReply) GetPage() int64 {
  1289. if m != nil {
  1290. return m.Page
  1291. }
  1292. return 0
  1293. }
  1294. func (m *UnitListReply) GetList() []*UnitItem {
  1295. if m != nil {
  1296. return m.List
  1297. }
  1298. return nil
  1299. }
  1300. type HouseAddRequest struct {
  1301. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1302. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  1303. // 单元id
  1304. UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1305. // 门牌号
  1306. HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
  1307. // 楼层
  1308. Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
  1309. // 几室
  1310. RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
  1311. // 几厅
  1312. HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
  1313. // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
  1314. HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
  1315. // 房屋建筑面积
  1316. HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
  1317. // 房屋使用面积
  1318. HouseUsedArea float64 `protobuf:"fixed64,10,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
  1319. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1320. XXX_unrecognized []byte `json:"-"`
  1321. XXX_sizecache int32 `json:"-"`
  1322. }
  1323. func (m *HouseAddRequest) Reset() { *m = HouseAddRequest{} }
  1324. func (m *HouseAddRequest) String() string { return proto.CompactTextString(m) }
  1325. func (*HouseAddRequest) ProtoMessage() {}
  1326. func (*HouseAddRequest) Descriptor() ([]byte, []int) {
  1327. return fileDescriptor_5b775c37bba03b28, []int{25}
  1328. }
  1329. func (m *HouseAddRequest) XXX_Unmarshal(b []byte) error {
  1330. return xxx_messageInfo_HouseAddRequest.Unmarshal(m, b)
  1331. }
  1332. func (m *HouseAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1333. return xxx_messageInfo_HouseAddRequest.Marshal(b, m, deterministic)
  1334. }
  1335. func (m *HouseAddRequest) XXX_Merge(src proto.Message) {
  1336. xxx_messageInfo_HouseAddRequest.Merge(m, src)
  1337. }
  1338. func (m *HouseAddRequest) XXX_Size() int {
  1339. return xxx_messageInfo_HouseAddRequest.Size(m)
  1340. }
  1341. func (m *HouseAddRequest) XXX_DiscardUnknown() {
  1342. xxx_messageInfo_HouseAddRequest.DiscardUnknown(m)
  1343. }
  1344. var xxx_messageInfo_HouseAddRequest proto.InternalMessageInfo
  1345. func (m *HouseAddRequest) GetGardenId() int64 {
  1346. if m != nil {
  1347. return m.GardenId
  1348. }
  1349. return 0
  1350. }
  1351. func (m *HouseAddRequest) GetBuildingId() int64 {
  1352. if m != nil {
  1353. return m.BuildingId
  1354. }
  1355. return 0
  1356. }
  1357. func (m *HouseAddRequest) GetUnitId() int64 {
  1358. if m != nil {
  1359. return m.UnitId
  1360. }
  1361. return 0
  1362. }
  1363. func (m *HouseAddRequest) GetHouseNumber() string {
  1364. if m != nil {
  1365. return m.HouseNumber
  1366. }
  1367. return ""
  1368. }
  1369. func (m *HouseAddRequest) GetLayer() int64 {
  1370. if m != nil {
  1371. return m.Layer
  1372. }
  1373. return 0
  1374. }
  1375. func (m *HouseAddRequest) GetRoomCount() int64 {
  1376. if m != nil {
  1377. return m.RoomCount
  1378. }
  1379. return 0
  1380. }
  1381. func (m *HouseAddRequest) GetHallCount() int64 {
  1382. if m != nil {
  1383. return m.HallCount
  1384. }
  1385. return 0
  1386. }
  1387. func (m *HouseAddRequest) GetHouseType() int64 {
  1388. if m != nil {
  1389. return m.HouseType
  1390. }
  1391. return 0
  1392. }
  1393. func (m *HouseAddRequest) GetHouseArea() float64 {
  1394. if m != nil {
  1395. return m.HouseArea
  1396. }
  1397. return 0
  1398. }
  1399. func (m *HouseAddRequest) GetHouseUsedArea() float64 {
  1400. if m != nil {
  1401. return m.HouseUsedArea
  1402. }
  1403. return 0
  1404. }
  1405. type HouseAddReply struct {
  1406. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1407. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1408. XXX_unrecognized []byte `json:"-"`
  1409. XXX_sizecache int32 `json:"-"`
  1410. }
  1411. func (m *HouseAddReply) Reset() { *m = HouseAddReply{} }
  1412. func (m *HouseAddReply) String() string { return proto.CompactTextString(m) }
  1413. func (*HouseAddReply) ProtoMessage() {}
  1414. func (*HouseAddReply) Descriptor() ([]byte, []int) {
  1415. return fileDescriptor_5b775c37bba03b28, []int{26}
  1416. }
  1417. func (m *HouseAddReply) XXX_Unmarshal(b []byte) error {
  1418. return xxx_messageInfo_HouseAddReply.Unmarshal(m, b)
  1419. }
  1420. func (m *HouseAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1421. return xxx_messageInfo_HouseAddReply.Marshal(b, m, deterministic)
  1422. }
  1423. func (m *HouseAddReply) XXX_Merge(src proto.Message) {
  1424. xxx_messageInfo_HouseAddReply.Merge(m, src)
  1425. }
  1426. func (m *HouseAddReply) XXX_Size() int {
  1427. return xxx_messageInfo_HouseAddReply.Size(m)
  1428. }
  1429. func (m *HouseAddReply) XXX_DiscardUnknown() {
  1430. xxx_messageInfo_HouseAddReply.DiscardUnknown(m)
  1431. }
  1432. var xxx_messageInfo_HouseAddReply proto.InternalMessageInfo
  1433. func (m *HouseAddReply) GetId() int64 {
  1434. if m != nil {
  1435. return m.Id
  1436. }
  1437. return 0
  1438. }
  1439. type HouseUpdateRequest struct {
  1440. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1441. // 房屋使用面积
  1442. HouseUsedArea float64 `protobuf:"fixed64,2,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
  1443. GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1444. // 门牌号
  1445. HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
  1446. // 楼层
  1447. Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
  1448. // 几室
  1449. RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
  1450. // 几厅
  1451. HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
  1452. // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
  1453. HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
  1454. // 房屋建筑面积
  1455. HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
  1456. UnitId int64 `protobuf:"varint,10,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1457. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1458. XXX_unrecognized []byte `json:"-"`
  1459. XXX_sizecache int32 `json:"-"`
  1460. }
  1461. func (m *HouseUpdateRequest) Reset() { *m = HouseUpdateRequest{} }
  1462. func (m *HouseUpdateRequest) String() string { return proto.CompactTextString(m) }
  1463. func (*HouseUpdateRequest) ProtoMessage() {}
  1464. func (*HouseUpdateRequest) Descriptor() ([]byte, []int) {
  1465. return fileDescriptor_5b775c37bba03b28, []int{27}
  1466. }
  1467. func (m *HouseUpdateRequest) XXX_Unmarshal(b []byte) error {
  1468. return xxx_messageInfo_HouseUpdateRequest.Unmarshal(m, b)
  1469. }
  1470. func (m *HouseUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1471. return xxx_messageInfo_HouseUpdateRequest.Marshal(b, m, deterministic)
  1472. }
  1473. func (m *HouseUpdateRequest) XXX_Merge(src proto.Message) {
  1474. xxx_messageInfo_HouseUpdateRequest.Merge(m, src)
  1475. }
  1476. func (m *HouseUpdateRequest) XXX_Size() int {
  1477. return xxx_messageInfo_HouseUpdateRequest.Size(m)
  1478. }
  1479. func (m *HouseUpdateRequest) XXX_DiscardUnknown() {
  1480. xxx_messageInfo_HouseUpdateRequest.DiscardUnknown(m)
  1481. }
  1482. var xxx_messageInfo_HouseUpdateRequest proto.InternalMessageInfo
  1483. func (m *HouseUpdateRequest) GetId() int64 {
  1484. if m != nil {
  1485. return m.Id
  1486. }
  1487. return 0
  1488. }
  1489. func (m *HouseUpdateRequest) GetHouseUsedArea() float64 {
  1490. if m != nil {
  1491. return m.HouseUsedArea
  1492. }
  1493. return 0
  1494. }
  1495. func (m *HouseUpdateRequest) GetGardenId() int64 {
  1496. if m != nil {
  1497. return m.GardenId
  1498. }
  1499. return 0
  1500. }
  1501. func (m *HouseUpdateRequest) GetHouseNumber() string {
  1502. if m != nil {
  1503. return m.HouseNumber
  1504. }
  1505. return ""
  1506. }
  1507. func (m *HouseUpdateRequest) GetLayer() int64 {
  1508. if m != nil {
  1509. return m.Layer
  1510. }
  1511. return 0
  1512. }
  1513. func (m *HouseUpdateRequest) GetRoomCount() int64 {
  1514. if m != nil {
  1515. return m.RoomCount
  1516. }
  1517. return 0
  1518. }
  1519. func (m *HouseUpdateRequest) GetHallCount() int64 {
  1520. if m != nil {
  1521. return m.HallCount
  1522. }
  1523. return 0
  1524. }
  1525. func (m *HouseUpdateRequest) GetHouseType() int64 {
  1526. if m != nil {
  1527. return m.HouseType
  1528. }
  1529. return 0
  1530. }
  1531. func (m *HouseUpdateRequest) GetHouseArea() float64 {
  1532. if m != nil {
  1533. return m.HouseArea
  1534. }
  1535. return 0
  1536. }
  1537. func (m *HouseUpdateRequest) GetUnitId() int64 {
  1538. if m != nil {
  1539. return m.UnitId
  1540. }
  1541. return 0
  1542. }
  1543. type HouseUpdateReply struct {
  1544. Origin *HouseUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  1545. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1546. XXX_unrecognized []byte `json:"-"`
  1547. XXX_sizecache int32 `json:"-"`
  1548. }
  1549. func (m *HouseUpdateReply) Reset() { *m = HouseUpdateReply{} }
  1550. func (m *HouseUpdateReply) String() string { return proto.CompactTextString(m) }
  1551. func (*HouseUpdateReply) ProtoMessage() {}
  1552. func (*HouseUpdateReply) Descriptor() ([]byte, []int) {
  1553. return fileDescriptor_5b775c37bba03b28, []int{28}
  1554. }
  1555. func (m *HouseUpdateReply) XXX_Unmarshal(b []byte) error {
  1556. return xxx_messageInfo_HouseUpdateReply.Unmarshal(m, b)
  1557. }
  1558. func (m *HouseUpdateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1559. return xxx_messageInfo_HouseUpdateReply.Marshal(b, m, deterministic)
  1560. }
  1561. func (m *HouseUpdateReply) XXX_Merge(src proto.Message) {
  1562. xxx_messageInfo_HouseUpdateReply.Merge(m, src)
  1563. }
  1564. func (m *HouseUpdateReply) XXX_Size() int {
  1565. return xxx_messageInfo_HouseUpdateReply.Size(m)
  1566. }
  1567. func (m *HouseUpdateReply) XXX_DiscardUnknown() {
  1568. xxx_messageInfo_HouseUpdateReply.DiscardUnknown(m)
  1569. }
  1570. var xxx_messageInfo_HouseUpdateReply proto.InternalMessageInfo
  1571. func (m *HouseUpdateReply) GetOrigin() *HouseUpdateRequest {
  1572. if m != nil {
  1573. return m.Origin
  1574. }
  1575. return nil
  1576. }
  1577. type HouseDelRequest struct {
  1578. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1579. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1580. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1581. XXX_unrecognized []byte `json:"-"`
  1582. XXX_sizecache int32 `json:"-"`
  1583. }
  1584. func (m *HouseDelRequest) Reset() { *m = HouseDelRequest{} }
  1585. func (m *HouseDelRequest) String() string { return proto.CompactTextString(m) }
  1586. func (*HouseDelRequest) ProtoMessage() {}
  1587. func (*HouseDelRequest) Descriptor() ([]byte, []int) {
  1588. return fileDescriptor_5b775c37bba03b28, []int{29}
  1589. }
  1590. func (m *HouseDelRequest) XXX_Unmarshal(b []byte) error {
  1591. return xxx_messageInfo_HouseDelRequest.Unmarshal(m, b)
  1592. }
  1593. func (m *HouseDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1594. return xxx_messageInfo_HouseDelRequest.Marshal(b, m, deterministic)
  1595. }
  1596. func (m *HouseDelRequest) XXX_Merge(src proto.Message) {
  1597. xxx_messageInfo_HouseDelRequest.Merge(m, src)
  1598. }
  1599. func (m *HouseDelRequest) XXX_Size() int {
  1600. return xxx_messageInfo_HouseDelRequest.Size(m)
  1601. }
  1602. func (m *HouseDelRequest) XXX_DiscardUnknown() {
  1603. xxx_messageInfo_HouseDelRequest.DiscardUnknown(m)
  1604. }
  1605. var xxx_messageInfo_HouseDelRequest proto.InternalMessageInfo
  1606. func (m *HouseDelRequest) GetId() int64 {
  1607. if m != nil {
  1608. return m.Id
  1609. }
  1610. return 0
  1611. }
  1612. func (m *HouseDelRequest) GetGardenId() int64 {
  1613. if m != nil {
  1614. return m.GardenId
  1615. }
  1616. return 0
  1617. }
  1618. type HouseDelReply struct {
  1619. Origin *HouseUpdateRequest `protobuf:"bytes,1,opt,name=origin,proto3" json:"origin"`
  1620. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1621. XXX_unrecognized []byte `json:"-"`
  1622. XXX_sizecache int32 `json:"-"`
  1623. }
  1624. func (m *HouseDelReply) Reset() { *m = HouseDelReply{} }
  1625. func (m *HouseDelReply) String() string { return proto.CompactTextString(m) }
  1626. func (*HouseDelReply) ProtoMessage() {}
  1627. func (*HouseDelReply) Descriptor() ([]byte, []int) {
  1628. return fileDescriptor_5b775c37bba03b28, []int{30}
  1629. }
  1630. func (m *HouseDelReply) XXX_Unmarshal(b []byte) error {
  1631. return xxx_messageInfo_HouseDelReply.Unmarshal(m, b)
  1632. }
  1633. func (m *HouseDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1634. return xxx_messageInfo_HouseDelReply.Marshal(b, m, deterministic)
  1635. }
  1636. func (m *HouseDelReply) XXX_Merge(src proto.Message) {
  1637. xxx_messageInfo_HouseDelReply.Merge(m, src)
  1638. }
  1639. func (m *HouseDelReply) XXX_Size() int {
  1640. return xxx_messageInfo_HouseDelReply.Size(m)
  1641. }
  1642. func (m *HouseDelReply) XXX_DiscardUnknown() {
  1643. xxx_messageInfo_HouseDelReply.DiscardUnknown(m)
  1644. }
  1645. var xxx_messageInfo_HouseDelReply proto.InternalMessageInfo
  1646. func (m *HouseDelReply) GetOrigin() *HouseUpdateRequest {
  1647. if m != nil {
  1648. return m.Origin
  1649. }
  1650. return nil
  1651. }
  1652. type HouseListRequest struct {
  1653. HouseNumber string `protobuf:"bytes,1,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
  1654. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  1655. UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1656. HouseType int32 `protobuf:"varint,4,opt,name=house_type,json=houseType,proto3" json:"house_type"`
  1657. Page int64 `protobuf:"varint,5,opt,name=page,proto3" json:"page"`
  1658. PageSize int64 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  1659. GardenId int64 `protobuf:"varint,7,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1660. HouseStatus int32 `protobuf:"varint,8,opt,name=house_status,json=houseStatus,proto3" json:"house_status"`
  1661. Layer int64 `protobuf:"varint,9,opt,name=layer,proto3" json:"layer"`
  1662. HouseId int64 `protobuf:"varint,10,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  1663. Uid int64 `protobuf:"varint,11,opt,name=uid,proto3" json:"uid"`
  1664. HouseRent bool `protobuf:"varint,12,opt,name=house_rent,json=houseRent,proto3" json:"house_rent"`
  1665. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1666. XXX_unrecognized []byte `json:"-"`
  1667. XXX_sizecache int32 `json:"-"`
  1668. }
  1669. func (m *HouseListRequest) Reset() { *m = HouseListRequest{} }
  1670. func (m *HouseListRequest) String() string { return proto.CompactTextString(m) }
  1671. func (*HouseListRequest) ProtoMessage() {}
  1672. func (*HouseListRequest) Descriptor() ([]byte, []int) {
  1673. return fileDescriptor_5b775c37bba03b28, []int{31}
  1674. }
  1675. func (m *HouseListRequest) XXX_Unmarshal(b []byte) error {
  1676. return xxx_messageInfo_HouseListRequest.Unmarshal(m, b)
  1677. }
  1678. func (m *HouseListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1679. return xxx_messageInfo_HouseListRequest.Marshal(b, m, deterministic)
  1680. }
  1681. func (m *HouseListRequest) XXX_Merge(src proto.Message) {
  1682. xxx_messageInfo_HouseListRequest.Merge(m, src)
  1683. }
  1684. func (m *HouseListRequest) XXX_Size() int {
  1685. return xxx_messageInfo_HouseListRequest.Size(m)
  1686. }
  1687. func (m *HouseListRequest) XXX_DiscardUnknown() {
  1688. xxx_messageInfo_HouseListRequest.DiscardUnknown(m)
  1689. }
  1690. var xxx_messageInfo_HouseListRequest proto.InternalMessageInfo
  1691. func (m *HouseListRequest) GetHouseNumber() string {
  1692. if m != nil {
  1693. return m.HouseNumber
  1694. }
  1695. return ""
  1696. }
  1697. func (m *HouseListRequest) GetBuildingId() int64 {
  1698. if m != nil {
  1699. return m.BuildingId
  1700. }
  1701. return 0
  1702. }
  1703. func (m *HouseListRequest) GetUnitId() int64 {
  1704. if m != nil {
  1705. return m.UnitId
  1706. }
  1707. return 0
  1708. }
  1709. func (m *HouseListRequest) GetHouseType() int32 {
  1710. if m != nil {
  1711. return m.HouseType
  1712. }
  1713. return 0
  1714. }
  1715. func (m *HouseListRequest) GetPage() int64 {
  1716. if m != nil {
  1717. return m.Page
  1718. }
  1719. return 0
  1720. }
  1721. func (m *HouseListRequest) GetPageSize() int64 {
  1722. if m != nil {
  1723. return m.PageSize
  1724. }
  1725. return 0
  1726. }
  1727. func (m *HouseListRequest) GetGardenId() int64 {
  1728. if m != nil {
  1729. return m.GardenId
  1730. }
  1731. return 0
  1732. }
  1733. func (m *HouseListRequest) GetHouseStatus() int32 {
  1734. if m != nil {
  1735. return m.HouseStatus
  1736. }
  1737. return 0
  1738. }
  1739. func (m *HouseListRequest) GetLayer() int64 {
  1740. if m != nil {
  1741. return m.Layer
  1742. }
  1743. return 0
  1744. }
  1745. func (m *HouseListRequest) GetHouseId() int64 {
  1746. if m != nil {
  1747. return m.HouseId
  1748. }
  1749. return 0
  1750. }
  1751. func (m *HouseListRequest) GetUid() int64 {
  1752. if m != nil {
  1753. return m.Uid
  1754. }
  1755. return 0
  1756. }
  1757. func (m *HouseListRequest) GetHouseRent() bool {
  1758. if m != nil {
  1759. return m.HouseRent
  1760. }
  1761. return false
  1762. }
  1763. type HouseItem struct {
  1764. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1765. BuildingId int64 `protobuf:"varint,2,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  1766. // 单元id
  1767. UnitId int64 `protobuf:"varint,3,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1768. // 门牌号
  1769. HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
  1770. // 楼层
  1771. Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
  1772. // 几室
  1773. RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
  1774. // 几厅
  1775. HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
  1776. // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
  1777. HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
  1778. // 房屋建筑面积
  1779. HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
  1780. // 房屋使用面积
  1781. HouseUsedArea float64 `protobuf:"fixed64,10,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
  1782. HouseName string `protobuf:"bytes,11,opt,name=house_name,json=houseName,proto3" json:"house_name"`
  1783. // 房屋状态 1 未入住 2 已入住 3 已出租
  1784. Status int32 `protobuf:"varint,12,opt,name=status,proto3" json:"status"`
  1785. HasLift bool `protobuf:"varint,13,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
  1786. BuildingNumber string `protobuf:"bytes,14,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  1787. UnitNumber int64 `protobuf:"varint,15,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  1788. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1789. XXX_unrecognized []byte `json:"-"`
  1790. XXX_sizecache int32 `json:"-"`
  1791. }
  1792. func (m *HouseItem) Reset() { *m = HouseItem{} }
  1793. func (m *HouseItem) String() string { return proto.CompactTextString(m) }
  1794. func (*HouseItem) ProtoMessage() {}
  1795. func (*HouseItem) Descriptor() ([]byte, []int) {
  1796. return fileDescriptor_5b775c37bba03b28, []int{32}
  1797. }
  1798. func (m *HouseItem) XXX_Unmarshal(b []byte) error {
  1799. return xxx_messageInfo_HouseItem.Unmarshal(m, b)
  1800. }
  1801. func (m *HouseItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1802. return xxx_messageInfo_HouseItem.Marshal(b, m, deterministic)
  1803. }
  1804. func (m *HouseItem) XXX_Merge(src proto.Message) {
  1805. xxx_messageInfo_HouseItem.Merge(m, src)
  1806. }
  1807. func (m *HouseItem) XXX_Size() int {
  1808. return xxx_messageInfo_HouseItem.Size(m)
  1809. }
  1810. func (m *HouseItem) XXX_DiscardUnknown() {
  1811. xxx_messageInfo_HouseItem.DiscardUnknown(m)
  1812. }
  1813. var xxx_messageInfo_HouseItem proto.InternalMessageInfo
  1814. func (m *HouseItem) GetId() int64 {
  1815. if m != nil {
  1816. return m.Id
  1817. }
  1818. return 0
  1819. }
  1820. func (m *HouseItem) GetBuildingId() int64 {
  1821. if m != nil {
  1822. return m.BuildingId
  1823. }
  1824. return 0
  1825. }
  1826. func (m *HouseItem) GetUnitId() int64 {
  1827. if m != nil {
  1828. return m.UnitId
  1829. }
  1830. return 0
  1831. }
  1832. func (m *HouseItem) GetHouseNumber() string {
  1833. if m != nil {
  1834. return m.HouseNumber
  1835. }
  1836. return ""
  1837. }
  1838. func (m *HouseItem) GetLayer() int64 {
  1839. if m != nil {
  1840. return m.Layer
  1841. }
  1842. return 0
  1843. }
  1844. func (m *HouseItem) GetRoomCount() int64 {
  1845. if m != nil {
  1846. return m.RoomCount
  1847. }
  1848. return 0
  1849. }
  1850. func (m *HouseItem) GetHallCount() int64 {
  1851. if m != nil {
  1852. return m.HallCount
  1853. }
  1854. return 0
  1855. }
  1856. func (m *HouseItem) GetHouseType() int64 {
  1857. if m != nil {
  1858. return m.HouseType
  1859. }
  1860. return 0
  1861. }
  1862. func (m *HouseItem) GetHouseArea() float64 {
  1863. if m != nil {
  1864. return m.HouseArea
  1865. }
  1866. return 0
  1867. }
  1868. func (m *HouseItem) GetHouseUsedArea() float64 {
  1869. if m != nil {
  1870. return m.HouseUsedArea
  1871. }
  1872. return 0
  1873. }
  1874. func (m *HouseItem) GetHouseName() string {
  1875. if m != nil {
  1876. return m.HouseName
  1877. }
  1878. return ""
  1879. }
  1880. func (m *HouseItem) GetStatus() int32 {
  1881. if m != nil {
  1882. return m.Status
  1883. }
  1884. return 0
  1885. }
  1886. func (m *HouseItem) GetHasLift() bool {
  1887. if m != nil {
  1888. return m.HasLift
  1889. }
  1890. return false
  1891. }
  1892. func (m *HouseItem) GetBuildingNumber() string {
  1893. if m != nil {
  1894. return m.BuildingNumber
  1895. }
  1896. return ""
  1897. }
  1898. func (m *HouseItem) GetUnitNumber() int64 {
  1899. if m != nil {
  1900. return m.UnitNumber
  1901. }
  1902. return 0
  1903. }
  1904. type HouseListReply struct {
  1905. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  1906. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  1907. List []*HouseItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  1908. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1909. XXX_unrecognized []byte `json:"-"`
  1910. XXX_sizecache int32 `json:"-"`
  1911. }
  1912. func (m *HouseListReply) Reset() { *m = HouseListReply{} }
  1913. func (m *HouseListReply) String() string { return proto.CompactTextString(m) }
  1914. func (*HouseListReply) ProtoMessage() {}
  1915. func (*HouseListReply) Descriptor() ([]byte, []int) {
  1916. return fileDescriptor_5b775c37bba03b28, []int{33}
  1917. }
  1918. func (m *HouseListReply) XXX_Unmarshal(b []byte) error {
  1919. return xxx_messageInfo_HouseListReply.Unmarshal(m, b)
  1920. }
  1921. func (m *HouseListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1922. return xxx_messageInfo_HouseListReply.Marshal(b, m, deterministic)
  1923. }
  1924. func (m *HouseListReply) XXX_Merge(src proto.Message) {
  1925. xxx_messageInfo_HouseListReply.Merge(m, src)
  1926. }
  1927. func (m *HouseListReply) XXX_Size() int {
  1928. return xxx_messageInfo_HouseListReply.Size(m)
  1929. }
  1930. func (m *HouseListReply) XXX_DiscardUnknown() {
  1931. xxx_messageInfo_HouseListReply.DiscardUnknown(m)
  1932. }
  1933. var xxx_messageInfo_HouseListReply proto.InternalMessageInfo
  1934. func (m *HouseListReply) GetTotal() int64 {
  1935. if m != nil {
  1936. return m.Total
  1937. }
  1938. return 0
  1939. }
  1940. func (m *HouseListReply) GetPage() int64 {
  1941. if m != nil {
  1942. return m.Page
  1943. }
  1944. return 0
  1945. }
  1946. func (m *HouseListReply) GetList() []*HouseItem {
  1947. if m != nil {
  1948. return m.List
  1949. }
  1950. return nil
  1951. }
  1952. type BatchBuildingItem struct {
  1953. // 备注
  1954. Comment string `protobuf:"bytes,1,opt,name=comment,proto3" json:"comment"`
  1955. // 楼栋编号
  1956. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  1957. // 楼栋名
  1958. BuildingName string `protobuf:"bytes,3,opt,name=building_name,json=buildingName,proto3" json:"building_name"`
  1959. // 楼栋建筑面积
  1960. BuildingArea float64 `protobuf:"fixed64,4,opt,name=building_area,json=buildingArea,proto3" json:"building_area"`
  1961. // 楼栋使用面积
  1962. BuildingUsedArea float64 `protobuf:"fixed64,5,opt,name=building_used_area,json=buildingUsedArea,proto3" json:"building_used_area"`
  1963. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1964. XXX_unrecognized []byte `json:"-"`
  1965. XXX_sizecache int32 `json:"-"`
  1966. }
  1967. func (m *BatchBuildingItem) Reset() { *m = BatchBuildingItem{} }
  1968. func (m *BatchBuildingItem) String() string { return proto.CompactTextString(m) }
  1969. func (*BatchBuildingItem) ProtoMessage() {}
  1970. func (*BatchBuildingItem) Descriptor() ([]byte, []int) {
  1971. return fileDescriptor_5b775c37bba03b28, []int{34}
  1972. }
  1973. func (m *BatchBuildingItem) XXX_Unmarshal(b []byte) error {
  1974. return xxx_messageInfo_BatchBuildingItem.Unmarshal(m, b)
  1975. }
  1976. func (m *BatchBuildingItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1977. return xxx_messageInfo_BatchBuildingItem.Marshal(b, m, deterministic)
  1978. }
  1979. func (m *BatchBuildingItem) XXX_Merge(src proto.Message) {
  1980. xxx_messageInfo_BatchBuildingItem.Merge(m, src)
  1981. }
  1982. func (m *BatchBuildingItem) XXX_Size() int {
  1983. return xxx_messageInfo_BatchBuildingItem.Size(m)
  1984. }
  1985. func (m *BatchBuildingItem) XXX_DiscardUnknown() {
  1986. xxx_messageInfo_BatchBuildingItem.DiscardUnknown(m)
  1987. }
  1988. var xxx_messageInfo_BatchBuildingItem proto.InternalMessageInfo
  1989. func (m *BatchBuildingItem) GetComment() string {
  1990. if m != nil {
  1991. return m.Comment
  1992. }
  1993. return ""
  1994. }
  1995. func (m *BatchBuildingItem) GetBuildingNumber() string {
  1996. if m != nil {
  1997. return m.BuildingNumber
  1998. }
  1999. return ""
  2000. }
  2001. func (m *BatchBuildingItem) GetBuildingName() string {
  2002. if m != nil {
  2003. return m.BuildingName
  2004. }
  2005. return ""
  2006. }
  2007. func (m *BatchBuildingItem) GetBuildingArea() float64 {
  2008. if m != nil {
  2009. return m.BuildingArea
  2010. }
  2011. return 0
  2012. }
  2013. func (m *BatchBuildingItem) GetBuildingUsedArea() float64 {
  2014. if m != nil {
  2015. return m.BuildingUsedArea
  2016. }
  2017. return 0
  2018. }
  2019. type BatchUnitItem struct {
  2020. // 是否有电梯
  2021. HasLift bool `protobuf:"varint,1,opt,name=has_lift,json=hasLift,proto3" json:"has_lift"`
  2022. // 楼栋编号
  2023. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  2024. // 单元编号
  2025. UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  2026. // 单元名
  2027. UnitName string `protobuf:"bytes,4,opt,name=unit_name,json=unitName,proto3" json:"unit_name"`
  2028. // 楼层数
  2029. UnitLayers int64 `protobuf:"varint,5,opt,name=unit_layers,json=unitLayers,proto3" json:"unit_layers"`
  2030. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2031. XXX_unrecognized []byte `json:"-"`
  2032. XXX_sizecache int32 `json:"-"`
  2033. }
  2034. func (m *BatchUnitItem) Reset() { *m = BatchUnitItem{} }
  2035. func (m *BatchUnitItem) String() string { return proto.CompactTextString(m) }
  2036. func (*BatchUnitItem) ProtoMessage() {}
  2037. func (*BatchUnitItem) Descriptor() ([]byte, []int) {
  2038. return fileDescriptor_5b775c37bba03b28, []int{35}
  2039. }
  2040. func (m *BatchUnitItem) XXX_Unmarshal(b []byte) error {
  2041. return xxx_messageInfo_BatchUnitItem.Unmarshal(m, b)
  2042. }
  2043. func (m *BatchUnitItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2044. return xxx_messageInfo_BatchUnitItem.Marshal(b, m, deterministic)
  2045. }
  2046. func (m *BatchUnitItem) XXX_Merge(src proto.Message) {
  2047. xxx_messageInfo_BatchUnitItem.Merge(m, src)
  2048. }
  2049. func (m *BatchUnitItem) XXX_Size() int {
  2050. return xxx_messageInfo_BatchUnitItem.Size(m)
  2051. }
  2052. func (m *BatchUnitItem) XXX_DiscardUnknown() {
  2053. xxx_messageInfo_BatchUnitItem.DiscardUnknown(m)
  2054. }
  2055. var xxx_messageInfo_BatchUnitItem proto.InternalMessageInfo
  2056. func (m *BatchUnitItem) GetHasLift() bool {
  2057. if m != nil {
  2058. return m.HasLift
  2059. }
  2060. return false
  2061. }
  2062. func (m *BatchUnitItem) GetBuildingNumber() string {
  2063. if m != nil {
  2064. return m.BuildingNumber
  2065. }
  2066. return ""
  2067. }
  2068. func (m *BatchUnitItem) GetUnitNumber() int64 {
  2069. if m != nil {
  2070. return m.UnitNumber
  2071. }
  2072. return 0
  2073. }
  2074. func (m *BatchUnitItem) GetUnitName() string {
  2075. if m != nil {
  2076. return m.UnitName
  2077. }
  2078. return ""
  2079. }
  2080. func (m *BatchUnitItem) GetUnitLayers() int64 {
  2081. if m != nil {
  2082. return m.UnitLayers
  2083. }
  2084. return 0
  2085. }
  2086. type BatchHouseItem struct {
  2087. // 房屋使用面积
  2088. HouseUsedArea float64 `protobuf:"fixed64,1,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
  2089. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  2090. // 单元编号
  2091. UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  2092. // 门牌号
  2093. HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
  2094. // 楼层
  2095. Layer int64 `protobuf:"varint,5,opt,name=layer,proto3" json:"layer"`
  2096. // 几室
  2097. RoomCount int64 `protobuf:"varint,6,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
  2098. // 几厅
  2099. HallCount int64 `protobuf:"varint,7,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
  2100. // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
  2101. HouseType int64 `protobuf:"varint,8,opt,name=house_type,json=houseType,proto3" json:"house_type"`
  2102. // 房屋建筑面积
  2103. HouseArea float64 `protobuf:"fixed64,9,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
  2104. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2105. XXX_unrecognized []byte `json:"-"`
  2106. XXX_sizecache int32 `json:"-"`
  2107. }
  2108. func (m *BatchHouseItem) Reset() { *m = BatchHouseItem{} }
  2109. func (m *BatchHouseItem) String() string { return proto.CompactTextString(m) }
  2110. func (*BatchHouseItem) ProtoMessage() {}
  2111. func (*BatchHouseItem) Descriptor() ([]byte, []int) {
  2112. return fileDescriptor_5b775c37bba03b28, []int{36}
  2113. }
  2114. func (m *BatchHouseItem) XXX_Unmarshal(b []byte) error {
  2115. return xxx_messageInfo_BatchHouseItem.Unmarshal(m, b)
  2116. }
  2117. func (m *BatchHouseItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2118. return xxx_messageInfo_BatchHouseItem.Marshal(b, m, deterministic)
  2119. }
  2120. func (m *BatchHouseItem) XXX_Merge(src proto.Message) {
  2121. xxx_messageInfo_BatchHouseItem.Merge(m, src)
  2122. }
  2123. func (m *BatchHouseItem) XXX_Size() int {
  2124. return xxx_messageInfo_BatchHouseItem.Size(m)
  2125. }
  2126. func (m *BatchHouseItem) XXX_DiscardUnknown() {
  2127. xxx_messageInfo_BatchHouseItem.DiscardUnknown(m)
  2128. }
  2129. var xxx_messageInfo_BatchHouseItem proto.InternalMessageInfo
  2130. func (m *BatchHouseItem) GetHouseUsedArea() float64 {
  2131. if m != nil {
  2132. return m.HouseUsedArea
  2133. }
  2134. return 0
  2135. }
  2136. func (m *BatchHouseItem) GetBuildingNumber() string {
  2137. if m != nil {
  2138. return m.BuildingNumber
  2139. }
  2140. return ""
  2141. }
  2142. func (m *BatchHouseItem) GetUnitNumber() int64 {
  2143. if m != nil {
  2144. return m.UnitNumber
  2145. }
  2146. return 0
  2147. }
  2148. func (m *BatchHouseItem) GetHouseNumber() string {
  2149. if m != nil {
  2150. return m.HouseNumber
  2151. }
  2152. return ""
  2153. }
  2154. func (m *BatchHouseItem) GetLayer() int64 {
  2155. if m != nil {
  2156. return m.Layer
  2157. }
  2158. return 0
  2159. }
  2160. func (m *BatchHouseItem) GetRoomCount() int64 {
  2161. if m != nil {
  2162. return m.RoomCount
  2163. }
  2164. return 0
  2165. }
  2166. func (m *BatchHouseItem) GetHallCount() int64 {
  2167. if m != nil {
  2168. return m.HallCount
  2169. }
  2170. return 0
  2171. }
  2172. func (m *BatchHouseItem) GetHouseType() int64 {
  2173. if m != nil {
  2174. return m.HouseType
  2175. }
  2176. return 0
  2177. }
  2178. func (m *BatchHouseItem) GetHouseArea() float64 {
  2179. if m != nil {
  2180. return m.HouseArea
  2181. }
  2182. return 0
  2183. }
  2184. type BatchHouseAddRequest struct {
  2185. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2186. Buildings []*BatchBuildingItem `protobuf:"bytes,2,rep,name=buildings,proto3" json:"buildings"`
  2187. Units []*BatchUnitItem `protobuf:"bytes,3,rep,name=units,proto3" json:"units"`
  2188. Houses []*BatchHouseItem `protobuf:"bytes,4,rep,name=houses,proto3" json:"houses"`
  2189. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2190. XXX_unrecognized []byte `json:"-"`
  2191. XXX_sizecache int32 `json:"-"`
  2192. }
  2193. func (m *BatchHouseAddRequest) Reset() { *m = BatchHouseAddRequest{} }
  2194. func (m *BatchHouseAddRequest) String() string { return proto.CompactTextString(m) }
  2195. func (*BatchHouseAddRequest) ProtoMessage() {}
  2196. func (*BatchHouseAddRequest) Descriptor() ([]byte, []int) {
  2197. return fileDescriptor_5b775c37bba03b28, []int{37}
  2198. }
  2199. func (m *BatchHouseAddRequest) XXX_Unmarshal(b []byte) error {
  2200. return xxx_messageInfo_BatchHouseAddRequest.Unmarshal(m, b)
  2201. }
  2202. func (m *BatchHouseAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2203. return xxx_messageInfo_BatchHouseAddRequest.Marshal(b, m, deterministic)
  2204. }
  2205. func (m *BatchHouseAddRequest) XXX_Merge(src proto.Message) {
  2206. xxx_messageInfo_BatchHouseAddRequest.Merge(m, src)
  2207. }
  2208. func (m *BatchHouseAddRequest) XXX_Size() int {
  2209. return xxx_messageInfo_BatchHouseAddRequest.Size(m)
  2210. }
  2211. func (m *BatchHouseAddRequest) XXX_DiscardUnknown() {
  2212. xxx_messageInfo_BatchHouseAddRequest.DiscardUnknown(m)
  2213. }
  2214. var xxx_messageInfo_BatchHouseAddRequest proto.InternalMessageInfo
  2215. func (m *BatchHouseAddRequest) GetGardenId() int64 {
  2216. if m != nil {
  2217. return m.GardenId
  2218. }
  2219. return 0
  2220. }
  2221. func (m *BatchHouseAddRequest) GetBuildings() []*BatchBuildingItem {
  2222. if m != nil {
  2223. return m.Buildings
  2224. }
  2225. return nil
  2226. }
  2227. func (m *BatchHouseAddRequest) GetUnits() []*BatchUnitItem {
  2228. if m != nil {
  2229. return m.Units
  2230. }
  2231. return nil
  2232. }
  2233. func (m *BatchHouseAddRequest) GetHouses() []*BatchHouseItem {
  2234. if m != nil {
  2235. return m.Houses
  2236. }
  2237. return nil
  2238. }
  2239. type BatchHouseAddReply struct {
  2240. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2241. XXX_unrecognized []byte `json:"-"`
  2242. XXX_sizecache int32 `json:"-"`
  2243. }
  2244. func (m *BatchHouseAddReply) Reset() { *m = BatchHouseAddReply{} }
  2245. func (m *BatchHouseAddReply) String() string { return proto.CompactTextString(m) }
  2246. func (*BatchHouseAddReply) ProtoMessage() {}
  2247. func (*BatchHouseAddReply) Descriptor() ([]byte, []int) {
  2248. return fileDescriptor_5b775c37bba03b28, []int{38}
  2249. }
  2250. func (m *BatchHouseAddReply) XXX_Unmarshal(b []byte) error {
  2251. return xxx_messageInfo_BatchHouseAddReply.Unmarshal(m, b)
  2252. }
  2253. func (m *BatchHouseAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2254. return xxx_messageInfo_BatchHouseAddReply.Marshal(b, m, deterministic)
  2255. }
  2256. func (m *BatchHouseAddReply) XXX_Merge(src proto.Message) {
  2257. xxx_messageInfo_BatchHouseAddReply.Merge(m, src)
  2258. }
  2259. func (m *BatchHouseAddReply) XXX_Size() int {
  2260. return xxx_messageInfo_BatchHouseAddReply.Size(m)
  2261. }
  2262. func (m *BatchHouseAddReply) XXX_DiscardUnknown() {
  2263. xxx_messageInfo_BatchHouseAddReply.DiscardUnknown(m)
  2264. }
  2265. var xxx_messageInfo_BatchHouseAddReply proto.InternalMessageInfo
  2266. type HouseInfoRequest struct {
  2267. HouseId int64 `protobuf:"varint,1,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  2268. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2269. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2270. XXX_unrecognized []byte `json:"-"`
  2271. XXX_sizecache int32 `json:"-"`
  2272. }
  2273. func (m *HouseInfoRequest) Reset() { *m = HouseInfoRequest{} }
  2274. func (m *HouseInfoRequest) String() string { return proto.CompactTextString(m) }
  2275. func (*HouseInfoRequest) ProtoMessage() {}
  2276. func (*HouseInfoRequest) Descriptor() ([]byte, []int) {
  2277. return fileDescriptor_5b775c37bba03b28, []int{39}
  2278. }
  2279. func (m *HouseInfoRequest) XXX_Unmarshal(b []byte) error {
  2280. return xxx_messageInfo_HouseInfoRequest.Unmarshal(m, b)
  2281. }
  2282. func (m *HouseInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2283. return xxx_messageInfo_HouseInfoRequest.Marshal(b, m, deterministic)
  2284. }
  2285. func (m *HouseInfoRequest) XXX_Merge(src proto.Message) {
  2286. xxx_messageInfo_HouseInfoRequest.Merge(m, src)
  2287. }
  2288. func (m *HouseInfoRequest) XXX_Size() int {
  2289. return xxx_messageInfo_HouseInfoRequest.Size(m)
  2290. }
  2291. func (m *HouseInfoRequest) XXX_DiscardUnknown() {
  2292. xxx_messageInfo_HouseInfoRequest.DiscardUnknown(m)
  2293. }
  2294. var xxx_messageInfo_HouseInfoRequest proto.InternalMessageInfo
  2295. func (m *HouseInfoRequest) GetHouseId() int64 {
  2296. if m != nil {
  2297. return m.HouseId
  2298. }
  2299. return 0
  2300. }
  2301. func (m *HouseInfoRequest) GetGardenId() int64 {
  2302. if m != nil {
  2303. return m.GardenId
  2304. }
  2305. return 0
  2306. }
  2307. type HouseInfoReply struct {
  2308. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2309. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  2310. UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  2311. HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
  2312. GardenName string `protobuf:"bytes,5,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  2313. Province string `protobuf:"bytes,6,opt,name=province,proto3" json:"province"`
  2314. City string `protobuf:"bytes,7,opt,name=city,proto3" json:"city"`
  2315. Area string `protobuf:"bytes,8,opt,name=area,proto3" json:"area"`
  2316. Street string `protobuf:"bytes,9,opt,name=street,proto3" json:"street"`
  2317. Comittee string `protobuf:"bytes,10,opt,name=comittee,proto3" json:"comittee"`
  2318. Layer int64 `protobuf:"varint,11,opt,name=layer,proto3" json:"layer"`
  2319. HouseArea float64 `protobuf:"fixed64,12,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
  2320. HouseUsedArea float64 `protobuf:"fixed64,13,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
  2321. RoomCount int64 `protobuf:"varint,14,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
  2322. // 几厅
  2323. HallCount int64 `protobuf:"varint,15,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
  2324. // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
  2325. HouseType int64 `protobuf:"varint,16,opt,name=house_type,json=houseType,proto3" json:"house_type"`
  2326. GardenInUse bool `protobuf:"varint,17,opt,name=garden_in_use,json=gardenInUse,proto3" json:"garden_in_use"`
  2327. ProvinceCode string `protobuf:"bytes,18,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
  2328. CityCode string `protobuf:"bytes,19,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
  2329. AreaCode string `protobuf:"bytes,20,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
  2330. StreetCode string `protobuf:"bytes,21,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
  2331. ComitteeCode string `protobuf:"bytes,22,opt,name=comittee_code,json=comitteeCode,proto3" json:"comittee_code"`
  2332. HouseStatus int32 `protobuf:"varint,23,opt,name=house_status,json=houseStatus,proto3" json:"house_status"`
  2333. BuildingId int64 `protobuf:"varint,24,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  2334. UnitId int64 `protobuf:"varint,25,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  2335. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2336. XXX_unrecognized []byte `json:"-"`
  2337. XXX_sizecache int32 `json:"-"`
  2338. }
  2339. func (m *HouseInfoReply) Reset() { *m = HouseInfoReply{} }
  2340. func (m *HouseInfoReply) String() string { return proto.CompactTextString(m) }
  2341. func (*HouseInfoReply) ProtoMessage() {}
  2342. func (*HouseInfoReply) Descriptor() ([]byte, []int) {
  2343. return fileDescriptor_5b775c37bba03b28, []int{40}
  2344. }
  2345. func (m *HouseInfoReply) XXX_Unmarshal(b []byte) error {
  2346. return xxx_messageInfo_HouseInfoReply.Unmarshal(m, b)
  2347. }
  2348. func (m *HouseInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2349. return xxx_messageInfo_HouseInfoReply.Marshal(b, m, deterministic)
  2350. }
  2351. func (m *HouseInfoReply) XXX_Merge(src proto.Message) {
  2352. xxx_messageInfo_HouseInfoReply.Merge(m, src)
  2353. }
  2354. func (m *HouseInfoReply) XXX_Size() int {
  2355. return xxx_messageInfo_HouseInfoReply.Size(m)
  2356. }
  2357. func (m *HouseInfoReply) XXX_DiscardUnknown() {
  2358. xxx_messageInfo_HouseInfoReply.DiscardUnknown(m)
  2359. }
  2360. var xxx_messageInfo_HouseInfoReply proto.InternalMessageInfo
  2361. func (m *HouseInfoReply) GetGardenId() int64 {
  2362. if m != nil {
  2363. return m.GardenId
  2364. }
  2365. return 0
  2366. }
  2367. func (m *HouseInfoReply) GetBuildingNumber() string {
  2368. if m != nil {
  2369. return m.BuildingNumber
  2370. }
  2371. return ""
  2372. }
  2373. func (m *HouseInfoReply) GetUnitNumber() int64 {
  2374. if m != nil {
  2375. return m.UnitNumber
  2376. }
  2377. return 0
  2378. }
  2379. func (m *HouseInfoReply) GetHouseNumber() string {
  2380. if m != nil {
  2381. return m.HouseNumber
  2382. }
  2383. return ""
  2384. }
  2385. func (m *HouseInfoReply) GetGardenName() string {
  2386. if m != nil {
  2387. return m.GardenName
  2388. }
  2389. return ""
  2390. }
  2391. func (m *HouseInfoReply) GetProvince() string {
  2392. if m != nil {
  2393. return m.Province
  2394. }
  2395. return ""
  2396. }
  2397. func (m *HouseInfoReply) GetCity() string {
  2398. if m != nil {
  2399. return m.City
  2400. }
  2401. return ""
  2402. }
  2403. func (m *HouseInfoReply) GetArea() string {
  2404. if m != nil {
  2405. return m.Area
  2406. }
  2407. return ""
  2408. }
  2409. func (m *HouseInfoReply) GetStreet() string {
  2410. if m != nil {
  2411. return m.Street
  2412. }
  2413. return ""
  2414. }
  2415. func (m *HouseInfoReply) GetComittee() string {
  2416. if m != nil {
  2417. return m.Comittee
  2418. }
  2419. return ""
  2420. }
  2421. func (m *HouseInfoReply) GetLayer() int64 {
  2422. if m != nil {
  2423. return m.Layer
  2424. }
  2425. return 0
  2426. }
  2427. func (m *HouseInfoReply) GetHouseArea() float64 {
  2428. if m != nil {
  2429. return m.HouseArea
  2430. }
  2431. return 0
  2432. }
  2433. func (m *HouseInfoReply) GetHouseUsedArea() float64 {
  2434. if m != nil {
  2435. return m.HouseUsedArea
  2436. }
  2437. return 0
  2438. }
  2439. func (m *HouseInfoReply) GetRoomCount() int64 {
  2440. if m != nil {
  2441. return m.RoomCount
  2442. }
  2443. return 0
  2444. }
  2445. func (m *HouseInfoReply) GetHallCount() int64 {
  2446. if m != nil {
  2447. return m.HallCount
  2448. }
  2449. return 0
  2450. }
  2451. func (m *HouseInfoReply) GetHouseType() int64 {
  2452. if m != nil {
  2453. return m.HouseType
  2454. }
  2455. return 0
  2456. }
  2457. func (m *HouseInfoReply) GetGardenInUse() bool {
  2458. if m != nil {
  2459. return m.GardenInUse
  2460. }
  2461. return false
  2462. }
  2463. func (m *HouseInfoReply) GetProvinceCode() string {
  2464. if m != nil {
  2465. return m.ProvinceCode
  2466. }
  2467. return ""
  2468. }
  2469. func (m *HouseInfoReply) GetCityCode() string {
  2470. if m != nil {
  2471. return m.CityCode
  2472. }
  2473. return ""
  2474. }
  2475. func (m *HouseInfoReply) GetAreaCode() string {
  2476. if m != nil {
  2477. return m.AreaCode
  2478. }
  2479. return ""
  2480. }
  2481. func (m *HouseInfoReply) GetStreetCode() string {
  2482. if m != nil {
  2483. return m.StreetCode
  2484. }
  2485. return ""
  2486. }
  2487. func (m *HouseInfoReply) GetComitteeCode() string {
  2488. if m != nil {
  2489. return m.ComitteeCode
  2490. }
  2491. return ""
  2492. }
  2493. func (m *HouseInfoReply) GetHouseStatus() int32 {
  2494. if m != nil {
  2495. return m.HouseStatus
  2496. }
  2497. return 0
  2498. }
  2499. func (m *HouseInfoReply) GetBuildingId() int64 {
  2500. if m != nil {
  2501. return m.BuildingId
  2502. }
  2503. return 0
  2504. }
  2505. func (m *HouseInfoReply) GetUnitId() int64 {
  2506. if m != nil {
  2507. return m.UnitId
  2508. }
  2509. return 0
  2510. }
  2511. type HouseChangeStatusRequest struct {
  2512. HouseId int64 `protobuf:"varint,1,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  2513. HouseStatus int32 `protobuf:"varint,2,opt,name=house_status,json=houseStatus,proto3" json:"house_status"`
  2514. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2515. XXX_unrecognized []byte `json:"-"`
  2516. XXX_sizecache int32 `json:"-"`
  2517. }
  2518. func (m *HouseChangeStatusRequest) Reset() { *m = HouseChangeStatusRequest{} }
  2519. func (m *HouseChangeStatusRequest) String() string { return proto.CompactTextString(m) }
  2520. func (*HouseChangeStatusRequest) ProtoMessage() {}
  2521. func (*HouseChangeStatusRequest) Descriptor() ([]byte, []int) {
  2522. return fileDescriptor_5b775c37bba03b28, []int{41}
  2523. }
  2524. func (m *HouseChangeStatusRequest) XXX_Unmarshal(b []byte) error {
  2525. return xxx_messageInfo_HouseChangeStatusRequest.Unmarshal(m, b)
  2526. }
  2527. func (m *HouseChangeStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2528. return xxx_messageInfo_HouseChangeStatusRequest.Marshal(b, m, deterministic)
  2529. }
  2530. func (m *HouseChangeStatusRequest) XXX_Merge(src proto.Message) {
  2531. xxx_messageInfo_HouseChangeStatusRequest.Merge(m, src)
  2532. }
  2533. func (m *HouseChangeStatusRequest) XXX_Size() int {
  2534. return xxx_messageInfo_HouseChangeStatusRequest.Size(m)
  2535. }
  2536. func (m *HouseChangeStatusRequest) XXX_DiscardUnknown() {
  2537. xxx_messageInfo_HouseChangeStatusRequest.DiscardUnknown(m)
  2538. }
  2539. var xxx_messageInfo_HouseChangeStatusRequest proto.InternalMessageInfo
  2540. func (m *HouseChangeStatusRequest) GetHouseId() int64 {
  2541. if m != nil {
  2542. return m.HouseId
  2543. }
  2544. return 0
  2545. }
  2546. func (m *HouseChangeStatusRequest) GetHouseStatus() int32 {
  2547. if m != nil {
  2548. return m.HouseStatus
  2549. }
  2550. return 0
  2551. }
  2552. type HouseChangeStatusReply struct {
  2553. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2554. XXX_unrecognized []byte `json:"-"`
  2555. XXX_sizecache int32 `json:"-"`
  2556. }
  2557. func (m *HouseChangeStatusReply) Reset() { *m = HouseChangeStatusReply{} }
  2558. func (m *HouseChangeStatusReply) String() string { return proto.CompactTextString(m) }
  2559. func (*HouseChangeStatusReply) ProtoMessage() {}
  2560. func (*HouseChangeStatusReply) Descriptor() ([]byte, []int) {
  2561. return fileDescriptor_5b775c37bba03b28, []int{42}
  2562. }
  2563. func (m *HouseChangeStatusReply) XXX_Unmarshal(b []byte) error {
  2564. return xxx_messageInfo_HouseChangeStatusReply.Unmarshal(m, b)
  2565. }
  2566. func (m *HouseChangeStatusReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2567. return xxx_messageInfo_HouseChangeStatusReply.Marshal(b, m, deterministic)
  2568. }
  2569. func (m *HouseChangeStatusReply) XXX_Merge(src proto.Message) {
  2570. xxx_messageInfo_HouseChangeStatusReply.Merge(m, src)
  2571. }
  2572. func (m *HouseChangeStatusReply) XXX_Size() int {
  2573. return xxx_messageInfo_HouseChangeStatusReply.Size(m)
  2574. }
  2575. func (m *HouseChangeStatusReply) XXX_DiscardUnknown() {
  2576. xxx_messageInfo_HouseChangeStatusReply.DiscardUnknown(m)
  2577. }
  2578. var xxx_messageInfo_HouseChangeStatusReply proto.InternalMessageInfo
  2579. type GardenHouseholdListRequest struct {
  2580. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2581. Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"`
  2582. Page int64 `protobuf:"varint,3,opt,name=page,proto3" json:"page"`
  2583. PageSize int64 `protobuf:"varint,4,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  2584. UserType int32 `protobuf:"varint,5,opt,name=user_type,json=userType,proto3" json:"user_type"`
  2585. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name"`
  2586. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2587. XXX_unrecognized []byte `json:"-"`
  2588. XXX_sizecache int32 `json:"-"`
  2589. }
  2590. func (m *GardenHouseholdListRequest) Reset() { *m = GardenHouseholdListRequest{} }
  2591. func (m *GardenHouseholdListRequest) String() string { return proto.CompactTextString(m) }
  2592. func (*GardenHouseholdListRequest) ProtoMessage() {}
  2593. func (*GardenHouseholdListRequest) Descriptor() ([]byte, []int) {
  2594. return fileDescriptor_5b775c37bba03b28, []int{43}
  2595. }
  2596. func (m *GardenHouseholdListRequest) XXX_Unmarshal(b []byte) error {
  2597. return xxx_messageInfo_GardenHouseholdListRequest.Unmarshal(m, b)
  2598. }
  2599. func (m *GardenHouseholdListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2600. return xxx_messageInfo_GardenHouseholdListRequest.Marshal(b, m, deterministic)
  2601. }
  2602. func (m *GardenHouseholdListRequest) XXX_Merge(src proto.Message) {
  2603. xxx_messageInfo_GardenHouseholdListRequest.Merge(m, src)
  2604. }
  2605. func (m *GardenHouseholdListRequest) XXX_Size() int {
  2606. return xxx_messageInfo_GardenHouseholdListRequest.Size(m)
  2607. }
  2608. func (m *GardenHouseholdListRequest) XXX_DiscardUnknown() {
  2609. xxx_messageInfo_GardenHouseholdListRequest.DiscardUnknown(m)
  2610. }
  2611. var xxx_messageInfo_GardenHouseholdListRequest proto.InternalMessageInfo
  2612. func (m *GardenHouseholdListRequest) GetGardenId() int64 {
  2613. if m != nil {
  2614. return m.GardenId
  2615. }
  2616. return 0
  2617. }
  2618. func (m *GardenHouseholdListRequest) GetUid() int64 {
  2619. if m != nil {
  2620. return m.Uid
  2621. }
  2622. return 0
  2623. }
  2624. func (m *GardenHouseholdListRequest) GetPage() int64 {
  2625. if m != nil {
  2626. return m.Page
  2627. }
  2628. return 0
  2629. }
  2630. func (m *GardenHouseholdListRequest) GetPageSize() int64 {
  2631. if m != nil {
  2632. return m.PageSize
  2633. }
  2634. return 0
  2635. }
  2636. func (m *GardenHouseholdListRequest) GetUserType() int32 {
  2637. if m != nil {
  2638. return m.UserType
  2639. }
  2640. return 0
  2641. }
  2642. func (m *GardenHouseholdListRequest) GetName() string {
  2643. if m != nil {
  2644. return m.Name
  2645. }
  2646. return ""
  2647. }
  2648. type GardenHouseholdItem struct {
  2649. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2650. // 1业主 2家人 3租客
  2651. UserType int32 `protobuf:"varint,2,opt,name=user_type,json=userType,proto3" json:"user_type"`
  2652. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"`
  2653. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
  2654. Appendix []string `protobuf:"bytes,5,rep,name=appendix,proto3" json:"appendix"`
  2655. // 1 身份证 2 护照
  2656. IdType int32 `protobuf:"varint,6,opt,name=id_type,json=idType,proto3" json:"id_type"`
  2657. // 证件号
  2658. IdNumber string `protobuf:"bytes,7,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
  2659. // 房号
  2660. HouseName string `protobuf:"bytes,8,opt,name=house_name,json=houseName,proto3" json:"house_name"`
  2661. ApproveStatus int32 `protobuf:"varint,9,opt,name=approve_status,json=approveStatus,proto3" json:"approve_status"`
  2662. GardenName string `protobuf:"bytes,10,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  2663. Uid int64 `protobuf:"varint,11,opt,name=uid,proto3" json:"uid"`
  2664. HouseId int64 `protobuf:"varint,12,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  2665. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2666. XXX_unrecognized []byte `json:"-"`
  2667. XXX_sizecache int32 `json:"-"`
  2668. }
  2669. func (m *GardenHouseholdItem) Reset() { *m = GardenHouseholdItem{} }
  2670. func (m *GardenHouseholdItem) String() string { return proto.CompactTextString(m) }
  2671. func (*GardenHouseholdItem) ProtoMessage() {}
  2672. func (*GardenHouseholdItem) Descriptor() ([]byte, []int) {
  2673. return fileDescriptor_5b775c37bba03b28, []int{44}
  2674. }
  2675. func (m *GardenHouseholdItem) XXX_Unmarshal(b []byte) error {
  2676. return xxx_messageInfo_GardenHouseholdItem.Unmarshal(m, b)
  2677. }
  2678. func (m *GardenHouseholdItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2679. return xxx_messageInfo_GardenHouseholdItem.Marshal(b, m, deterministic)
  2680. }
  2681. func (m *GardenHouseholdItem) XXX_Merge(src proto.Message) {
  2682. xxx_messageInfo_GardenHouseholdItem.Merge(m, src)
  2683. }
  2684. func (m *GardenHouseholdItem) XXX_Size() int {
  2685. return xxx_messageInfo_GardenHouseholdItem.Size(m)
  2686. }
  2687. func (m *GardenHouseholdItem) XXX_DiscardUnknown() {
  2688. xxx_messageInfo_GardenHouseholdItem.DiscardUnknown(m)
  2689. }
  2690. var xxx_messageInfo_GardenHouseholdItem proto.InternalMessageInfo
  2691. func (m *GardenHouseholdItem) GetId() int64 {
  2692. if m != nil {
  2693. return m.Id
  2694. }
  2695. return 0
  2696. }
  2697. func (m *GardenHouseholdItem) GetUserType() int32 {
  2698. if m != nil {
  2699. return m.UserType
  2700. }
  2701. return 0
  2702. }
  2703. func (m *GardenHouseholdItem) GetPhone() string {
  2704. if m != nil {
  2705. return m.Phone
  2706. }
  2707. return ""
  2708. }
  2709. func (m *GardenHouseholdItem) GetName() string {
  2710. if m != nil {
  2711. return m.Name
  2712. }
  2713. return ""
  2714. }
  2715. func (m *GardenHouseholdItem) GetAppendix() []string {
  2716. if m != nil {
  2717. return m.Appendix
  2718. }
  2719. return nil
  2720. }
  2721. func (m *GardenHouseholdItem) GetIdType() int32 {
  2722. if m != nil {
  2723. return m.IdType
  2724. }
  2725. return 0
  2726. }
  2727. func (m *GardenHouseholdItem) GetIdNumber() string {
  2728. if m != nil {
  2729. return m.IdNumber
  2730. }
  2731. return ""
  2732. }
  2733. func (m *GardenHouseholdItem) GetHouseName() string {
  2734. if m != nil {
  2735. return m.HouseName
  2736. }
  2737. return ""
  2738. }
  2739. func (m *GardenHouseholdItem) GetApproveStatus() int32 {
  2740. if m != nil {
  2741. return m.ApproveStatus
  2742. }
  2743. return 0
  2744. }
  2745. func (m *GardenHouseholdItem) GetGardenName() string {
  2746. if m != nil {
  2747. return m.GardenName
  2748. }
  2749. return ""
  2750. }
  2751. func (m *GardenHouseholdItem) GetUid() int64 {
  2752. if m != nil {
  2753. return m.Uid
  2754. }
  2755. return 0
  2756. }
  2757. func (m *GardenHouseholdItem) GetHouseId() int64 {
  2758. if m != nil {
  2759. return m.HouseId
  2760. }
  2761. return 0
  2762. }
  2763. type GardenHouseholdListReply struct {
  2764. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  2765. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  2766. List []*GardenHouseholdItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  2767. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2768. XXX_unrecognized []byte `json:"-"`
  2769. XXX_sizecache int32 `json:"-"`
  2770. }
  2771. func (m *GardenHouseholdListReply) Reset() { *m = GardenHouseholdListReply{} }
  2772. func (m *GardenHouseholdListReply) String() string { return proto.CompactTextString(m) }
  2773. func (*GardenHouseholdListReply) ProtoMessage() {}
  2774. func (*GardenHouseholdListReply) Descriptor() ([]byte, []int) {
  2775. return fileDescriptor_5b775c37bba03b28, []int{45}
  2776. }
  2777. func (m *GardenHouseholdListReply) XXX_Unmarshal(b []byte) error {
  2778. return xxx_messageInfo_GardenHouseholdListReply.Unmarshal(m, b)
  2779. }
  2780. func (m *GardenHouseholdListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2781. return xxx_messageInfo_GardenHouseholdListReply.Marshal(b, m, deterministic)
  2782. }
  2783. func (m *GardenHouseholdListReply) XXX_Merge(src proto.Message) {
  2784. xxx_messageInfo_GardenHouseholdListReply.Merge(m, src)
  2785. }
  2786. func (m *GardenHouseholdListReply) XXX_Size() int {
  2787. return xxx_messageInfo_GardenHouseholdListReply.Size(m)
  2788. }
  2789. func (m *GardenHouseholdListReply) XXX_DiscardUnknown() {
  2790. xxx_messageInfo_GardenHouseholdListReply.DiscardUnknown(m)
  2791. }
  2792. var xxx_messageInfo_GardenHouseholdListReply proto.InternalMessageInfo
  2793. func (m *GardenHouseholdListReply) GetPage() int64 {
  2794. if m != nil {
  2795. return m.Page
  2796. }
  2797. return 0
  2798. }
  2799. func (m *GardenHouseholdListReply) GetTotal() int64 {
  2800. if m != nil {
  2801. return m.Total
  2802. }
  2803. return 0
  2804. }
  2805. func (m *GardenHouseholdListReply) GetList() []*GardenHouseholdItem {
  2806. if m != nil {
  2807. return m.List
  2808. }
  2809. return nil
  2810. }
  2811. type GardenHouseholdUserListRequest struct {
  2812. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2813. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  2814. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  2815. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
  2816. Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone"`
  2817. IdNumber string `protobuf:"bytes,6,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
  2818. UserType int32 `protobuf:"varint,7,opt,name=user_type,json=userType,proto3" json:"user_type"`
  2819. Uids []int64 `protobuf:"varint,8,rep,packed,name=uids,proto3" json:"uids"`
  2820. HouseId int64 `protobuf:"varint,9,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  2821. ExcludeUids []int64 `protobuf:"varint,10,rep,packed,name=exclude_uids,json=excludeUids,proto3" json:"exclude_uids"`
  2822. BuildingId int64 `protobuf:"varint,11,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  2823. UnitId int64 `protobuf:"varint,12,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  2824. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2825. XXX_unrecognized []byte `json:"-"`
  2826. XXX_sizecache int32 `json:"-"`
  2827. }
  2828. func (m *GardenHouseholdUserListRequest) Reset() { *m = GardenHouseholdUserListRequest{} }
  2829. func (m *GardenHouseholdUserListRequest) String() string { return proto.CompactTextString(m) }
  2830. func (*GardenHouseholdUserListRequest) ProtoMessage() {}
  2831. func (*GardenHouseholdUserListRequest) Descriptor() ([]byte, []int) {
  2832. return fileDescriptor_5b775c37bba03b28, []int{46}
  2833. }
  2834. func (m *GardenHouseholdUserListRequest) XXX_Unmarshal(b []byte) error {
  2835. return xxx_messageInfo_GardenHouseholdUserListRequest.Unmarshal(m, b)
  2836. }
  2837. func (m *GardenHouseholdUserListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2838. return xxx_messageInfo_GardenHouseholdUserListRequest.Marshal(b, m, deterministic)
  2839. }
  2840. func (m *GardenHouseholdUserListRequest) XXX_Merge(src proto.Message) {
  2841. xxx_messageInfo_GardenHouseholdUserListRequest.Merge(m, src)
  2842. }
  2843. func (m *GardenHouseholdUserListRequest) XXX_Size() int {
  2844. return xxx_messageInfo_GardenHouseholdUserListRequest.Size(m)
  2845. }
  2846. func (m *GardenHouseholdUserListRequest) XXX_DiscardUnknown() {
  2847. xxx_messageInfo_GardenHouseholdUserListRequest.DiscardUnknown(m)
  2848. }
  2849. var xxx_messageInfo_GardenHouseholdUserListRequest proto.InternalMessageInfo
  2850. func (m *GardenHouseholdUserListRequest) GetGardenId() int64 {
  2851. if m != nil {
  2852. return m.GardenId
  2853. }
  2854. return 0
  2855. }
  2856. func (m *GardenHouseholdUserListRequest) GetPage() int64 {
  2857. if m != nil {
  2858. return m.Page
  2859. }
  2860. return 0
  2861. }
  2862. func (m *GardenHouseholdUserListRequest) GetPageSize() int64 {
  2863. if m != nil {
  2864. return m.PageSize
  2865. }
  2866. return 0
  2867. }
  2868. func (m *GardenHouseholdUserListRequest) GetName() string {
  2869. if m != nil {
  2870. return m.Name
  2871. }
  2872. return ""
  2873. }
  2874. func (m *GardenHouseholdUserListRequest) GetPhone() string {
  2875. if m != nil {
  2876. return m.Phone
  2877. }
  2878. return ""
  2879. }
  2880. func (m *GardenHouseholdUserListRequest) GetIdNumber() string {
  2881. if m != nil {
  2882. return m.IdNumber
  2883. }
  2884. return ""
  2885. }
  2886. func (m *GardenHouseholdUserListRequest) GetUserType() int32 {
  2887. if m != nil {
  2888. return m.UserType
  2889. }
  2890. return 0
  2891. }
  2892. func (m *GardenHouseholdUserListRequest) GetUids() []int64 {
  2893. if m != nil {
  2894. return m.Uids
  2895. }
  2896. return nil
  2897. }
  2898. func (m *GardenHouseholdUserListRequest) GetHouseId() int64 {
  2899. if m != nil {
  2900. return m.HouseId
  2901. }
  2902. return 0
  2903. }
  2904. func (m *GardenHouseholdUserListRequest) GetExcludeUids() []int64 {
  2905. if m != nil {
  2906. return m.ExcludeUids
  2907. }
  2908. return nil
  2909. }
  2910. func (m *GardenHouseholdUserListRequest) GetBuildingId() int64 {
  2911. if m != nil {
  2912. return m.BuildingId
  2913. }
  2914. return 0
  2915. }
  2916. func (m *GardenHouseholdUserListRequest) GetUnitId() int64 {
  2917. if m != nil {
  2918. return m.UnitId
  2919. }
  2920. return 0
  2921. }
  2922. type GardenHouseholdUserItem struct {
  2923. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2924. // 1业主 2家人 3租客
  2925. UserType int32 `protobuf:"varint,2,opt,name=user_type,json=userType,proto3" json:"user_type"`
  2926. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"`
  2927. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
  2928. // 1 身份证 2 护照
  2929. IdType int32 `protobuf:"varint,5,opt,name=id_type,json=idType,proto3" json:"id_type"`
  2930. // 证件号
  2931. IdNumber string `protobuf:"bytes,6,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
  2932. GardenName string `protobuf:"bytes,7,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  2933. HouseName string `protobuf:"bytes,8,opt,name=house_name,json=houseName,proto3" json:"house_name"`
  2934. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2935. XXX_unrecognized []byte `json:"-"`
  2936. XXX_sizecache int32 `json:"-"`
  2937. }
  2938. func (m *GardenHouseholdUserItem) Reset() { *m = GardenHouseholdUserItem{} }
  2939. func (m *GardenHouseholdUserItem) String() string { return proto.CompactTextString(m) }
  2940. func (*GardenHouseholdUserItem) ProtoMessage() {}
  2941. func (*GardenHouseholdUserItem) Descriptor() ([]byte, []int) {
  2942. return fileDescriptor_5b775c37bba03b28, []int{47}
  2943. }
  2944. func (m *GardenHouseholdUserItem) XXX_Unmarshal(b []byte) error {
  2945. return xxx_messageInfo_GardenHouseholdUserItem.Unmarshal(m, b)
  2946. }
  2947. func (m *GardenHouseholdUserItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2948. return xxx_messageInfo_GardenHouseholdUserItem.Marshal(b, m, deterministic)
  2949. }
  2950. func (m *GardenHouseholdUserItem) XXX_Merge(src proto.Message) {
  2951. xxx_messageInfo_GardenHouseholdUserItem.Merge(m, src)
  2952. }
  2953. func (m *GardenHouseholdUserItem) XXX_Size() int {
  2954. return xxx_messageInfo_GardenHouseholdUserItem.Size(m)
  2955. }
  2956. func (m *GardenHouseholdUserItem) XXX_DiscardUnknown() {
  2957. xxx_messageInfo_GardenHouseholdUserItem.DiscardUnknown(m)
  2958. }
  2959. var xxx_messageInfo_GardenHouseholdUserItem proto.InternalMessageInfo
  2960. func (m *GardenHouseholdUserItem) GetId() int64 {
  2961. if m != nil {
  2962. return m.Id
  2963. }
  2964. return 0
  2965. }
  2966. func (m *GardenHouseholdUserItem) GetUserType() int32 {
  2967. if m != nil {
  2968. return m.UserType
  2969. }
  2970. return 0
  2971. }
  2972. func (m *GardenHouseholdUserItem) GetPhone() string {
  2973. if m != nil {
  2974. return m.Phone
  2975. }
  2976. return ""
  2977. }
  2978. func (m *GardenHouseholdUserItem) GetName() string {
  2979. if m != nil {
  2980. return m.Name
  2981. }
  2982. return ""
  2983. }
  2984. func (m *GardenHouseholdUserItem) GetIdType() int32 {
  2985. if m != nil {
  2986. return m.IdType
  2987. }
  2988. return 0
  2989. }
  2990. func (m *GardenHouseholdUserItem) GetIdNumber() string {
  2991. if m != nil {
  2992. return m.IdNumber
  2993. }
  2994. return ""
  2995. }
  2996. func (m *GardenHouseholdUserItem) GetGardenName() string {
  2997. if m != nil {
  2998. return m.GardenName
  2999. }
  3000. return ""
  3001. }
  3002. func (m *GardenHouseholdUserItem) GetHouseName() string {
  3003. if m != nil {
  3004. return m.HouseName
  3005. }
  3006. return ""
  3007. }
  3008. type GardenHouseholdUserListReply struct {
  3009. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  3010. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  3011. List []*GardenHouseholdUserItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3012. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3013. XXX_unrecognized []byte `json:"-"`
  3014. XXX_sizecache int32 `json:"-"`
  3015. }
  3016. func (m *GardenHouseholdUserListReply) Reset() { *m = GardenHouseholdUserListReply{} }
  3017. func (m *GardenHouseholdUserListReply) String() string { return proto.CompactTextString(m) }
  3018. func (*GardenHouseholdUserListReply) ProtoMessage() {}
  3019. func (*GardenHouseholdUserListReply) Descriptor() ([]byte, []int) {
  3020. return fileDescriptor_5b775c37bba03b28, []int{48}
  3021. }
  3022. func (m *GardenHouseholdUserListReply) XXX_Unmarshal(b []byte) error {
  3023. return xxx_messageInfo_GardenHouseholdUserListReply.Unmarshal(m, b)
  3024. }
  3025. func (m *GardenHouseholdUserListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3026. return xxx_messageInfo_GardenHouseholdUserListReply.Marshal(b, m, deterministic)
  3027. }
  3028. func (m *GardenHouseholdUserListReply) XXX_Merge(src proto.Message) {
  3029. xxx_messageInfo_GardenHouseholdUserListReply.Merge(m, src)
  3030. }
  3031. func (m *GardenHouseholdUserListReply) XXX_Size() int {
  3032. return xxx_messageInfo_GardenHouseholdUserListReply.Size(m)
  3033. }
  3034. func (m *GardenHouseholdUserListReply) XXX_DiscardUnknown() {
  3035. xxx_messageInfo_GardenHouseholdUserListReply.DiscardUnknown(m)
  3036. }
  3037. var xxx_messageInfo_GardenHouseholdUserListReply proto.InternalMessageInfo
  3038. func (m *GardenHouseholdUserListReply) GetTotal() int64 {
  3039. if m != nil {
  3040. return m.Total
  3041. }
  3042. return 0
  3043. }
  3044. func (m *GardenHouseholdUserListReply) GetPage() int64 {
  3045. if m != nil {
  3046. return m.Page
  3047. }
  3048. return 0
  3049. }
  3050. func (m *GardenHouseholdUserListReply) GetList() []*GardenHouseholdUserItem {
  3051. if m != nil {
  3052. return m.List
  3053. }
  3054. return nil
  3055. }
  3056. type SystemMsgAddRequest struct {
  3057. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3058. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content"`
  3059. Code string `protobuf:"bytes,3,opt,name=code,proto3" json:"code"`
  3060. Uid int64 `protobuf:"varint,4,opt,name=uid,proto3" json:"uid"`
  3061. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3062. XXX_unrecognized []byte `json:"-"`
  3063. XXX_sizecache int32 `json:"-"`
  3064. }
  3065. func (m *SystemMsgAddRequest) Reset() { *m = SystemMsgAddRequest{} }
  3066. func (m *SystemMsgAddRequest) String() string { return proto.CompactTextString(m) }
  3067. func (*SystemMsgAddRequest) ProtoMessage() {}
  3068. func (*SystemMsgAddRequest) Descriptor() ([]byte, []int) {
  3069. return fileDescriptor_5b775c37bba03b28, []int{49}
  3070. }
  3071. func (m *SystemMsgAddRequest) XXX_Unmarshal(b []byte) error {
  3072. return xxx_messageInfo_SystemMsgAddRequest.Unmarshal(m, b)
  3073. }
  3074. func (m *SystemMsgAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3075. return xxx_messageInfo_SystemMsgAddRequest.Marshal(b, m, deterministic)
  3076. }
  3077. func (m *SystemMsgAddRequest) XXX_Merge(src proto.Message) {
  3078. xxx_messageInfo_SystemMsgAddRequest.Merge(m, src)
  3079. }
  3080. func (m *SystemMsgAddRequest) XXX_Size() int {
  3081. return xxx_messageInfo_SystemMsgAddRequest.Size(m)
  3082. }
  3083. func (m *SystemMsgAddRequest) XXX_DiscardUnknown() {
  3084. xxx_messageInfo_SystemMsgAddRequest.DiscardUnknown(m)
  3085. }
  3086. var xxx_messageInfo_SystemMsgAddRequest proto.InternalMessageInfo
  3087. func (m *SystemMsgAddRequest) GetGardenId() int64 {
  3088. if m != nil {
  3089. return m.GardenId
  3090. }
  3091. return 0
  3092. }
  3093. func (m *SystemMsgAddRequest) GetContent() string {
  3094. if m != nil {
  3095. return m.Content
  3096. }
  3097. return ""
  3098. }
  3099. func (m *SystemMsgAddRequest) GetCode() string {
  3100. if m != nil {
  3101. return m.Code
  3102. }
  3103. return ""
  3104. }
  3105. func (m *SystemMsgAddRequest) GetUid() int64 {
  3106. if m != nil {
  3107. return m.Uid
  3108. }
  3109. return 0
  3110. }
  3111. type SystemMsgAddReply struct {
  3112. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3113. XXX_unrecognized []byte `json:"-"`
  3114. XXX_sizecache int32 `json:"-"`
  3115. }
  3116. func (m *SystemMsgAddReply) Reset() { *m = SystemMsgAddReply{} }
  3117. func (m *SystemMsgAddReply) String() string { return proto.CompactTextString(m) }
  3118. func (*SystemMsgAddReply) ProtoMessage() {}
  3119. func (*SystemMsgAddReply) Descriptor() ([]byte, []int) {
  3120. return fileDescriptor_5b775c37bba03b28, []int{50}
  3121. }
  3122. func (m *SystemMsgAddReply) XXX_Unmarshal(b []byte) error {
  3123. return xxx_messageInfo_SystemMsgAddReply.Unmarshal(m, b)
  3124. }
  3125. func (m *SystemMsgAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3126. return xxx_messageInfo_SystemMsgAddReply.Marshal(b, m, deterministic)
  3127. }
  3128. func (m *SystemMsgAddReply) XXX_Merge(src proto.Message) {
  3129. xxx_messageInfo_SystemMsgAddReply.Merge(m, src)
  3130. }
  3131. func (m *SystemMsgAddReply) XXX_Size() int {
  3132. return xxx_messageInfo_SystemMsgAddReply.Size(m)
  3133. }
  3134. func (m *SystemMsgAddReply) XXX_DiscardUnknown() {
  3135. xxx_messageInfo_SystemMsgAddReply.DiscardUnknown(m)
  3136. }
  3137. var xxx_messageInfo_SystemMsgAddReply proto.InternalMessageInfo
  3138. type SystemMsgListRequest struct {
  3139. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3140. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  3141. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  3142. Uid int64 `protobuf:"varint,4,opt,name=uid,proto3" json:"uid"`
  3143. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3144. XXX_unrecognized []byte `json:"-"`
  3145. XXX_sizecache int32 `json:"-"`
  3146. }
  3147. func (m *SystemMsgListRequest) Reset() { *m = SystemMsgListRequest{} }
  3148. func (m *SystemMsgListRequest) String() string { return proto.CompactTextString(m) }
  3149. func (*SystemMsgListRequest) ProtoMessage() {}
  3150. func (*SystemMsgListRequest) Descriptor() ([]byte, []int) {
  3151. return fileDescriptor_5b775c37bba03b28, []int{51}
  3152. }
  3153. func (m *SystemMsgListRequest) XXX_Unmarshal(b []byte) error {
  3154. return xxx_messageInfo_SystemMsgListRequest.Unmarshal(m, b)
  3155. }
  3156. func (m *SystemMsgListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3157. return xxx_messageInfo_SystemMsgListRequest.Marshal(b, m, deterministic)
  3158. }
  3159. func (m *SystemMsgListRequest) XXX_Merge(src proto.Message) {
  3160. xxx_messageInfo_SystemMsgListRequest.Merge(m, src)
  3161. }
  3162. func (m *SystemMsgListRequest) XXX_Size() int {
  3163. return xxx_messageInfo_SystemMsgListRequest.Size(m)
  3164. }
  3165. func (m *SystemMsgListRequest) XXX_DiscardUnknown() {
  3166. xxx_messageInfo_SystemMsgListRequest.DiscardUnknown(m)
  3167. }
  3168. var xxx_messageInfo_SystemMsgListRequest proto.InternalMessageInfo
  3169. func (m *SystemMsgListRequest) GetGardenId() int64 {
  3170. if m != nil {
  3171. return m.GardenId
  3172. }
  3173. return 0
  3174. }
  3175. func (m *SystemMsgListRequest) GetPage() int64 {
  3176. if m != nil {
  3177. return m.Page
  3178. }
  3179. return 0
  3180. }
  3181. func (m *SystemMsgListRequest) GetPageSize() int64 {
  3182. if m != nil {
  3183. return m.PageSize
  3184. }
  3185. return 0
  3186. }
  3187. func (m *SystemMsgListRequest) GetUid() int64 {
  3188. if m != nil {
  3189. return m.Uid
  3190. }
  3191. return 0
  3192. }
  3193. type SystemMsgItem struct {
  3194. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3195. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content"`
  3196. CreatedAt string `protobuf:"bytes,3,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  3197. Code string `protobuf:"bytes,5,opt,name=code,proto3" json:"code"`
  3198. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3199. XXX_unrecognized []byte `json:"-"`
  3200. XXX_sizecache int32 `json:"-"`
  3201. }
  3202. func (m *SystemMsgItem) Reset() { *m = SystemMsgItem{} }
  3203. func (m *SystemMsgItem) String() string { return proto.CompactTextString(m) }
  3204. func (*SystemMsgItem) ProtoMessage() {}
  3205. func (*SystemMsgItem) Descriptor() ([]byte, []int) {
  3206. return fileDescriptor_5b775c37bba03b28, []int{52}
  3207. }
  3208. func (m *SystemMsgItem) XXX_Unmarshal(b []byte) error {
  3209. return xxx_messageInfo_SystemMsgItem.Unmarshal(m, b)
  3210. }
  3211. func (m *SystemMsgItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3212. return xxx_messageInfo_SystemMsgItem.Marshal(b, m, deterministic)
  3213. }
  3214. func (m *SystemMsgItem) XXX_Merge(src proto.Message) {
  3215. xxx_messageInfo_SystemMsgItem.Merge(m, src)
  3216. }
  3217. func (m *SystemMsgItem) XXX_Size() int {
  3218. return xxx_messageInfo_SystemMsgItem.Size(m)
  3219. }
  3220. func (m *SystemMsgItem) XXX_DiscardUnknown() {
  3221. xxx_messageInfo_SystemMsgItem.DiscardUnknown(m)
  3222. }
  3223. var xxx_messageInfo_SystemMsgItem proto.InternalMessageInfo
  3224. func (m *SystemMsgItem) GetId() int64 {
  3225. if m != nil {
  3226. return m.Id
  3227. }
  3228. return 0
  3229. }
  3230. func (m *SystemMsgItem) GetContent() string {
  3231. if m != nil {
  3232. return m.Content
  3233. }
  3234. return ""
  3235. }
  3236. func (m *SystemMsgItem) GetCreatedAt() string {
  3237. if m != nil {
  3238. return m.CreatedAt
  3239. }
  3240. return ""
  3241. }
  3242. func (m *SystemMsgItem) GetCode() string {
  3243. if m != nil {
  3244. return m.Code
  3245. }
  3246. return ""
  3247. }
  3248. type SystemMsgListReply struct {
  3249. Total int64 `protobuf:"varint,1,opt,name=total,proto3" json:"total"`
  3250. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  3251. List []*SystemMsgItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3252. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3253. XXX_unrecognized []byte `json:"-"`
  3254. XXX_sizecache int32 `json:"-"`
  3255. }
  3256. func (m *SystemMsgListReply) Reset() { *m = SystemMsgListReply{} }
  3257. func (m *SystemMsgListReply) String() string { return proto.CompactTextString(m) }
  3258. func (*SystemMsgListReply) ProtoMessage() {}
  3259. func (*SystemMsgListReply) Descriptor() ([]byte, []int) {
  3260. return fileDescriptor_5b775c37bba03b28, []int{53}
  3261. }
  3262. func (m *SystemMsgListReply) XXX_Unmarshal(b []byte) error {
  3263. return xxx_messageInfo_SystemMsgListReply.Unmarshal(m, b)
  3264. }
  3265. func (m *SystemMsgListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3266. return xxx_messageInfo_SystemMsgListReply.Marshal(b, m, deterministic)
  3267. }
  3268. func (m *SystemMsgListReply) XXX_Merge(src proto.Message) {
  3269. xxx_messageInfo_SystemMsgListReply.Merge(m, src)
  3270. }
  3271. func (m *SystemMsgListReply) XXX_Size() int {
  3272. return xxx_messageInfo_SystemMsgListReply.Size(m)
  3273. }
  3274. func (m *SystemMsgListReply) XXX_DiscardUnknown() {
  3275. xxx_messageInfo_SystemMsgListReply.DiscardUnknown(m)
  3276. }
  3277. var xxx_messageInfo_SystemMsgListReply proto.InternalMessageInfo
  3278. func (m *SystemMsgListReply) GetTotal() int64 {
  3279. if m != nil {
  3280. return m.Total
  3281. }
  3282. return 0
  3283. }
  3284. func (m *SystemMsgListReply) GetPage() int64 {
  3285. if m != nil {
  3286. return m.Page
  3287. }
  3288. return 0
  3289. }
  3290. func (m *SystemMsgListReply) GetList() []*SystemMsgItem {
  3291. if m != nil {
  3292. return m.List
  3293. }
  3294. return nil
  3295. }
  3296. type SystemMsgReadedRequest struct {
  3297. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3298. Id []int64 `protobuf:"varint,2,rep,packed,name=id,proto3" json:"id"`
  3299. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3300. XXX_unrecognized []byte `json:"-"`
  3301. XXX_sizecache int32 `json:"-"`
  3302. }
  3303. func (m *SystemMsgReadedRequest) Reset() { *m = SystemMsgReadedRequest{} }
  3304. func (m *SystemMsgReadedRequest) String() string { return proto.CompactTextString(m) }
  3305. func (*SystemMsgReadedRequest) ProtoMessage() {}
  3306. func (*SystemMsgReadedRequest) Descriptor() ([]byte, []int) {
  3307. return fileDescriptor_5b775c37bba03b28, []int{54}
  3308. }
  3309. func (m *SystemMsgReadedRequest) XXX_Unmarshal(b []byte) error {
  3310. return xxx_messageInfo_SystemMsgReadedRequest.Unmarshal(m, b)
  3311. }
  3312. func (m *SystemMsgReadedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3313. return xxx_messageInfo_SystemMsgReadedRequest.Marshal(b, m, deterministic)
  3314. }
  3315. func (m *SystemMsgReadedRequest) XXX_Merge(src proto.Message) {
  3316. xxx_messageInfo_SystemMsgReadedRequest.Merge(m, src)
  3317. }
  3318. func (m *SystemMsgReadedRequest) XXX_Size() int {
  3319. return xxx_messageInfo_SystemMsgReadedRequest.Size(m)
  3320. }
  3321. func (m *SystemMsgReadedRequest) XXX_DiscardUnknown() {
  3322. xxx_messageInfo_SystemMsgReadedRequest.DiscardUnknown(m)
  3323. }
  3324. var xxx_messageInfo_SystemMsgReadedRequest proto.InternalMessageInfo
  3325. func (m *SystemMsgReadedRequest) GetGardenId() int64 {
  3326. if m != nil {
  3327. return m.GardenId
  3328. }
  3329. return 0
  3330. }
  3331. func (m *SystemMsgReadedRequest) GetId() []int64 {
  3332. if m != nil {
  3333. return m.Id
  3334. }
  3335. return nil
  3336. }
  3337. type SystemMsgReadedReply struct {
  3338. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3339. XXX_unrecognized []byte `json:"-"`
  3340. XXX_sizecache int32 `json:"-"`
  3341. }
  3342. func (m *SystemMsgReadedReply) Reset() { *m = SystemMsgReadedReply{} }
  3343. func (m *SystemMsgReadedReply) String() string { return proto.CompactTextString(m) }
  3344. func (*SystemMsgReadedReply) ProtoMessage() {}
  3345. func (*SystemMsgReadedReply) Descriptor() ([]byte, []int) {
  3346. return fileDescriptor_5b775c37bba03b28, []int{55}
  3347. }
  3348. func (m *SystemMsgReadedReply) XXX_Unmarshal(b []byte) error {
  3349. return xxx_messageInfo_SystemMsgReadedReply.Unmarshal(m, b)
  3350. }
  3351. func (m *SystemMsgReadedReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3352. return xxx_messageInfo_SystemMsgReadedReply.Marshal(b, m, deterministic)
  3353. }
  3354. func (m *SystemMsgReadedReply) XXX_Merge(src proto.Message) {
  3355. xxx_messageInfo_SystemMsgReadedReply.Merge(m, src)
  3356. }
  3357. func (m *SystemMsgReadedReply) XXX_Size() int {
  3358. return xxx_messageInfo_SystemMsgReadedReply.Size(m)
  3359. }
  3360. func (m *SystemMsgReadedReply) XXX_DiscardUnknown() {
  3361. xxx_messageInfo_SystemMsgReadedReply.DiscardUnknown(m)
  3362. }
  3363. var xxx_messageInfo_SystemMsgReadedReply proto.InternalMessageInfo
  3364. type StatisticRequest struct {
  3365. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3366. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3367. XXX_unrecognized []byte `json:"-"`
  3368. XXX_sizecache int32 `json:"-"`
  3369. }
  3370. func (m *StatisticRequest) Reset() { *m = StatisticRequest{} }
  3371. func (m *StatisticRequest) String() string { return proto.CompactTextString(m) }
  3372. func (*StatisticRequest) ProtoMessage() {}
  3373. func (*StatisticRequest) Descriptor() ([]byte, []int) {
  3374. return fileDescriptor_5b775c37bba03b28, []int{56}
  3375. }
  3376. func (m *StatisticRequest) XXX_Unmarshal(b []byte) error {
  3377. return xxx_messageInfo_StatisticRequest.Unmarshal(m, b)
  3378. }
  3379. func (m *StatisticRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3380. return xxx_messageInfo_StatisticRequest.Marshal(b, m, deterministic)
  3381. }
  3382. func (m *StatisticRequest) XXX_Merge(src proto.Message) {
  3383. xxx_messageInfo_StatisticRequest.Merge(m, src)
  3384. }
  3385. func (m *StatisticRequest) XXX_Size() int {
  3386. return xxx_messageInfo_StatisticRequest.Size(m)
  3387. }
  3388. func (m *StatisticRequest) XXX_DiscardUnknown() {
  3389. xxx_messageInfo_StatisticRequest.DiscardUnknown(m)
  3390. }
  3391. var xxx_messageInfo_StatisticRequest proto.InternalMessageInfo
  3392. func (m *StatisticRequest) GetGardenId() int64 {
  3393. if m != nil {
  3394. return m.GardenId
  3395. }
  3396. return 0
  3397. }
  3398. type StatisticWaitFinish struct {
  3399. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type"`
  3400. WaitCount int64 `protobuf:"varint,2,opt,name=wait_count,json=waitCount,proto3" json:"wait_count"`
  3401. FinishCount int64 `protobuf:"varint,3,opt,name=finish_count,json=finishCount,proto3" json:"finish_count"`
  3402. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3403. XXX_unrecognized []byte `json:"-"`
  3404. XXX_sizecache int32 `json:"-"`
  3405. }
  3406. func (m *StatisticWaitFinish) Reset() { *m = StatisticWaitFinish{} }
  3407. func (m *StatisticWaitFinish) String() string { return proto.CompactTextString(m) }
  3408. func (*StatisticWaitFinish) ProtoMessage() {}
  3409. func (*StatisticWaitFinish) Descriptor() ([]byte, []int) {
  3410. return fileDescriptor_5b775c37bba03b28, []int{57}
  3411. }
  3412. func (m *StatisticWaitFinish) XXX_Unmarshal(b []byte) error {
  3413. return xxx_messageInfo_StatisticWaitFinish.Unmarshal(m, b)
  3414. }
  3415. func (m *StatisticWaitFinish) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3416. return xxx_messageInfo_StatisticWaitFinish.Marshal(b, m, deterministic)
  3417. }
  3418. func (m *StatisticWaitFinish) XXX_Merge(src proto.Message) {
  3419. xxx_messageInfo_StatisticWaitFinish.Merge(m, src)
  3420. }
  3421. func (m *StatisticWaitFinish) XXX_Size() int {
  3422. return xxx_messageInfo_StatisticWaitFinish.Size(m)
  3423. }
  3424. func (m *StatisticWaitFinish) XXX_DiscardUnknown() {
  3425. xxx_messageInfo_StatisticWaitFinish.DiscardUnknown(m)
  3426. }
  3427. var xxx_messageInfo_StatisticWaitFinish proto.InternalMessageInfo
  3428. func (m *StatisticWaitFinish) GetType() string {
  3429. if m != nil {
  3430. return m.Type
  3431. }
  3432. return ""
  3433. }
  3434. func (m *StatisticWaitFinish) GetWaitCount() int64 {
  3435. if m != nil {
  3436. return m.WaitCount
  3437. }
  3438. return 0
  3439. }
  3440. func (m *StatisticWaitFinish) GetFinishCount() int64 {
  3441. if m != nil {
  3442. return m.FinishCount
  3443. }
  3444. return 0
  3445. }
  3446. type StatisticReply struct {
  3447. // 房屋数
  3448. HouseCount int64 `protobuf:"varint,1,opt,name=house_count,json=houseCount,proto3" json:"house_count"`
  3449. // 住户数
  3450. UserCount int64 `protobuf:"varint,2,opt,name=user_count,json=userCount,proto3" json:"user_count"`
  3451. // 车位数
  3452. SpaceCount int64 `protobuf:"varint,3,opt,name=space_count,json=spaceCount,proto3" json:"space_count"`
  3453. // 车辆数
  3454. VehicleCount int64 `protobuf:"varint,4,opt,name=vehicle_count,json=vehicleCount,proto3" json:"vehicle_count"`
  3455. List []*StatisticWaitFinish `protobuf:"bytes,5,rep,name=list,proto3" json:"list"`
  3456. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3457. XXX_unrecognized []byte `json:"-"`
  3458. XXX_sizecache int32 `json:"-"`
  3459. }
  3460. func (m *StatisticReply) Reset() { *m = StatisticReply{} }
  3461. func (m *StatisticReply) String() string { return proto.CompactTextString(m) }
  3462. func (*StatisticReply) ProtoMessage() {}
  3463. func (*StatisticReply) Descriptor() ([]byte, []int) {
  3464. return fileDescriptor_5b775c37bba03b28, []int{58}
  3465. }
  3466. func (m *StatisticReply) XXX_Unmarshal(b []byte) error {
  3467. return xxx_messageInfo_StatisticReply.Unmarshal(m, b)
  3468. }
  3469. func (m *StatisticReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3470. return xxx_messageInfo_StatisticReply.Marshal(b, m, deterministic)
  3471. }
  3472. func (m *StatisticReply) XXX_Merge(src proto.Message) {
  3473. xxx_messageInfo_StatisticReply.Merge(m, src)
  3474. }
  3475. func (m *StatisticReply) XXX_Size() int {
  3476. return xxx_messageInfo_StatisticReply.Size(m)
  3477. }
  3478. func (m *StatisticReply) XXX_DiscardUnknown() {
  3479. xxx_messageInfo_StatisticReply.DiscardUnknown(m)
  3480. }
  3481. var xxx_messageInfo_StatisticReply proto.InternalMessageInfo
  3482. func (m *StatisticReply) GetHouseCount() int64 {
  3483. if m != nil {
  3484. return m.HouseCount
  3485. }
  3486. return 0
  3487. }
  3488. func (m *StatisticReply) GetUserCount() int64 {
  3489. if m != nil {
  3490. return m.UserCount
  3491. }
  3492. return 0
  3493. }
  3494. func (m *StatisticReply) GetSpaceCount() int64 {
  3495. if m != nil {
  3496. return m.SpaceCount
  3497. }
  3498. return 0
  3499. }
  3500. func (m *StatisticReply) GetVehicleCount() int64 {
  3501. if m != nil {
  3502. return m.VehicleCount
  3503. }
  3504. return 0
  3505. }
  3506. func (m *StatisticReply) GetList() []*StatisticWaitFinish {
  3507. if m != nil {
  3508. return m.List
  3509. }
  3510. return nil
  3511. }
  3512. func init() {
  3513. proto.RegisterType((*BuildingAddRequest)(nil), "pb_v1.BuildingAddRequest")
  3514. proto.RegisterType((*BuildingAddReply)(nil), "pb_v1.BuildingAddReply")
  3515. proto.RegisterType((*BuildingUpdateRequest)(nil), "pb_v1.BuildingUpdateRequest")
  3516. proto.RegisterType((*BuildingUpdateReply)(nil), "pb_v1.BuildingUpdateReply")
  3517. proto.RegisterType((*BuildingDelRequest)(nil), "pb_v1.BuildingDelRequest")
  3518. proto.RegisterType((*BuildingDelReply)(nil), "pb_v1.BuildingDelReply")
  3519. proto.RegisterType((*BuildingListRequest)(nil), "pb_v1.BuildingListRequest")
  3520. proto.RegisterType((*BuildingItem)(nil), "pb_v1.BuildingItem")
  3521. proto.RegisterType((*BuildingListReply)(nil), "pb_v1.BuildingListReply")
  3522. proto.RegisterType((*BuildingAddManagerRequest)(nil), "pb_v1.BuildingAddManagerRequest")
  3523. proto.RegisterType((*BuildingAddManagerReply)(nil), "pb_v1.BuildingAddManagerReply")
  3524. proto.RegisterType((*BuildingDelManagerRequest)(nil), "pb_v1.BuildingDelManagerRequest")
  3525. proto.RegisterType((*BuildingDelManagerReply)(nil), "pb_v1.BuildingDelManagerReply")
  3526. proto.RegisterType((*BuildingManagerListRequest)(nil), "pb_v1.BuildingManagerListRequest")
  3527. proto.RegisterType((*BuildingManagerItem)(nil), "pb_v1.BuildingManagerItem")
  3528. proto.RegisterType((*BuildingManagerListReply)(nil), "pb_v1.BuildingManagerListReply")
  3529. proto.RegisterType((*UnitAddRequest)(nil), "pb_v1.UnitAddRequest")
  3530. proto.RegisterType((*UnitAddReply)(nil), "pb_v1.UnitAddReply")
  3531. proto.RegisterType((*UnitUpdateRequest)(nil), "pb_v1.UnitUpdateRequest")
  3532. proto.RegisterType((*UnitUpdateReply)(nil), "pb_v1.UnitUpdateReply")
  3533. proto.RegisterType((*UnitDelRequest)(nil), "pb_v1.UnitDelRequest")
  3534. proto.RegisterType((*UnitDelReply)(nil), "pb_v1.UnitDelReply")
  3535. proto.RegisterType((*UnitListRequest)(nil), "pb_v1.UnitListRequest")
  3536. proto.RegisterType((*UnitItem)(nil), "pb_v1.UnitItem")
  3537. proto.RegisterType((*UnitListReply)(nil), "pb_v1.UnitListReply")
  3538. proto.RegisterType((*HouseAddRequest)(nil), "pb_v1.HouseAddRequest")
  3539. proto.RegisterType((*HouseAddReply)(nil), "pb_v1.HouseAddReply")
  3540. proto.RegisterType((*HouseUpdateRequest)(nil), "pb_v1.HouseUpdateRequest")
  3541. proto.RegisterType((*HouseUpdateReply)(nil), "pb_v1.HouseUpdateReply")
  3542. proto.RegisterType((*HouseDelRequest)(nil), "pb_v1.HouseDelRequest")
  3543. proto.RegisterType((*HouseDelReply)(nil), "pb_v1.HouseDelReply")
  3544. proto.RegisterType((*HouseListRequest)(nil), "pb_v1.HouseListRequest")
  3545. proto.RegisterType((*HouseItem)(nil), "pb_v1.HouseItem")
  3546. proto.RegisterType((*HouseListReply)(nil), "pb_v1.HouseListReply")
  3547. proto.RegisterType((*BatchBuildingItem)(nil), "pb_v1.BatchBuildingItem")
  3548. proto.RegisterType((*BatchUnitItem)(nil), "pb_v1.BatchUnitItem")
  3549. proto.RegisterType((*BatchHouseItem)(nil), "pb_v1.BatchHouseItem")
  3550. proto.RegisterType((*BatchHouseAddRequest)(nil), "pb_v1.BatchHouseAddRequest")
  3551. proto.RegisterType((*BatchHouseAddReply)(nil), "pb_v1.BatchHouseAddReply")
  3552. proto.RegisterType((*HouseInfoRequest)(nil), "pb_v1.HouseInfoRequest")
  3553. proto.RegisterType((*HouseInfoReply)(nil), "pb_v1.HouseInfoReply")
  3554. proto.RegisterType((*HouseChangeStatusRequest)(nil), "pb_v1.HouseChangeStatusRequest")
  3555. proto.RegisterType((*HouseChangeStatusReply)(nil), "pb_v1.HouseChangeStatusReply")
  3556. proto.RegisterType((*GardenHouseholdListRequest)(nil), "pb_v1.GardenHouseholdListRequest")
  3557. proto.RegisterType((*GardenHouseholdItem)(nil), "pb_v1.GardenHouseholdItem")
  3558. proto.RegisterType((*GardenHouseholdListReply)(nil), "pb_v1.GardenHouseholdListReply")
  3559. proto.RegisterType((*GardenHouseholdUserListRequest)(nil), "pb_v1.GardenHouseholdUserListRequest")
  3560. proto.RegisterType((*GardenHouseholdUserItem)(nil), "pb_v1.GardenHouseholdUserItem")
  3561. proto.RegisterType((*GardenHouseholdUserListReply)(nil), "pb_v1.GardenHouseholdUserListReply")
  3562. proto.RegisterType((*SystemMsgAddRequest)(nil), "pb_v1.SystemMsgAddRequest")
  3563. proto.RegisterType((*SystemMsgAddReply)(nil), "pb_v1.SystemMsgAddReply")
  3564. proto.RegisterType((*SystemMsgListRequest)(nil), "pb_v1.SystemMsgListRequest")
  3565. proto.RegisterType((*SystemMsgItem)(nil), "pb_v1.SystemMsgItem")
  3566. proto.RegisterType((*SystemMsgListReply)(nil), "pb_v1.SystemMsgListReply")
  3567. proto.RegisterType((*SystemMsgReadedRequest)(nil), "pb_v1.SystemMsgReadedRequest")
  3568. proto.RegisterType((*SystemMsgReadedReply)(nil), "pb_v1.SystemMsgReadedReply")
  3569. proto.RegisterType((*StatisticRequest)(nil), "pb_v1.StatisticRequest")
  3570. proto.RegisterType((*StatisticWaitFinish)(nil), "pb_v1.StatisticWaitFinish")
  3571. proto.RegisterType((*StatisticReply)(nil), "pb_v1.StatisticReply")
  3572. }
  3573. func init() {
  3574. proto.RegisterFile("garden.proto", fileDescriptor_5b775c37bba03b28)
  3575. }
  3576. var fileDescriptor_5b775c37bba03b28 = []byte{
  3577. // 2090 bytes of a gzipped FileDescriptorProto
  3578. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4f, 0x73, 0xdc, 0x48,
  3579. 0x15, 0x2f, 0x69, 0xfe, 0xea, 0xcd, 0x1f, 0xdb, 0xb2, 0xe3, 0xc8, 0xce, 0x26, 0xf6, 0x2a, 0xc0,
  3580. 0x1a, 0x8a, 0x38, 0x24, 0x50, 0xdc, 0xa0, 0x48, 0xbc, 0x0b, 0xf1, 0x92, 0xe5, 0x30, 0xc1, 0x05,
  3581. 0xc5, 0x81, 0x41, 0x1e, 0xb5, 0x3d, 0x2a, 0x66, 0x24, 0x31, 0xd2, 0x78, 0x77, 0x52, 0xdc, 0xb8,
  3582. 0x72, 0xe3, 0x13, 0x70, 0xa5, 0x8a, 0x0b, 0x17, 0x3e, 0x01, 0x5b, 0x9c, 0xf6, 0xc0, 0x95, 0x2a,
  3583. 0xaa, 0xb8, 0x70, 0xe2, 0x03, 0x70, 0x83, 0x7a, 0xaf, 0xbb, 0xa5, 0x6e, 0x8d, 0x66, 0x3c, 0xe3,
  3584. 0x72, 0x0a, 0xc2, 0x9e, 0x2c, 0xbd, 0x7e, 0xea, 0xee, 0xf7, 0x7b, 0xbf, 0xf7, 0xa7, 0x7b, 0x0c,
  3585. 0xed, 0x4b, 0x6f, 0xe2, 0xb3, 0xf0, 0x38, 0x9e, 0x44, 0x69, 0x64, 0xd7, 0xe2, 0xf3, 0xfe, 0xd5,
  3586. 0x13, 0xf7, 0x9f, 0x06, 0xd8, 0xcf, 0xa7, 0xc1, 0xc8, 0x0f, 0xc2, 0xcb, 0x67, 0xbe, 0xdf, 0x63,
  3587. 0xbf, 0x98, 0xb2, 0x24, 0xb5, 0xef, 0x81, 0xc5, 0xb5, 0xfb, 0x81, 0xef, 0x18, 0x87, 0xc6, 0x51,
  3588. 0xa5, 0xd7, 0xe4, 0x82, 0x53, 0xdf, 0x7e, 0x0f, 0x36, 0xce, 0xc5, 0x27, 0xfd, 0x70, 0x3a, 0x3e,
  3589. 0x67, 0x13, 0xc7, 0x3c, 0x34, 0x8e, 0xac, 0x5e, 0x57, 0x8a, 0x7f, 0x40, 0x52, 0xfb, 0x21, 0x74,
  3590. 0x72, 0x45, 0x6f, 0xcc, 0x9c, 0x0a, 0xa9, 0xb5, 0x33, 0x35, 0x6f, 0xcc, 0x34, 0x25, 0x6f, 0xc2,
  3591. 0x3c, 0xa7, 0x7a, 0x68, 0x1c, 0x19, 0xb9, 0xd2, 0xb3, 0x09, 0xf3, 0xec, 0xaf, 0x82, 0x9d, 0x29,
  3592. 0x4d, 0x13, 0xe6, 0x73, 0xcd, 0x1a, 0x69, 0x6e, 0xca, 0x91, 0xb3, 0x84, 0xf9, 0xa4, 0xed, 0x40,
  3593. 0x63, 0x10, 0x8d, 0xc7, 0x2c, 0x4c, 0x9d, 0x3a, 0xad, 0x28, 0x5f, 0x5d, 0x17, 0x36, 0x35, 0x6b,
  3594. 0xe3, 0xd1, 0xcc, 0xee, 0x82, 0x99, 0x19, 0x69, 0x06, 0xbe, 0xfb, 0x6f, 0x03, 0xee, 0x48, 0xa5,
  3595. 0xb3, 0xd8, 0xf7, 0x52, 0x26, 0x51, 0x29, 0x68, 0xbe, 0xc5, 0x40, 0xe8, 0x0e, 0x6e, 0xe8, 0x0e,
  3596. 0x76, 0xbf, 0x0f, 0xdb, 0x45, 0x00, 0x10, 0xa8, 0x6f, 0x40, 0x3d, 0x9a, 0x04, 0x97, 0x41, 0x48,
  3597. 0x10, 0xb4, 0x9e, 0xbe, 0x73, 0x4c, 0x1c, 0x3a, 0x2e, 0x05, 0xab, 0x27, 0x74, 0xdd, 0x67, 0x39,
  3598. 0xc1, 0xde, 0x67, 0xa3, 0x45, 0x50, 0x6a, 0xfb, 0x31, 0x0b, 0xfb, 0x79, 0x91, 0x7b, 0x8d, 0xa6,
  3599. 0xb8, 0xf9, 0x66, 0x7e, 0x6d, 0xe4, 0xa6, 0xbd, 0x0c, 0x92, 0x54, 0x6e, 0xa7, 0xc4, 0x93, 0x46,
  3600. 0xa9, 0x27, 0x6d, 0xa8, 0xc6, 0xde, 0x25, 0x13, 0x5b, 0xa4, 0x67, 0xdc, 0x3b, 0xfe, 0xed, 0x27,
  3601. 0xc1, 0x6b, 0xee, 0xd9, 0x4a, 0xaf, 0x89, 0x82, 0x57, 0xc1, 0x6b, 0xa6, 0x1b, 0x56, 0x2d, 0x18,
  3602. 0xf6, 0x2f, 0x03, 0xda, 0x72, 0x3b, 0xa7, 0x29, 0x1b, 0xff, 0x3f, 0x31, 0xec, 0x3e, 0xc0, 0x34,
  3603. 0x0c, 0xd2, 0xfe, 0x20, 0x9a, 0x86, 0xa9, 0xa0, 0x98, 0x85, 0x92, 0x13, 0x14, 0xb8, 0x17, 0xb0,
  3604. 0xa5, 0x3b, 0x02, 0x9d, 0xba, 0x03, 0xb5, 0x34, 0x4a, 0xbd, 0x91, 0x40, 0x80, 0xbf, 0x94, 0x62,
  3605. 0xfe, 0x1e, 0x54, 0x47, 0x41, 0x92, 0x3a, 0x95, 0xc3, 0xca, 0x51, 0xeb, 0xe9, 0x76, 0xc1, 0xf9,
  3606. 0x88, 0x65, 0x8f, 0x14, 0xdc, 0xd7, 0xb0, 0xa7, 0x44, 0xfc, 0x47, 0x5e, 0xe8, 0x5d, 0xb2, 0xc9,
  3607. 0x4a, 0x69, 0xee, 0x00, 0x5a, 0x63, 0xae, 0xde, 0x9f, 0x66, 0xa4, 0x04, 0x21, 0x3a, 0x0b, 0x48,
  3608. 0x21, 0x43, 0x2a, 0xf0, 0x85, 0xe7, 0x41, 0x8a, 0x4e, 0x7d, 0xf7, 0xcb, 0x70, 0xb7, 0x6c, 0xed,
  3609. 0xb2, 0xa4, 0xf3, 0x22, 0xdf, 0xe6, 0xfb, 0x6c, 0xb4, 0xce, 0x36, 0xf9, 0x4c, 0x66, 0x36, 0xd3,
  3610. 0x5e, 0xbe, 0xa8, 0x3a, 0x53, 0x3c, 0x9a, 0xb9, 0x53, 0xd8, 0x97, 0x43, 0x42, 0xae, 0xc6, 0xc0,
  3611. 0x75, 0x60, 0xa8, 0xb6, 0x9a, 0x45, 0x5b, 0xed, 0x3d, 0x68, 0x0e, 0xa3, 0x69, 0xc2, 0x72, 0x24,
  3612. 0x1a, 0xf4, 0x7e, 0xea, 0xbb, 0xbf, 0x53, 0x82, 0x4e, 0xac, 0x5b, 0x4a, 0xf6, 0x6b, 0x01, 0xb7,
  3613. 0xa1, 0xaa, 0x70, 0x9b, 0x9e, 0x91, 0x32, 0xf1, 0x30, 0x0a, 0x19, 0x71, 0xd9, 0xea, 0xf1, 0x17,
  3614. 0xb4, 0x65, 0x9a, 0xb0, 0x09, 0x0f, 0x85, 0x1a, 0x8d, 0x34, 0x51, 0x40, 0x61, 0x70, 0x0f, 0xac,
  3615. 0x28, 0x66, 0x61, 0x30, 0xc6, 0xbd, 0x72, 0xd6, 0x36, 0xb9, 0xe0, 0xd4, 0x77, 0x3f, 0x04, 0xa7,
  3616. 0x14, 0x23, 0x74, 0xda, 0xb1, 0x20, 0x9d, 0x41, 0xa4, 0xdb, 0x2f, 0x90, 0x4e, 0x31, 0x4d, 0x70,
  3617. 0xef, 0xcf, 0x06, 0x74, 0xcf, 0xc2, 0x20, 0x5d, 0xb5, 0xb0, 0x5e, 0x0b, 0xf2, 0x01, 0xb4, 0x28,
  3618. 0xa6, 0x44, 0x2a, 0x10, 0x8c, 0x43, 0x91, 0x48, 0x03, 0x68, 0x37, 0x29, 0xa0, 0xdd, 0x55, 0x61,
  3619. 0x37, 0x0e, 0xa3, 0xdd, 0xf2, 0xeb, 0x91, 0x37, 0x63, 0x93, 0x84, 0x60, 0x11, 0x5f, 0xbf, 0x24,
  3620. 0x09, 0xf9, 0xd0, 0x4b, 0xfa, 0xa3, 0xe0, 0x82, 0x47, 0x73, 0xb3, 0xd7, 0x18, 0x7a, 0xc9, 0xcb,
  3621. 0xe0, 0x22, 0x75, 0x1f, 0x40, 0x3b, 0xb3, 0xa4, 0x8c, 0xbf, 0x7f, 0x35, 0x60, 0x0b, 0x15, 0x96,
  3622. 0x17, 0xcc, 0x65, 0x59, 0xfe, 0x4d, 0x1b, 0x57, 0x00, 0xb7, 0x5e, 0xca, 0x60, 0x69, 0x7d, 0x43,
  3623. 0xb7, 0xfe, 0x04, 0x36, 0x54, 0xe3, 0x10, 0x80, 0xaf, 0x15, 0xea, 0x8f, 0x23, 0xd8, 0x30, 0x07,
  3624. 0x42, 0x56, 0x7b, 0xbe, 0xc5, 0xc9, 0x70, 0xd3, 0x22, 0xf8, 0x1d, 0xee, 0x81, 0xac, 0x00, 0xae,
  3625. 0xbf, 0x81, 0xdf, 0x1a, 0xdc, 0x0c, 0x35, 0xe8, 0x0b, 0xa0, 0x1b, 0x73, 0xa0, 0x5f, 0xcb, 0x49,
  3626. 0x99, 0x9d, 0x2b, 0x8b, 0x2a, 0x62, 0x75, 0x59, 0x45, 0xac, 0x15, 0xac, 0xfc, 0x95, 0x09, 0x4d,
  3627. 0xdc, 0xe3, 0xa2, 0x04, 0xf1, 0x5f, 0x8d, 0x8f, 0xb9, 0x22, 0x5b, 0x2f, 0x29, 0xb2, 0x8b, 0x69,
  3628. 0x54, 0x56, 0xcd, 0x9b, 0x65, 0xd5, 0xdc, 0xfd, 0x29, 0x74, 0x72, 0x47, 0xad, 0x57, 0x18, 0x1f,
  3629. 0x6a, 0x85, 0x71, 0x43, 0x21, 0x85, 0x92, 0x98, 0xfe, 0x64, 0xc2, 0xc6, 0x0b, 0xcc, 0xce, 0xb7,
  3630. 0x96, 0x99, 0xee, 0x42, 0x83, 0xb0, 0xcb, 0xb2, 0x7f, 0x1d, 0x5f, 0x4f, 0x7d, 0xfb, 0x5d, 0x68,
  3631. 0xf3, 0xba, 0x20, 0x0c, 0xe6, 0xa0, 0xb7, 0x48, 0x26, 0x9c, 0xb2, 0x03, 0x35, 0x82, 0x5c, 0x20,
  3632. 0xce, 0x5f, 0xb0, 0x7f, 0x98, 0x44, 0xd1, 0x58, 0xf4, 0x0f, 0x3c, 0x5c, 0x2d, 0x94, 0x50, 0xff,
  3633. 0x80, 0xc3, 0x43, 0x6f, 0x34, 0xd2, 0xdb, 0x0b, 0x94, 0xe4, 0xc3, 0xb4, 0x6c, 0x3a, 0x8b, 0x19,
  3634. 0xa1, 0x8c, 0xc3, 0x28, 0xf9, 0xe1, 0x2c, 0x66, 0xf9, 0x30, 0x35, 0x37, 0x16, 0x35, 0x37, 0x7c,
  3635. 0x98, 0xba, 0x9a, 0x2f, 0xc1, 0x06, 0x1f, 0xce, 0x1b, 0x20, 0x20, 0x9d, 0x0e, 0x89, 0x65, 0xf7,
  3636. 0xe3, 0x1e, 0x40, 0x27, 0x87, 0xb1, 0x2c, 0x2d, 0xfe, 0xd1, 0x04, 0x9b, 0x34, 0x96, 0xe7, 0xc5,
  3637. 0x92, 0xf5, 0xcc, 0x92, 0xf5, 0x74, 0x1f, 0x55, 0x0a, 0x3e, 0x7a, 0x2b, 0x91, 0x56, 0x78, 0x03,
  3638. 0x2a, 0x6f, 0xdc, 0x0f, 0x60, 0x53, 0x03, 0x0e, 0xd1, 0x7d, 0x52, 0x48, 0x79, 0x7b, 0x82, 0xdd,
  3639. 0xf3, 0x08, 0x67, 0x39, 0xef, 0xdb, 0x82, 0xe8, 0x37, 0xcd, 0xba, 0xcf, 0x85, 0x87, 0xb3, 0xb4,
  3640. 0x7b, 0x83, 0x3d, 0xfc, 0xdd, 0x14, 0xb6, 0xa8, 0x89, 0xb7, 0xe8, 0x2d, 0x63, 0xde, 0x5b, 0x37,
  3641. 0x0f, 0x3a, 0xdd, 0x27, 0x48, 0x84, 0x9a, 0xea, 0x13, 0x99, 0x37, 0x6a, 0x8b, 0x52, 0x76, 0x7d,
  3642. 0x59, 0xca, 0x6e, 0x2c, 0xe2, 0x5d, 0x92, 0x7a, 0xe9, 0x34, 0x21, 0x0a, 0xd4, 0x84, 0x25, 0xaf,
  3643. 0x48, 0x94, 0xf3, 0xce, 0x52, 0x79, 0xa7, 0xb6, 0x8c, 0xa0, 0xb5, 0x8c, 0xf6, 0x26, 0x54, 0xb0,
  3644. 0x05, 0x6c, 0x91, 0x14, 0x1f, 0x73, 0x93, 0x26, 0x78, 0xd6, 0x68, 0x53, 0x62, 0xe5, 0x26, 0xf5,
  3645. 0xf0, 0x60, 0xff, 0x59, 0x05, 0x2c, 0xc2, 0xf8, 0x66, 0x85, 0xe3, 0x73, 0x99, 0xbe, 0xf2, 0x69,
  3646. 0xa8, 0x98, 0xb5, 0xc8, 0x34, 0x3e, 0x0d, 0x55, 0xb2, 0x5d, 0xa8, 0x0b, 0x97, 0xb6, 0xc9, 0xa5,
  3647. 0xe2, 0x4d, 0xab, 0x70, 0x9d, 0x6b, 0x2b, 0x5c, 0xb7, 0xf4, 0xbc, 0x5a, 0xa8, 0xd4, 0x1b, 0xc5,
  3648. 0x4a, 0xed, 0xfe, 0x0c, 0xba, 0x4a, 0xcc, 0xac, 0x57, 0x03, 0xbf, 0xa0, 0xd5, 0xc0, 0x4d, 0x35,
  3649. 0x42, 0x95, 0x22, 0xf8, 0x99, 0x01, 0x5b, 0xcf, 0xbd, 0x74, 0x30, 0xd4, 0x4e, 0xe0, 0xca, 0x81,
  3650. 0xd6, 0xd0, 0x0f, 0xb4, 0xff, 0xeb, 0x67, 0x71, 0xf7, 0x0f, 0x06, 0x74, 0xc8, 0xa0, 0xac, 0x81,
  3651. 0x52, 0x3d, 0x65, 0x5c, 0xeb, 0x29, 0x73, 0x15, 0x4f, 0xdd, 0x72, 0x4f, 0x85, 0x15, 0xb2, 0x4b,
  3652. 0x9b, 0xce, 0xa3, 0xb7, 0x84, 0xbe, 0x46, 0x19, 0x7d, 0x6f, 0xcf, 0x84, 0xb7, 0x31, 0xca, 0xdd,
  3653. 0x4f, 0x0d, 0xd8, 0xc9, 0x91, 0x5b, 0xb5, 0x93, 0xfb, 0x26, 0x58, 0x12, 0x9d, 0xc4, 0x31, 0x29,
  3654. 0x40, 0xe4, 0xc9, 0x61, 0x2e, 0x18, 0x7a, 0xb9, 0xaa, 0xfd, 0x15, 0xa8, 0x21, 0x60, 0x89, 0x08,
  3655. 0xaa, 0x1d, 0xf5, 0x9b, 0xac, 0xbb, 0xe4, 0x2a, 0xf6, 0x23, 0xa8, 0xd3, 0x36, 0x13, 0xa7, 0x4a,
  3656. 0xca, 0x77, 0x54, 0xe5, 0x3c, 0x0c, 0x85, 0x92, 0xbb, 0x03, 0x76, 0xc1, 0x8e, 0x78, 0x34, 0x73,
  3657. 0x3f, 0x14, 0x45, 0xf3, 0x34, 0xbc, 0x88, 0xa4, 0x65, 0x6a, 0xc5, 0x30, 0xf4, 0x8a, 0xb1, 0xb4,
  3658. 0x8a, 0xff, 0xa6, 0x2e, 0xb2, 0x09, 0x9f, 0x0c, 0xb3, 0xc9, 0xed, 0xdc, 0x70, 0xdf, 0x06, 0xb3,
  3659. 0x0e, 0xa0, 0x25, 0x76, 0xa2, 0xdc, 0x56, 0x00, 0x17, 0x51, 0x0c, 0xed, 0x43, 0x33, 0x9e, 0x44,
  3660. 0x57, 0x41, 0x38, 0x90, 0x27, 0x8e, 0xec, 0x1d, 0xd3, 0xdf, 0x20, 0x48, 0x67, 0xc4, 0x2d, 0xab,
  3661. 0x47, 0xcf, 0x28, 0x23, 0xc6, 0xf0, 0xb3, 0x05, 0x3d, 0xf3, 0x5c, 0x3e, 0x61, 0x2c, 0x25, 0x1e,
  3662. 0x59, 0x3d, 0xf1, 0x86, 0x73, 0x0f, 0xa2, 0x71, 0x90, 0xa6, 0x8c, 0x51, 0x8d, 0xb0, 0x7a, 0xd9,
  3663. 0x7b, 0x4e, 0xf9, 0x56, 0x81, 0xf2, 0x0a, 0x2b, 0xdb, 0x2b, 0xd4, 0x9e, 0xce, 0x82, 0xda, 0xa3,
  3664. 0x44, 0x4e, 0x77, 0x79, 0xe4, 0x6c, 0x2c, 0x8f, 0x9c, 0xcd, 0x62, 0xe4, 0xb8, 0xd0, 0x91, 0xce,
  3665. 0x0d, 0x71, 0x23, 0xce, 0x16, 0x25, 0x3f, 0x81, 0xf3, 0x69, 0x78, 0x96, 0x50, 0x02, 0x96, 0x28,
  3666. 0xf6, 0x07, 0x91, 0xcf, 0x1c, 0x9b, 0x67, 0x69, 0x29, 0x3c, 0x89, 0x7c, 0x6a, 0x7c, 0x10, 0x52,
  3667. 0xae, 0xb0, 0x2d, 0xf0, 0x09, 0xd2, 0x99, 0x1c, 0x44, 0xfb, 0xf8, 0xe0, 0x0e, 0x1f, 0x44, 0x01,
  3668. 0x0d, 0x1e, 0x40, 0x8b, 0x43, 0xcc, 0x87, 0xef, 0x70, 0xaf, 0x72, 0x11, 0x29, 0x3c, 0x84, 0x8e,
  3669. 0x44, 0x9a, 0xab, 0xec, 0xf2, 0xf5, 0xa5, 0x90, 0x94, 0x8a, 0xbd, 0xd5, 0xdd, 0xf9, 0xde, 0xaa,
  3670. 0xd0, 0xdb, 0x38, 0xcb, 0x7a, 0x9b, 0x3d, 0xad, 0xc5, 0xfe, 0x31, 0x38, 0x14, 0x14, 0x27, 0x43,
  3671. 0x2f, 0xbc, 0x14, 0xd3, 0xad, 0x10, 0x69, 0xc5, 0x3d, 0x99, 0x73, 0x7b, 0x72, 0x1d, 0xd8, 0x2d,
  3672. 0x99, 0x19, 0xa3, 0xfa, 0xf7, 0x06, 0xec, 0x7f, 0x8f, 0xbc, 0x40, 0x0a, 0xc3, 0x68, 0xe4, 0xaf,
  3673. 0x7c, 0x07, 0x29, 0x9a, 0x42, 0x33, 0x6f, 0x0a, 0x6f, 0x72, 0xf7, 0x40, 0xf7, 0x82, 0x44, 0x9b,
  3674. 0x1a, 0x6d, 0x9c, 0xee, 0x05, 0x65, 0x5b, 0xac, 0x9c, 0xea, 0xe9, 0xd9, 0xfd, 0x8b, 0x09, 0xdb,
  3675. 0x85, 0xfd, 0x96, 0x76, 0x98, 0xda, 0xc4, 0x66, 0x61, 0xe2, 0xec, 0x8e, 0xb2, 0xa2, 0xde, 0x51,
  3676. 0xca, 0xe5, 0xaa, 0xca, 0x6d, 0xe6, 0x3e, 0x34, 0xbd, 0x38, 0x66, 0xa1, 0x1f, 0x7c, 0xe2, 0xd4,
  3677. 0x0e, 0x2b, 0xc4, 0x28, 0xf1, 0x8e, 0x7e, 0x0c, 0x7c, 0xbe, 0x40, 0x9d, 0xf7, 0x63, 0x81, 0x4f,
  3678. 0xd3, 0xdf, 0x03, 0x2b, 0xf0, 0x65, 0x82, 0xe1, 0x89, 0xa0, 0x19, 0xf8, 0x22, 0xbb, 0xe8, 0x3d,
  3679. 0x5e, 0xb3, 0xd8, 0xe3, 0x7d, 0x11, 0xba, 0x5e, 0x8c, 0x94, 0xcf, 0xdc, 0x69, 0xd1, 0xdc, 0x1d,
  3680. 0x21, 0xcd, 0x49, 0xa6, 0xe6, 0x28, 0x98, 0xcb, 0x51, 0xf3, 0x0d, 0xbb, 0xca, 0xa0, 0xb6, 0x7e,
  3681. 0x21, 0x9c, 0x82, 0x53, 0xca, 0x01, 0xcc, 0xcb, 0xd2, 0xa5, 0x86, 0xe2, 0xd2, 0xac, 0xf3, 0x33,
  3682. 0xd5, 0xce, 0xef, 0x58, 0xeb, 0xf2, 0xe4, 0x6d, 0x6c, 0x89, 0xb3, 0x44, 0xbf, 0xf7, 0x37, 0x13,
  3683. 0x1e, 0x14, 0x46, 0xcf, 0x92, 0x35, 0xae, 0xc0, 0xd7, 0xfe, 0xe9, 0xa7, 0xcc, 0xc1, 0x19, 0x15,
  3684. 0x6a, 0x85, 0xeb, 0xea, 0xdc, 0x83, 0xf5, 0x82, 0x07, 0x35, 0x6a, 0x35, 0xe6, 0x39, 0x3b, 0x0d,
  3685. 0x7c, 0x3c, 0x74, 0x55, 0x70, 0x53, 0xf8, 0xac, 0x21, 0x6f, 0xcd, 0xc5, 0x2e, 0xfb, 0x64, 0x30,
  3686. 0x9a, 0xfa, 0xac, 0x4f, 0x9f, 0x01, 0x7d, 0xd6, 0x12, 0xb2, 0x33, 0xfc, 0xba, 0x90, 0x4f, 0x5a,
  3687. 0xcb, 0xf2, 0x49, 0x5b, 0xcb, 0x27, 0xff, 0x30, 0xe0, 0x6e, 0x09, 0xc0, 0x6f, 0x32, 0x5e, 0x94,
  3688. 0x98, 0xa8, 0x2d, 0x8e, 0x89, 0x22, 0xa2, 0x05, 0x36, 0x37, 0xe6, 0xd8, 0xbc, 0x3c, 0x68, 0xdc,
  3689. 0x5f, 0xc2, 0x3b, 0x0b, 0x89, 0xb4, 0xde, 0x49, 0xe5, 0xa9, 0xc6, 0xe1, 0x07, 0xe5, 0x1c, 0x96,
  3690. 0x20, 0x0a, 0x1e, 0x4f, 0x60, 0xfb, 0xd5, 0x2c, 0x49, 0xd9, 0xf8, 0xa3, 0x64, 0xe5, 0x9f, 0xec,
  3691. 0xe9, 0x54, 0x13, 0xa6, 0x78, 0xaa, 0x31, 0xe5, 0xa9, 0x86, 0x5e, 0xa9, 0x81, 0xc0, 0xea, 0x23,
  3692. 0x7e, 0x53, 0xc1, 0x67, 0x19, 0xcc, 0xd5, 0x2c, 0x98, 0xdd, 0x6d, 0xd8, 0xd2, 0xd7, 0xc4, 0x5c,
  3693. 0x7e, 0x05, 0x3b, 0x99, 0xf0, 0xcd, 0x45, 0xd1, 0xfc, 0x66, 0x46, 0xd0, 0xc9, 0xd6, 0x2d, 0x25,
  3694. 0xd7, 0x62, 0x6b, 0xef, 0x03, 0x0c, 0x26, 0xcc, 0x4b, 0xb1, 0x35, 0x49, 0x85, 0xcd, 0x96, 0x90,
  3695. 0x3c, 0xcb, 0xc1, 0xa8, 0xe5, 0x60, 0xb8, 0x43, 0xb0, 0x0b, 0x56, 0xae, 0xe7, 0xe2, 0x23, 0xcd,
  3696. 0xc5, 0xb2, 0x6f, 0xd6, 0x0c, 0x10, 0x8e, 0xfd, 0x00, 0x76, 0x33, 0x71, 0x8f, 0x79, 0x3e, 0xf3,
  3697. 0xd7, 0xfa, 0x01, 0xb0, 0x22, 0xee, 0x1c, 0x77, 0x15, 0xb7, 0xc8, 0x69, 0xd0, 0x5d, 0x8f, 0x61,
  3698. 0x13, 0xb3, 0x79, 0x90, 0xa4, 0xc1, 0x60, 0x95, 0x89, 0xdd, 0x9f, 0xc3, 0x76, 0xf6, 0xc1, 0x8f,
  3699. 0xbc, 0x20, 0xfd, 0x6e, 0x10, 0x06, 0xc9, 0x10, 0x8d, 0xa4, 0x80, 0xe3, 0xc7, 0x63, 0x7a, 0x46,
  3700. 0x5c, 0x3f, 0xf6, 0xb2, 0x1f, 0x7b, 0xb9, 0xf9, 0x16, 0x4a, 0x78, 0xbb, 0xf6, 0x2e, 0xb4, 0x2f,
  3701. 0xe8, 0x63, 0xa1, 0xc0, 0x7d, 0xdc, 0xe2, 0x32, 0xfe, 0x7b, 0xf0, 0xa7, 0x06, 0x74, 0x95, 0xed,
  3702. 0x21, 0xc6, 0x07, 0xc0, 0x9b, 0x0a, 0xf1, 0x91, 0xf8, 0x6d, 0x82, 0x44, 0x59, 0x17, 0x48, 0x49,
  3703. 0x44, 0x5b, 0x15, 0x25, 0x7c, 0x18, 0x5b, 0xb0, 0xd8, 0x1b, 0x30, 0x6d, 0x51, 0x20, 0x11, 0x57,
  3704. 0x78, 0x08, 0x9d, 0x2b, 0x36, 0x0c, 0x06, 0x23, 0xa9, 0xc2, 0x49, 0xd6, 0x16, 0x42, 0xae, 0x24,
  3705. 0xcb, 0x4c, 0x4d, 0x2b, 0x33, 0x25, 0xc0, 0x70, 0x2f, 0x3e, 0x3f, 0xf8, 0xc9, 0xfd, 0x78, 0x12,
  3706. 0xc5, 0x6c, 0x92, 0xce, 0x1e, 0x25, 0xe4, 0x87, 0x47, 0x97, 0x5e, 0xca, 0x3e, 0xf6, 0x66, 0x8f,
  3707. 0xe3, 0xf3, 0xc7, 0x57, 0x4f, 0xce, 0xeb, 0xf4, 0x0f, 0x38, 0x5f, 0xff, 0x4f, 0x00, 0x00, 0x00,
  3708. 0xff, 0xff, 0x29, 0x56, 0x85, 0xeb, 0x90, 0x23, 0x00, 0x00,
  3709. }