household.pb.go 116 KB

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