garden.pb.go 114 KB

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