garden_service.pb.go 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: garden_service.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package pb
  5. import (
  6. context "context"
  7. fmt "fmt"
  8. proto "github.com/golang/protobuf/proto"
  9. grpc "google.golang.org/grpc"
  10. codes "google.golang.org/grpc/codes"
  11. status "google.golang.org/grpc/status"
  12. math "math"
  13. v1 "property-household-gateway/pb/v1"
  14. )
  15. // Reference imports to suppress errors if they are not otherwise used.
  16. var _ = proto.Marshal
  17. var _ = fmt.Errorf
  18. var _ = math.Inf
  19. // This is a compile-time assertion to ensure that this generated file
  20. // is compatible with the proto package it is being compiled against.
  21. // A compilation error at this line likely means your copy of the
  22. // proto package needs to be updated.
  23. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  24. func init() {
  25. proto.RegisterFile("garden_service.proto", fileDescriptor_e527eed98167eca4)
  26. }
  27. var fileDescriptor_e527eed98167eca4 = []byte{
  28. // 1131 bytes of a gzipped FileDescriptorProto
  29. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x98, 0xdf, 0x6f, 0xdb, 0x36,
  30. 0x10, 0xc7, 0xf7, 0x54, 0x6c, 0xdc, 0xda, 0x26, 0x6e, 0x7e, 0xcd, 0xf9, 0xd5, 0xa4, 0x59, 0xb1,
  31. 0x97, 0xc6, 0xf0, 0xf6, 0x36, 0x60, 0xc0, 0x12, 0x67, 0xdd, 0x02, 0xa4, 0x6b, 0xe0, 0xc0, 0xc1,
  32. 0xb0, 0x01, 0x0b, 0x68, 0x8b, 0x93, 0xb5, 0xa8, 0x92, 0x26, 0xd1, 0x2a, 0xfc, 0xcf, 0xed, 0x6f,
  33. 0x1b, 0x44, 0x8a, 0xd4, 0xf1, 0x78, 0xb4, 0xfb, 0x16, 0xdf, 0xe7, 0xcb, 0xaf, 0xa8, 0xd3, 0xe9,
  34. 0x74, 0x0c, 0xdb, 0x8a, 0x79, 0x19, 0x89, 0xec, 0xa1, 0x12, 0x65, 0x9d, 0xcc, 0xc4, 0x79, 0x51,
  35. 0xe6, 0x32, 0xef, 0xb1, 0x62, 0x7a, 0xde, 0x46, 0xfa, 0xcf, 0xeb, 0xe1, 0x40, 0x8b, 0x34, 0x54,
  36. 0x81, 0x52, 0x14, 0x3c, 0x29, 0xdb, 0xc0, 0x8b, 0x7a, 0x38, 0xa8, 0x16, 0x71, 0x2c, 0x2a, 0x99,
  37. 0xe4, 0x50, 0x35, 0x9b, 0xf3, 0x32, 0x6e, 0x3d, 0xfb, 0x1b, 0xf5, 0x70, 0x50, 0x8b, 0x79, 0x32,
  38. 0x4b, 0x4d, 0xe4, 0x69, 0x3d, 0x1c, 0x14, 0xbc, 0x7c, 0x6c, 0x7f, 0x6e, 0xd7, 0xc3, 0x01, 0xcf,
  39. 0xb2, 0x7c, 0x91, 0xcd, 0xc4, 0x07, 0x91, 0xc9, 0x36, 0xfc, 0xac, 0x1e, 0x0e, 0x44, 0xdd, 0xfd,
  40. 0x6e, 0xae, 0x36, 0xcf, 0x17, 0x95, 0x78, 0x28, 0xbb, 0xe0, 0x4e, 0xb3, 0x05, 0xbd, 0xe1, 0x87,
  41. 0x62, 0x9e, 0x67, 0xf0, 0x12, 0x75, 0x2e, 0xcd, 0xcf, 0xcd, 0x7a, 0x38, 0xc8, 0x44, 0x12, 0xcf,
  42. 0xa7, 0x79, 0xbb, 0xf9, 0xef, 0xfe, 0x3b, 0x63, 0x4f, 0x7e, 0x51, 0xb7, 0xd7, 0x1b, 0xb3, 0x8d,
  43. 0x0b, 0x70, 0xfd, 0x9b, 0xa4, 0x92, 0xbd, 0xa3, 0xf3, 0x62, 0xfa, 0x50, 0x0f, 0xcf, 0x31, 0x18,
  44. 0x8b, 0x7f, 0x17, 0xa2, 0x92, 0xfd, 0x83, 0x20, 0x2f, 0xd2, 0xe5, 0xe9, 0x67, 0xbd, 0x3f, 0xd9,
  45. 0x0b, 0x88, 0xc6, 0x82, 0x47, 0x17, 0x51, 0xd4, 0x3b, 0x21, 0x96, 0xb5, 0xcc, 0x38, 0x1f, 0xaf,
  46. 0x92, 0x58, 0xf3, 0xcb, 0x45, 0x92, 0x46, 0x49, 0x16, 0xbf, 0xe3, 0x19, 0x8f, 0x45, 0xa9, 0xf6,
  47. 0x6c, 0xcc, 0x09, 0x86, 0xcd, 0x49, 0x89, 0x36, 0x7f, 0xcb, 0xbe, 0x32, 0x54, 0xb9, 0xf6, 0xd1,
  48. 0x12, 0x68, 0xb7, 0x47, 0x32, 0xed, 0xf3, 0x03, 0xfb, 0x7c, 0x92, 0x25, 0x3a, 0x9b, 0x3b, 0xad,
  49. 0xce, 0x04, 0xcc, 0xfa, 0x2d, 0x2f, 0xae, 0xd7, 0xfe, 0xc8, 0xbe, 0xf8, 0xb5, 0x79, 0xd4, 0x6a,
  50. 0xf1, 0x6e, 0x2b, 0xb2, 0x11, 0xb3, 0x7a, 0xdb, 0x07, 0x7a, 0xf9, 0x5f, 0x6c, 0x4b, 0xc5, 0xc6,
  51. 0x22, 0x93, 0x30, 0x41, 0xa7, 0x70, 0x01, 0x82, 0xc6, 0xf4, 0xe5, 0x4a, 0x8d, 0xcd, 0xbf, 0x2e,
  52. 0x1d, 0x2b, 0xba, 0xce, 0xfe, 0xce, 0x6d, 0xfe, 0x09, 0x86, 0xf3, 0x4f, 0x4a, 0xb4, 0xf9, 0x7b,
  53. 0xf6, 0x7c, 0xac, 0xde, 0xb2, 0x51, 0xca, 0xab, 0x4a, 0xed, 0xfb, 0xb0, 0x5d, 0x85, 0xe2, 0xc6,
  54. 0x74, 0x3f, 0x84, 0x91, 0xe1, 0xfb, 0x32, 0x6a, 0x13, 0xe1, 0x1a, 0xda, 0x38, 0x6d, 0x08, 0xb0,
  55. 0x36, 0xbc, 0x61, 0xcf, 0x00, 0x69, 0xca, 0xfa, 0xc0, 0x5f, 0x00, 0x2a, 0xba, 0x1f, 0xa0, 0xda,
  56. 0x6d, 0xc2, 0x36, 0x01, 0x98, 0x14, 0x11, 0x97, 0xa2, 0x77, 0xec, 0x2f, 0xd1, 0xc4, 0x78, 0x1e,
  57. 0x86, 0x05, 0xd4, 0x26, 0xaf, 0x44, 0x4a, 0x6d, 0xf2, 0x4a, 0xa4, 0x2b, 0x36, 0xa9, 0x28, 0x95,
  58. 0x43, 0xf5, 0xb4, 0x89, 0x1d, 0xc0, 0x27, 0xbd, 0x1f, 0xc2, 0xda, 0x30, 0x62, 0x3b, 0x80, 0x8c,
  59. 0x85, 0x5c, 0x94, 0xd9, 0x7d, 0x52, 0x25, 0xb2, 0x77, 0xe6, 0x2f, 0x04, 0xd8, 0xd8, 0x9f, 0xae,
  60. 0x51, 0xd9, 0x42, 0xbd, 0xb3, 0x0d, 0xba, 0xdb, 0xba, 0x29, 0x54, 0x82, 0xe1, 0x42, 0x25, 0x25,
  61. 0xda, 0xbc, 0x60, 0x7d, 0x44, 0xe1, 0x6d, 0x7c, 0x4b, 0x1b, 0x10, 0xb7, 0xf2, 0xfa, 0x13, 0x94,
  62. 0xa1, 0xdb, 0x71, 0xfa, 0x1e, 0xc1, 0xd6, 0xdc, 0x0e, 0xac, 0xea, 0xdf, 0x59, 0x0f, 0xd1, 0xa6,
  63. 0xb2, 0x5f, 0xd2, 0x0b, 0x41, 0x75, 0x1f, 0xad, 0x50, 0x68, 0x67, 0xce, 0xb6, 0x11, 0x6c, 0xab,
  64. 0xfc, 0x15, 0xbd, 0xd4, 0xad, 0xf4, 0x93, 0xd5, 0xa2, 0xd0, 0xe6, 0x9b, 0x8a, 0x0f, 0x6c, 0x1e,
  65. 0x54, 0xfd, 0xd1, 0x0a, 0x85, 0xad, 0xfc, 0x91, 0xfa, 0x9c, 0x4f, 0xb2, 0x82, 0x2f, 0x9d, 0xee,
  66. 0x81, 0xe2, 0xb8, 0xf2, 0x3d, 0xac, 0x0d, 0x7f, 0x62, 0x4c, 0x13, 0xe5, 0xb5, 0xe7, 0x88, 0xa1,
  67. 0xcd, 0x0e, 0x41, 0xec, 0xab, 0xad, 0x83, 0x97, 0x49, 0x9a, 0x2a, 0x97, 0x03, 0x47, 0x6b, 0xc2,
  68. 0xf8, 0xd5, 0xc6, 0x54, 0xbb, 0x8d, 0xd9, 0x86, 0x06, 0xb7, 0xa5, 0xb8, 0xe5, 0x4b, 0xf5, 0x82,
  69. 0x1c, 0x39, 0x2b, 0x3a, 0x80, 0xbf, 0xfe, 0x3e, 0x47, 0x49, 0xf3, 0x5b, 0x2e, 0x8a, 0xd3, 0x49,
  70. 0xf3, 0x8a, 0xd3, 0x35, 0x74, 0xfa, 0x0f, 0x8a, 0xaf, 0x30, 0x84, 0x3b, 0x9c, 0xb0, 0x4d, 0x40,
  71. 0x46, 0x3c, 0x9b, 0x89, 0xd4, 0x76, 0x5d, 0x8f, 0xe0, 0xae, 0x4b, 0x08, 0xb4, 0x6d, 0xcc, 0x76,
  72. 0x61, 0x4e, 0x2e, 0x97, 0xea, 0x13, 0x37, 0xcf, 0xd3, 0xa8, 0xf7, 0x0d, 0x91, 0x33, 0xc0, 0xcd,
  73. 0x25, 0x5e, 0xad, 0x93, 0xa1, 0x84, 0xbc, 0xcb, 0x33, 0x39, 0x27, 0x12, 0x62, 0xe3, 0x74, 0x42,
  74. 0x00, 0xd6, 0x86, 0xff, 0xb0, 0xbd, 0xae, 0x3e, 0xd0, 0xd6, 0x5f, 0x7b, 0x05, 0x44, 0xef, 0xfd,
  75. 0x6c, 0xad, 0xce, 0xf6, 0xb1, 0xf6, 0xf6, 0xf8, 0x52, 0x44, 0xb6, 0x8a, 0x4f, 0xdc, 0x5b, 0x87,
  76. 0x0c, 0xf7, 0x31, 0x52, 0x62, 0xe7, 0xae, 0x5b, 0x5e, 0x3e, 0x3a, 0x73, 0x97, 0x09, 0xe0, 0xb9,
  77. 0xab, 0x8b, 0xeb, 0xb5, 0xd7, 0xec, 0x69, 0x13, 0xba, 0x2b, 0xf8, 0x4c, 0xbf, 0x9e, 0xfb, 0x40,
  78. 0x68, 0xa3, 0xc6, 0xe5, 0x6b, 0x1a, 0x6a, 0xab, 0x11, 0xfb, 0xf2, 0x5e, 0x4f, 0xfd, 0xca, 0xc8,
  79. 0x68, 0x41, 0xcc, 0xd8, 0xec, 0x52, 0xc8, 0xce, 0x81, 0x3f, 0xd7, 0x66, 0x24, 0x37, 0x3a, 0x1b,
  80. 0xc1, 0x73, 0x20, 0x00, 0x76, 0x94, 0x55, 0xb1, 0xbb, 0x24, 0xce, 0x9a, 0x66, 0xde, 0x87, 0xc2,
  81. 0x36, 0x88, 0x47, 0x59, 0x97, 0x75, 0x0d, 0x5c, 0x1f, 0x32, 0x6e, 0x9b, 0x33, 0x46, 0x37, 0x98,
  82. 0xd9, 0x06, 0x4e, 0x51, 0xaf, 0x81, 0xd3, 0x22, 0xdb, 0x85, 0x20, 0x77, 0xce, 0x20, 0x18, 0xe0,
  83. 0x2e, 0xe4, 0x73, 0x3b, 0x06, 0xdf, 0xe7, 0x52, 0x85, 0xde, 0xe6, 0x65, 0x57, 0xce, 0x66, 0x76,
  84. 0xa0, 0x20, 0x1e, 0x83, 0x69, 0x8d, 0xad, 0x96, 0x06, 0x5f, 0x44, 0xd1, 0x45, 0x56, 0x7d, 0x14,
  85. 0xa5, 0xad, 0x16, 0x27, 0x8a, 0xab, 0x05, 0x41, 0xfb, 0x46, 0x34, 0xf1, 0xb1, 0xa8, 0x16, 0xa9,
  86. 0xbc, 0x93, 0x5c, 0x26, 0x95, 0x4c, 0x66, 0xf6, 0x8d, 0x20, 0x18, 0x7e, 0x23, 0x48, 0x89, 0xed,
  87. 0x75, 0xbf, 0xb5, 0x87, 0xbf, 0xee, 0xd1, 0x99, 0x75, 0x1e, 0xc1, 0xbd, 0x8e, 0x10, 0xd8, 0x6f,
  88. 0xae, 0x61, 0x17, 0xa5, 0x6c, 0x4a, 0x17, 0x0e, 0x0c, 0x3e, 0xc2, 0xdf, 0x5c, 0x4a, 0x11, 0x72,
  89. 0x86, 0x5f, 0x73, 0x1f, 0xad, 0x71, 0x06, 0x5f, 0x73, 0xce, 0xb6, 0x11, 0x44, 0xa3, 0x08, 0x49,
  90. 0x71, 0x25, 0x07, 0x44, 0xf6, 0x51, 0x22, 0xee, 0x34, 0x37, 0x82, 0xe1, 0x47, 0x49, 0x4a, 0xbc,
  91. 0xcc, 0x8c, 0xf2, 0x0f, 0xcd, 0xd1, 0x98, 0xca, 0x79, 0x87, 0x42, 0x99, 0x81, 0x8a, 0x90, 0x33,
  92. 0x95, 0xf3, 0x0e, 0xad, 0x71, 0xa6, 0x73, 0xde, 0xc2, 0x40, 0xce, 0x1d, 0x1a, 0xca, 0x39, 0x12,
  93. 0x79, 0x39, 0x6f, 0x39, 0x99, 0x73, 0xc0, 0x42, 0x39, 0x77, 0x24, 0xb6, 0x8b, 0x1a, 0x7a, 0x93,
  94. 0x3c, 0x0a, 0xdb, 0x45, 0x61, 0x10, 0x77, 0x51, 0x97, 0xd9, 0x23, 0x0f, 0x38, 0xf6, 0x36, 0x8d,
  95. 0xa4, 0x39, 0xf6, 0x5f, 0x47, 0x95, 0x3d, 0xf2, 0xd0, 0x18, 0x1f, 0x79, 0x42, 0x2a, 0x3b, 0x81,
  96. 0x20, 0xc1, 0x95, 0x48, 0xd5, 0xdf, 0x76, 0x02, 0x09, 0x70, 0x3c, 0x81, 0x04, 0x65, 0xea, 0x42,
  97. 0x97, 0xc7, 0x7f, 0x1c, 0x16, 0x65, 0x5e, 0x88, 0x52, 0x2e, 0xdf, 0xcc, 0x8d, 0xe8, 0x4d, 0xcc,
  98. 0xa5, 0xf8, 0xc8, 0x97, 0x83, 0x62, 0x3a, 0x7d, 0xa2, 0xfe, 0xd1, 0xf4, 0xfd, 0xff, 0x01, 0x00,
  99. 0x00, 0xff, 0xff, 0xc2, 0x26, 0x80, 0xd0, 0x6b, 0x13, 0x00, 0x00,
  100. }
  101. // Reference imports to suppress errors if they are not otherwise used.
  102. var _ context.Context
  103. var _ grpc.ClientConnInterface
  104. // This is a compile-time assertion to ensure that this generated file
  105. // is compatible with the grpc package it is being compiled against.
  106. const _ = grpc.SupportPackageIsVersion6
  107. // GardenClient is the client API for Garden service.
  108. //
  109. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  110. type GardenClient interface {
  111. // 公告
  112. AnnouncementList(ctx context.Context, in *v1.AnnouncementListRequest, opts ...grpc.CallOption) (*v1.AnnouncementListReply, error)
  113. AnnouncementReadAdd(ctx context.Context, in *v1.AnnouncementReadAddRequest, opts ...grpc.CallOption) (*v1.AnnouncementReadAddReply, error)
  114. BuildingManagerList(ctx context.Context, in *v1.BuildingManagerListRequest, opts ...grpc.CallOption) (*v1.BuildingManagerListReply, error)
  115. BuildingList(ctx context.Context, in *v1.BuildingListRequest, opts ...grpc.CallOption) (*v1.BuildingListReply, error)
  116. UnitList(ctx context.Context, in *v1.UnitListRequest, opts ...grpc.CallOption) (*v1.UnitListReply, error)
  117. HouseList(ctx context.Context, in *v1.HouseListRequest, opts ...grpc.CallOption) (*v1.HouseListReply, error)
  118. HouseRentManagerList(ctx context.Context, in *v1.HouseRentManagerListRequest, opts ...grpc.CallOption) (*v1.HouseRentManagerListReply, error)
  119. GardenHouseRentInfo(ctx context.Context, in *v1.GardenHouseRentInfoRequest, opts ...grpc.CallOption) (*v1.GardenHouseRentInfoReply, error)
  120. // 报事报修
  121. RepairClassList(ctx context.Context, in *v1.RepairClassListRequest, opts ...grpc.CallOption) (*v1.RepairClassListReply, error)
  122. RepairOrderList(ctx context.Context, in *v1.RepairOrderListRequest, opts ...grpc.CallOption) (*v1.RepairOrderListReply, error)
  123. RepairOrderAdd(ctx context.Context, in *v1.RepairOrderAddRequest, opts ...grpc.CallOption) (*v1.RepairOrderAddReply, error)
  124. RepairOrderUpdate(ctx context.Context, in *v1.RepairOrderUpdateRequest, opts ...grpc.CallOption) (*v1.RepairOrderUpdateReply, error)
  125. RepairOrderDel(ctx context.Context, in *v1.RepairOrderDelRequest, opts ...grpc.CallOption) (*v1.RepairOrderDelReply, error)
  126. // 详情
  127. RepairOrderInfo(ctx context.Context, in *v1.RepairOrderInfoRequest, opts ...grpc.CallOption) (*v1.RepairOrderInfoReply, error)
  128. // 回访
  129. RepairOrderReturnVisit(ctx context.Context, in *v1.RepairOrderReturnVisitRequest, opts ...grpc.CallOption) (*v1.RepairOrderReturnVisitReply, error)
  130. // 详情
  131. SuggestionOrderInfo(ctx context.Context, in *v1.SuggestionOrderInfoRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderInfoReply, error)
  132. // 回访
  133. SuggestionOrderReturnVisit(ctx context.Context, in *v1.SuggestionOrderReturnVisitRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderReturnVisitReply, error)
  134. // 投诉建议
  135. SuggestionOrderList(ctx context.Context, in *v1.SuggestionOrderListRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderListReply, error)
  136. SuggestionOrderAdd(ctx context.Context, in *v1.SuggestionOrderAddRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderAddReply, error)
  137. SuggestionOrderUpdate(ctx context.Context, in *v1.SuggestionOrderUpdateRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderUpdateReply, error)
  138. SuggestionOrderDel(ctx context.Context, in *v1.SuggestionOrderDelRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderDelReply, error)
  139. // 欠费缴费欠费列表
  140. ChargeUnpayList(ctx context.Context, in *v1.ChargeUnpayListRequest, opts ...grpc.CallOption) (*v1.ChargeUnpayListReply, error)
  141. // 查看费用,费项列表
  142. ChargeList(ctx context.Context, in *v1.ChargeListRequest, opts ...grpc.CallOption) (*v1.ChargeListReply, error)
  143. // 对象的某费项下的待缴账单列表
  144. ChargeBillList(ctx context.Context, in *v1.ChargeBillListRequest, opts ...grpc.CallOption) (*v1.ChargeBillListReply, error)
  145. // 预缴物业费或车位费前获取对应的金额信息
  146. ChargePrePayInfo(ctx context.Context, in *v1.ChargePrePayInfoRequest, opts ...grpc.CallOption) (*v1.ChargePrePayInfoReply, error)
  147. // 缴费订单列表
  148. ChargeOrderList(ctx context.Context, in *v1.ChargeOrderListRequest, opts ...grpc.CallOption) (*v1.ChargeOrderListReply, error)
  149. // 缴费订单详情
  150. ChargeOrderInfo(ctx context.Context, in *v1.ChargeOrderInfoRequest, opts ...grpc.CallOption) (*v1.ChargeOrderInfoReply, error)
  151. // 取消订单 线上交费没有支付的情况
  152. ChargeOrderCancel(ctx context.Context, in *v1.ChargeOrderCancelRequest, opts ...grpc.CallOption) (*v1.ChargeOrderCancelReply, error)
  153. // 线上预缴
  154. ChargePrePayByHousehold(ctx context.Context, in *v1.ChargePrePayByHouseholdRequest, opts ...grpc.CallOption) (*v1.ChargePrePayByHouseholdReply, error)
  155. // 小程序预存物业费,车位费或车辆费用前获取月数和赠送信息
  156. ChargeMonthInfo(ctx context.Context, in *v1.ChargeMonthInfoRequest, opts ...grpc.CallOption) (*v1.ChargeMonthInfoReply, error)
  157. // 欠费线上缴费
  158. ChargeBillPayByHousehold(ctx context.Context, in *v1.ChargeBillPayByHouseholdRequest, opts ...grpc.CallOption) (*v1.ChargeBillPayByHouseholdReply, error)
  159. // 已交账单
  160. ChargePayedBillList(ctx context.Context, in *v1.ChargePayedBillListRequest, opts ...grpc.CallOption) (*v1.ChargePayedBillListReply, error)
  161. // 停车场
  162. ParkList(ctx context.Context, in *v1.ParkListRequest, opts ...grpc.CallOption) (*v1.ParkListReply, error)
  163. // 车位
  164. ParkSpaceList(ctx context.Context, in *v1.ParkSpaceListRequest, opts ...grpc.CallOption) (*v1.ParkSpaceListReply, error)
  165. // 车辆
  166. VehicleList(ctx context.Context, in *v1.VehicleListRequest, opts ...grpc.CallOption) (*v1.VehicleListReply, error)
  167. // 社区活动
  168. EventList(ctx context.Context, in *v1.EventListRequest, opts ...grpc.CallOption) (*v1.EventListReply, error)
  169. // 社区活动报名
  170. EventSignAdd(ctx context.Context, in *v1.EventSignAddRequest, opts ...grpc.CallOption) (*v1.EventSignAddReply, error)
  171. // 服务电话分类
  172. ServicePhoneClassList(ctx context.Context, in *v1.ServicePhoneClassListRequest, opts ...grpc.CallOption) (*v1.ServicePhoneClassListReply, error)
  173. // 服务电话
  174. ServicePhoneList(ctx context.Context, in *v1.ServicePhoneListRequest, opts ...grpc.CallOption) (*v1.ServicePhoneListReply, error)
  175. // 投票列表,业主小程序专用
  176. VoteListForHousehold(ctx context.Context, in *v1.VoteListForHouseholdRequest, opts ...grpc.CallOption) (*v1.VoteListForHouseholdReply, error)
  177. // 投票回答
  178. VoteAddAnswer(ctx context.Context, in *v1.VoteAddAnswerRequest, opts ...grpc.CallOption) (*v1.VoteAddAnswerReply, error)
  179. // 投票结果统计
  180. VoteResultStatistic(ctx context.Context, in *v1.VoteResultStatisticRequest, opts ...grpc.CallOption) (*v1.VoteResultStatisticReply, error)
  181. // 社区邻里
  182. NeighborClassList(ctx context.Context, in *v1.NeighborClassListRequest, opts ...grpc.CallOption) (*v1.NeighborClassListReply, error)
  183. NeighborArticleAdd(ctx context.Context, in *v1.NeighborArticleAddRequest, opts ...grpc.CallOption) (*v1.NeighborArticleAddReply, error)
  184. NeighborArticleDel(ctx context.Context, in *v1.NeighborArticleDelRequest, opts ...grpc.CallOption) (*v1.NeighborArticleDelReply, error)
  185. NeighborArticleUpdate(ctx context.Context, in *v1.NeighborArticleUpdateRequest, opts ...grpc.CallOption) (*v1.NeighborArticleUpdateReply, error)
  186. NeighborArticleList(ctx context.Context, in *v1.NeighborArticleListRequest, opts ...grpc.CallOption) (*v1.NeighborArticleListReply, error)
  187. NeighborCommentAdd(ctx context.Context, in *v1.NeighborCommentAddRequest, opts ...grpc.CallOption) (*v1.NeighborCommentAddReply, error)
  188. NeighborCommentDel(ctx context.Context, in *v1.NeighborCommentDelRequest, opts ...grpc.CallOption) (*v1.NeighborCommentDelReply, error)
  189. NeighborCommentUpdate(ctx context.Context, in *v1.NeighborCommentUpdateRequest, opts ...grpc.CallOption) (*v1.NeighborCommentUpdateReply, error)
  190. NeighborCommentList(ctx context.Context, in *v1.NeighborCommentListRequest, opts ...grpc.CallOption) (*v1.NeighborCommentListReply, error)
  191. NeighborLike(ctx context.Context, in *v1.NeighborLikeRequest, opts ...grpc.CallOption) (*v1.NeighborLikeReply, error)
  192. // 住户的单元id列表
  193. GardenHouseholdUnitIds(ctx context.Context, in *v1.GardenHouseholdUnitIdsRequest, opts ...grpc.CallOption) (*v1.GardenHouseholdUnitIdsReply, error)
  194. // 住户退出房屋
  195. GardenHouseholdDelHouse(ctx context.Context, in *v1.GardenHouseholdDelHouseRequest, opts ...grpc.CallOption) (*v1.GardenHouseholdDelHouseReply, error)
  196. }
  197. type gardenClient struct {
  198. cc grpc.ClientConnInterface
  199. }
  200. func NewGardenClient(cc grpc.ClientConnInterface) GardenClient {
  201. return &gardenClient{cc}
  202. }
  203. func (c *gardenClient) AnnouncementList(ctx context.Context, in *v1.AnnouncementListRequest, opts ...grpc.CallOption) (*v1.AnnouncementListReply, error) {
  204. out := new(v1.AnnouncementListReply)
  205. err := c.cc.Invoke(ctx, "/pb.service.Garden/AnnouncementList", in, out, opts...)
  206. if err != nil {
  207. return nil, err
  208. }
  209. return out, nil
  210. }
  211. func (c *gardenClient) AnnouncementReadAdd(ctx context.Context, in *v1.AnnouncementReadAddRequest, opts ...grpc.CallOption) (*v1.AnnouncementReadAddReply, error) {
  212. out := new(v1.AnnouncementReadAddReply)
  213. err := c.cc.Invoke(ctx, "/pb.service.Garden/AnnouncementReadAdd", in, out, opts...)
  214. if err != nil {
  215. return nil, err
  216. }
  217. return out, nil
  218. }
  219. func (c *gardenClient) BuildingManagerList(ctx context.Context, in *v1.BuildingManagerListRequest, opts ...grpc.CallOption) (*v1.BuildingManagerListReply, error) {
  220. out := new(v1.BuildingManagerListReply)
  221. err := c.cc.Invoke(ctx, "/pb.service.Garden/BuildingManagerList", in, out, opts...)
  222. if err != nil {
  223. return nil, err
  224. }
  225. return out, nil
  226. }
  227. func (c *gardenClient) BuildingList(ctx context.Context, in *v1.BuildingListRequest, opts ...grpc.CallOption) (*v1.BuildingListReply, error) {
  228. out := new(v1.BuildingListReply)
  229. err := c.cc.Invoke(ctx, "/pb.service.Garden/BuildingList", in, out, opts...)
  230. if err != nil {
  231. return nil, err
  232. }
  233. return out, nil
  234. }
  235. func (c *gardenClient) UnitList(ctx context.Context, in *v1.UnitListRequest, opts ...grpc.CallOption) (*v1.UnitListReply, error) {
  236. out := new(v1.UnitListReply)
  237. err := c.cc.Invoke(ctx, "/pb.service.Garden/UnitList", in, out, opts...)
  238. if err != nil {
  239. return nil, err
  240. }
  241. return out, nil
  242. }
  243. func (c *gardenClient) HouseList(ctx context.Context, in *v1.HouseListRequest, opts ...grpc.CallOption) (*v1.HouseListReply, error) {
  244. out := new(v1.HouseListReply)
  245. err := c.cc.Invoke(ctx, "/pb.service.Garden/HouseList", in, out, opts...)
  246. if err != nil {
  247. return nil, err
  248. }
  249. return out, nil
  250. }
  251. func (c *gardenClient) HouseRentManagerList(ctx context.Context, in *v1.HouseRentManagerListRequest, opts ...grpc.CallOption) (*v1.HouseRentManagerListReply, error) {
  252. out := new(v1.HouseRentManagerListReply)
  253. err := c.cc.Invoke(ctx, "/pb.service.Garden/HouseRentManagerList", in, out, opts...)
  254. if err != nil {
  255. return nil, err
  256. }
  257. return out, nil
  258. }
  259. func (c *gardenClient) GardenHouseRentInfo(ctx context.Context, in *v1.GardenHouseRentInfoRequest, opts ...grpc.CallOption) (*v1.GardenHouseRentInfoReply, error) {
  260. out := new(v1.GardenHouseRentInfoReply)
  261. err := c.cc.Invoke(ctx, "/pb.service.Garden/GardenHouseRentInfo", in, out, opts...)
  262. if err != nil {
  263. return nil, err
  264. }
  265. return out, nil
  266. }
  267. func (c *gardenClient) RepairClassList(ctx context.Context, in *v1.RepairClassListRequest, opts ...grpc.CallOption) (*v1.RepairClassListReply, error) {
  268. out := new(v1.RepairClassListReply)
  269. err := c.cc.Invoke(ctx, "/pb.service.Garden/RepairClassList", in, out, opts...)
  270. if err != nil {
  271. return nil, err
  272. }
  273. return out, nil
  274. }
  275. func (c *gardenClient) RepairOrderList(ctx context.Context, in *v1.RepairOrderListRequest, opts ...grpc.CallOption) (*v1.RepairOrderListReply, error) {
  276. out := new(v1.RepairOrderListReply)
  277. err := c.cc.Invoke(ctx, "/pb.service.Garden/RepairOrderList", in, out, opts...)
  278. if err != nil {
  279. return nil, err
  280. }
  281. return out, nil
  282. }
  283. func (c *gardenClient) RepairOrderAdd(ctx context.Context, in *v1.RepairOrderAddRequest, opts ...grpc.CallOption) (*v1.RepairOrderAddReply, error) {
  284. out := new(v1.RepairOrderAddReply)
  285. err := c.cc.Invoke(ctx, "/pb.service.Garden/RepairOrderAdd", in, out, opts...)
  286. if err != nil {
  287. return nil, err
  288. }
  289. return out, nil
  290. }
  291. func (c *gardenClient) RepairOrderUpdate(ctx context.Context, in *v1.RepairOrderUpdateRequest, opts ...grpc.CallOption) (*v1.RepairOrderUpdateReply, error) {
  292. out := new(v1.RepairOrderUpdateReply)
  293. err := c.cc.Invoke(ctx, "/pb.service.Garden/RepairOrderUpdate", in, out, opts...)
  294. if err != nil {
  295. return nil, err
  296. }
  297. return out, nil
  298. }
  299. func (c *gardenClient) RepairOrderDel(ctx context.Context, in *v1.RepairOrderDelRequest, opts ...grpc.CallOption) (*v1.RepairOrderDelReply, error) {
  300. out := new(v1.RepairOrderDelReply)
  301. err := c.cc.Invoke(ctx, "/pb.service.Garden/RepairOrderDel", in, out, opts...)
  302. if err != nil {
  303. return nil, err
  304. }
  305. return out, nil
  306. }
  307. func (c *gardenClient) RepairOrderInfo(ctx context.Context, in *v1.RepairOrderInfoRequest, opts ...grpc.CallOption) (*v1.RepairOrderInfoReply, error) {
  308. out := new(v1.RepairOrderInfoReply)
  309. err := c.cc.Invoke(ctx, "/pb.service.Garden/RepairOrderInfo", in, out, opts...)
  310. if err != nil {
  311. return nil, err
  312. }
  313. return out, nil
  314. }
  315. func (c *gardenClient) RepairOrderReturnVisit(ctx context.Context, in *v1.RepairOrderReturnVisitRequest, opts ...grpc.CallOption) (*v1.RepairOrderReturnVisitReply, error) {
  316. out := new(v1.RepairOrderReturnVisitReply)
  317. err := c.cc.Invoke(ctx, "/pb.service.Garden/RepairOrderReturnVisit", in, out, opts...)
  318. if err != nil {
  319. return nil, err
  320. }
  321. return out, nil
  322. }
  323. func (c *gardenClient) SuggestionOrderInfo(ctx context.Context, in *v1.SuggestionOrderInfoRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderInfoReply, error) {
  324. out := new(v1.SuggestionOrderInfoReply)
  325. err := c.cc.Invoke(ctx, "/pb.service.Garden/SuggestionOrderInfo", in, out, opts...)
  326. if err != nil {
  327. return nil, err
  328. }
  329. return out, nil
  330. }
  331. func (c *gardenClient) SuggestionOrderReturnVisit(ctx context.Context, in *v1.SuggestionOrderReturnVisitRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderReturnVisitReply, error) {
  332. out := new(v1.SuggestionOrderReturnVisitReply)
  333. err := c.cc.Invoke(ctx, "/pb.service.Garden/SuggestionOrderReturnVisit", in, out, opts...)
  334. if err != nil {
  335. return nil, err
  336. }
  337. return out, nil
  338. }
  339. func (c *gardenClient) SuggestionOrderList(ctx context.Context, in *v1.SuggestionOrderListRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderListReply, error) {
  340. out := new(v1.SuggestionOrderListReply)
  341. err := c.cc.Invoke(ctx, "/pb.service.Garden/SuggestionOrderList", in, out, opts...)
  342. if err != nil {
  343. return nil, err
  344. }
  345. return out, nil
  346. }
  347. func (c *gardenClient) SuggestionOrderAdd(ctx context.Context, in *v1.SuggestionOrderAddRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderAddReply, error) {
  348. out := new(v1.SuggestionOrderAddReply)
  349. err := c.cc.Invoke(ctx, "/pb.service.Garden/SuggestionOrderAdd", in, out, opts...)
  350. if err != nil {
  351. return nil, err
  352. }
  353. return out, nil
  354. }
  355. func (c *gardenClient) SuggestionOrderUpdate(ctx context.Context, in *v1.SuggestionOrderUpdateRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderUpdateReply, error) {
  356. out := new(v1.SuggestionOrderUpdateReply)
  357. err := c.cc.Invoke(ctx, "/pb.service.Garden/SuggestionOrderUpdate", in, out, opts...)
  358. if err != nil {
  359. return nil, err
  360. }
  361. return out, nil
  362. }
  363. func (c *gardenClient) SuggestionOrderDel(ctx context.Context, in *v1.SuggestionOrderDelRequest, opts ...grpc.CallOption) (*v1.SuggestionOrderDelReply, error) {
  364. out := new(v1.SuggestionOrderDelReply)
  365. err := c.cc.Invoke(ctx, "/pb.service.Garden/SuggestionOrderDel", in, out, opts...)
  366. if err != nil {
  367. return nil, err
  368. }
  369. return out, nil
  370. }
  371. func (c *gardenClient) ChargeUnpayList(ctx context.Context, in *v1.ChargeUnpayListRequest, opts ...grpc.CallOption) (*v1.ChargeUnpayListReply, error) {
  372. out := new(v1.ChargeUnpayListReply)
  373. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeUnpayList", in, out, opts...)
  374. if err != nil {
  375. return nil, err
  376. }
  377. return out, nil
  378. }
  379. func (c *gardenClient) ChargeList(ctx context.Context, in *v1.ChargeListRequest, opts ...grpc.CallOption) (*v1.ChargeListReply, error) {
  380. out := new(v1.ChargeListReply)
  381. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeList", in, out, opts...)
  382. if err != nil {
  383. return nil, err
  384. }
  385. return out, nil
  386. }
  387. func (c *gardenClient) ChargeBillList(ctx context.Context, in *v1.ChargeBillListRequest, opts ...grpc.CallOption) (*v1.ChargeBillListReply, error) {
  388. out := new(v1.ChargeBillListReply)
  389. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeBillList", in, out, opts...)
  390. if err != nil {
  391. return nil, err
  392. }
  393. return out, nil
  394. }
  395. func (c *gardenClient) ChargePrePayInfo(ctx context.Context, in *v1.ChargePrePayInfoRequest, opts ...grpc.CallOption) (*v1.ChargePrePayInfoReply, error) {
  396. out := new(v1.ChargePrePayInfoReply)
  397. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargePrePayInfo", in, out, opts...)
  398. if err != nil {
  399. return nil, err
  400. }
  401. return out, nil
  402. }
  403. func (c *gardenClient) ChargeOrderList(ctx context.Context, in *v1.ChargeOrderListRequest, opts ...grpc.CallOption) (*v1.ChargeOrderListReply, error) {
  404. out := new(v1.ChargeOrderListReply)
  405. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeOrderList", in, out, opts...)
  406. if err != nil {
  407. return nil, err
  408. }
  409. return out, nil
  410. }
  411. func (c *gardenClient) ChargeOrderInfo(ctx context.Context, in *v1.ChargeOrderInfoRequest, opts ...grpc.CallOption) (*v1.ChargeOrderInfoReply, error) {
  412. out := new(v1.ChargeOrderInfoReply)
  413. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeOrderInfo", in, out, opts...)
  414. if err != nil {
  415. return nil, err
  416. }
  417. return out, nil
  418. }
  419. func (c *gardenClient) ChargeOrderCancel(ctx context.Context, in *v1.ChargeOrderCancelRequest, opts ...grpc.CallOption) (*v1.ChargeOrderCancelReply, error) {
  420. out := new(v1.ChargeOrderCancelReply)
  421. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeOrderCancel", in, out, opts...)
  422. if err != nil {
  423. return nil, err
  424. }
  425. return out, nil
  426. }
  427. func (c *gardenClient) ChargePrePayByHousehold(ctx context.Context, in *v1.ChargePrePayByHouseholdRequest, opts ...grpc.CallOption) (*v1.ChargePrePayByHouseholdReply, error) {
  428. out := new(v1.ChargePrePayByHouseholdReply)
  429. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargePrePayByHousehold", in, out, opts...)
  430. if err != nil {
  431. return nil, err
  432. }
  433. return out, nil
  434. }
  435. func (c *gardenClient) ChargeMonthInfo(ctx context.Context, in *v1.ChargeMonthInfoRequest, opts ...grpc.CallOption) (*v1.ChargeMonthInfoReply, error) {
  436. out := new(v1.ChargeMonthInfoReply)
  437. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeMonthInfo", in, out, opts...)
  438. if err != nil {
  439. return nil, err
  440. }
  441. return out, nil
  442. }
  443. func (c *gardenClient) ChargeBillPayByHousehold(ctx context.Context, in *v1.ChargeBillPayByHouseholdRequest, opts ...grpc.CallOption) (*v1.ChargeBillPayByHouseholdReply, error) {
  444. out := new(v1.ChargeBillPayByHouseholdReply)
  445. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeBillPayByHousehold", in, out, opts...)
  446. if err != nil {
  447. return nil, err
  448. }
  449. return out, nil
  450. }
  451. func (c *gardenClient) ChargePayedBillList(ctx context.Context, in *v1.ChargePayedBillListRequest, opts ...grpc.CallOption) (*v1.ChargePayedBillListReply, error) {
  452. out := new(v1.ChargePayedBillListReply)
  453. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargePayedBillList", in, out, opts...)
  454. if err != nil {
  455. return nil, err
  456. }
  457. return out, nil
  458. }
  459. func (c *gardenClient) ParkList(ctx context.Context, in *v1.ParkListRequest, opts ...grpc.CallOption) (*v1.ParkListReply, error) {
  460. out := new(v1.ParkListReply)
  461. err := c.cc.Invoke(ctx, "/pb.service.Garden/ParkList", in, out, opts...)
  462. if err != nil {
  463. return nil, err
  464. }
  465. return out, nil
  466. }
  467. func (c *gardenClient) ParkSpaceList(ctx context.Context, in *v1.ParkSpaceListRequest, opts ...grpc.CallOption) (*v1.ParkSpaceListReply, error) {
  468. out := new(v1.ParkSpaceListReply)
  469. err := c.cc.Invoke(ctx, "/pb.service.Garden/ParkSpaceList", in, out, opts...)
  470. if err != nil {
  471. return nil, err
  472. }
  473. return out, nil
  474. }
  475. func (c *gardenClient) VehicleList(ctx context.Context, in *v1.VehicleListRequest, opts ...grpc.CallOption) (*v1.VehicleListReply, error) {
  476. out := new(v1.VehicleListReply)
  477. err := c.cc.Invoke(ctx, "/pb.service.Garden/VehicleList", in, out, opts...)
  478. if err != nil {
  479. return nil, err
  480. }
  481. return out, nil
  482. }
  483. func (c *gardenClient) EventList(ctx context.Context, in *v1.EventListRequest, opts ...grpc.CallOption) (*v1.EventListReply, error) {
  484. out := new(v1.EventListReply)
  485. err := c.cc.Invoke(ctx, "/pb.service.Garden/EventList", in, out, opts...)
  486. if err != nil {
  487. return nil, err
  488. }
  489. return out, nil
  490. }
  491. func (c *gardenClient) EventSignAdd(ctx context.Context, in *v1.EventSignAddRequest, opts ...grpc.CallOption) (*v1.EventSignAddReply, error) {
  492. out := new(v1.EventSignAddReply)
  493. err := c.cc.Invoke(ctx, "/pb.service.Garden/EventSignAdd", in, out, opts...)
  494. if err != nil {
  495. return nil, err
  496. }
  497. return out, nil
  498. }
  499. func (c *gardenClient) ServicePhoneClassList(ctx context.Context, in *v1.ServicePhoneClassListRequest, opts ...grpc.CallOption) (*v1.ServicePhoneClassListReply, error) {
  500. out := new(v1.ServicePhoneClassListReply)
  501. err := c.cc.Invoke(ctx, "/pb.service.Garden/ServicePhoneClassList", in, out, opts...)
  502. if err != nil {
  503. return nil, err
  504. }
  505. return out, nil
  506. }
  507. func (c *gardenClient) ServicePhoneList(ctx context.Context, in *v1.ServicePhoneListRequest, opts ...grpc.CallOption) (*v1.ServicePhoneListReply, error) {
  508. out := new(v1.ServicePhoneListReply)
  509. err := c.cc.Invoke(ctx, "/pb.service.Garden/ServicePhoneList", in, out, opts...)
  510. if err != nil {
  511. return nil, err
  512. }
  513. return out, nil
  514. }
  515. func (c *gardenClient) VoteListForHousehold(ctx context.Context, in *v1.VoteListForHouseholdRequest, opts ...grpc.CallOption) (*v1.VoteListForHouseholdReply, error) {
  516. out := new(v1.VoteListForHouseholdReply)
  517. err := c.cc.Invoke(ctx, "/pb.service.Garden/VoteListForHousehold", in, out, opts...)
  518. if err != nil {
  519. return nil, err
  520. }
  521. return out, nil
  522. }
  523. func (c *gardenClient) VoteAddAnswer(ctx context.Context, in *v1.VoteAddAnswerRequest, opts ...grpc.CallOption) (*v1.VoteAddAnswerReply, error) {
  524. out := new(v1.VoteAddAnswerReply)
  525. err := c.cc.Invoke(ctx, "/pb.service.Garden/VoteAddAnswer", in, out, opts...)
  526. if err != nil {
  527. return nil, err
  528. }
  529. return out, nil
  530. }
  531. func (c *gardenClient) VoteResultStatistic(ctx context.Context, in *v1.VoteResultStatisticRequest, opts ...grpc.CallOption) (*v1.VoteResultStatisticReply, error) {
  532. out := new(v1.VoteResultStatisticReply)
  533. err := c.cc.Invoke(ctx, "/pb.service.Garden/VoteResultStatistic", in, out, opts...)
  534. if err != nil {
  535. return nil, err
  536. }
  537. return out, nil
  538. }
  539. func (c *gardenClient) NeighborClassList(ctx context.Context, in *v1.NeighborClassListRequest, opts ...grpc.CallOption) (*v1.NeighborClassListReply, error) {
  540. out := new(v1.NeighborClassListReply)
  541. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborClassList", in, out, opts...)
  542. if err != nil {
  543. return nil, err
  544. }
  545. return out, nil
  546. }
  547. func (c *gardenClient) NeighborArticleAdd(ctx context.Context, in *v1.NeighborArticleAddRequest, opts ...grpc.CallOption) (*v1.NeighborArticleAddReply, error) {
  548. out := new(v1.NeighborArticleAddReply)
  549. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborArticleAdd", in, out, opts...)
  550. if err != nil {
  551. return nil, err
  552. }
  553. return out, nil
  554. }
  555. func (c *gardenClient) NeighborArticleDel(ctx context.Context, in *v1.NeighborArticleDelRequest, opts ...grpc.CallOption) (*v1.NeighborArticleDelReply, error) {
  556. out := new(v1.NeighborArticleDelReply)
  557. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborArticleDel", in, out, opts...)
  558. if err != nil {
  559. return nil, err
  560. }
  561. return out, nil
  562. }
  563. func (c *gardenClient) NeighborArticleUpdate(ctx context.Context, in *v1.NeighborArticleUpdateRequest, opts ...grpc.CallOption) (*v1.NeighborArticleUpdateReply, error) {
  564. out := new(v1.NeighborArticleUpdateReply)
  565. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborArticleUpdate", in, out, opts...)
  566. if err != nil {
  567. return nil, err
  568. }
  569. return out, nil
  570. }
  571. func (c *gardenClient) NeighborArticleList(ctx context.Context, in *v1.NeighborArticleListRequest, opts ...grpc.CallOption) (*v1.NeighborArticleListReply, error) {
  572. out := new(v1.NeighborArticleListReply)
  573. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborArticleList", in, out, opts...)
  574. if err != nil {
  575. return nil, err
  576. }
  577. return out, nil
  578. }
  579. func (c *gardenClient) NeighborCommentAdd(ctx context.Context, in *v1.NeighborCommentAddRequest, opts ...grpc.CallOption) (*v1.NeighborCommentAddReply, error) {
  580. out := new(v1.NeighborCommentAddReply)
  581. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborCommentAdd", in, out, opts...)
  582. if err != nil {
  583. return nil, err
  584. }
  585. return out, nil
  586. }
  587. func (c *gardenClient) NeighborCommentDel(ctx context.Context, in *v1.NeighborCommentDelRequest, opts ...grpc.CallOption) (*v1.NeighborCommentDelReply, error) {
  588. out := new(v1.NeighborCommentDelReply)
  589. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborCommentDel", in, out, opts...)
  590. if err != nil {
  591. return nil, err
  592. }
  593. return out, nil
  594. }
  595. func (c *gardenClient) NeighborCommentUpdate(ctx context.Context, in *v1.NeighborCommentUpdateRequest, opts ...grpc.CallOption) (*v1.NeighborCommentUpdateReply, error) {
  596. out := new(v1.NeighborCommentUpdateReply)
  597. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborCommentUpdate", in, out, opts...)
  598. if err != nil {
  599. return nil, err
  600. }
  601. return out, nil
  602. }
  603. func (c *gardenClient) NeighborCommentList(ctx context.Context, in *v1.NeighborCommentListRequest, opts ...grpc.CallOption) (*v1.NeighborCommentListReply, error) {
  604. out := new(v1.NeighborCommentListReply)
  605. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborCommentList", in, out, opts...)
  606. if err != nil {
  607. return nil, err
  608. }
  609. return out, nil
  610. }
  611. func (c *gardenClient) NeighborLike(ctx context.Context, in *v1.NeighborLikeRequest, opts ...grpc.CallOption) (*v1.NeighborLikeReply, error) {
  612. out := new(v1.NeighborLikeReply)
  613. err := c.cc.Invoke(ctx, "/pb.service.Garden/NeighborLike", in, out, opts...)
  614. if err != nil {
  615. return nil, err
  616. }
  617. return out, nil
  618. }
  619. func (c *gardenClient) GardenHouseholdUnitIds(ctx context.Context, in *v1.GardenHouseholdUnitIdsRequest, opts ...grpc.CallOption) (*v1.GardenHouseholdUnitIdsReply, error) {
  620. out := new(v1.GardenHouseholdUnitIdsReply)
  621. err := c.cc.Invoke(ctx, "/pb.service.Garden/GardenHouseholdUnitIds", in, out, opts...)
  622. if err != nil {
  623. return nil, err
  624. }
  625. return out, nil
  626. }
  627. func (c *gardenClient) GardenHouseholdDelHouse(ctx context.Context, in *v1.GardenHouseholdDelHouseRequest, opts ...grpc.CallOption) (*v1.GardenHouseholdDelHouseReply, error) {
  628. out := new(v1.GardenHouseholdDelHouseReply)
  629. err := c.cc.Invoke(ctx, "/pb.service.Garden/GardenHouseholdDelHouse", in, out, opts...)
  630. if err != nil {
  631. return nil, err
  632. }
  633. return out, nil
  634. }
  635. // GardenServer is the server API for Garden service.
  636. type GardenServer interface {
  637. // 公告
  638. AnnouncementList(context.Context, *v1.AnnouncementListRequest) (*v1.AnnouncementListReply, error)
  639. AnnouncementReadAdd(context.Context, *v1.AnnouncementReadAddRequest) (*v1.AnnouncementReadAddReply, error)
  640. BuildingManagerList(context.Context, *v1.BuildingManagerListRequest) (*v1.BuildingManagerListReply, error)
  641. BuildingList(context.Context, *v1.BuildingListRequest) (*v1.BuildingListReply, error)
  642. UnitList(context.Context, *v1.UnitListRequest) (*v1.UnitListReply, error)
  643. HouseList(context.Context, *v1.HouseListRequest) (*v1.HouseListReply, error)
  644. HouseRentManagerList(context.Context, *v1.HouseRentManagerListRequest) (*v1.HouseRentManagerListReply, error)
  645. GardenHouseRentInfo(context.Context, *v1.GardenHouseRentInfoRequest) (*v1.GardenHouseRentInfoReply, error)
  646. // 报事报修
  647. RepairClassList(context.Context, *v1.RepairClassListRequest) (*v1.RepairClassListReply, error)
  648. RepairOrderList(context.Context, *v1.RepairOrderListRequest) (*v1.RepairOrderListReply, error)
  649. RepairOrderAdd(context.Context, *v1.RepairOrderAddRequest) (*v1.RepairOrderAddReply, error)
  650. RepairOrderUpdate(context.Context, *v1.RepairOrderUpdateRequest) (*v1.RepairOrderUpdateReply, error)
  651. RepairOrderDel(context.Context, *v1.RepairOrderDelRequest) (*v1.RepairOrderDelReply, error)
  652. // 详情
  653. RepairOrderInfo(context.Context, *v1.RepairOrderInfoRequest) (*v1.RepairOrderInfoReply, error)
  654. // 回访
  655. RepairOrderReturnVisit(context.Context, *v1.RepairOrderReturnVisitRequest) (*v1.RepairOrderReturnVisitReply, error)
  656. // 详情
  657. SuggestionOrderInfo(context.Context, *v1.SuggestionOrderInfoRequest) (*v1.SuggestionOrderInfoReply, error)
  658. // 回访
  659. SuggestionOrderReturnVisit(context.Context, *v1.SuggestionOrderReturnVisitRequest) (*v1.SuggestionOrderReturnVisitReply, error)
  660. // 投诉建议
  661. SuggestionOrderList(context.Context, *v1.SuggestionOrderListRequest) (*v1.SuggestionOrderListReply, error)
  662. SuggestionOrderAdd(context.Context, *v1.SuggestionOrderAddRequest) (*v1.SuggestionOrderAddReply, error)
  663. SuggestionOrderUpdate(context.Context, *v1.SuggestionOrderUpdateRequest) (*v1.SuggestionOrderUpdateReply, error)
  664. SuggestionOrderDel(context.Context, *v1.SuggestionOrderDelRequest) (*v1.SuggestionOrderDelReply, error)
  665. // 欠费缴费欠费列表
  666. ChargeUnpayList(context.Context, *v1.ChargeUnpayListRequest) (*v1.ChargeUnpayListReply, error)
  667. // 查看费用,费项列表
  668. ChargeList(context.Context, *v1.ChargeListRequest) (*v1.ChargeListReply, error)
  669. // 对象的某费项下的待缴账单列表
  670. ChargeBillList(context.Context, *v1.ChargeBillListRequest) (*v1.ChargeBillListReply, error)
  671. // 预缴物业费或车位费前获取对应的金额信息
  672. ChargePrePayInfo(context.Context, *v1.ChargePrePayInfoRequest) (*v1.ChargePrePayInfoReply, error)
  673. // 缴费订单列表
  674. ChargeOrderList(context.Context, *v1.ChargeOrderListRequest) (*v1.ChargeOrderListReply, error)
  675. // 缴费订单详情
  676. ChargeOrderInfo(context.Context, *v1.ChargeOrderInfoRequest) (*v1.ChargeOrderInfoReply, error)
  677. // 取消订单 线上交费没有支付的情况
  678. ChargeOrderCancel(context.Context, *v1.ChargeOrderCancelRequest) (*v1.ChargeOrderCancelReply, error)
  679. // 线上预缴
  680. ChargePrePayByHousehold(context.Context, *v1.ChargePrePayByHouseholdRequest) (*v1.ChargePrePayByHouseholdReply, error)
  681. // 小程序预存物业费,车位费或车辆费用前获取月数和赠送信息
  682. ChargeMonthInfo(context.Context, *v1.ChargeMonthInfoRequest) (*v1.ChargeMonthInfoReply, error)
  683. // 欠费线上缴费
  684. ChargeBillPayByHousehold(context.Context, *v1.ChargeBillPayByHouseholdRequest) (*v1.ChargeBillPayByHouseholdReply, error)
  685. // 已交账单
  686. ChargePayedBillList(context.Context, *v1.ChargePayedBillListRequest) (*v1.ChargePayedBillListReply, error)
  687. // 停车场
  688. ParkList(context.Context, *v1.ParkListRequest) (*v1.ParkListReply, error)
  689. // 车位
  690. ParkSpaceList(context.Context, *v1.ParkSpaceListRequest) (*v1.ParkSpaceListReply, error)
  691. // 车辆
  692. VehicleList(context.Context, *v1.VehicleListRequest) (*v1.VehicleListReply, error)
  693. // 社区活动
  694. EventList(context.Context, *v1.EventListRequest) (*v1.EventListReply, error)
  695. // 社区活动报名
  696. EventSignAdd(context.Context, *v1.EventSignAddRequest) (*v1.EventSignAddReply, error)
  697. // 服务电话分类
  698. ServicePhoneClassList(context.Context, *v1.ServicePhoneClassListRequest) (*v1.ServicePhoneClassListReply, error)
  699. // 服务电话
  700. ServicePhoneList(context.Context, *v1.ServicePhoneListRequest) (*v1.ServicePhoneListReply, error)
  701. // 投票列表,业主小程序专用
  702. VoteListForHousehold(context.Context, *v1.VoteListForHouseholdRequest) (*v1.VoteListForHouseholdReply, error)
  703. // 投票回答
  704. VoteAddAnswer(context.Context, *v1.VoteAddAnswerRequest) (*v1.VoteAddAnswerReply, error)
  705. // 投票结果统计
  706. VoteResultStatistic(context.Context, *v1.VoteResultStatisticRequest) (*v1.VoteResultStatisticReply, error)
  707. // 社区邻里
  708. NeighborClassList(context.Context, *v1.NeighborClassListRequest) (*v1.NeighborClassListReply, error)
  709. NeighborArticleAdd(context.Context, *v1.NeighborArticleAddRequest) (*v1.NeighborArticleAddReply, error)
  710. NeighborArticleDel(context.Context, *v1.NeighborArticleDelRequest) (*v1.NeighborArticleDelReply, error)
  711. NeighborArticleUpdate(context.Context, *v1.NeighborArticleUpdateRequest) (*v1.NeighborArticleUpdateReply, error)
  712. NeighborArticleList(context.Context, *v1.NeighborArticleListRequest) (*v1.NeighborArticleListReply, error)
  713. NeighborCommentAdd(context.Context, *v1.NeighborCommentAddRequest) (*v1.NeighborCommentAddReply, error)
  714. NeighborCommentDel(context.Context, *v1.NeighborCommentDelRequest) (*v1.NeighborCommentDelReply, error)
  715. NeighborCommentUpdate(context.Context, *v1.NeighborCommentUpdateRequest) (*v1.NeighborCommentUpdateReply, error)
  716. NeighborCommentList(context.Context, *v1.NeighborCommentListRequest) (*v1.NeighborCommentListReply, error)
  717. NeighborLike(context.Context, *v1.NeighborLikeRequest) (*v1.NeighborLikeReply, error)
  718. // 住户的单元id列表
  719. GardenHouseholdUnitIds(context.Context, *v1.GardenHouseholdUnitIdsRequest) (*v1.GardenHouseholdUnitIdsReply, error)
  720. // 住户退出房屋
  721. GardenHouseholdDelHouse(context.Context, *v1.GardenHouseholdDelHouseRequest) (*v1.GardenHouseholdDelHouseReply, error)
  722. }
  723. // UnimplementedGardenServer can be embedded to have forward compatible implementations.
  724. type UnimplementedGardenServer struct {
  725. }
  726. func (*UnimplementedGardenServer) AnnouncementList(ctx context.Context, req *v1.AnnouncementListRequest) (*v1.AnnouncementListReply, error) {
  727. return nil, status.Errorf(codes.Unimplemented, "method AnnouncementList not implemented")
  728. }
  729. func (*UnimplementedGardenServer) AnnouncementReadAdd(ctx context.Context, req *v1.AnnouncementReadAddRequest) (*v1.AnnouncementReadAddReply, error) {
  730. return nil, status.Errorf(codes.Unimplemented, "method AnnouncementReadAdd not implemented")
  731. }
  732. func (*UnimplementedGardenServer) BuildingManagerList(ctx context.Context, req *v1.BuildingManagerListRequest) (*v1.BuildingManagerListReply, error) {
  733. return nil, status.Errorf(codes.Unimplemented, "method BuildingManagerList not implemented")
  734. }
  735. func (*UnimplementedGardenServer) BuildingList(ctx context.Context, req *v1.BuildingListRequest) (*v1.BuildingListReply, error) {
  736. return nil, status.Errorf(codes.Unimplemented, "method BuildingList not implemented")
  737. }
  738. func (*UnimplementedGardenServer) UnitList(ctx context.Context, req *v1.UnitListRequest) (*v1.UnitListReply, error) {
  739. return nil, status.Errorf(codes.Unimplemented, "method UnitList not implemented")
  740. }
  741. func (*UnimplementedGardenServer) HouseList(ctx context.Context, req *v1.HouseListRequest) (*v1.HouseListReply, error) {
  742. return nil, status.Errorf(codes.Unimplemented, "method HouseList not implemented")
  743. }
  744. func (*UnimplementedGardenServer) HouseRentManagerList(ctx context.Context, req *v1.HouseRentManagerListRequest) (*v1.HouseRentManagerListReply, error) {
  745. return nil, status.Errorf(codes.Unimplemented, "method HouseRentManagerList not implemented")
  746. }
  747. func (*UnimplementedGardenServer) GardenHouseRentInfo(ctx context.Context, req *v1.GardenHouseRentInfoRequest) (*v1.GardenHouseRentInfoReply, error) {
  748. return nil, status.Errorf(codes.Unimplemented, "method GardenHouseRentInfo not implemented")
  749. }
  750. func (*UnimplementedGardenServer) RepairClassList(ctx context.Context, req *v1.RepairClassListRequest) (*v1.RepairClassListReply, error) {
  751. return nil, status.Errorf(codes.Unimplemented, "method RepairClassList not implemented")
  752. }
  753. func (*UnimplementedGardenServer) RepairOrderList(ctx context.Context, req *v1.RepairOrderListRequest) (*v1.RepairOrderListReply, error) {
  754. return nil, status.Errorf(codes.Unimplemented, "method RepairOrderList not implemented")
  755. }
  756. func (*UnimplementedGardenServer) RepairOrderAdd(ctx context.Context, req *v1.RepairOrderAddRequest) (*v1.RepairOrderAddReply, error) {
  757. return nil, status.Errorf(codes.Unimplemented, "method RepairOrderAdd not implemented")
  758. }
  759. func (*UnimplementedGardenServer) RepairOrderUpdate(ctx context.Context, req *v1.RepairOrderUpdateRequest) (*v1.RepairOrderUpdateReply, error) {
  760. return nil, status.Errorf(codes.Unimplemented, "method RepairOrderUpdate not implemented")
  761. }
  762. func (*UnimplementedGardenServer) RepairOrderDel(ctx context.Context, req *v1.RepairOrderDelRequest) (*v1.RepairOrderDelReply, error) {
  763. return nil, status.Errorf(codes.Unimplemented, "method RepairOrderDel not implemented")
  764. }
  765. func (*UnimplementedGardenServer) RepairOrderInfo(ctx context.Context, req *v1.RepairOrderInfoRequest) (*v1.RepairOrderInfoReply, error) {
  766. return nil, status.Errorf(codes.Unimplemented, "method RepairOrderInfo not implemented")
  767. }
  768. func (*UnimplementedGardenServer) RepairOrderReturnVisit(ctx context.Context, req *v1.RepairOrderReturnVisitRequest) (*v1.RepairOrderReturnVisitReply, error) {
  769. return nil, status.Errorf(codes.Unimplemented, "method RepairOrderReturnVisit not implemented")
  770. }
  771. func (*UnimplementedGardenServer) SuggestionOrderInfo(ctx context.Context, req *v1.SuggestionOrderInfoRequest) (*v1.SuggestionOrderInfoReply, error) {
  772. return nil, status.Errorf(codes.Unimplemented, "method SuggestionOrderInfo not implemented")
  773. }
  774. func (*UnimplementedGardenServer) SuggestionOrderReturnVisit(ctx context.Context, req *v1.SuggestionOrderReturnVisitRequest) (*v1.SuggestionOrderReturnVisitReply, error) {
  775. return nil, status.Errorf(codes.Unimplemented, "method SuggestionOrderReturnVisit not implemented")
  776. }
  777. func (*UnimplementedGardenServer) SuggestionOrderList(ctx context.Context, req *v1.SuggestionOrderListRequest) (*v1.SuggestionOrderListReply, error) {
  778. return nil, status.Errorf(codes.Unimplemented, "method SuggestionOrderList not implemented")
  779. }
  780. func (*UnimplementedGardenServer) SuggestionOrderAdd(ctx context.Context, req *v1.SuggestionOrderAddRequest) (*v1.SuggestionOrderAddReply, error) {
  781. return nil, status.Errorf(codes.Unimplemented, "method SuggestionOrderAdd not implemented")
  782. }
  783. func (*UnimplementedGardenServer) SuggestionOrderUpdate(ctx context.Context, req *v1.SuggestionOrderUpdateRequest) (*v1.SuggestionOrderUpdateReply, error) {
  784. return nil, status.Errorf(codes.Unimplemented, "method SuggestionOrderUpdate not implemented")
  785. }
  786. func (*UnimplementedGardenServer) SuggestionOrderDel(ctx context.Context, req *v1.SuggestionOrderDelRequest) (*v1.SuggestionOrderDelReply, error) {
  787. return nil, status.Errorf(codes.Unimplemented, "method SuggestionOrderDel not implemented")
  788. }
  789. func (*UnimplementedGardenServer) ChargeUnpayList(ctx context.Context, req *v1.ChargeUnpayListRequest) (*v1.ChargeUnpayListReply, error) {
  790. return nil, status.Errorf(codes.Unimplemented, "method ChargeUnpayList not implemented")
  791. }
  792. func (*UnimplementedGardenServer) ChargeList(ctx context.Context, req *v1.ChargeListRequest) (*v1.ChargeListReply, error) {
  793. return nil, status.Errorf(codes.Unimplemented, "method ChargeList not implemented")
  794. }
  795. func (*UnimplementedGardenServer) ChargeBillList(ctx context.Context, req *v1.ChargeBillListRequest) (*v1.ChargeBillListReply, error) {
  796. return nil, status.Errorf(codes.Unimplemented, "method ChargeBillList not implemented")
  797. }
  798. func (*UnimplementedGardenServer) ChargePrePayInfo(ctx context.Context, req *v1.ChargePrePayInfoRequest) (*v1.ChargePrePayInfoReply, error) {
  799. return nil, status.Errorf(codes.Unimplemented, "method ChargePrePayInfo not implemented")
  800. }
  801. func (*UnimplementedGardenServer) ChargeOrderList(ctx context.Context, req *v1.ChargeOrderListRequest) (*v1.ChargeOrderListReply, error) {
  802. return nil, status.Errorf(codes.Unimplemented, "method ChargeOrderList not implemented")
  803. }
  804. func (*UnimplementedGardenServer) ChargeOrderInfo(ctx context.Context, req *v1.ChargeOrderInfoRequest) (*v1.ChargeOrderInfoReply, error) {
  805. return nil, status.Errorf(codes.Unimplemented, "method ChargeOrderInfo not implemented")
  806. }
  807. func (*UnimplementedGardenServer) ChargeOrderCancel(ctx context.Context, req *v1.ChargeOrderCancelRequest) (*v1.ChargeOrderCancelReply, error) {
  808. return nil, status.Errorf(codes.Unimplemented, "method ChargeOrderCancel not implemented")
  809. }
  810. func (*UnimplementedGardenServer) ChargePrePayByHousehold(ctx context.Context, req *v1.ChargePrePayByHouseholdRequest) (*v1.ChargePrePayByHouseholdReply, error) {
  811. return nil, status.Errorf(codes.Unimplemented, "method ChargePrePayByHousehold not implemented")
  812. }
  813. func (*UnimplementedGardenServer) ChargeMonthInfo(ctx context.Context, req *v1.ChargeMonthInfoRequest) (*v1.ChargeMonthInfoReply, error) {
  814. return nil, status.Errorf(codes.Unimplemented, "method ChargeMonthInfo not implemented")
  815. }
  816. func (*UnimplementedGardenServer) ChargeBillPayByHousehold(ctx context.Context, req *v1.ChargeBillPayByHouseholdRequest) (*v1.ChargeBillPayByHouseholdReply, error) {
  817. return nil, status.Errorf(codes.Unimplemented, "method ChargeBillPayByHousehold not implemented")
  818. }
  819. func (*UnimplementedGardenServer) ChargePayedBillList(ctx context.Context, req *v1.ChargePayedBillListRequest) (*v1.ChargePayedBillListReply, error) {
  820. return nil, status.Errorf(codes.Unimplemented, "method ChargePayedBillList not implemented")
  821. }
  822. func (*UnimplementedGardenServer) ParkList(ctx context.Context, req *v1.ParkListRequest) (*v1.ParkListReply, error) {
  823. return nil, status.Errorf(codes.Unimplemented, "method ParkList not implemented")
  824. }
  825. func (*UnimplementedGardenServer) ParkSpaceList(ctx context.Context, req *v1.ParkSpaceListRequest) (*v1.ParkSpaceListReply, error) {
  826. return nil, status.Errorf(codes.Unimplemented, "method ParkSpaceList not implemented")
  827. }
  828. func (*UnimplementedGardenServer) VehicleList(ctx context.Context, req *v1.VehicleListRequest) (*v1.VehicleListReply, error) {
  829. return nil, status.Errorf(codes.Unimplemented, "method VehicleList not implemented")
  830. }
  831. func (*UnimplementedGardenServer) EventList(ctx context.Context, req *v1.EventListRequest) (*v1.EventListReply, error) {
  832. return nil, status.Errorf(codes.Unimplemented, "method EventList not implemented")
  833. }
  834. func (*UnimplementedGardenServer) EventSignAdd(ctx context.Context, req *v1.EventSignAddRequest) (*v1.EventSignAddReply, error) {
  835. return nil, status.Errorf(codes.Unimplemented, "method EventSignAdd not implemented")
  836. }
  837. func (*UnimplementedGardenServer) ServicePhoneClassList(ctx context.Context, req *v1.ServicePhoneClassListRequest) (*v1.ServicePhoneClassListReply, error) {
  838. return nil, status.Errorf(codes.Unimplemented, "method ServicePhoneClassList not implemented")
  839. }
  840. func (*UnimplementedGardenServer) ServicePhoneList(ctx context.Context, req *v1.ServicePhoneListRequest) (*v1.ServicePhoneListReply, error) {
  841. return nil, status.Errorf(codes.Unimplemented, "method ServicePhoneList not implemented")
  842. }
  843. func (*UnimplementedGardenServer) VoteListForHousehold(ctx context.Context, req *v1.VoteListForHouseholdRequest) (*v1.VoteListForHouseholdReply, error) {
  844. return nil, status.Errorf(codes.Unimplemented, "method VoteListForHousehold not implemented")
  845. }
  846. func (*UnimplementedGardenServer) VoteAddAnswer(ctx context.Context, req *v1.VoteAddAnswerRequest) (*v1.VoteAddAnswerReply, error) {
  847. return nil, status.Errorf(codes.Unimplemented, "method VoteAddAnswer not implemented")
  848. }
  849. func (*UnimplementedGardenServer) VoteResultStatistic(ctx context.Context, req *v1.VoteResultStatisticRequest) (*v1.VoteResultStatisticReply, error) {
  850. return nil, status.Errorf(codes.Unimplemented, "method VoteResultStatistic not implemented")
  851. }
  852. func (*UnimplementedGardenServer) NeighborClassList(ctx context.Context, req *v1.NeighborClassListRequest) (*v1.NeighborClassListReply, error) {
  853. return nil, status.Errorf(codes.Unimplemented, "method NeighborClassList not implemented")
  854. }
  855. func (*UnimplementedGardenServer) NeighborArticleAdd(ctx context.Context, req *v1.NeighborArticleAddRequest) (*v1.NeighborArticleAddReply, error) {
  856. return nil, status.Errorf(codes.Unimplemented, "method NeighborArticleAdd not implemented")
  857. }
  858. func (*UnimplementedGardenServer) NeighborArticleDel(ctx context.Context, req *v1.NeighborArticleDelRequest) (*v1.NeighborArticleDelReply, error) {
  859. return nil, status.Errorf(codes.Unimplemented, "method NeighborArticleDel not implemented")
  860. }
  861. func (*UnimplementedGardenServer) NeighborArticleUpdate(ctx context.Context, req *v1.NeighborArticleUpdateRequest) (*v1.NeighborArticleUpdateReply, error) {
  862. return nil, status.Errorf(codes.Unimplemented, "method NeighborArticleUpdate not implemented")
  863. }
  864. func (*UnimplementedGardenServer) NeighborArticleList(ctx context.Context, req *v1.NeighborArticleListRequest) (*v1.NeighborArticleListReply, error) {
  865. return nil, status.Errorf(codes.Unimplemented, "method NeighborArticleList not implemented")
  866. }
  867. func (*UnimplementedGardenServer) NeighborCommentAdd(ctx context.Context, req *v1.NeighborCommentAddRequest) (*v1.NeighborCommentAddReply, error) {
  868. return nil, status.Errorf(codes.Unimplemented, "method NeighborCommentAdd not implemented")
  869. }
  870. func (*UnimplementedGardenServer) NeighborCommentDel(ctx context.Context, req *v1.NeighborCommentDelRequest) (*v1.NeighborCommentDelReply, error) {
  871. return nil, status.Errorf(codes.Unimplemented, "method NeighborCommentDel not implemented")
  872. }
  873. func (*UnimplementedGardenServer) NeighborCommentUpdate(ctx context.Context, req *v1.NeighborCommentUpdateRequest) (*v1.NeighborCommentUpdateReply, error) {
  874. return nil, status.Errorf(codes.Unimplemented, "method NeighborCommentUpdate not implemented")
  875. }
  876. func (*UnimplementedGardenServer) NeighborCommentList(ctx context.Context, req *v1.NeighborCommentListRequest) (*v1.NeighborCommentListReply, error) {
  877. return nil, status.Errorf(codes.Unimplemented, "method NeighborCommentList not implemented")
  878. }
  879. func (*UnimplementedGardenServer) NeighborLike(ctx context.Context, req *v1.NeighborLikeRequest) (*v1.NeighborLikeReply, error) {
  880. return nil, status.Errorf(codes.Unimplemented, "method NeighborLike not implemented")
  881. }
  882. func (*UnimplementedGardenServer) GardenHouseholdUnitIds(ctx context.Context, req *v1.GardenHouseholdUnitIdsRequest) (*v1.GardenHouseholdUnitIdsReply, error) {
  883. return nil, status.Errorf(codes.Unimplemented, "method GardenHouseholdUnitIds not implemented")
  884. }
  885. func (*UnimplementedGardenServer) GardenHouseholdDelHouse(ctx context.Context, req *v1.GardenHouseholdDelHouseRequest) (*v1.GardenHouseholdDelHouseReply, error) {
  886. return nil, status.Errorf(codes.Unimplemented, "method GardenHouseholdDelHouse not implemented")
  887. }
  888. func RegisterGardenServer(s *grpc.Server, srv GardenServer) {
  889. s.RegisterService(&_Garden_serviceDesc, srv)
  890. }
  891. func _Garden_AnnouncementList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  892. in := new(v1.AnnouncementListRequest)
  893. if err := dec(in); err != nil {
  894. return nil, err
  895. }
  896. if interceptor == nil {
  897. return srv.(GardenServer).AnnouncementList(ctx, in)
  898. }
  899. info := &grpc.UnaryServerInfo{
  900. Server: srv,
  901. FullMethod: "/pb.service.Garden/AnnouncementList",
  902. }
  903. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  904. return srv.(GardenServer).AnnouncementList(ctx, req.(*v1.AnnouncementListRequest))
  905. }
  906. return interceptor(ctx, in, info, handler)
  907. }
  908. func _Garden_AnnouncementReadAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  909. in := new(v1.AnnouncementReadAddRequest)
  910. if err := dec(in); err != nil {
  911. return nil, err
  912. }
  913. if interceptor == nil {
  914. return srv.(GardenServer).AnnouncementReadAdd(ctx, in)
  915. }
  916. info := &grpc.UnaryServerInfo{
  917. Server: srv,
  918. FullMethod: "/pb.service.Garden/AnnouncementReadAdd",
  919. }
  920. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  921. return srv.(GardenServer).AnnouncementReadAdd(ctx, req.(*v1.AnnouncementReadAddRequest))
  922. }
  923. return interceptor(ctx, in, info, handler)
  924. }
  925. func _Garden_BuildingManagerList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  926. in := new(v1.BuildingManagerListRequest)
  927. if err := dec(in); err != nil {
  928. return nil, err
  929. }
  930. if interceptor == nil {
  931. return srv.(GardenServer).BuildingManagerList(ctx, in)
  932. }
  933. info := &grpc.UnaryServerInfo{
  934. Server: srv,
  935. FullMethod: "/pb.service.Garden/BuildingManagerList",
  936. }
  937. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  938. return srv.(GardenServer).BuildingManagerList(ctx, req.(*v1.BuildingManagerListRequest))
  939. }
  940. return interceptor(ctx, in, info, handler)
  941. }
  942. func _Garden_BuildingList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  943. in := new(v1.BuildingListRequest)
  944. if err := dec(in); err != nil {
  945. return nil, err
  946. }
  947. if interceptor == nil {
  948. return srv.(GardenServer).BuildingList(ctx, in)
  949. }
  950. info := &grpc.UnaryServerInfo{
  951. Server: srv,
  952. FullMethod: "/pb.service.Garden/BuildingList",
  953. }
  954. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  955. return srv.(GardenServer).BuildingList(ctx, req.(*v1.BuildingListRequest))
  956. }
  957. return interceptor(ctx, in, info, handler)
  958. }
  959. func _Garden_UnitList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  960. in := new(v1.UnitListRequest)
  961. if err := dec(in); err != nil {
  962. return nil, err
  963. }
  964. if interceptor == nil {
  965. return srv.(GardenServer).UnitList(ctx, in)
  966. }
  967. info := &grpc.UnaryServerInfo{
  968. Server: srv,
  969. FullMethod: "/pb.service.Garden/UnitList",
  970. }
  971. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  972. return srv.(GardenServer).UnitList(ctx, req.(*v1.UnitListRequest))
  973. }
  974. return interceptor(ctx, in, info, handler)
  975. }
  976. func _Garden_HouseList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  977. in := new(v1.HouseListRequest)
  978. if err := dec(in); err != nil {
  979. return nil, err
  980. }
  981. if interceptor == nil {
  982. return srv.(GardenServer).HouseList(ctx, in)
  983. }
  984. info := &grpc.UnaryServerInfo{
  985. Server: srv,
  986. FullMethod: "/pb.service.Garden/HouseList",
  987. }
  988. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  989. return srv.(GardenServer).HouseList(ctx, req.(*v1.HouseListRequest))
  990. }
  991. return interceptor(ctx, in, info, handler)
  992. }
  993. func _Garden_HouseRentManagerList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  994. in := new(v1.HouseRentManagerListRequest)
  995. if err := dec(in); err != nil {
  996. return nil, err
  997. }
  998. if interceptor == nil {
  999. return srv.(GardenServer).HouseRentManagerList(ctx, in)
  1000. }
  1001. info := &grpc.UnaryServerInfo{
  1002. Server: srv,
  1003. FullMethod: "/pb.service.Garden/HouseRentManagerList",
  1004. }
  1005. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1006. return srv.(GardenServer).HouseRentManagerList(ctx, req.(*v1.HouseRentManagerListRequest))
  1007. }
  1008. return interceptor(ctx, in, info, handler)
  1009. }
  1010. func _Garden_GardenHouseRentInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1011. in := new(v1.GardenHouseRentInfoRequest)
  1012. if err := dec(in); err != nil {
  1013. return nil, err
  1014. }
  1015. if interceptor == nil {
  1016. return srv.(GardenServer).GardenHouseRentInfo(ctx, in)
  1017. }
  1018. info := &grpc.UnaryServerInfo{
  1019. Server: srv,
  1020. FullMethod: "/pb.service.Garden/GardenHouseRentInfo",
  1021. }
  1022. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1023. return srv.(GardenServer).GardenHouseRentInfo(ctx, req.(*v1.GardenHouseRentInfoRequest))
  1024. }
  1025. return interceptor(ctx, in, info, handler)
  1026. }
  1027. func _Garden_RepairClassList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1028. in := new(v1.RepairClassListRequest)
  1029. if err := dec(in); err != nil {
  1030. return nil, err
  1031. }
  1032. if interceptor == nil {
  1033. return srv.(GardenServer).RepairClassList(ctx, in)
  1034. }
  1035. info := &grpc.UnaryServerInfo{
  1036. Server: srv,
  1037. FullMethod: "/pb.service.Garden/RepairClassList",
  1038. }
  1039. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1040. return srv.(GardenServer).RepairClassList(ctx, req.(*v1.RepairClassListRequest))
  1041. }
  1042. return interceptor(ctx, in, info, handler)
  1043. }
  1044. func _Garden_RepairOrderList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1045. in := new(v1.RepairOrderListRequest)
  1046. if err := dec(in); err != nil {
  1047. return nil, err
  1048. }
  1049. if interceptor == nil {
  1050. return srv.(GardenServer).RepairOrderList(ctx, in)
  1051. }
  1052. info := &grpc.UnaryServerInfo{
  1053. Server: srv,
  1054. FullMethod: "/pb.service.Garden/RepairOrderList",
  1055. }
  1056. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1057. return srv.(GardenServer).RepairOrderList(ctx, req.(*v1.RepairOrderListRequest))
  1058. }
  1059. return interceptor(ctx, in, info, handler)
  1060. }
  1061. func _Garden_RepairOrderAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1062. in := new(v1.RepairOrderAddRequest)
  1063. if err := dec(in); err != nil {
  1064. return nil, err
  1065. }
  1066. if interceptor == nil {
  1067. return srv.(GardenServer).RepairOrderAdd(ctx, in)
  1068. }
  1069. info := &grpc.UnaryServerInfo{
  1070. Server: srv,
  1071. FullMethod: "/pb.service.Garden/RepairOrderAdd",
  1072. }
  1073. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1074. return srv.(GardenServer).RepairOrderAdd(ctx, req.(*v1.RepairOrderAddRequest))
  1075. }
  1076. return interceptor(ctx, in, info, handler)
  1077. }
  1078. func _Garden_RepairOrderUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1079. in := new(v1.RepairOrderUpdateRequest)
  1080. if err := dec(in); err != nil {
  1081. return nil, err
  1082. }
  1083. if interceptor == nil {
  1084. return srv.(GardenServer).RepairOrderUpdate(ctx, in)
  1085. }
  1086. info := &grpc.UnaryServerInfo{
  1087. Server: srv,
  1088. FullMethod: "/pb.service.Garden/RepairOrderUpdate",
  1089. }
  1090. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1091. return srv.(GardenServer).RepairOrderUpdate(ctx, req.(*v1.RepairOrderUpdateRequest))
  1092. }
  1093. return interceptor(ctx, in, info, handler)
  1094. }
  1095. func _Garden_RepairOrderDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1096. in := new(v1.RepairOrderDelRequest)
  1097. if err := dec(in); err != nil {
  1098. return nil, err
  1099. }
  1100. if interceptor == nil {
  1101. return srv.(GardenServer).RepairOrderDel(ctx, in)
  1102. }
  1103. info := &grpc.UnaryServerInfo{
  1104. Server: srv,
  1105. FullMethod: "/pb.service.Garden/RepairOrderDel",
  1106. }
  1107. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1108. return srv.(GardenServer).RepairOrderDel(ctx, req.(*v1.RepairOrderDelRequest))
  1109. }
  1110. return interceptor(ctx, in, info, handler)
  1111. }
  1112. func _Garden_RepairOrderInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1113. in := new(v1.RepairOrderInfoRequest)
  1114. if err := dec(in); err != nil {
  1115. return nil, err
  1116. }
  1117. if interceptor == nil {
  1118. return srv.(GardenServer).RepairOrderInfo(ctx, in)
  1119. }
  1120. info := &grpc.UnaryServerInfo{
  1121. Server: srv,
  1122. FullMethod: "/pb.service.Garden/RepairOrderInfo",
  1123. }
  1124. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1125. return srv.(GardenServer).RepairOrderInfo(ctx, req.(*v1.RepairOrderInfoRequest))
  1126. }
  1127. return interceptor(ctx, in, info, handler)
  1128. }
  1129. func _Garden_RepairOrderReturnVisit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1130. in := new(v1.RepairOrderReturnVisitRequest)
  1131. if err := dec(in); err != nil {
  1132. return nil, err
  1133. }
  1134. if interceptor == nil {
  1135. return srv.(GardenServer).RepairOrderReturnVisit(ctx, in)
  1136. }
  1137. info := &grpc.UnaryServerInfo{
  1138. Server: srv,
  1139. FullMethod: "/pb.service.Garden/RepairOrderReturnVisit",
  1140. }
  1141. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1142. return srv.(GardenServer).RepairOrderReturnVisit(ctx, req.(*v1.RepairOrderReturnVisitRequest))
  1143. }
  1144. return interceptor(ctx, in, info, handler)
  1145. }
  1146. func _Garden_SuggestionOrderInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1147. in := new(v1.SuggestionOrderInfoRequest)
  1148. if err := dec(in); err != nil {
  1149. return nil, err
  1150. }
  1151. if interceptor == nil {
  1152. return srv.(GardenServer).SuggestionOrderInfo(ctx, in)
  1153. }
  1154. info := &grpc.UnaryServerInfo{
  1155. Server: srv,
  1156. FullMethod: "/pb.service.Garden/SuggestionOrderInfo",
  1157. }
  1158. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1159. return srv.(GardenServer).SuggestionOrderInfo(ctx, req.(*v1.SuggestionOrderInfoRequest))
  1160. }
  1161. return interceptor(ctx, in, info, handler)
  1162. }
  1163. func _Garden_SuggestionOrderReturnVisit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1164. in := new(v1.SuggestionOrderReturnVisitRequest)
  1165. if err := dec(in); err != nil {
  1166. return nil, err
  1167. }
  1168. if interceptor == nil {
  1169. return srv.(GardenServer).SuggestionOrderReturnVisit(ctx, in)
  1170. }
  1171. info := &grpc.UnaryServerInfo{
  1172. Server: srv,
  1173. FullMethod: "/pb.service.Garden/SuggestionOrderReturnVisit",
  1174. }
  1175. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1176. return srv.(GardenServer).SuggestionOrderReturnVisit(ctx, req.(*v1.SuggestionOrderReturnVisitRequest))
  1177. }
  1178. return interceptor(ctx, in, info, handler)
  1179. }
  1180. func _Garden_SuggestionOrderList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1181. in := new(v1.SuggestionOrderListRequest)
  1182. if err := dec(in); err != nil {
  1183. return nil, err
  1184. }
  1185. if interceptor == nil {
  1186. return srv.(GardenServer).SuggestionOrderList(ctx, in)
  1187. }
  1188. info := &grpc.UnaryServerInfo{
  1189. Server: srv,
  1190. FullMethod: "/pb.service.Garden/SuggestionOrderList",
  1191. }
  1192. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1193. return srv.(GardenServer).SuggestionOrderList(ctx, req.(*v1.SuggestionOrderListRequest))
  1194. }
  1195. return interceptor(ctx, in, info, handler)
  1196. }
  1197. func _Garden_SuggestionOrderAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1198. in := new(v1.SuggestionOrderAddRequest)
  1199. if err := dec(in); err != nil {
  1200. return nil, err
  1201. }
  1202. if interceptor == nil {
  1203. return srv.(GardenServer).SuggestionOrderAdd(ctx, in)
  1204. }
  1205. info := &grpc.UnaryServerInfo{
  1206. Server: srv,
  1207. FullMethod: "/pb.service.Garden/SuggestionOrderAdd",
  1208. }
  1209. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1210. return srv.(GardenServer).SuggestionOrderAdd(ctx, req.(*v1.SuggestionOrderAddRequest))
  1211. }
  1212. return interceptor(ctx, in, info, handler)
  1213. }
  1214. func _Garden_SuggestionOrderUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1215. in := new(v1.SuggestionOrderUpdateRequest)
  1216. if err := dec(in); err != nil {
  1217. return nil, err
  1218. }
  1219. if interceptor == nil {
  1220. return srv.(GardenServer).SuggestionOrderUpdate(ctx, in)
  1221. }
  1222. info := &grpc.UnaryServerInfo{
  1223. Server: srv,
  1224. FullMethod: "/pb.service.Garden/SuggestionOrderUpdate",
  1225. }
  1226. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1227. return srv.(GardenServer).SuggestionOrderUpdate(ctx, req.(*v1.SuggestionOrderUpdateRequest))
  1228. }
  1229. return interceptor(ctx, in, info, handler)
  1230. }
  1231. func _Garden_SuggestionOrderDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1232. in := new(v1.SuggestionOrderDelRequest)
  1233. if err := dec(in); err != nil {
  1234. return nil, err
  1235. }
  1236. if interceptor == nil {
  1237. return srv.(GardenServer).SuggestionOrderDel(ctx, in)
  1238. }
  1239. info := &grpc.UnaryServerInfo{
  1240. Server: srv,
  1241. FullMethod: "/pb.service.Garden/SuggestionOrderDel",
  1242. }
  1243. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1244. return srv.(GardenServer).SuggestionOrderDel(ctx, req.(*v1.SuggestionOrderDelRequest))
  1245. }
  1246. return interceptor(ctx, in, info, handler)
  1247. }
  1248. func _Garden_ChargeUnpayList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1249. in := new(v1.ChargeUnpayListRequest)
  1250. if err := dec(in); err != nil {
  1251. return nil, err
  1252. }
  1253. if interceptor == nil {
  1254. return srv.(GardenServer).ChargeUnpayList(ctx, in)
  1255. }
  1256. info := &grpc.UnaryServerInfo{
  1257. Server: srv,
  1258. FullMethod: "/pb.service.Garden/ChargeUnpayList",
  1259. }
  1260. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1261. return srv.(GardenServer).ChargeUnpayList(ctx, req.(*v1.ChargeUnpayListRequest))
  1262. }
  1263. return interceptor(ctx, in, info, handler)
  1264. }
  1265. func _Garden_ChargeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1266. in := new(v1.ChargeListRequest)
  1267. if err := dec(in); err != nil {
  1268. return nil, err
  1269. }
  1270. if interceptor == nil {
  1271. return srv.(GardenServer).ChargeList(ctx, in)
  1272. }
  1273. info := &grpc.UnaryServerInfo{
  1274. Server: srv,
  1275. FullMethod: "/pb.service.Garden/ChargeList",
  1276. }
  1277. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1278. return srv.(GardenServer).ChargeList(ctx, req.(*v1.ChargeListRequest))
  1279. }
  1280. return interceptor(ctx, in, info, handler)
  1281. }
  1282. func _Garden_ChargeBillList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1283. in := new(v1.ChargeBillListRequest)
  1284. if err := dec(in); err != nil {
  1285. return nil, err
  1286. }
  1287. if interceptor == nil {
  1288. return srv.(GardenServer).ChargeBillList(ctx, in)
  1289. }
  1290. info := &grpc.UnaryServerInfo{
  1291. Server: srv,
  1292. FullMethod: "/pb.service.Garden/ChargeBillList",
  1293. }
  1294. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1295. return srv.(GardenServer).ChargeBillList(ctx, req.(*v1.ChargeBillListRequest))
  1296. }
  1297. return interceptor(ctx, in, info, handler)
  1298. }
  1299. func _Garden_ChargePrePayInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1300. in := new(v1.ChargePrePayInfoRequest)
  1301. if err := dec(in); err != nil {
  1302. return nil, err
  1303. }
  1304. if interceptor == nil {
  1305. return srv.(GardenServer).ChargePrePayInfo(ctx, in)
  1306. }
  1307. info := &grpc.UnaryServerInfo{
  1308. Server: srv,
  1309. FullMethod: "/pb.service.Garden/ChargePrePayInfo",
  1310. }
  1311. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1312. return srv.(GardenServer).ChargePrePayInfo(ctx, req.(*v1.ChargePrePayInfoRequest))
  1313. }
  1314. return interceptor(ctx, in, info, handler)
  1315. }
  1316. func _Garden_ChargeOrderList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1317. in := new(v1.ChargeOrderListRequest)
  1318. if err := dec(in); err != nil {
  1319. return nil, err
  1320. }
  1321. if interceptor == nil {
  1322. return srv.(GardenServer).ChargeOrderList(ctx, in)
  1323. }
  1324. info := &grpc.UnaryServerInfo{
  1325. Server: srv,
  1326. FullMethod: "/pb.service.Garden/ChargeOrderList",
  1327. }
  1328. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1329. return srv.(GardenServer).ChargeOrderList(ctx, req.(*v1.ChargeOrderListRequest))
  1330. }
  1331. return interceptor(ctx, in, info, handler)
  1332. }
  1333. func _Garden_ChargeOrderInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1334. in := new(v1.ChargeOrderInfoRequest)
  1335. if err := dec(in); err != nil {
  1336. return nil, err
  1337. }
  1338. if interceptor == nil {
  1339. return srv.(GardenServer).ChargeOrderInfo(ctx, in)
  1340. }
  1341. info := &grpc.UnaryServerInfo{
  1342. Server: srv,
  1343. FullMethod: "/pb.service.Garden/ChargeOrderInfo",
  1344. }
  1345. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1346. return srv.(GardenServer).ChargeOrderInfo(ctx, req.(*v1.ChargeOrderInfoRequest))
  1347. }
  1348. return interceptor(ctx, in, info, handler)
  1349. }
  1350. func _Garden_ChargeOrderCancel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1351. in := new(v1.ChargeOrderCancelRequest)
  1352. if err := dec(in); err != nil {
  1353. return nil, err
  1354. }
  1355. if interceptor == nil {
  1356. return srv.(GardenServer).ChargeOrderCancel(ctx, in)
  1357. }
  1358. info := &grpc.UnaryServerInfo{
  1359. Server: srv,
  1360. FullMethod: "/pb.service.Garden/ChargeOrderCancel",
  1361. }
  1362. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1363. return srv.(GardenServer).ChargeOrderCancel(ctx, req.(*v1.ChargeOrderCancelRequest))
  1364. }
  1365. return interceptor(ctx, in, info, handler)
  1366. }
  1367. func _Garden_ChargePrePayByHousehold_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1368. in := new(v1.ChargePrePayByHouseholdRequest)
  1369. if err := dec(in); err != nil {
  1370. return nil, err
  1371. }
  1372. if interceptor == nil {
  1373. return srv.(GardenServer).ChargePrePayByHousehold(ctx, in)
  1374. }
  1375. info := &grpc.UnaryServerInfo{
  1376. Server: srv,
  1377. FullMethod: "/pb.service.Garden/ChargePrePayByHousehold",
  1378. }
  1379. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1380. return srv.(GardenServer).ChargePrePayByHousehold(ctx, req.(*v1.ChargePrePayByHouseholdRequest))
  1381. }
  1382. return interceptor(ctx, in, info, handler)
  1383. }
  1384. func _Garden_ChargeMonthInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1385. in := new(v1.ChargeMonthInfoRequest)
  1386. if err := dec(in); err != nil {
  1387. return nil, err
  1388. }
  1389. if interceptor == nil {
  1390. return srv.(GardenServer).ChargeMonthInfo(ctx, in)
  1391. }
  1392. info := &grpc.UnaryServerInfo{
  1393. Server: srv,
  1394. FullMethod: "/pb.service.Garden/ChargeMonthInfo",
  1395. }
  1396. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1397. return srv.(GardenServer).ChargeMonthInfo(ctx, req.(*v1.ChargeMonthInfoRequest))
  1398. }
  1399. return interceptor(ctx, in, info, handler)
  1400. }
  1401. func _Garden_ChargeBillPayByHousehold_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1402. in := new(v1.ChargeBillPayByHouseholdRequest)
  1403. if err := dec(in); err != nil {
  1404. return nil, err
  1405. }
  1406. if interceptor == nil {
  1407. return srv.(GardenServer).ChargeBillPayByHousehold(ctx, in)
  1408. }
  1409. info := &grpc.UnaryServerInfo{
  1410. Server: srv,
  1411. FullMethod: "/pb.service.Garden/ChargeBillPayByHousehold",
  1412. }
  1413. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1414. return srv.(GardenServer).ChargeBillPayByHousehold(ctx, req.(*v1.ChargeBillPayByHouseholdRequest))
  1415. }
  1416. return interceptor(ctx, in, info, handler)
  1417. }
  1418. func _Garden_ChargePayedBillList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1419. in := new(v1.ChargePayedBillListRequest)
  1420. if err := dec(in); err != nil {
  1421. return nil, err
  1422. }
  1423. if interceptor == nil {
  1424. return srv.(GardenServer).ChargePayedBillList(ctx, in)
  1425. }
  1426. info := &grpc.UnaryServerInfo{
  1427. Server: srv,
  1428. FullMethod: "/pb.service.Garden/ChargePayedBillList",
  1429. }
  1430. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1431. return srv.(GardenServer).ChargePayedBillList(ctx, req.(*v1.ChargePayedBillListRequest))
  1432. }
  1433. return interceptor(ctx, in, info, handler)
  1434. }
  1435. func _Garden_ParkList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1436. in := new(v1.ParkListRequest)
  1437. if err := dec(in); err != nil {
  1438. return nil, err
  1439. }
  1440. if interceptor == nil {
  1441. return srv.(GardenServer).ParkList(ctx, in)
  1442. }
  1443. info := &grpc.UnaryServerInfo{
  1444. Server: srv,
  1445. FullMethod: "/pb.service.Garden/ParkList",
  1446. }
  1447. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1448. return srv.(GardenServer).ParkList(ctx, req.(*v1.ParkListRequest))
  1449. }
  1450. return interceptor(ctx, in, info, handler)
  1451. }
  1452. func _Garden_ParkSpaceList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1453. in := new(v1.ParkSpaceListRequest)
  1454. if err := dec(in); err != nil {
  1455. return nil, err
  1456. }
  1457. if interceptor == nil {
  1458. return srv.(GardenServer).ParkSpaceList(ctx, in)
  1459. }
  1460. info := &grpc.UnaryServerInfo{
  1461. Server: srv,
  1462. FullMethod: "/pb.service.Garden/ParkSpaceList",
  1463. }
  1464. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1465. return srv.(GardenServer).ParkSpaceList(ctx, req.(*v1.ParkSpaceListRequest))
  1466. }
  1467. return interceptor(ctx, in, info, handler)
  1468. }
  1469. func _Garden_VehicleList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1470. in := new(v1.VehicleListRequest)
  1471. if err := dec(in); err != nil {
  1472. return nil, err
  1473. }
  1474. if interceptor == nil {
  1475. return srv.(GardenServer).VehicleList(ctx, in)
  1476. }
  1477. info := &grpc.UnaryServerInfo{
  1478. Server: srv,
  1479. FullMethod: "/pb.service.Garden/VehicleList",
  1480. }
  1481. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1482. return srv.(GardenServer).VehicleList(ctx, req.(*v1.VehicleListRequest))
  1483. }
  1484. return interceptor(ctx, in, info, handler)
  1485. }
  1486. func _Garden_EventList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1487. in := new(v1.EventListRequest)
  1488. if err := dec(in); err != nil {
  1489. return nil, err
  1490. }
  1491. if interceptor == nil {
  1492. return srv.(GardenServer).EventList(ctx, in)
  1493. }
  1494. info := &grpc.UnaryServerInfo{
  1495. Server: srv,
  1496. FullMethod: "/pb.service.Garden/EventList",
  1497. }
  1498. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1499. return srv.(GardenServer).EventList(ctx, req.(*v1.EventListRequest))
  1500. }
  1501. return interceptor(ctx, in, info, handler)
  1502. }
  1503. func _Garden_EventSignAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1504. in := new(v1.EventSignAddRequest)
  1505. if err := dec(in); err != nil {
  1506. return nil, err
  1507. }
  1508. if interceptor == nil {
  1509. return srv.(GardenServer).EventSignAdd(ctx, in)
  1510. }
  1511. info := &grpc.UnaryServerInfo{
  1512. Server: srv,
  1513. FullMethod: "/pb.service.Garden/EventSignAdd",
  1514. }
  1515. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1516. return srv.(GardenServer).EventSignAdd(ctx, req.(*v1.EventSignAddRequest))
  1517. }
  1518. return interceptor(ctx, in, info, handler)
  1519. }
  1520. func _Garden_ServicePhoneClassList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1521. in := new(v1.ServicePhoneClassListRequest)
  1522. if err := dec(in); err != nil {
  1523. return nil, err
  1524. }
  1525. if interceptor == nil {
  1526. return srv.(GardenServer).ServicePhoneClassList(ctx, in)
  1527. }
  1528. info := &grpc.UnaryServerInfo{
  1529. Server: srv,
  1530. FullMethod: "/pb.service.Garden/ServicePhoneClassList",
  1531. }
  1532. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1533. return srv.(GardenServer).ServicePhoneClassList(ctx, req.(*v1.ServicePhoneClassListRequest))
  1534. }
  1535. return interceptor(ctx, in, info, handler)
  1536. }
  1537. func _Garden_ServicePhoneList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1538. in := new(v1.ServicePhoneListRequest)
  1539. if err := dec(in); err != nil {
  1540. return nil, err
  1541. }
  1542. if interceptor == nil {
  1543. return srv.(GardenServer).ServicePhoneList(ctx, in)
  1544. }
  1545. info := &grpc.UnaryServerInfo{
  1546. Server: srv,
  1547. FullMethod: "/pb.service.Garden/ServicePhoneList",
  1548. }
  1549. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1550. return srv.(GardenServer).ServicePhoneList(ctx, req.(*v1.ServicePhoneListRequest))
  1551. }
  1552. return interceptor(ctx, in, info, handler)
  1553. }
  1554. func _Garden_VoteListForHousehold_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1555. in := new(v1.VoteListForHouseholdRequest)
  1556. if err := dec(in); err != nil {
  1557. return nil, err
  1558. }
  1559. if interceptor == nil {
  1560. return srv.(GardenServer).VoteListForHousehold(ctx, in)
  1561. }
  1562. info := &grpc.UnaryServerInfo{
  1563. Server: srv,
  1564. FullMethod: "/pb.service.Garden/VoteListForHousehold",
  1565. }
  1566. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1567. return srv.(GardenServer).VoteListForHousehold(ctx, req.(*v1.VoteListForHouseholdRequest))
  1568. }
  1569. return interceptor(ctx, in, info, handler)
  1570. }
  1571. func _Garden_VoteAddAnswer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1572. in := new(v1.VoteAddAnswerRequest)
  1573. if err := dec(in); err != nil {
  1574. return nil, err
  1575. }
  1576. if interceptor == nil {
  1577. return srv.(GardenServer).VoteAddAnswer(ctx, in)
  1578. }
  1579. info := &grpc.UnaryServerInfo{
  1580. Server: srv,
  1581. FullMethod: "/pb.service.Garden/VoteAddAnswer",
  1582. }
  1583. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1584. return srv.(GardenServer).VoteAddAnswer(ctx, req.(*v1.VoteAddAnswerRequest))
  1585. }
  1586. return interceptor(ctx, in, info, handler)
  1587. }
  1588. func _Garden_VoteResultStatistic_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1589. in := new(v1.VoteResultStatisticRequest)
  1590. if err := dec(in); err != nil {
  1591. return nil, err
  1592. }
  1593. if interceptor == nil {
  1594. return srv.(GardenServer).VoteResultStatistic(ctx, in)
  1595. }
  1596. info := &grpc.UnaryServerInfo{
  1597. Server: srv,
  1598. FullMethod: "/pb.service.Garden/VoteResultStatistic",
  1599. }
  1600. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1601. return srv.(GardenServer).VoteResultStatistic(ctx, req.(*v1.VoteResultStatisticRequest))
  1602. }
  1603. return interceptor(ctx, in, info, handler)
  1604. }
  1605. func _Garden_NeighborClassList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1606. in := new(v1.NeighborClassListRequest)
  1607. if err := dec(in); err != nil {
  1608. return nil, err
  1609. }
  1610. if interceptor == nil {
  1611. return srv.(GardenServer).NeighborClassList(ctx, in)
  1612. }
  1613. info := &grpc.UnaryServerInfo{
  1614. Server: srv,
  1615. FullMethod: "/pb.service.Garden/NeighborClassList",
  1616. }
  1617. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1618. return srv.(GardenServer).NeighborClassList(ctx, req.(*v1.NeighborClassListRequest))
  1619. }
  1620. return interceptor(ctx, in, info, handler)
  1621. }
  1622. func _Garden_NeighborArticleAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1623. in := new(v1.NeighborArticleAddRequest)
  1624. if err := dec(in); err != nil {
  1625. return nil, err
  1626. }
  1627. if interceptor == nil {
  1628. return srv.(GardenServer).NeighborArticleAdd(ctx, in)
  1629. }
  1630. info := &grpc.UnaryServerInfo{
  1631. Server: srv,
  1632. FullMethod: "/pb.service.Garden/NeighborArticleAdd",
  1633. }
  1634. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1635. return srv.(GardenServer).NeighborArticleAdd(ctx, req.(*v1.NeighborArticleAddRequest))
  1636. }
  1637. return interceptor(ctx, in, info, handler)
  1638. }
  1639. func _Garden_NeighborArticleDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1640. in := new(v1.NeighborArticleDelRequest)
  1641. if err := dec(in); err != nil {
  1642. return nil, err
  1643. }
  1644. if interceptor == nil {
  1645. return srv.(GardenServer).NeighborArticleDel(ctx, in)
  1646. }
  1647. info := &grpc.UnaryServerInfo{
  1648. Server: srv,
  1649. FullMethod: "/pb.service.Garden/NeighborArticleDel",
  1650. }
  1651. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1652. return srv.(GardenServer).NeighborArticleDel(ctx, req.(*v1.NeighborArticleDelRequest))
  1653. }
  1654. return interceptor(ctx, in, info, handler)
  1655. }
  1656. func _Garden_NeighborArticleUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1657. in := new(v1.NeighborArticleUpdateRequest)
  1658. if err := dec(in); err != nil {
  1659. return nil, err
  1660. }
  1661. if interceptor == nil {
  1662. return srv.(GardenServer).NeighborArticleUpdate(ctx, in)
  1663. }
  1664. info := &grpc.UnaryServerInfo{
  1665. Server: srv,
  1666. FullMethod: "/pb.service.Garden/NeighborArticleUpdate",
  1667. }
  1668. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1669. return srv.(GardenServer).NeighborArticleUpdate(ctx, req.(*v1.NeighborArticleUpdateRequest))
  1670. }
  1671. return interceptor(ctx, in, info, handler)
  1672. }
  1673. func _Garden_NeighborArticleList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1674. in := new(v1.NeighborArticleListRequest)
  1675. if err := dec(in); err != nil {
  1676. return nil, err
  1677. }
  1678. if interceptor == nil {
  1679. return srv.(GardenServer).NeighborArticleList(ctx, in)
  1680. }
  1681. info := &grpc.UnaryServerInfo{
  1682. Server: srv,
  1683. FullMethod: "/pb.service.Garden/NeighborArticleList",
  1684. }
  1685. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1686. return srv.(GardenServer).NeighborArticleList(ctx, req.(*v1.NeighborArticleListRequest))
  1687. }
  1688. return interceptor(ctx, in, info, handler)
  1689. }
  1690. func _Garden_NeighborCommentAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1691. in := new(v1.NeighborCommentAddRequest)
  1692. if err := dec(in); err != nil {
  1693. return nil, err
  1694. }
  1695. if interceptor == nil {
  1696. return srv.(GardenServer).NeighborCommentAdd(ctx, in)
  1697. }
  1698. info := &grpc.UnaryServerInfo{
  1699. Server: srv,
  1700. FullMethod: "/pb.service.Garden/NeighborCommentAdd",
  1701. }
  1702. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1703. return srv.(GardenServer).NeighborCommentAdd(ctx, req.(*v1.NeighborCommentAddRequest))
  1704. }
  1705. return interceptor(ctx, in, info, handler)
  1706. }
  1707. func _Garden_NeighborCommentDel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1708. in := new(v1.NeighborCommentDelRequest)
  1709. if err := dec(in); err != nil {
  1710. return nil, err
  1711. }
  1712. if interceptor == nil {
  1713. return srv.(GardenServer).NeighborCommentDel(ctx, in)
  1714. }
  1715. info := &grpc.UnaryServerInfo{
  1716. Server: srv,
  1717. FullMethod: "/pb.service.Garden/NeighborCommentDel",
  1718. }
  1719. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1720. return srv.(GardenServer).NeighborCommentDel(ctx, req.(*v1.NeighborCommentDelRequest))
  1721. }
  1722. return interceptor(ctx, in, info, handler)
  1723. }
  1724. func _Garden_NeighborCommentUpdate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1725. in := new(v1.NeighborCommentUpdateRequest)
  1726. if err := dec(in); err != nil {
  1727. return nil, err
  1728. }
  1729. if interceptor == nil {
  1730. return srv.(GardenServer).NeighborCommentUpdate(ctx, in)
  1731. }
  1732. info := &grpc.UnaryServerInfo{
  1733. Server: srv,
  1734. FullMethod: "/pb.service.Garden/NeighborCommentUpdate",
  1735. }
  1736. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1737. return srv.(GardenServer).NeighborCommentUpdate(ctx, req.(*v1.NeighborCommentUpdateRequest))
  1738. }
  1739. return interceptor(ctx, in, info, handler)
  1740. }
  1741. func _Garden_NeighborCommentList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1742. in := new(v1.NeighborCommentListRequest)
  1743. if err := dec(in); err != nil {
  1744. return nil, err
  1745. }
  1746. if interceptor == nil {
  1747. return srv.(GardenServer).NeighborCommentList(ctx, in)
  1748. }
  1749. info := &grpc.UnaryServerInfo{
  1750. Server: srv,
  1751. FullMethod: "/pb.service.Garden/NeighborCommentList",
  1752. }
  1753. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1754. return srv.(GardenServer).NeighborCommentList(ctx, req.(*v1.NeighborCommentListRequest))
  1755. }
  1756. return interceptor(ctx, in, info, handler)
  1757. }
  1758. func _Garden_NeighborLike_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1759. in := new(v1.NeighborLikeRequest)
  1760. if err := dec(in); err != nil {
  1761. return nil, err
  1762. }
  1763. if interceptor == nil {
  1764. return srv.(GardenServer).NeighborLike(ctx, in)
  1765. }
  1766. info := &grpc.UnaryServerInfo{
  1767. Server: srv,
  1768. FullMethod: "/pb.service.Garden/NeighborLike",
  1769. }
  1770. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1771. return srv.(GardenServer).NeighborLike(ctx, req.(*v1.NeighborLikeRequest))
  1772. }
  1773. return interceptor(ctx, in, info, handler)
  1774. }
  1775. func _Garden_GardenHouseholdUnitIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1776. in := new(v1.GardenHouseholdUnitIdsRequest)
  1777. if err := dec(in); err != nil {
  1778. return nil, err
  1779. }
  1780. if interceptor == nil {
  1781. return srv.(GardenServer).GardenHouseholdUnitIds(ctx, in)
  1782. }
  1783. info := &grpc.UnaryServerInfo{
  1784. Server: srv,
  1785. FullMethod: "/pb.service.Garden/GardenHouseholdUnitIds",
  1786. }
  1787. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1788. return srv.(GardenServer).GardenHouseholdUnitIds(ctx, req.(*v1.GardenHouseholdUnitIdsRequest))
  1789. }
  1790. return interceptor(ctx, in, info, handler)
  1791. }
  1792. func _Garden_GardenHouseholdDelHouse_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1793. in := new(v1.GardenHouseholdDelHouseRequest)
  1794. if err := dec(in); err != nil {
  1795. return nil, err
  1796. }
  1797. if interceptor == nil {
  1798. return srv.(GardenServer).GardenHouseholdDelHouse(ctx, in)
  1799. }
  1800. info := &grpc.UnaryServerInfo{
  1801. Server: srv,
  1802. FullMethod: "/pb.service.Garden/GardenHouseholdDelHouse",
  1803. }
  1804. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1805. return srv.(GardenServer).GardenHouseholdDelHouse(ctx, req.(*v1.GardenHouseholdDelHouseRequest))
  1806. }
  1807. return interceptor(ctx, in, info, handler)
  1808. }
  1809. var _Garden_serviceDesc = grpc.ServiceDesc{
  1810. ServiceName: "pb.service.Garden",
  1811. HandlerType: (*GardenServer)(nil),
  1812. Methods: []grpc.MethodDesc{
  1813. {
  1814. MethodName: "AnnouncementList",
  1815. Handler: _Garden_AnnouncementList_Handler,
  1816. },
  1817. {
  1818. MethodName: "AnnouncementReadAdd",
  1819. Handler: _Garden_AnnouncementReadAdd_Handler,
  1820. },
  1821. {
  1822. MethodName: "BuildingManagerList",
  1823. Handler: _Garden_BuildingManagerList_Handler,
  1824. },
  1825. {
  1826. MethodName: "BuildingList",
  1827. Handler: _Garden_BuildingList_Handler,
  1828. },
  1829. {
  1830. MethodName: "UnitList",
  1831. Handler: _Garden_UnitList_Handler,
  1832. },
  1833. {
  1834. MethodName: "HouseList",
  1835. Handler: _Garden_HouseList_Handler,
  1836. },
  1837. {
  1838. MethodName: "HouseRentManagerList",
  1839. Handler: _Garden_HouseRentManagerList_Handler,
  1840. },
  1841. {
  1842. MethodName: "GardenHouseRentInfo",
  1843. Handler: _Garden_GardenHouseRentInfo_Handler,
  1844. },
  1845. {
  1846. MethodName: "RepairClassList",
  1847. Handler: _Garden_RepairClassList_Handler,
  1848. },
  1849. {
  1850. MethodName: "RepairOrderList",
  1851. Handler: _Garden_RepairOrderList_Handler,
  1852. },
  1853. {
  1854. MethodName: "RepairOrderAdd",
  1855. Handler: _Garden_RepairOrderAdd_Handler,
  1856. },
  1857. {
  1858. MethodName: "RepairOrderUpdate",
  1859. Handler: _Garden_RepairOrderUpdate_Handler,
  1860. },
  1861. {
  1862. MethodName: "RepairOrderDel",
  1863. Handler: _Garden_RepairOrderDel_Handler,
  1864. },
  1865. {
  1866. MethodName: "RepairOrderInfo",
  1867. Handler: _Garden_RepairOrderInfo_Handler,
  1868. },
  1869. {
  1870. MethodName: "RepairOrderReturnVisit",
  1871. Handler: _Garden_RepairOrderReturnVisit_Handler,
  1872. },
  1873. {
  1874. MethodName: "SuggestionOrderInfo",
  1875. Handler: _Garden_SuggestionOrderInfo_Handler,
  1876. },
  1877. {
  1878. MethodName: "SuggestionOrderReturnVisit",
  1879. Handler: _Garden_SuggestionOrderReturnVisit_Handler,
  1880. },
  1881. {
  1882. MethodName: "SuggestionOrderList",
  1883. Handler: _Garden_SuggestionOrderList_Handler,
  1884. },
  1885. {
  1886. MethodName: "SuggestionOrderAdd",
  1887. Handler: _Garden_SuggestionOrderAdd_Handler,
  1888. },
  1889. {
  1890. MethodName: "SuggestionOrderUpdate",
  1891. Handler: _Garden_SuggestionOrderUpdate_Handler,
  1892. },
  1893. {
  1894. MethodName: "SuggestionOrderDel",
  1895. Handler: _Garden_SuggestionOrderDel_Handler,
  1896. },
  1897. {
  1898. MethodName: "ChargeUnpayList",
  1899. Handler: _Garden_ChargeUnpayList_Handler,
  1900. },
  1901. {
  1902. MethodName: "ChargeList",
  1903. Handler: _Garden_ChargeList_Handler,
  1904. },
  1905. {
  1906. MethodName: "ChargeBillList",
  1907. Handler: _Garden_ChargeBillList_Handler,
  1908. },
  1909. {
  1910. MethodName: "ChargePrePayInfo",
  1911. Handler: _Garden_ChargePrePayInfo_Handler,
  1912. },
  1913. {
  1914. MethodName: "ChargeOrderList",
  1915. Handler: _Garden_ChargeOrderList_Handler,
  1916. },
  1917. {
  1918. MethodName: "ChargeOrderInfo",
  1919. Handler: _Garden_ChargeOrderInfo_Handler,
  1920. },
  1921. {
  1922. MethodName: "ChargeOrderCancel",
  1923. Handler: _Garden_ChargeOrderCancel_Handler,
  1924. },
  1925. {
  1926. MethodName: "ChargePrePayByHousehold",
  1927. Handler: _Garden_ChargePrePayByHousehold_Handler,
  1928. },
  1929. {
  1930. MethodName: "ChargeMonthInfo",
  1931. Handler: _Garden_ChargeMonthInfo_Handler,
  1932. },
  1933. {
  1934. MethodName: "ChargeBillPayByHousehold",
  1935. Handler: _Garden_ChargeBillPayByHousehold_Handler,
  1936. },
  1937. {
  1938. MethodName: "ChargePayedBillList",
  1939. Handler: _Garden_ChargePayedBillList_Handler,
  1940. },
  1941. {
  1942. MethodName: "ParkList",
  1943. Handler: _Garden_ParkList_Handler,
  1944. },
  1945. {
  1946. MethodName: "ParkSpaceList",
  1947. Handler: _Garden_ParkSpaceList_Handler,
  1948. },
  1949. {
  1950. MethodName: "VehicleList",
  1951. Handler: _Garden_VehicleList_Handler,
  1952. },
  1953. {
  1954. MethodName: "EventList",
  1955. Handler: _Garden_EventList_Handler,
  1956. },
  1957. {
  1958. MethodName: "EventSignAdd",
  1959. Handler: _Garden_EventSignAdd_Handler,
  1960. },
  1961. {
  1962. MethodName: "ServicePhoneClassList",
  1963. Handler: _Garden_ServicePhoneClassList_Handler,
  1964. },
  1965. {
  1966. MethodName: "ServicePhoneList",
  1967. Handler: _Garden_ServicePhoneList_Handler,
  1968. },
  1969. {
  1970. MethodName: "VoteListForHousehold",
  1971. Handler: _Garden_VoteListForHousehold_Handler,
  1972. },
  1973. {
  1974. MethodName: "VoteAddAnswer",
  1975. Handler: _Garden_VoteAddAnswer_Handler,
  1976. },
  1977. {
  1978. MethodName: "VoteResultStatistic",
  1979. Handler: _Garden_VoteResultStatistic_Handler,
  1980. },
  1981. {
  1982. MethodName: "NeighborClassList",
  1983. Handler: _Garden_NeighborClassList_Handler,
  1984. },
  1985. {
  1986. MethodName: "NeighborArticleAdd",
  1987. Handler: _Garden_NeighborArticleAdd_Handler,
  1988. },
  1989. {
  1990. MethodName: "NeighborArticleDel",
  1991. Handler: _Garden_NeighborArticleDel_Handler,
  1992. },
  1993. {
  1994. MethodName: "NeighborArticleUpdate",
  1995. Handler: _Garden_NeighborArticleUpdate_Handler,
  1996. },
  1997. {
  1998. MethodName: "NeighborArticleList",
  1999. Handler: _Garden_NeighborArticleList_Handler,
  2000. },
  2001. {
  2002. MethodName: "NeighborCommentAdd",
  2003. Handler: _Garden_NeighborCommentAdd_Handler,
  2004. },
  2005. {
  2006. MethodName: "NeighborCommentDel",
  2007. Handler: _Garden_NeighborCommentDel_Handler,
  2008. },
  2009. {
  2010. MethodName: "NeighborCommentUpdate",
  2011. Handler: _Garden_NeighborCommentUpdate_Handler,
  2012. },
  2013. {
  2014. MethodName: "NeighborCommentList",
  2015. Handler: _Garden_NeighborCommentList_Handler,
  2016. },
  2017. {
  2018. MethodName: "NeighborLike",
  2019. Handler: _Garden_NeighborLike_Handler,
  2020. },
  2021. {
  2022. MethodName: "GardenHouseholdUnitIds",
  2023. Handler: _Garden_GardenHouseholdUnitIds_Handler,
  2024. },
  2025. {
  2026. MethodName: "GardenHouseholdDelHouse",
  2027. Handler: _Garden_GardenHouseholdDelHouse_Handler,
  2028. },
  2029. },
  2030. Streams: []grpc.StreamDesc{},
  2031. Metadata: "garden_service.proto",
  2032. }