garden.pb.go 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  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. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1917. XXX_unrecognized []byte `json:"-"`
  1918. XXX_sizecache int32 `json:"-"`
  1919. }
  1920. func (m *HouseInfoRequest) Reset() { *m = HouseInfoRequest{} }
  1921. func (m *HouseInfoRequest) String() string { return proto.CompactTextString(m) }
  1922. func (*HouseInfoRequest) ProtoMessage() {}
  1923. func (*HouseInfoRequest) Descriptor() ([]byte, []int) {
  1924. return fileDescriptor_5b775c37bba03b28, []int{32}
  1925. }
  1926. func (m *HouseInfoRequest) XXX_Unmarshal(b []byte) error {
  1927. return xxx_messageInfo_HouseInfoRequest.Unmarshal(m, b)
  1928. }
  1929. func (m *HouseInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1930. return xxx_messageInfo_HouseInfoRequest.Marshal(b, m, deterministic)
  1931. }
  1932. func (m *HouseInfoRequest) XXX_Merge(src proto.Message) {
  1933. xxx_messageInfo_HouseInfoRequest.Merge(m, src)
  1934. }
  1935. func (m *HouseInfoRequest) XXX_Size() int {
  1936. return xxx_messageInfo_HouseInfoRequest.Size(m)
  1937. }
  1938. func (m *HouseInfoRequest) XXX_DiscardUnknown() {
  1939. xxx_messageInfo_HouseInfoRequest.DiscardUnknown(m)
  1940. }
  1941. var xxx_messageInfo_HouseInfoRequest proto.InternalMessageInfo
  1942. func (m *HouseInfoRequest) GetHouseId() int64 {
  1943. if m != nil {
  1944. return m.HouseId
  1945. }
  1946. return 0
  1947. }
  1948. type HouseInfoReply struct {
  1949. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1950. BuildingNumber string `protobuf:"bytes,2,opt,name=building_number,json=buildingNumber,proto3" json:"building_number"`
  1951. UnitNumber int64 `protobuf:"varint,3,opt,name=unit_number,json=unitNumber,proto3" json:"unit_number"`
  1952. HouseNumber string `protobuf:"bytes,4,opt,name=house_number,json=houseNumber,proto3" json:"house_number"`
  1953. GardenName string `protobuf:"bytes,5,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  1954. Province string `protobuf:"bytes,6,opt,name=province,proto3" json:"province"`
  1955. City string `protobuf:"bytes,7,opt,name=city,proto3" json:"city"`
  1956. Area string `protobuf:"bytes,8,opt,name=area,proto3" json:"area"`
  1957. Street string `protobuf:"bytes,9,opt,name=street,proto3" json:"street"`
  1958. Comittee string `protobuf:"bytes,10,opt,name=comittee,proto3" json:"comittee"`
  1959. Layer int64 `protobuf:"varint,11,opt,name=layer,proto3" json:"layer"`
  1960. HouseArea float64 `protobuf:"fixed64,12,opt,name=house_area,json=houseArea,proto3" json:"house_area"`
  1961. HouseUsedArea float64 `protobuf:"fixed64,13,opt,name=house_used_area,json=houseUsedArea,proto3" json:"house_used_area"`
  1962. RoomCount int64 `protobuf:"varint,14,opt,name=room_count,json=roomCount,proto3" json:"room_count"`
  1963. // 几厅
  1964. HallCount int64 `protobuf:"varint,15,opt,name=hall_count,json=hallCount,proto3" json:"hall_count"`
  1965. // 房屋类型 1 住宅 2 公寓 3 商业 4 洋房 5 别墅
  1966. HouseType int64 `protobuf:"varint,16,opt,name=house_type,json=houseType,proto3" json:"house_type"`
  1967. GardenInUse bool `protobuf:"varint,17,opt,name=garden_in_use,json=gardenInUse,proto3" json:"garden_in_use"`
  1968. ProvinceCode string `protobuf:"bytes,18,opt,name=province_code,json=provinceCode,proto3" json:"province_code"`
  1969. CityCode string `protobuf:"bytes,19,opt,name=city_code,json=cityCode,proto3" json:"city_code"`
  1970. AreaCode string `protobuf:"bytes,20,opt,name=area_code,json=areaCode,proto3" json:"area_code"`
  1971. StreetCode string `protobuf:"bytes,21,opt,name=street_code,json=streetCode,proto3" json:"street_code"`
  1972. ComitteeCode string `protobuf:"bytes,22,opt,name=comittee_code,json=comitteeCode,proto3" json:"comittee_code"`
  1973. HouseStatus int32 `protobuf:"varint,23,opt,name=house_status,json=houseStatus,proto3" json:"house_status"`
  1974. BuildingId int64 `protobuf:"varint,24,opt,name=building_id,json=buildingId,proto3" json:"building_id"`
  1975. UnitId int64 `protobuf:"varint,25,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1976. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1977. XXX_unrecognized []byte `json:"-"`
  1978. XXX_sizecache int32 `json:"-"`
  1979. }
  1980. func (m *HouseInfoReply) Reset() { *m = HouseInfoReply{} }
  1981. func (m *HouseInfoReply) String() string { return proto.CompactTextString(m) }
  1982. func (*HouseInfoReply) ProtoMessage() {}
  1983. func (*HouseInfoReply) Descriptor() ([]byte, []int) {
  1984. return fileDescriptor_5b775c37bba03b28, []int{33}
  1985. }
  1986. func (m *HouseInfoReply) XXX_Unmarshal(b []byte) error {
  1987. return xxx_messageInfo_HouseInfoReply.Unmarshal(m, b)
  1988. }
  1989. func (m *HouseInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1990. return xxx_messageInfo_HouseInfoReply.Marshal(b, m, deterministic)
  1991. }
  1992. func (m *HouseInfoReply) XXX_Merge(src proto.Message) {
  1993. xxx_messageInfo_HouseInfoReply.Merge(m, src)
  1994. }
  1995. func (m *HouseInfoReply) XXX_Size() int {
  1996. return xxx_messageInfo_HouseInfoReply.Size(m)
  1997. }
  1998. func (m *HouseInfoReply) XXX_DiscardUnknown() {
  1999. xxx_messageInfo_HouseInfoReply.DiscardUnknown(m)
  2000. }
  2001. var xxx_messageInfo_HouseInfoReply proto.InternalMessageInfo
  2002. func (m *HouseInfoReply) GetGardenId() int64 {
  2003. if m != nil {
  2004. return m.GardenId
  2005. }
  2006. return 0
  2007. }
  2008. func (m *HouseInfoReply) GetBuildingNumber() string {
  2009. if m != nil {
  2010. return m.BuildingNumber
  2011. }
  2012. return ""
  2013. }
  2014. func (m *HouseInfoReply) GetUnitNumber() int64 {
  2015. if m != nil {
  2016. return m.UnitNumber
  2017. }
  2018. return 0
  2019. }
  2020. func (m *HouseInfoReply) GetHouseNumber() string {
  2021. if m != nil {
  2022. return m.HouseNumber
  2023. }
  2024. return ""
  2025. }
  2026. func (m *HouseInfoReply) GetGardenName() string {
  2027. if m != nil {
  2028. return m.GardenName
  2029. }
  2030. return ""
  2031. }
  2032. func (m *HouseInfoReply) GetProvince() string {
  2033. if m != nil {
  2034. return m.Province
  2035. }
  2036. return ""
  2037. }
  2038. func (m *HouseInfoReply) GetCity() string {
  2039. if m != nil {
  2040. return m.City
  2041. }
  2042. return ""
  2043. }
  2044. func (m *HouseInfoReply) GetArea() string {
  2045. if m != nil {
  2046. return m.Area
  2047. }
  2048. return ""
  2049. }
  2050. func (m *HouseInfoReply) GetStreet() string {
  2051. if m != nil {
  2052. return m.Street
  2053. }
  2054. return ""
  2055. }
  2056. func (m *HouseInfoReply) GetComittee() string {
  2057. if m != nil {
  2058. return m.Comittee
  2059. }
  2060. return ""
  2061. }
  2062. func (m *HouseInfoReply) GetLayer() int64 {
  2063. if m != nil {
  2064. return m.Layer
  2065. }
  2066. return 0
  2067. }
  2068. func (m *HouseInfoReply) GetHouseArea() float64 {
  2069. if m != nil {
  2070. return m.HouseArea
  2071. }
  2072. return 0
  2073. }
  2074. func (m *HouseInfoReply) GetHouseUsedArea() float64 {
  2075. if m != nil {
  2076. return m.HouseUsedArea
  2077. }
  2078. return 0
  2079. }
  2080. func (m *HouseInfoReply) GetRoomCount() int64 {
  2081. if m != nil {
  2082. return m.RoomCount
  2083. }
  2084. return 0
  2085. }
  2086. func (m *HouseInfoReply) GetHallCount() int64 {
  2087. if m != nil {
  2088. return m.HallCount
  2089. }
  2090. return 0
  2091. }
  2092. func (m *HouseInfoReply) GetHouseType() int64 {
  2093. if m != nil {
  2094. return m.HouseType
  2095. }
  2096. return 0
  2097. }
  2098. func (m *HouseInfoReply) GetGardenInUse() bool {
  2099. if m != nil {
  2100. return m.GardenInUse
  2101. }
  2102. return false
  2103. }
  2104. func (m *HouseInfoReply) GetProvinceCode() string {
  2105. if m != nil {
  2106. return m.ProvinceCode
  2107. }
  2108. return ""
  2109. }
  2110. func (m *HouseInfoReply) GetCityCode() string {
  2111. if m != nil {
  2112. return m.CityCode
  2113. }
  2114. return ""
  2115. }
  2116. func (m *HouseInfoReply) GetAreaCode() string {
  2117. if m != nil {
  2118. return m.AreaCode
  2119. }
  2120. return ""
  2121. }
  2122. func (m *HouseInfoReply) GetStreetCode() string {
  2123. if m != nil {
  2124. return m.StreetCode
  2125. }
  2126. return ""
  2127. }
  2128. func (m *HouseInfoReply) GetComitteeCode() string {
  2129. if m != nil {
  2130. return m.ComitteeCode
  2131. }
  2132. return ""
  2133. }
  2134. func (m *HouseInfoReply) GetHouseStatus() int32 {
  2135. if m != nil {
  2136. return m.HouseStatus
  2137. }
  2138. return 0
  2139. }
  2140. func (m *HouseInfoReply) GetBuildingId() int64 {
  2141. if m != nil {
  2142. return m.BuildingId
  2143. }
  2144. return 0
  2145. }
  2146. func (m *HouseInfoReply) GetUnitId() int64 {
  2147. if m != nil {
  2148. return m.UnitId
  2149. }
  2150. return 0
  2151. }
  2152. type HouseChangeStatusRequest struct {
  2153. HouseId int64 `protobuf:"varint,1,opt,name=house_id,json=houseId,proto3" json:"house_id"`
  2154. HouseStatus int32 `protobuf:"varint,2,opt,name=house_status,json=houseStatus,proto3" json:"house_status"`
  2155. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2156. XXX_unrecognized []byte `json:"-"`
  2157. XXX_sizecache int32 `json:"-"`
  2158. }
  2159. func (m *HouseChangeStatusRequest) Reset() { *m = HouseChangeStatusRequest{} }
  2160. func (m *HouseChangeStatusRequest) String() string { return proto.CompactTextString(m) }
  2161. func (*HouseChangeStatusRequest) ProtoMessage() {}
  2162. func (*HouseChangeStatusRequest) Descriptor() ([]byte, []int) {
  2163. return fileDescriptor_5b775c37bba03b28, []int{34}
  2164. }
  2165. func (m *HouseChangeStatusRequest) XXX_Unmarshal(b []byte) error {
  2166. return xxx_messageInfo_HouseChangeStatusRequest.Unmarshal(m, b)
  2167. }
  2168. func (m *HouseChangeStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2169. return xxx_messageInfo_HouseChangeStatusRequest.Marshal(b, m, deterministic)
  2170. }
  2171. func (m *HouseChangeStatusRequest) XXX_Merge(src proto.Message) {
  2172. xxx_messageInfo_HouseChangeStatusRequest.Merge(m, src)
  2173. }
  2174. func (m *HouseChangeStatusRequest) XXX_Size() int {
  2175. return xxx_messageInfo_HouseChangeStatusRequest.Size(m)
  2176. }
  2177. func (m *HouseChangeStatusRequest) XXX_DiscardUnknown() {
  2178. xxx_messageInfo_HouseChangeStatusRequest.DiscardUnknown(m)
  2179. }
  2180. var xxx_messageInfo_HouseChangeStatusRequest proto.InternalMessageInfo
  2181. func (m *HouseChangeStatusRequest) GetHouseId() int64 {
  2182. if m != nil {
  2183. return m.HouseId
  2184. }
  2185. return 0
  2186. }
  2187. func (m *HouseChangeStatusRequest) GetHouseStatus() int32 {
  2188. if m != nil {
  2189. return m.HouseStatus
  2190. }
  2191. return 0
  2192. }
  2193. type HouseChangeStatusReply struct {
  2194. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2195. XXX_unrecognized []byte `json:"-"`
  2196. XXX_sizecache int32 `json:"-"`
  2197. }
  2198. func (m *HouseChangeStatusReply) Reset() { *m = HouseChangeStatusReply{} }
  2199. func (m *HouseChangeStatusReply) String() string { return proto.CompactTextString(m) }
  2200. func (*HouseChangeStatusReply) ProtoMessage() {}
  2201. func (*HouseChangeStatusReply) Descriptor() ([]byte, []int) {
  2202. return fileDescriptor_5b775c37bba03b28, []int{35}
  2203. }
  2204. func (m *HouseChangeStatusReply) XXX_Unmarshal(b []byte) error {
  2205. return xxx_messageInfo_HouseChangeStatusReply.Unmarshal(m, b)
  2206. }
  2207. func (m *HouseChangeStatusReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2208. return xxx_messageInfo_HouseChangeStatusReply.Marshal(b, m, deterministic)
  2209. }
  2210. func (m *HouseChangeStatusReply) XXX_Merge(src proto.Message) {
  2211. xxx_messageInfo_HouseChangeStatusReply.Merge(m, src)
  2212. }
  2213. func (m *HouseChangeStatusReply) XXX_Size() int {
  2214. return xxx_messageInfo_HouseChangeStatusReply.Size(m)
  2215. }
  2216. func (m *HouseChangeStatusReply) XXX_DiscardUnknown() {
  2217. xxx_messageInfo_HouseChangeStatusReply.DiscardUnknown(m)
  2218. }
  2219. var xxx_messageInfo_HouseChangeStatusReply proto.InternalMessageInfo
  2220. func init() {
  2221. proto.RegisterType((*BuildingAddRequest)(nil), "pb_v1.BuildingAddRequest")
  2222. proto.RegisterType((*BuildingAddReply)(nil), "pb_v1.BuildingAddReply")
  2223. proto.RegisterType((*BuildingUpdateRequest)(nil), "pb_v1.BuildingUpdateRequest")
  2224. proto.RegisterType((*BuildingUpdateReply)(nil), "pb_v1.BuildingUpdateReply")
  2225. proto.RegisterType((*BuildingDelRequest)(nil), "pb_v1.BuildingDelRequest")
  2226. proto.RegisterType((*BuildingDelReply)(nil), "pb_v1.BuildingDelReply")
  2227. proto.RegisterType((*BuildingListRequest)(nil), "pb_v1.BuildingListRequest")
  2228. proto.RegisterType((*BuildingItem)(nil), "pb_v1.BuildingItem")
  2229. proto.RegisterType((*BuildingListReply)(nil), "pb_v1.BuildingListReply")
  2230. proto.RegisterType((*UnitAddRequest)(nil), "pb_v1.UnitAddRequest")
  2231. proto.RegisterType((*UnitAddReply)(nil), "pb_v1.UnitAddReply")
  2232. proto.RegisterType((*UnitUpdateRequest)(nil), "pb_v1.UnitUpdateRequest")
  2233. proto.RegisterType((*UnitUpdateReply)(nil), "pb_v1.UnitUpdateReply")
  2234. proto.RegisterType((*UnitDelRequest)(nil), "pb_v1.UnitDelRequest")
  2235. proto.RegisterType((*UnitDelReply)(nil), "pb_v1.UnitDelReply")
  2236. proto.RegisterType((*UnitListRequest)(nil), "pb_v1.UnitListRequest")
  2237. proto.RegisterType((*UnitItem)(nil), "pb_v1.UnitItem")
  2238. proto.RegisterType((*UnitListReply)(nil), "pb_v1.UnitListReply")
  2239. proto.RegisterType((*HouseAddRequest)(nil), "pb_v1.HouseAddRequest")
  2240. proto.RegisterType((*HouseAddReply)(nil), "pb_v1.HouseAddReply")
  2241. proto.RegisterType((*HouseUpdateRequest)(nil), "pb_v1.HouseUpdateRequest")
  2242. proto.RegisterType((*HouseUpdateReply)(nil), "pb_v1.HouseUpdateReply")
  2243. proto.RegisterType((*HouseDelRequest)(nil), "pb_v1.HouseDelRequest")
  2244. proto.RegisterType((*HouseDelReply)(nil), "pb_v1.HouseDelReply")
  2245. proto.RegisterType((*HouseListRequest)(nil), "pb_v1.HouseListRequest")
  2246. proto.RegisterType((*HouseItem)(nil), "pb_v1.HouseItem")
  2247. proto.RegisterType((*HouseListReply)(nil), "pb_v1.HouseListReply")
  2248. proto.RegisterType((*BatchBuildingItem)(nil), "pb_v1.BatchBuildingItem")
  2249. proto.RegisterType((*BatchUnitItem)(nil), "pb_v1.BatchUnitItem")
  2250. proto.RegisterType((*BatchHouseItem)(nil), "pb_v1.BatchHouseItem")
  2251. proto.RegisterType((*BatchHouseAddRequest)(nil), "pb_v1.BatchHouseAddRequest")
  2252. proto.RegisterType((*BatchHouseAddReply)(nil), "pb_v1.BatchHouseAddReply")
  2253. proto.RegisterType((*HouseInfoRequest)(nil), "pb_v1.HouseInfoRequest")
  2254. proto.RegisterType((*HouseInfoReply)(nil), "pb_v1.HouseInfoReply")
  2255. proto.RegisterType((*HouseChangeStatusRequest)(nil), "pb_v1.HouseChangeStatusRequest")
  2256. proto.RegisterType((*HouseChangeStatusReply)(nil), "pb_v1.HouseChangeStatusReply")
  2257. }
  2258. func init() {
  2259. proto.RegisterFile("garden.proto", fileDescriptor_5b775c37bba03b28)
  2260. }
  2261. var fileDescriptor_5b775c37bba03b28 = []byte{
  2262. // 1331 bytes of a gzipped FileDescriptorProto
  2263. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0xcd, 0x6e, 0x23, 0xc5,
  2264. 0x13, 0x57, 0xfb, 0x7b, 0xca, 0x5f, 0xc9, 0xac, 0x37, 0x3b, 0xf9, 0xef, 0x9f, 0x4d, 0x98, 0x20,
  2265. 0x36, 0x42, 0x24, 0x4b, 0x16, 0xc4, 0x0d, 0x44, 0x12, 0x90, 0xd6, 0x22, 0xe2, 0xe0, 0x25, 0x12,
  2266. 0xe2, 0x80, 0x99, 0x78, 0x3a, 0xf6, 0x48, 0xf6, 0xcc, 0x30, 0xd3, 0x0e, 0xf2, 0x3e, 0x03, 0x37,
  2267. 0x9e, 0x80, 0x37, 0x40, 0x5c, 0x38, 0x72, 0x02, 0x71, 0xe2, 0x05, 0x78, 0x02, 0x24, 0x1e, 0x80,
  2268. 0x1b, 0xa8, 0xab, 0xbb, 0xe7, 0x3b, 0xde, 0xc4, 0xca, 0x0a, 0x02, 0xa7, 0x4c, 0x57, 0xff, 0x66,
  2269. 0xba, 0xea, 0x57, 0x55, 0xbf, 0xae, 0x18, 0x5a, 0x63, 0x2b, 0xb0, 0xa9, 0xbb, 0xef, 0x07, 0x1e,
  2270. 0xf3, 0xf4, 0xaa, 0x7f, 0x36, 0xbc, 0x38, 0x30, 0x7f, 0x27, 0xa0, 0x1f, 0xcd, 0x9d, 0xa9, 0xed,
  2271. 0xb8, 0xe3, 0x43, 0xdb, 0x1e, 0xd0, 0x2f, 0xe6, 0x34, 0x64, 0xfa, 0x7d, 0xd0, 0x04, 0x7a, 0xe8,
  2272. 0xd8, 0x06, 0xd9, 0x26, 0xbb, 0xe5, 0x41, 0x43, 0x18, 0xfa, 0xb6, 0xfe, 0x10, 0xba, 0x67, 0xf2,
  2273. 0x95, 0xa1, 0x3b, 0x9f, 0x9d, 0xd1, 0xc0, 0x28, 0x6d, 0x93, 0x5d, 0x6d, 0xd0, 0x51, 0xe6, 0x8f,
  2274. 0xd0, 0xaa, 0xef, 0x40, 0x3b, 0x06, 0x5a, 0x33, 0x6a, 0x94, 0x11, 0xd6, 0x8a, 0x60, 0xd6, 0x8c,
  2275. 0xa6, 0x40, 0x56, 0x40, 0x2d, 0xa3, 0xb2, 0x4d, 0x76, 0x49, 0x0c, 0x3a, 0x0c, 0xa8, 0xa5, 0xbf,
  2276. 0x0e, 0x7a, 0x04, 0x9a, 0x87, 0xd4, 0x16, 0xc8, 0x2a, 0x22, 0xd7, 0xd4, 0xce, 0x69, 0x48, 0x6d,
  2277. 0x44, 0x1b, 0x50, 0x1f, 0x79, 0xb3, 0x19, 0x75, 0x99, 0x51, 0xc3, 0x13, 0xd5, 0xd2, 0x34, 0x61,
  2278. 0x2d, 0x15, 0xad, 0x3f, 0x5d, 0xe8, 0x1d, 0x28, 0x45, 0x41, 0x96, 0x1c, 0xdb, 0xfc, 0x93, 0xc0,
  2279. 0x5d, 0x05, 0x3a, 0xf5, 0x6d, 0x8b, 0x51, 0xc5, 0x4a, 0x06, 0x79, 0x8b, 0x89, 0x48, 0x27, 0xb8,
  2280. 0x9e, 0x4e, 0xb0, 0xf9, 0x21, 0xdc, 0xc9, 0x12, 0xc0, 0x89, 0x7a, 0x0b, 0x6a, 0x5e, 0xe0, 0x8c,
  2281. 0x1d, 0x17, 0x29, 0x68, 0x3e, 0xfe, 0xff, 0x3e, 0xd6, 0xd0, 0x7e, 0x21, 0x59, 0x03, 0x89, 0x35,
  2282. 0x0f, 0xe3, 0x02, 0x7b, 0x9f, 0x4e, 0x2f, 0xa3, 0x32, 0xe5, 0x4f, 0x29, 0xe3, 0xcf, 0x93, 0x38,
  2283. 0x6b, 0xf8, 0x89, 0xd5, 0x9d, 0xf9, 0x8a, 0xc4, 0xa1, 0x9d, 0x38, 0x21, 0x53, 0xee, 0x14, 0x64,
  2284. 0x92, 0x14, 0x66, 0x52, 0x87, 0x8a, 0x6f, 0x8d, 0xa9, 0x74, 0x11, 0x9f, 0xb9, 0xef, 0xfc, 0xef,
  2285. 0x30, 0x74, 0x9e, 0x89, 0xcc, 0x96, 0x07, 0x0d, 0x6e, 0x78, 0xea, 0x3c, 0xa3, 0xe9, 0xc0, 0x2a,
  2286. 0x99, 0xc0, 0xfe, 0x20, 0xd0, 0x52, 0xee, 0xf4, 0x19, 0x9d, 0xfd, 0x9b, 0x2a, 0xec, 0x25, 0x80,
  2287. 0xb9, 0xeb, 0xb0, 0xe1, 0xc8, 0x9b, 0xbb, 0x4c, 0x96, 0x98, 0xc6, 0x2d, 0xc7, 0xdc, 0x60, 0x9e,
  2288. 0xc3, 0x7a, 0x3a, 0x11, 0x3c, 0xa9, 0x3d, 0xa8, 0x32, 0x8f, 0x59, 0x53, 0xc9, 0x80, 0x58, 0x14,
  2289. 0x72, 0xfe, 0x10, 0x2a, 0x53, 0x27, 0x64, 0x46, 0x79, 0xbb, 0xbc, 0xdb, 0x7c, 0x7c, 0x27, 0x93,
  2290. 0x7c, 0xce, 0xe5, 0x00, 0x01, 0xe6, 0xcf, 0x04, 0x3a, 0xa7, 0xae, 0xc3, 0xae, 0x2a, 0x6e, 0x5b,
  2291. 0xd0, 0x8c, 0xc2, 0x8f, 0x4a, 0x11, 0x94, 0x49, 0x00, 0x30, 0x2e, 0x99, 0x0e, 0x91, 0x6f, 0x0c,
  2292. 0x55, 0xa6, 0xe2, 0x3e, 0x68, 0x02, 0xc0, 0xd3, 0x50, 0x41, 0x52, 0x1a, 0xb8, 0xcd, 0x53, 0xa0,
  2293. 0xde, 0x9e, 0x5a, 0x0b, 0x1a, 0x84, 0x48, 0xab, 0x7c, 0xfb, 0x04, 0x2d, 0xfa, 0x26, 0x34, 0x26,
  2294. 0x56, 0x38, 0x9c, 0x3a, 0xe7, 0x82, 0xd1, 0xc6, 0xa0, 0x3e, 0xb1, 0xc2, 0x13, 0xe7, 0x9c, 0x99,
  2295. 0x0f, 0xa0, 0x15, 0x45, 0x52, 0x24, 0x5c, 0xbf, 0x12, 0x58, 0xe7, 0x80, 0xe5, 0xa2, 0xb5, 0xac,
  2296. 0xd3, 0x5e, 0x74, 0x70, 0x19, 0x72, 0x6b, 0x39, 0x72, 0x93, 0xd1, 0xd7, 0xd3, 0xd1, 0x1f, 0x43,
  2297. 0x37, 0x19, 0x1c, 0x27, 0xe0, 0x8d, 0x8c, 0x06, 0x18, 0xb2, 0x0c, 0x72, 0x24, 0x44, 0xfd, 0xff,
  2298. 0x8e, 0x28, 0x86, 0x55, 0x85, 0xe8, 0x3d, 0x91, 0x81, 0x48, 0x84, 0xae, 0xef, 0xc0, 0x37, 0x44,
  2299. 0x84, 0x91, 0x14, 0x9f, 0x0c, 0xe9, 0x24, 0x47, 0xfa, 0x73, 0x6b, 0x52, 0x75, 0x48, 0xf9, 0x32,
  2300. 0x55, 0xaa, 0x2c, 0x53, 0xa5, 0x6a, 0x26, 0xca, 0x1f, 0x08, 0x34, 0xb8, 0x8f, 0x85, 0x8a, 0xf4,
  2301. 0x77, 0xf7, 0x47, 0x4e, 0xe8, 0x6a, 0x79, 0xa1, 0x33, 0x3f, 0x83, 0x76, 0x4c, 0xf2, 0xf5, 0x84,
  2302. 0x65, 0x27, 0x25, 0x2c, 0xdd, 0x44, 0x42, 0x13, 0xa2, 0xf2, 0x63, 0x09, 0xba, 0x4f, 0xbc, 0x79,
  2303. 0x48, 0x6f, 0x4c, 0x55, 0xee, 0x41, 0x1d, 0xe3, 0x76, 0x6c, 0xc9, 0x58, 0x8d, 0x2f, 0xfb, 0xb6,
  2304. 0xfe, 0x32, 0xb4, 0x26, 0xfc, 0x24, 0xc5, 0xa7, 0x20, 0xac, 0x89, 0x36, 0x49, 0x68, 0x0f, 0xaa,
  2305. 0x48, 0x97, 0x64, 0x4b, 0x2c, 0xb8, 0xfe, 0x06, 0x9e, 0x37, 0x93, 0xfa, 0x2b, 0x5a, 0x4d, 0xe3,
  2306. 0x16, 0xd4, 0x5f, 0xbe, 0x3d, 0xb1, 0xa6, 0xd3, 0xb4, 0x3c, 0x73, 0x4b, 0xbc, 0x8d, 0xc7, 0xb2,
  2307. 0x85, 0x4f, 0x8d, 0x86, 0xdc, 0xe6, 0x96, 0x8f, 0x17, 0x3e, 0x8d, 0xb7, 0xf1, 0x72, 0xd0, 0xf0,
  2308. 0x72, 0x10, 0xdb, 0x78, 0x2b, 0xbc, 0x0a, 0x5d, 0xb1, 0x1d, 0x5f, 0x20, 0x80, 0x98, 0x36, 0x9a,
  2309. 0xd5, 0xed, 0x61, 0x6e, 0x41, 0x3b, 0xa6, 0xb1, 0x48, 0xd2, 0xbe, 0x2f, 0x81, 0x8e, 0x88, 0xe5,
  2310. 0x9a, 0x56, 0x70, 0x5e, 0xa9, 0xe0, 0xbc, 0x74, 0x8e, 0xca, 0x99, 0x1c, 0xdd, 0x4a, 0xa6, 0x13,
  2311. 0x75, 0x03, 0xc9, 0xba, 0x31, 0x3f, 0x80, 0xb5, 0x14, 0x71, 0x9c, 0xdd, 0x83, 0x8c, 0x5c, 0x6d,
  2312. 0xca, 0xea, 0xce, 0x33, 0x1c, 0xe9, 0xd5, 0xbb, 0xb2, 0xd0, 0x57, 0x55, 0xcc, 0x23, 0x99, 0xe1,
  2313. 0x48, 0x32, 0x57, 0xf0, 0xe1, 0xdb, 0x92, 0x8c, 0x25, 0x29, 0x9a, 0xd9, 0x6c, 0x91, 0x7c, 0xb6,
  2314. 0x56, 0x6f, 0xba, 0x74, 0x4e, 0x78, 0x21, 0x54, 0x93, 0x39, 0x51, 0xba, 0x51, 0xbd, 0x4c, 0x6e,
  2315. 0x6b, 0xcb, 0xe4, 0xb6, 0x7e, 0x59, 0xdd, 0x85, 0xcc, 0x62, 0xf3, 0x10, 0x4b, 0xa0, 0x2a, 0x23,
  2316. 0x79, 0x8a, 0xa6, 0xb8, 0xee, 0xb4, 0x64, 0xdd, 0xf1, 0xcb, 0x12, 0x5f, 0x8c, 0x92, 0x5f, 0xc7,
  2317. 0x75, 0xdf, 0x36, 0x7f, 0x2b, 0x81, 0x86, 0x94, 0xad, 0xa6, 0xe1, 0xff, 0x49, 0x35, 0x8a, 0x3f,
  2318. 0x83, 0xf7, 0x4a, 0x13, 0x43, 0x13, 0x9f, 0xc1, 0xab, 0x69, 0x03, 0x6a, 0x32, 0x43, 0x2d, 0xcc,
  2319. 0x90, 0x5c, 0x99, 0x9f, 0x43, 0x27, 0x51, 0x9d, 0xd7, 0xbb, 0x6d, 0x5e, 0x49, 0xdd, 0x36, 0x6b,
  2320. 0xc9, 0x5e, 0x48, 0x5c, 0x37, 0xbf, 0x10, 0x58, 0x3f, 0xb2, 0xd8, 0x68, 0x92, 0xfa, 0x5f, 0x21,
  2321. 0x31, 0x7a, 0x93, 0xf4, 0xe8, 0xfd, 0x4f, 0xff, 0xaf, 0xc1, 0xfc, 0x8e, 0x40, 0x1b, 0x03, 0x8a,
  2322. 0xc6, 0x8c, 0xe4, 0xe0, 0x47, 0x52, 0x83, 0xdf, 0xd5, 0xa3, 0x79, 0xb1, 0x93, 0x07, 0xbf, 0x8b,
  2323. 0x3a, 0xe8, 0x74, 0xdc, 0x58, 0x05, 0x95, 0x45, 0x8a, 0x2a, 0xeb, 0xe6, 0x42, 0xb8, 0x8d, 0x0d,
  2324. 0x68, 0xfe, 0x44, 0xa0, 0x17, 0x33, 0x77, 0xd5, 0x99, 0xe9, 0x6d, 0xd0, 0x14, 0x3b, 0xa1, 0x51,
  2325. 0xc2, 0x06, 0x51, 0xf3, 0x75, 0xae, 0x19, 0x06, 0x31, 0x54, 0x7f, 0x0d, 0xaa, 0x9c, 0xb0, 0x50,
  2326. 0x36, 0x55, 0x2f, 0xf9, 0x4e, 0x34, 0xc7, 0x09, 0x88, 0xbe, 0x07, 0x35, 0x74, 0x33, 0x34, 0x2a,
  2327. 0x08, 0xbe, 0x9b, 0x04, 0xc7, 0x6d, 0x28, 0x41, 0x66, 0x0f, 0xf4, 0x4c, 0x1c, 0xfe, 0x74, 0x61,
  2328. 0xee, 0xc9, 0xeb, 0xa9, 0xef, 0x9e, 0x7b, 0x2a, 0xb2, 0xa4, 0x36, 0x93, 0xb4, 0x36, 0x7f, 0x5d,
  2329. 0x93, 0x82, 0x21, 0xf0, 0x5c, 0x30, 0x6e, 0xe6, 0xe7, 0xb6, 0x9b, 0x28, 0x9e, 0x2d, 0x68, 0x4a,
  2330. 0x4f, 0xb0, 0x49, 0xaa, 0x88, 0x00, 0x61, 0xc2, 0x36, 0xf9, 0x1f, 0x34, 0xfc, 0xc0, 0xbb, 0x70,
  2331. 0xdc, 0x91, 0x1a, 0xbd, 0xa3, 0x35, 0x57, 0xb8, 0x91, 0xc3, 0x16, 0x58, 0x3e, 0xda, 0x00, 0x9f,
  2332. 0xb9, 0x0d, 0x8b, 0xa2, 0x21, 0x6c, 0xfc, 0x59, 0x28, 0x69, 0x40, 0x29, 0xc3, 0x52, 0xd1, 0x06,
  2333. 0x72, 0xc5, 0xbf, 0x3d, 0xf2, 0x66, 0x0e, 0x63, 0x94, 0xa2, 0x42, 0x6b, 0x83, 0x68, 0x1d, 0x57,
  2334. 0x75, 0x33, 0x53, 0xd5, 0x89, 0xc2, 0x6b, 0x5d, 0x41, 0xf9, 0xdb, 0x97, 0x28, 0x7f, 0xa2, 0x39,
  2335. 0x3a, 0xcb, 0x9b, 0xa3, 0xbb, 0xbc, 0x39, 0xd6, 0xb2, 0xcd, 0x61, 0x42, 0x5b, 0x25, 0xd7, 0xe5,
  2336. 0x8e, 0x18, 0xeb, 0xa8, 0x6f, 0x92, 0xe7, 0xbe, 0x7b, 0x1a, 0xa2, 0xc6, 0x2a, 0x16, 0x87, 0x23,
  2337. 0xcf, 0xa6, 0x86, 0x2e, 0x84, 0x58, 0x19, 0x8f, 0x3d, 0x1b, 0xa7, 0x08, 0x4e, 0xa9, 0x00, 0xdc,
  2338. 0x91, 0xfc, 0x38, 0x6c, 0xa1, 0x36, 0x79, 0x7c, 0x62, 0xb3, 0x27, 0x36, 0xb9, 0x01, 0x37, 0xb7,
  2339. 0xa0, 0x29, 0x28, 0x16, 0xdb, 0x77, 0x45, 0x56, 0x85, 0x09, 0x01, 0x3b, 0xd0, 0x56, 0x4c, 0x0b,
  2340. 0xc8, 0x86, 0x38, 0x5f, 0x19, 0x11, 0x94, 0x1d, 0x54, 0xee, 0xe5, 0x07, 0x95, 0xcc, 0x64, 0x61,
  2341. 0x2c, 0x9b, 0x2c, 0x36, 0x53, 0xf3, 0xea, 0x27, 0x60, 0x60, 0x53, 0x1c, 0x4f, 0x2c, 0x77, 0x2c,
  2342. 0x3f, 0xf7, 0xfc, 0x66, 0xca, 0xf9, 0x54, 0xca, 0xf9, 0x64, 0x1a, 0xb0, 0x51, 0xf0, 0x65, 0x7f,
  2343. 0xba, 0x38, 0xda, 0xfe, 0xf4, 0x81, 0x1f, 0x78, 0x3e, 0x0d, 0xd8, 0x62, 0x6f, 0xe4, 0xcd, 0x7c,
  2344. 0xcb, 0x5d, 0xec, 0x8d, 0x2d, 0x46, 0xbf, 0xb4, 0x16, 0x8f, 0xfc, 0xb3, 0x47, 0x17, 0x07, 0x67,
  2345. 0x35, 0xfc, 0xb1, 0xfc, 0xcd, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x47, 0xf3, 0xfa, 0x0b, 0x3c,
  2346. 0x17, 0x00, 0x00,
  2347. }