garden.pb.go 114 KB

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