garden.pb.go 105 KB

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