device.pb.go 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: device.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package v1
  5. import (
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. math "math"
  9. )
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  19. // 门禁入库
  20. type GateInRequest struct {
  21. // 设备名
  22. DeviceName string `protobuf:"bytes,1,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  23. // 序列号
  24. Sn string `protobuf:"bytes,2,opt,name=sn,proto3" json:"sn"`
  25. // 厂商
  26. Manufactor string `protobuf:"bytes,3,opt,name=manufactor,proto3" json:"manufactor"`
  27. // 授权key
  28. AuthKey string `protobuf:"bytes,4,opt,name=auth_key,json=authKey,proto3" json:"auth_key"`
  29. // 协议
  30. Protocol int32 `protobuf:"varint,5,opt,name=protocol,proto3" json:"protocol"`
  31. QcodeSupport bool `protobuf:"varint,6,opt,name=qcode_support,json=qcodeSupport,proto3" json:"qcode_support"`
  32. PicSupport bool `protobuf:"varint,7,opt,name=pic_support,json=picSupport,proto3" json:"pic_support"`
  33. CardSupport bool `protobuf:"varint,8,opt,name=card_support,json=cardSupport,proto3" json:"card_support"`
  34. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  35. XXX_unrecognized []byte `json:"-"`
  36. XXX_sizecache int32 `json:"-"`
  37. }
  38. func (m *GateInRequest) Reset() { *m = GateInRequest{} }
  39. func (m *GateInRequest) String() string { return proto.CompactTextString(m) }
  40. func (*GateInRequest) ProtoMessage() {}
  41. func (*GateInRequest) Descriptor() ([]byte, []int) {
  42. return fileDescriptor_870276a56ac00da5, []int{0}
  43. }
  44. func (m *GateInRequest) XXX_Unmarshal(b []byte) error {
  45. return xxx_messageInfo_GateInRequest.Unmarshal(m, b)
  46. }
  47. func (m *GateInRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  48. return xxx_messageInfo_GateInRequest.Marshal(b, m, deterministic)
  49. }
  50. func (m *GateInRequest) XXX_Merge(src proto.Message) {
  51. xxx_messageInfo_GateInRequest.Merge(m, src)
  52. }
  53. func (m *GateInRequest) XXX_Size() int {
  54. return xxx_messageInfo_GateInRequest.Size(m)
  55. }
  56. func (m *GateInRequest) XXX_DiscardUnknown() {
  57. xxx_messageInfo_GateInRequest.DiscardUnknown(m)
  58. }
  59. var xxx_messageInfo_GateInRequest proto.InternalMessageInfo
  60. func (m *GateInRequest) GetDeviceName() string {
  61. if m != nil {
  62. return m.DeviceName
  63. }
  64. return ""
  65. }
  66. func (m *GateInRequest) GetSn() string {
  67. if m != nil {
  68. return m.Sn
  69. }
  70. return ""
  71. }
  72. func (m *GateInRequest) GetManufactor() string {
  73. if m != nil {
  74. return m.Manufactor
  75. }
  76. return ""
  77. }
  78. func (m *GateInRequest) GetAuthKey() string {
  79. if m != nil {
  80. return m.AuthKey
  81. }
  82. return ""
  83. }
  84. func (m *GateInRequest) GetProtocol() int32 {
  85. if m != nil {
  86. return m.Protocol
  87. }
  88. return 0
  89. }
  90. func (m *GateInRequest) GetQcodeSupport() bool {
  91. if m != nil {
  92. return m.QcodeSupport
  93. }
  94. return false
  95. }
  96. func (m *GateInRequest) GetPicSupport() bool {
  97. if m != nil {
  98. return m.PicSupport
  99. }
  100. return false
  101. }
  102. func (m *GateInRequest) GetCardSupport() bool {
  103. if m != nil {
  104. return m.CardSupport
  105. }
  106. return false
  107. }
  108. type GateInReply struct {
  109. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  110. XXX_unrecognized []byte `json:"-"`
  111. XXX_sizecache int32 `json:"-"`
  112. }
  113. func (m *GateInReply) Reset() { *m = GateInReply{} }
  114. func (m *GateInReply) String() string { return proto.CompactTextString(m) }
  115. func (*GateInReply) ProtoMessage() {}
  116. func (*GateInReply) Descriptor() ([]byte, []int) {
  117. return fileDescriptor_870276a56ac00da5, []int{1}
  118. }
  119. func (m *GateInReply) XXX_Unmarshal(b []byte) error {
  120. return xxx_messageInfo_GateInReply.Unmarshal(m, b)
  121. }
  122. func (m *GateInReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  123. return xxx_messageInfo_GateInReply.Marshal(b, m, deterministic)
  124. }
  125. func (m *GateInReply) XXX_Merge(src proto.Message) {
  126. xxx_messageInfo_GateInReply.Merge(m, src)
  127. }
  128. func (m *GateInReply) XXX_Size() int {
  129. return xxx_messageInfo_GateInReply.Size(m)
  130. }
  131. func (m *GateInReply) XXX_DiscardUnknown() {
  132. xxx_messageInfo_GateInReply.DiscardUnknown(m)
  133. }
  134. var xxx_messageInfo_GateInReply proto.InternalMessageInfo
  135. type GateBatchInItem struct {
  136. // 设备名
  137. DeviceName string `protobuf:"bytes,1,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  138. // 序列号
  139. Sn string `protobuf:"bytes,2,opt,name=sn,proto3" json:"sn"`
  140. // 厂商
  141. Manufactor string `protobuf:"bytes,3,opt,name=manufactor,proto3" json:"manufactor"`
  142. // 授权key
  143. AuthKey string `protobuf:"bytes,4,opt,name=auth_key,json=authKey,proto3" json:"auth_key"`
  144. // 协议
  145. Protocol int32 `protobuf:"varint,5,opt,name=protocol,proto3" json:"protocol"`
  146. QcodeSupport bool `protobuf:"varint,6,opt,name=qcode_support,json=qcodeSupport,proto3" json:"qcode_support"`
  147. PicSupport bool `protobuf:"varint,7,opt,name=pic_support,json=picSupport,proto3" json:"pic_support"`
  148. CardSupport bool `protobuf:"varint,8,opt,name=card_support,json=cardSupport,proto3" json:"card_support"`
  149. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  150. XXX_unrecognized []byte `json:"-"`
  151. XXX_sizecache int32 `json:"-"`
  152. }
  153. func (m *GateBatchInItem) Reset() { *m = GateBatchInItem{} }
  154. func (m *GateBatchInItem) String() string { return proto.CompactTextString(m) }
  155. func (*GateBatchInItem) ProtoMessage() {}
  156. func (*GateBatchInItem) Descriptor() ([]byte, []int) {
  157. return fileDescriptor_870276a56ac00da5, []int{2}
  158. }
  159. func (m *GateBatchInItem) XXX_Unmarshal(b []byte) error {
  160. return xxx_messageInfo_GateBatchInItem.Unmarshal(m, b)
  161. }
  162. func (m *GateBatchInItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  163. return xxx_messageInfo_GateBatchInItem.Marshal(b, m, deterministic)
  164. }
  165. func (m *GateBatchInItem) XXX_Merge(src proto.Message) {
  166. xxx_messageInfo_GateBatchInItem.Merge(m, src)
  167. }
  168. func (m *GateBatchInItem) XXX_Size() int {
  169. return xxx_messageInfo_GateBatchInItem.Size(m)
  170. }
  171. func (m *GateBatchInItem) XXX_DiscardUnknown() {
  172. xxx_messageInfo_GateBatchInItem.DiscardUnknown(m)
  173. }
  174. var xxx_messageInfo_GateBatchInItem proto.InternalMessageInfo
  175. func (m *GateBatchInItem) GetDeviceName() string {
  176. if m != nil {
  177. return m.DeviceName
  178. }
  179. return ""
  180. }
  181. func (m *GateBatchInItem) GetSn() string {
  182. if m != nil {
  183. return m.Sn
  184. }
  185. return ""
  186. }
  187. func (m *GateBatchInItem) GetManufactor() string {
  188. if m != nil {
  189. return m.Manufactor
  190. }
  191. return ""
  192. }
  193. func (m *GateBatchInItem) GetAuthKey() string {
  194. if m != nil {
  195. return m.AuthKey
  196. }
  197. return ""
  198. }
  199. func (m *GateBatchInItem) GetProtocol() int32 {
  200. if m != nil {
  201. return m.Protocol
  202. }
  203. return 0
  204. }
  205. func (m *GateBatchInItem) GetQcodeSupport() bool {
  206. if m != nil {
  207. return m.QcodeSupport
  208. }
  209. return false
  210. }
  211. func (m *GateBatchInItem) GetPicSupport() bool {
  212. if m != nil {
  213. return m.PicSupport
  214. }
  215. return false
  216. }
  217. func (m *GateBatchInItem) GetCardSupport() bool {
  218. if m != nil {
  219. return m.CardSupport
  220. }
  221. return false
  222. }
  223. type GateBatchInRequest struct {
  224. List []*GateBatchInItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  225. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  226. XXX_unrecognized []byte `json:"-"`
  227. XXX_sizecache int32 `json:"-"`
  228. }
  229. func (m *GateBatchInRequest) Reset() { *m = GateBatchInRequest{} }
  230. func (m *GateBatchInRequest) String() string { return proto.CompactTextString(m) }
  231. func (*GateBatchInRequest) ProtoMessage() {}
  232. func (*GateBatchInRequest) Descriptor() ([]byte, []int) {
  233. return fileDescriptor_870276a56ac00da5, []int{3}
  234. }
  235. func (m *GateBatchInRequest) XXX_Unmarshal(b []byte) error {
  236. return xxx_messageInfo_GateBatchInRequest.Unmarshal(m, b)
  237. }
  238. func (m *GateBatchInRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  239. return xxx_messageInfo_GateBatchInRequest.Marshal(b, m, deterministic)
  240. }
  241. func (m *GateBatchInRequest) XXX_Merge(src proto.Message) {
  242. xxx_messageInfo_GateBatchInRequest.Merge(m, src)
  243. }
  244. func (m *GateBatchInRequest) XXX_Size() int {
  245. return xxx_messageInfo_GateBatchInRequest.Size(m)
  246. }
  247. func (m *GateBatchInRequest) XXX_DiscardUnknown() {
  248. xxx_messageInfo_GateBatchInRequest.DiscardUnknown(m)
  249. }
  250. var xxx_messageInfo_GateBatchInRequest proto.InternalMessageInfo
  251. func (m *GateBatchInRequest) GetList() []*GateBatchInItem {
  252. if m != nil {
  253. return m.List
  254. }
  255. return nil
  256. }
  257. type GateBatchInReply struct {
  258. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  259. XXX_unrecognized []byte `json:"-"`
  260. XXX_sizecache int32 `json:"-"`
  261. }
  262. func (m *GateBatchInReply) Reset() { *m = GateBatchInReply{} }
  263. func (m *GateBatchInReply) String() string { return proto.CompactTextString(m) }
  264. func (*GateBatchInReply) ProtoMessage() {}
  265. func (*GateBatchInReply) Descriptor() ([]byte, []int) {
  266. return fileDescriptor_870276a56ac00da5, []int{4}
  267. }
  268. func (m *GateBatchInReply) XXX_Unmarshal(b []byte) error {
  269. return xxx_messageInfo_GateBatchInReply.Unmarshal(m, b)
  270. }
  271. func (m *GateBatchInReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  272. return xxx_messageInfo_GateBatchInReply.Marshal(b, m, deterministic)
  273. }
  274. func (m *GateBatchInReply) XXX_Merge(src proto.Message) {
  275. xxx_messageInfo_GateBatchInReply.Merge(m, src)
  276. }
  277. func (m *GateBatchInReply) XXX_Size() int {
  278. return xxx_messageInfo_GateBatchInReply.Size(m)
  279. }
  280. func (m *GateBatchInReply) XXX_DiscardUnknown() {
  281. xxx_messageInfo_GateBatchInReply.DiscardUnknown(m)
  282. }
  283. var xxx_messageInfo_GateBatchInReply proto.InternalMessageInfo
  284. // 门禁出库
  285. type GateOutRequest struct {
  286. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  287. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  288. OutUser string `protobuf:"bytes,3,opt,name=out_user,json=outUser,proto3" json:"out_user"`
  289. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  290. XXX_unrecognized []byte `json:"-"`
  291. XXX_sizecache int32 `json:"-"`
  292. }
  293. func (m *GateOutRequest) Reset() { *m = GateOutRequest{} }
  294. func (m *GateOutRequest) String() string { return proto.CompactTextString(m) }
  295. func (*GateOutRequest) ProtoMessage() {}
  296. func (*GateOutRequest) Descriptor() ([]byte, []int) {
  297. return fileDescriptor_870276a56ac00da5, []int{5}
  298. }
  299. func (m *GateOutRequest) XXX_Unmarshal(b []byte) error {
  300. return xxx_messageInfo_GateOutRequest.Unmarshal(m, b)
  301. }
  302. func (m *GateOutRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  303. return xxx_messageInfo_GateOutRequest.Marshal(b, m, deterministic)
  304. }
  305. func (m *GateOutRequest) XXX_Merge(src proto.Message) {
  306. xxx_messageInfo_GateOutRequest.Merge(m, src)
  307. }
  308. func (m *GateOutRequest) XXX_Size() int {
  309. return xxx_messageInfo_GateOutRequest.Size(m)
  310. }
  311. func (m *GateOutRequest) XXX_DiscardUnknown() {
  312. xxx_messageInfo_GateOutRequest.DiscardUnknown(m)
  313. }
  314. var xxx_messageInfo_GateOutRequest proto.InternalMessageInfo
  315. func (m *GateOutRequest) GetDeviceId() int64 {
  316. if m != nil {
  317. return m.DeviceId
  318. }
  319. return 0
  320. }
  321. func (m *GateOutRequest) GetGardenId() int64 {
  322. if m != nil {
  323. return m.GardenId
  324. }
  325. return 0
  326. }
  327. func (m *GateOutRequest) GetOutUser() string {
  328. if m != nil {
  329. return m.OutUser
  330. }
  331. return ""
  332. }
  333. type GateOutReply struct {
  334. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  335. XXX_unrecognized []byte `json:"-"`
  336. XXX_sizecache int32 `json:"-"`
  337. }
  338. func (m *GateOutReply) Reset() { *m = GateOutReply{} }
  339. func (m *GateOutReply) String() string { return proto.CompactTextString(m) }
  340. func (*GateOutReply) ProtoMessage() {}
  341. func (*GateOutReply) Descriptor() ([]byte, []int) {
  342. return fileDescriptor_870276a56ac00da5, []int{6}
  343. }
  344. func (m *GateOutReply) XXX_Unmarshal(b []byte) error {
  345. return xxx_messageInfo_GateOutReply.Unmarshal(m, b)
  346. }
  347. func (m *GateOutReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  348. return xxx_messageInfo_GateOutReply.Marshal(b, m, deterministic)
  349. }
  350. func (m *GateOutReply) XXX_Merge(src proto.Message) {
  351. xxx_messageInfo_GateOutReply.Merge(m, src)
  352. }
  353. func (m *GateOutReply) XXX_Size() int {
  354. return xxx_messageInfo_GateOutReply.Size(m)
  355. }
  356. func (m *GateOutReply) XXX_DiscardUnknown() {
  357. xxx_messageInfo_GateOutReply.DiscardUnknown(m)
  358. }
  359. var xxx_messageInfo_GateOutReply proto.InternalMessageInfo
  360. // 门禁列表
  361. type GateItem struct {
  362. // 设备id
  363. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  364. // 设备名
  365. DeviceName string `protobuf:"bytes,2,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  366. // 序列号
  367. Sn string `protobuf:"bytes,3,opt,name=sn,proto3" json:"sn"`
  368. // 厂商
  369. Manufactor string `protobuf:"bytes,4,opt,name=manufactor,proto3" json:"manufactor"`
  370. // 授权key
  371. AuthKey string `protobuf:"bytes,5,opt,name=auth_key,json=authKey,proto3" json:"auth_key"`
  372. // 1支持二维码 2 不支持
  373. QcodeSupport int32 `protobuf:"varint,6,opt,name=qcode_support,json=qcodeSupport,proto3" json:"qcode_support"`
  374. // 协议
  375. Protocol int32 `protobuf:"varint,7,opt,name=protocol,proto3" json:"protocol"`
  376. // 小区id
  377. GardenId int64 `protobuf:"varint,8,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  378. // 小区名
  379. GardenName string `protobuf:"bytes,9,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  380. // 出库人
  381. OutUser string `protobuf:"bytes,10,opt,name=out_user,json=outUser,proto3" json:"out_user"`
  382. // 出库时间
  383. OutTime int64 `protobuf:"varint,11,opt,name=out_time,json=outTime,proto3" json:"out_time"`
  384. // 1 在线 2 离线
  385. Status int32 `protobuf:"varint,12,opt,name=status,proto3" json:"status"`
  386. // true 已启用 false 已禁用
  387. Enable bool `protobuf:"varint,13,opt,name=enable,proto3" json:"enable"`
  388. // 1 进场 2 出场 3 进出场
  389. Direction int32 `protobuf:"varint,14,opt,name=direction,proto3" json:"direction"`
  390. Location string `protobuf:"bytes,15,opt,name=location,proto3" json:"location"`
  391. ProtocolDesc string `protobuf:"bytes,16,opt,name=protocol_desc,json=protocolDesc,proto3" json:"protocol_desc"`
  392. // 1 支持人脸 2 不支持
  393. PicSupport int32 `protobuf:"varint,17,opt,name=pic_support,json=picSupport,proto3" json:"pic_support"`
  394. // 1 支持卡 2 不支持
  395. CardSupport int32 `protobuf:"varint,18,opt,name=card_support,json=cardSupport,proto3" json:"card_support"`
  396. UserName string `protobuf:"bytes,19,opt,name=user_name,json=userName,proto3" json:"user_name"`
  397. Password string `protobuf:"bytes,20,opt,name=password,proto3" json:"password"`
  398. Ip string `protobuf:"bytes,21,opt,name=ip,proto3" json:"ip"`
  399. Mac string `protobuf:"bytes,22,opt,name=mac,proto3" json:"mac"`
  400. Port int64 `protobuf:"varint,23,opt,name=port,proto3" json:"port"`
  401. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  402. XXX_unrecognized []byte `json:"-"`
  403. XXX_sizecache int32 `json:"-"`
  404. }
  405. func (m *GateItem) Reset() { *m = GateItem{} }
  406. func (m *GateItem) String() string { return proto.CompactTextString(m) }
  407. func (*GateItem) ProtoMessage() {}
  408. func (*GateItem) Descriptor() ([]byte, []int) {
  409. return fileDescriptor_870276a56ac00da5, []int{7}
  410. }
  411. func (m *GateItem) XXX_Unmarshal(b []byte) error {
  412. return xxx_messageInfo_GateItem.Unmarshal(m, b)
  413. }
  414. func (m *GateItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  415. return xxx_messageInfo_GateItem.Marshal(b, m, deterministic)
  416. }
  417. func (m *GateItem) XXX_Merge(src proto.Message) {
  418. xxx_messageInfo_GateItem.Merge(m, src)
  419. }
  420. func (m *GateItem) XXX_Size() int {
  421. return xxx_messageInfo_GateItem.Size(m)
  422. }
  423. func (m *GateItem) XXX_DiscardUnknown() {
  424. xxx_messageInfo_GateItem.DiscardUnknown(m)
  425. }
  426. var xxx_messageInfo_GateItem proto.InternalMessageInfo
  427. func (m *GateItem) GetDeviceId() int64 {
  428. if m != nil {
  429. return m.DeviceId
  430. }
  431. return 0
  432. }
  433. func (m *GateItem) GetDeviceName() string {
  434. if m != nil {
  435. return m.DeviceName
  436. }
  437. return ""
  438. }
  439. func (m *GateItem) GetSn() string {
  440. if m != nil {
  441. return m.Sn
  442. }
  443. return ""
  444. }
  445. func (m *GateItem) GetManufactor() string {
  446. if m != nil {
  447. return m.Manufactor
  448. }
  449. return ""
  450. }
  451. func (m *GateItem) GetAuthKey() string {
  452. if m != nil {
  453. return m.AuthKey
  454. }
  455. return ""
  456. }
  457. func (m *GateItem) GetQcodeSupport() int32 {
  458. if m != nil {
  459. return m.QcodeSupport
  460. }
  461. return 0
  462. }
  463. func (m *GateItem) GetProtocol() int32 {
  464. if m != nil {
  465. return m.Protocol
  466. }
  467. return 0
  468. }
  469. func (m *GateItem) GetGardenId() int64 {
  470. if m != nil {
  471. return m.GardenId
  472. }
  473. return 0
  474. }
  475. func (m *GateItem) GetGardenName() string {
  476. if m != nil {
  477. return m.GardenName
  478. }
  479. return ""
  480. }
  481. func (m *GateItem) GetOutUser() string {
  482. if m != nil {
  483. return m.OutUser
  484. }
  485. return ""
  486. }
  487. func (m *GateItem) GetOutTime() int64 {
  488. if m != nil {
  489. return m.OutTime
  490. }
  491. return 0
  492. }
  493. func (m *GateItem) GetStatus() int32 {
  494. if m != nil {
  495. return m.Status
  496. }
  497. return 0
  498. }
  499. func (m *GateItem) GetEnable() bool {
  500. if m != nil {
  501. return m.Enable
  502. }
  503. return false
  504. }
  505. func (m *GateItem) GetDirection() int32 {
  506. if m != nil {
  507. return m.Direction
  508. }
  509. return 0
  510. }
  511. func (m *GateItem) GetLocation() string {
  512. if m != nil {
  513. return m.Location
  514. }
  515. return ""
  516. }
  517. func (m *GateItem) GetProtocolDesc() string {
  518. if m != nil {
  519. return m.ProtocolDesc
  520. }
  521. return ""
  522. }
  523. func (m *GateItem) GetPicSupport() int32 {
  524. if m != nil {
  525. return m.PicSupport
  526. }
  527. return 0
  528. }
  529. func (m *GateItem) GetCardSupport() int32 {
  530. if m != nil {
  531. return m.CardSupport
  532. }
  533. return 0
  534. }
  535. func (m *GateItem) GetUserName() string {
  536. if m != nil {
  537. return m.UserName
  538. }
  539. return ""
  540. }
  541. func (m *GateItem) GetPassword() string {
  542. if m != nil {
  543. return m.Password
  544. }
  545. return ""
  546. }
  547. func (m *GateItem) GetIp() string {
  548. if m != nil {
  549. return m.Ip
  550. }
  551. return ""
  552. }
  553. func (m *GateItem) GetMac() string {
  554. if m != nil {
  555. return m.Mac
  556. }
  557. return ""
  558. }
  559. func (m *GateItem) GetPort() int64 {
  560. if m != nil {
  561. return m.Port
  562. }
  563. return 0
  564. }
  565. type GateListRequest struct {
  566. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  567. Page int64 `protobuf:"varint,2,opt,name=page,proto3" json:"page"`
  568. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  569. // 1 已出库 2 未出库
  570. Out int32 `protobuf:"varint,4,opt,name=out,proto3" json:"out"`
  571. DeviceId int32 `protobuf:"varint,5,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  572. Sn string `protobuf:"bytes,6,opt,name=sn,proto3" json:"sn"`
  573. DeviceName string `protobuf:"bytes,7,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  574. Manufactor string `protobuf:"bytes,8,opt,name=manufactor,proto3" json:"manufactor"`
  575. UnitIds []int64 `protobuf:"varint,9,rep,packed,name=unit_ids,json=unitIds,proto3" json:"unit_ids"`
  576. QcodeSupport int32 `protobuf:"varint,10,opt,name=qcode_support,json=qcodeSupport,proto3" json:"qcode_support"`
  577. PicSupport int32 `protobuf:"varint,11,opt,name=pic_support,json=picSupport,proto3" json:"pic_support"`
  578. CardSupport int32 `protobuf:"varint,12,opt,name=card_support,json=cardSupport,proto3" json:"card_support"`
  579. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  580. XXX_unrecognized []byte `json:"-"`
  581. XXX_sizecache int32 `json:"-"`
  582. }
  583. func (m *GateListRequest) Reset() { *m = GateListRequest{} }
  584. func (m *GateListRequest) String() string { return proto.CompactTextString(m) }
  585. func (*GateListRequest) ProtoMessage() {}
  586. func (*GateListRequest) Descriptor() ([]byte, []int) {
  587. return fileDescriptor_870276a56ac00da5, []int{8}
  588. }
  589. func (m *GateListRequest) XXX_Unmarshal(b []byte) error {
  590. return xxx_messageInfo_GateListRequest.Unmarshal(m, b)
  591. }
  592. func (m *GateListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  593. return xxx_messageInfo_GateListRequest.Marshal(b, m, deterministic)
  594. }
  595. func (m *GateListRequest) XXX_Merge(src proto.Message) {
  596. xxx_messageInfo_GateListRequest.Merge(m, src)
  597. }
  598. func (m *GateListRequest) XXX_Size() int {
  599. return xxx_messageInfo_GateListRequest.Size(m)
  600. }
  601. func (m *GateListRequest) XXX_DiscardUnknown() {
  602. xxx_messageInfo_GateListRequest.DiscardUnknown(m)
  603. }
  604. var xxx_messageInfo_GateListRequest proto.InternalMessageInfo
  605. func (m *GateListRequest) GetGardenId() int64 {
  606. if m != nil {
  607. return m.GardenId
  608. }
  609. return 0
  610. }
  611. func (m *GateListRequest) GetPage() int64 {
  612. if m != nil {
  613. return m.Page
  614. }
  615. return 0
  616. }
  617. func (m *GateListRequest) GetPageSize() int64 {
  618. if m != nil {
  619. return m.PageSize
  620. }
  621. return 0
  622. }
  623. func (m *GateListRequest) GetOut() int32 {
  624. if m != nil {
  625. return m.Out
  626. }
  627. return 0
  628. }
  629. func (m *GateListRequest) GetDeviceId() int32 {
  630. if m != nil {
  631. return m.DeviceId
  632. }
  633. return 0
  634. }
  635. func (m *GateListRequest) GetSn() string {
  636. if m != nil {
  637. return m.Sn
  638. }
  639. return ""
  640. }
  641. func (m *GateListRequest) GetDeviceName() string {
  642. if m != nil {
  643. return m.DeviceName
  644. }
  645. return ""
  646. }
  647. func (m *GateListRequest) GetManufactor() string {
  648. if m != nil {
  649. return m.Manufactor
  650. }
  651. return ""
  652. }
  653. func (m *GateListRequest) GetUnitIds() []int64 {
  654. if m != nil {
  655. return m.UnitIds
  656. }
  657. return nil
  658. }
  659. func (m *GateListRequest) GetQcodeSupport() int32 {
  660. if m != nil {
  661. return m.QcodeSupport
  662. }
  663. return 0
  664. }
  665. func (m *GateListRequest) GetPicSupport() int32 {
  666. if m != nil {
  667. return m.PicSupport
  668. }
  669. return 0
  670. }
  671. func (m *GateListRequest) GetCardSupport() int32 {
  672. if m != nil {
  673. return m.CardSupport
  674. }
  675. return 0
  676. }
  677. type GateListReply struct {
  678. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  679. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  680. List []*GateItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  681. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  682. XXX_unrecognized []byte `json:"-"`
  683. XXX_sizecache int32 `json:"-"`
  684. }
  685. func (m *GateListReply) Reset() { *m = GateListReply{} }
  686. func (m *GateListReply) String() string { return proto.CompactTextString(m) }
  687. func (*GateListReply) ProtoMessage() {}
  688. func (*GateListReply) Descriptor() ([]byte, []int) {
  689. return fileDescriptor_870276a56ac00da5, []int{9}
  690. }
  691. func (m *GateListReply) XXX_Unmarshal(b []byte) error {
  692. return xxx_messageInfo_GateListReply.Unmarshal(m, b)
  693. }
  694. func (m *GateListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  695. return xxx_messageInfo_GateListReply.Marshal(b, m, deterministic)
  696. }
  697. func (m *GateListReply) XXX_Merge(src proto.Message) {
  698. xxx_messageInfo_GateListReply.Merge(m, src)
  699. }
  700. func (m *GateListReply) XXX_Size() int {
  701. return xxx_messageInfo_GateListReply.Size(m)
  702. }
  703. func (m *GateListReply) XXX_DiscardUnknown() {
  704. xxx_messageInfo_GateListReply.DiscardUnknown(m)
  705. }
  706. var xxx_messageInfo_GateListReply proto.InternalMessageInfo
  707. func (m *GateListReply) GetPage() int64 {
  708. if m != nil {
  709. return m.Page
  710. }
  711. return 0
  712. }
  713. func (m *GateListReply) GetTotal() int64 {
  714. if m != nil {
  715. return m.Total
  716. }
  717. return 0
  718. }
  719. func (m *GateListReply) GetList() []*GateItem {
  720. if m != nil {
  721. return m.List
  722. }
  723. return nil
  724. }
  725. // 门禁信息
  726. type GateInfoRequest struct {
  727. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  728. Sn string `protobuf:"bytes,2,opt,name=sn,proto3" json:"sn"`
  729. Protocol int32 `protobuf:"varint,3,opt,name=protocol,proto3" json:"protocol"`
  730. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  731. XXX_unrecognized []byte `json:"-"`
  732. XXX_sizecache int32 `json:"-"`
  733. }
  734. func (m *GateInfoRequest) Reset() { *m = GateInfoRequest{} }
  735. func (m *GateInfoRequest) String() string { return proto.CompactTextString(m) }
  736. func (*GateInfoRequest) ProtoMessage() {}
  737. func (*GateInfoRequest) Descriptor() ([]byte, []int) {
  738. return fileDescriptor_870276a56ac00da5, []int{10}
  739. }
  740. func (m *GateInfoRequest) XXX_Unmarshal(b []byte) error {
  741. return xxx_messageInfo_GateInfoRequest.Unmarshal(m, b)
  742. }
  743. func (m *GateInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  744. return xxx_messageInfo_GateInfoRequest.Marshal(b, m, deterministic)
  745. }
  746. func (m *GateInfoRequest) XXX_Merge(src proto.Message) {
  747. xxx_messageInfo_GateInfoRequest.Merge(m, src)
  748. }
  749. func (m *GateInfoRequest) XXX_Size() int {
  750. return xxx_messageInfo_GateInfoRequest.Size(m)
  751. }
  752. func (m *GateInfoRequest) XXX_DiscardUnknown() {
  753. xxx_messageInfo_GateInfoRequest.DiscardUnknown(m)
  754. }
  755. var xxx_messageInfo_GateInfoRequest proto.InternalMessageInfo
  756. func (m *GateInfoRequest) GetDeviceId() int64 {
  757. if m != nil {
  758. return m.DeviceId
  759. }
  760. return 0
  761. }
  762. func (m *GateInfoRequest) GetSn() string {
  763. if m != nil {
  764. return m.Sn
  765. }
  766. return ""
  767. }
  768. func (m *GateInfoRequest) GetProtocol() int32 {
  769. if m != nil {
  770. return m.Protocol
  771. }
  772. return 0
  773. }
  774. type GateInfoReply struct {
  775. Info *GateItem `protobuf:"bytes,1,opt,name=info,proto3" json:"info"`
  776. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  777. XXX_unrecognized []byte `json:"-"`
  778. XXX_sizecache int32 `json:"-"`
  779. }
  780. func (m *GateInfoReply) Reset() { *m = GateInfoReply{} }
  781. func (m *GateInfoReply) String() string { return proto.CompactTextString(m) }
  782. func (*GateInfoReply) ProtoMessage() {}
  783. func (*GateInfoReply) Descriptor() ([]byte, []int) {
  784. return fileDescriptor_870276a56ac00da5, []int{11}
  785. }
  786. func (m *GateInfoReply) XXX_Unmarshal(b []byte) error {
  787. return xxx_messageInfo_GateInfoReply.Unmarshal(m, b)
  788. }
  789. func (m *GateInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  790. return xxx_messageInfo_GateInfoReply.Marshal(b, m, deterministic)
  791. }
  792. func (m *GateInfoReply) XXX_Merge(src proto.Message) {
  793. xxx_messageInfo_GateInfoReply.Merge(m, src)
  794. }
  795. func (m *GateInfoReply) XXX_Size() int {
  796. return xxx_messageInfo_GateInfoReply.Size(m)
  797. }
  798. func (m *GateInfoReply) XXX_DiscardUnknown() {
  799. xxx_messageInfo_GateInfoReply.DiscardUnknown(m)
  800. }
  801. var xxx_messageInfo_GateInfoReply proto.InternalMessageInfo
  802. func (m *GateInfoReply) GetInfo() *GateItem {
  803. if m != nil {
  804. return m.Info
  805. }
  806. return nil
  807. }
  808. // 删除门禁
  809. type GateDelRequest struct {
  810. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  811. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  812. XXX_unrecognized []byte `json:"-"`
  813. XXX_sizecache int32 `json:"-"`
  814. }
  815. func (m *GateDelRequest) Reset() { *m = GateDelRequest{} }
  816. func (m *GateDelRequest) String() string { return proto.CompactTextString(m) }
  817. func (*GateDelRequest) ProtoMessage() {}
  818. func (*GateDelRequest) Descriptor() ([]byte, []int) {
  819. return fileDescriptor_870276a56ac00da5, []int{12}
  820. }
  821. func (m *GateDelRequest) XXX_Unmarshal(b []byte) error {
  822. return xxx_messageInfo_GateDelRequest.Unmarshal(m, b)
  823. }
  824. func (m *GateDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  825. return xxx_messageInfo_GateDelRequest.Marshal(b, m, deterministic)
  826. }
  827. func (m *GateDelRequest) XXX_Merge(src proto.Message) {
  828. xxx_messageInfo_GateDelRequest.Merge(m, src)
  829. }
  830. func (m *GateDelRequest) XXX_Size() int {
  831. return xxx_messageInfo_GateDelRequest.Size(m)
  832. }
  833. func (m *GateDelRequest) XXX_DiscardUnknown() {
  834. xxx_messageInfo_GateDelRequest.DiscardUnknown(m)
  835. }
  836. var xxx_messageInfo_GateDelRequest proto.InternalMessageInfo
  837. func (m *GateDelRequest) GetDeviceId() int64 {
  838. if m != nil {
  839. return m.DeviceId
  840. }
  841. return 0
  842. }
  843. type GateDelReply struct {
  844. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  845. XXX_unrecognized []byte `json:"-"`
  846. XXX_sizecache int32 `json:"-"`
  847. }
  848. func (m *GateDelReply) Reset() { *m = GateDelReply{} }
  849. func (m *GateDelReply) String() string { return proto.CompactTextString(m) }
  850. func (*GateDelReply) ProtoMessage() {}
  851. func (*GateDelReply) Descriptor() ([]byte, []int) {
  852. return fileDescriptor_870276a56ac00da5, []int{13}
  853. }
  854. func (m *GateDelReply) XXX_Unmarshal(b []byte) error {
  855. return xxx_messageInfo_GateDelReply.Unmarshal(m, b)
  856. }
  857. func (m *GateDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  858. return xxx_messageInfo_GateDelReply.Marshal(b, m, deterministic)
  859. }
  860. func (m *GateDelReply) XXX_Merge(src proto.Message) {
  861. xxx_messageInfo_GateDelReply.Merge(m, src)
  862. }
  863. func (m *GateDelReply) XXX_Size() int {
  864. return xxx_messageInfo_GateDelReply.Size(m)
  865. }
  866. func (m *GateDelReply) XXX_DiscardUnknown() {
  867. xxx_messageInfo_GateDelReply.DiscardUnknown(m)
  868. }
  869. var xxx_messageInfo_GateDelReply proto.InternalMessageInfo
  870. // 回收门禁
  871. type GateRecoveryRequest struct {
  872. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  873. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  874. XXX_unrecognized []byte `json:"-"`
  875. XXX_sizecache int32 `json:"-"`
  876. }
  877. func (m *GateRecoveryRequest) Reset() { *m = GateRecoveryRequest{} }
  878. func (m *GateRecoveryRequest) String() string { return proto.CompactTextString(m) }
  879. func (*GateRecoveryRequest) ProtoMessage() {}
  880. func (*GateRecoveryRequest) Descriptor() ([]byte, []int) {
  881. return fileDescriptor_870276a56ac00da5, []int{14}
  882. }
  883. func (m *GateRecoveryRequest) XXX_Unmarshal(b []byte) error {
  884. return xxx_messageInfo_GateRecoveryRequest.Unmarshal(m, b)
  885. }
  886. func (m *GateRecoveryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  887. return xxx_messageInfo_GateRecoveryRequest.Marshal(b, m, deterministic)
  888. }
  889. func (m *GateRecoveryRequest) XXX_Merge(src proto.Message) {
  890. xxx_messageInfo_GateRecoveryRequest.Merge(m, src)
  891. }
  892. func (m *GateRecoveryRequest) XXX_Size() int {
  893. return xxx_messageInfo_GateRecoveryRequest.Size(m)
  894. }
  895. func (m *GateRecoveryRequest) XXX_DiscardUnknown() {
  896. xxx_messageInfo_GateRecoveryRequest.DiscardUnknown(m)
  897. }
  898. var xxx_messageInfo_GateRecoveryRequest proto.InternalMessageInfo
  899. func (m *GateRecoveryRequest) GetDeviceId() int64 {
  900. if m != nil {
  901. return m.DeviceId
  902. }
  903. return 0
  904. }
  905. type GateRecoveryReply struct {
  906. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  907. XXX_unrecognized []byte `json:"-"`
  908. XXX_sizecache int32 `json:"-"`
  909. }
  910. func (m *GateRecoveryReply) Reset() { *m = GateRecoveryReply{} }
  911. func (m *GateRecoveryReply) String() string { return proto.CompactTextString(m) }
  912. func (*GateRecoveryReply) ProtoMessage() {}
  913. func (*GateRecoveryReply) Descriptor() ([]byte, []int) {
  914. return fileDescriptor_870276a56ac00da5, []int{15}
  915. }
  916. func (m *GateRecoveryReply) XXX_Unmarshal(b []byte) error {
  917. return xxx_messageInfo_GateRecoveryReply.Unmarshal(m, b)
  918. }
  919. func (m *GateRecoveryReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  920. return xxx_messageInfo_GateRecoveryReply.Marshal(b, m, deterministic)
  921. }
  922. func (m *GateRecoveryReply) XXX_Merge(src proto.Message) {
  923. xxx_messageInfo_GateRecoveryReply.Merge(m, src)
  924. }
  925. func (m *GateRecoveryReply) XXX_Size() int {
  926. return xxx_messageInfo_GateRecoveryReply.Size(m)
  927. }
  928. func (m *GateRecoveryReply) XXX_DiscardUnknown() {
  929. xxx_messageInfo_GateRecoveryReply.DiscardUnknown(m)
  930. }
  931. var xxx_messageInfo_GateRecoveryReply proto.InternalMessageInfo
  932. // 门禁启用停用
  933. type GateEnableRequest struct {
  934. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  935. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  936. Enable bool `protobuf:"varint,3,opt,name=enable,proto3" json:"enable"`
  937. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  938. XXX_unrecognized []byte `json:"-"`
  939. XXX_sizecache int32 `json:"-"`
  940. }
  941. func (m *GateEnableRequest) Reset() { *m = GateEnableRequest{} }
  942. func (m *GateEnableRequest) String() string { return proto.CompactTextString(m) }
  943. func (*GateEnableRequest) ProtoMessage() {}
  944. func (*GateEnableRequest) Descriptor() ([]byte, []int) {
  945. return fileDescriptor_870276a56ac00da5, []int{16}
  946. }
  947. func (m *GateEnableRequest) XXX_Unmarshal(b []byte) error {
  948. return xxx_messageInfo_GateEnableRequest.Unmarshal(m, b)
  949. }
  950. func (m *GateEnableRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  951. return xxx_messageInfo_GateEnableRequest.Marshal(b, m, deterministic)
  952. }
  953. func (m *GateEnableRequest) XXX_Merge(src proto.Message) {
  954. xxx_messageInfo_GateEnableRequest.Merge(m, src)
  955. }
  956. func (m *GateEnableRequest) XXX_Size() int {
  957. return xxx_messageInfo_GateEnableRequest.Size(m)
  958. }
  959. func (m *GateEnableRequest) XXX_DiscardUnknown() {
  960. xxx_messageInfo_GateEnableRequest.DiscardUnknown(m)
  961. }
  962. var xxx_messageInfo_GateEnableRequest proto.InternalMessageInfo
  963. func (m *GateEnableRequest) GetDeviceId() int64 {
  964. if m != nil {
  965. return m.DeviceId
  966. }
  967. return 0
  968. }
  969. func (m *GateEnableRequest) GetGardenId() int64 {
  970. if m != nil {
  971. return m.GardenId
  972. }
  973. return 0
  974. }
  975. func (m *GateEnableRequest) GetEnable() bool {
  976. if m != nil {
  977. return m.Enable
  978. }
  979. return false
  980. }
  981. type GateEnableReply struct {
  982. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  983. XXX_unrecognized []byte `json:"-"`
  984. XXX_sizecache int32 `json:"-"`
  985. }
  986. func (m *GateEnableReply) Reset() { *m = GateEnableReply{} }
  987. func (m *GateEnableReply) String() string { return proto.CompactTextString(m) }
  988. func (*GateEnableReply) ProtoMessage() {}
  989. func (*GateEnableReply) Descriptor() ([]byte, []int) {
  990. return fileDescriptor_870276a56ac00da5, []int{17}
  991. }
  992. func (m *GateEnableReply) XXX_Unmarshal(b []byte) error {
  993. return xxx_messageInfo_GateEnableReply.Unmarshal(m, b)
  994. }
  995. func (m *GateEnableReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  996. return xxx_messageInfo_GateEnableReply.Marshal(b, m, deterministic)
  997. }
  998. func (m *GateEnableReply) XXX_Merge(src proto.Message) {
  999. xxx_messageInfo_GateEnableReply.Merge(m, src)
  1000. }
  1001. func (m *GateEnableReply) XXX_Size() int {
  1002. return xxx_messageInfo_GateEnableReply.Size(m)
  1003. }
  1004. func (m *GateEnableReply) XXX_DiscardUnknown() {
  1005. xxx_messageInfo_GateEnableReply.DiscardUnknown(m)
  1006. }
  1007. var xxx_messageInfo_GateEnableReply proto.InternalMessageInfo
  1008. // 小区端编辑位置或方向
  1009. type GateSetRequest struct {
  1010. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  1011. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1012. // 1 进场 2 出场 3 进出场
  1013. Direction int32 `protobuf:"varint,3,opt,name=direction,proto3" json:"direction"`
  1014. // 位置
  1015. Location string `protobuf:"bytes,4,opt,name=location,proto3" json:"location"`
  1016. GateName string `protobuf:"bytes,5,opt,name=gate_name,json=gateName,proto3" json:"gate_name"`
  1017. UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name"`
  1018. Password string `protobuf:"bytes,7,opt,name=password,proto3" json:"password"`
  1019. Ip string `protobuf:"bytes,8,opt,name=ip,proto3" json:"ip"`
  1020. Mac string `protobuf:"bytes,9,opt,name=mac,proto3" json:"mac"`
  1021. Port int64 `protobuf:"varint,10,opt,name=port,proto3" json:"port"`
  1022. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1023. XXX_unrecognized []byte `json:"-"`
  1024. XXX_sizecache int32 `json:"-"`
  1025. }
  1026. func (m *GateSetRequest) Reset() { *m = GateSetRequest{} }
  1027. func (m *GateSetRequest) String() string { return proto.CompactTextString(m) }
  1028. func (*GateSetRequest) ProtoMessage() {}
  1029. func (*GateSetRequest) Descriptor() ([]byte, []int) {
  1030. return fileDescriptor_870276a56ac00da5, []int{18}
  1031. }
  1032. func (m *GateSetRequest) XXX_Unmarshal(b []byte) error {
  1033. return xxx_messageInfo_GateSetRequest.Unmarshal(m, b)
  1034. }
  1035. func (m *GateSetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1036. return xxx_messageInfo_GateSetRequest.Marshal(b, m, deterministic)
  1037. }
  1038. func (m *GateSetRequest) XXX_Merge(src proto.Message) {
  1039. xxx_messageInfo_GateSetRequest.Merge(m, src)
  1040. }
  1041. func (m *GateSetRequest) XXX_Size() int {
  1042. return xxx_messageInfo_GateSetRequest.Size(m)
  1043. }
  1044. func (m *GateSetRequest) XXX_DiscardUnknown() {
  1045. xxx_messageInfo_GateSetRequest.DiscardUnknown(m)
  1046. }
  1047. var xxx_messageInfo_GateSetRequest proto.InternalMessageInfo
  1048. func (m *GateSetRequest) GetDeviceId() int64 {
  1049. if m != nil {
  1050. return m.DeviceId
  1051. }
  1052. return 0
  1053. }
  1054. func (m *GateSetRequest) GetGardenId() int64 {
  1055. if m != nil {
  1056. return m.GardenId
  1057. }
  1058. return 0
  1059. }
  1060. func (m *GateSetRequest) GetDirection() int32 {
  1061. if m != nil {
  1062. return m.Direction
  1063. }
  1064. return 0
  1065. }
  1066. func (m *GateSetRequest) GetLocation() string {
  1067. if m != nil {
  1068. return m.Location
  1069. }
  1070. return ""
  1071. }
  1072. func (m *GateSetRequest) GetGateName() string {
  1073. if m != nil {
  1074. return m.GateName
  1075. }
  1076. return ""
  1077. }
  1078. func (m *GateSetRequest) GetUserName() string {
  1079. if m != nil {
  1080. return m.UserName
  1081. }
  1082. return ""
  1083. }
  1084. func (m *GateSetRequest) GetPassword() string {
  1085. if m != nil {
  1086. return m.Password
  1087. }
  1088. return ""
  1089. }
  1090. func (m *GateSetRequest) GetIp() string {
  1091. if m != nil {
  1092. return m.Ip
  1093. }
  1094. return ""
  1095. }
  1096. func (m *GateSetRequest) GetMac() string {
  1097. if m != nil {
  1098. return m.Mac
  1099. }
  1100. return ""
  1101. }
  1102. func (m *GateSetRequest) GetPort() int64 {
  1103. if m != nil {
  1104. return m.Port
  1105. }
  1106. return 0
  1107. }
  1108. type GateSetReply struct {
  1109. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1110. XXX_unrecognized []byte `json:"-"`
  1111. XXX_sizecache int32 `json:"-"`
  1112. }
  1113. func (m *GateSetReply) Reset() { *m = GateSetReply{} }
  1114. func (m *GateSetReply) String() string { return proto.CompactTextString(m) }
  1115. func (*GateSetReply) ProtoMessage() {}
  1116. func (*GateSetReply) Descriptor() ([]byte, []int) {
  1117. return fileDescriptor_870276a56ac00da5, []int{19}
  1118. }
  1119. func (m *GateSetReply) XXX_Unmarshal(b []byte) error {
  1120. return xxx_messageInfo_GateSetReply.Unmarshal(m, b)
  1121. }
  1122. func (m *GateSetReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1123. return xxx_messageInfo_GateSetReply.Marshal(b, m, deterministic)
  1124. }
  1125. func (m *GateSetReply) XXX_Merge(src proto.Message) {
  1126. xxx_messageInfo_GateSetReply.Merge(m, src)
  1127. }
  1128. func (m *GateSetReply) XXX_Size() int {
  1129. return xxx_messageInfo_GateSetReply.Size(m)
  1130. }
  1131. func (m *GateSetReply) XXX_DiscardUnknown() {
  1132. xxx_messageInfo_GateSetReply.DiscardUnknown(m)
  1133. }
  1134. var xxx_messageInfo_GateSetReply proto.InternalMessageInfo
  1135. // 门禁添加远程命令
  1136. type GateCommandAddRequest struct {
  1137. // 1 远程开门;
  1138. // 2 重启设备;
  1139. // 4 获取设备参数;
  1140. // 5 设置设备参数; 6 下载白名单;
  1141. // 7 清空本地所有白名单;
  1142. // 8 清空本地所有刷卡记录;
  1143. // 9 扫码显示参数;
  1144. // 10 查询卡号是否存在白名单
  1145. // 99 恢复出厂;
  1146. CmdCode int32 `protobuf:"varint,1,opt,name=cmd_code,json=cmdCode,proto3" json:"cmd_code"`
  1147. CmdParams string `protobuf:"bytes,2,opt,name=cmd_params,json=cmdParams,proto3" json:"cmd_params"`
  1148. DeviceId int64 `protobuf:"varint,3,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  1149. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1150. XXX_unrecognized []byte `json:"-"`
  1151. XXX_sizecache int32 `json:"-"`
  1152. }
  1153. func (m *GateCommandAddRequest) Reset() { *m = GateCommandAddRequest{} }
  1154. func (m *GateCommandAddRequest) String() string { return proto.CompactTextString(m) }
  1155. func (*GateCommandAddRequest) ProtoMessage() {}
  1156. func (*GateCommandAddRequest) Descriptor() ([]byte, []int) {
  1157. return fileDescriptor_870276a56ac00da5, []int{20}
  1158. }
  1159. func (m *GateCommandAddRequest) XXX_Unmarshal(b []byte) error {
  1160. return xxx_messageInfo_GateCommandAddRequest.Unmarshal(m, b)
  1161. }
  1162. func (m *GateCommandAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1163. return xxx_messageInfo_GateCommandAddRequest.Marshal(b, m, deterministic)
  1164. }
  1165. func (m *GateCommandAddRequest) XXX_Merge(src proto.Message) {
  1166. xxx_messageInfo_GateCommandAddRequest.Merge(m, src)
  1167. }
  1168. func (m *GateCommandAddRequest) XXX_Size() int {
  1169. return xxx_messageInfo_GateCommandAddRequest.Size(m)
  1170. }
  1171. func (m *GateCommandAddRequest) XXX_DiscardUnknown() {
  1172. xxx_messageInfo_GateCommandAddRequest.DiscardUnknown(m)
  1173. }
  1174. var xxx_messageInfo_GateCommandAddRequest proto.InternalMessageInfo
  1175. func (m *GateCommandAddRequest) GetCmdCode() int32 {
  1176. if m != nil {
  1177. return m.CmdCode
  1178. }
  1179. return 0
  1180. }
  1181. func (m *GateCommandAddRequest) GetCmdParams() string {
  1182. if m != nil {
  1183. return m.CmdParams
  1184. }
  1185. return ""
  1186. }
  1187. func (m *GateCommandAddRequest) GetDeviceId() int64 {
  1188. if m != nil {
  1189. return m.DeviceId
  1190. }
  1191. return 0
  1192. }
  1193. type GateCommandAddReply struct {
  1194. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1195. XXX_unrecognized []byte `json:"-"`
  1196. XXX_sizecache int32 `json:"-"`
  1197. }
  1198. func (m *GateCommandAddReply) Reset() { *m = GateCommandAddReply{} }
  1199. func (m *GateCommandAddReply) String() string { return proto.CompactTextString(m) }
  1200. func (*GateCommandAddReply) ProtoMessage() {}
  1201. func (*GateCommandAddReply) Descriptor() ([]byte, []int) {
  1202. return fileDescriptor_870276a56ac00da5, []int{21}
  1203. }
  1204. func (m *GateCommandAddReply) XXX_Unmarshal(b []byte) error {
  1205. return xxx_messageInfo_GateCommandAddReply.Unmarshal(m, b)
  1206. }
  1207. func (m *GateCommandAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1208. return xxx_messageInfo_GateCommandAddReply.Marshal(b, m, deterministic)
  1209. }
  1210. func (m *GateCommandAddReply) XXX_Merge(src proto.Message) {
  1211. xxx_messageInfo_GateCommandAddReply.Merge(m, src)
  1212. }
  1213. func (m *GateCommandAddReply) XXX_Size() int {
  1214. return xxx_messageInfo_GateCommandAddReply.Size(m)
  1215. }
  1216. func (m *GateCommandAddReply) XXX_DiscardUnknown() {
  1217. xxx_messageInfo_GateCommandAddReply.DiscardUnknown(m)
  1218. }
  1219. var xxx_messageInfo_GateCommandAddReply proto.InternalMessageInfo
  1220. // 门禁命令列表
  1221. type GateCommandListRequest struct {
  1222. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  1223. Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status"`
  1224. Start int64 `protobuf:"varint,3,opt,name=start,proto3" json:"start"`
  1225. End int64 `protobuf:"varint,4,opt,name=end,proto3" json:"end"`
  1226. Page int64 `protobuf:"varint,5,opt,name=page,proto3" json:"page"`
  1227. PageSize int64 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  1228. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1229. XXX_unrecognized []byte `json:"-"`
  1230. XXX_sizecache int32 `json:"-"`
  1231. }
  1232. func (m *GateCommandListRequest) Reset() { *m = GateCommandListRequest{} }
  1233. func (m *GateCommandListRequest) String() string { return proto.CompactTextString(m) }
  1234. func (*GateCommandListRequest) ProtoMessage() {}
  1235. func (*GateCommandListRequest) Descriptor() ([]byte, []int) {
  1236. return fileDescriptor_870276a56ac00da5, []int{22}
  1237. }
  1238. func (m *GateCommandListRequest) XXX_Unmarshal(b []byte) error {
  1239. return xxx_messageInfo_GateCommandListRequest.Unmarshal(m, b)
  1240. }
  1241. func (m *GateCommandListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1242. return xxx_messageInfo_GateCommandListRequest.Marshal(b, m, deterministic)
  1243. }
  1244. func (m *GateCommandListRequest) XXX_Merge(src proto.Message) {
  1245. xxx_messageInfo_GateCommandListRequest.Merge(m, src)
  1246. }
  1247. func (m *GateCommandListRequest) XXX_Size() int {
  1248. return xxx_messageInfo_GateCommandListRequest.Size(m)
  1249. }
  1250. func (m *GateCommandListRequest) XXX_DiscardUnknown() {
  1251. xxx_messageInfo_GateCommandListRequest.DiscardUnknown(m)
  1252. }
  1253. var xxx_messageInfo_GateCommandListRequest proto.InternalMessageInfo
  1254. func (m *GateCommandListRequest) GetDeviceId() int64 {
  1255. if m != nil {
  1256. return m.DeviceId
  1257. }
  1258. return 0
  1259. }
  1260. func (m *GateCommandListRequest) GetStatus() int32 {
  1261. if m != nil {
  1262. return m.Status
  1263. }
  1264. return 0
  1265. }
  1266. func (m *GateCommandListRequest) GetStart() int64 {
  1267. if m != nil {
  1268. return m.Start
  1269. }
  1270. return 0
  1271. }
  1272. func (m *GateCommandListRequest) GetEnd() int64 {
  1273. if m != nil {
  1274. return m.End
  1275. }
  1276. return 0
  1277. }
  1278. func (m *GateCommandListRequest) GetPage() int64 {
  1279. if m != nil {
  1280. return m.Page
  1281. }
  1282. return 0
  1283. }
  1284. func (m *GateCommandListRequest) GetPageSize() int64 {
  1285. if m != nil {
  1286. return m.PageSize
  1287. }
  1288. return 0
  1289. }
  1290. type GateCommandItem struct {
  1291. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  1292. Desc string `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc"`
  1293. // 1 待执行 2 执行中 3 执行完成
  1294. Status int32 `protobuf:"varint,3,opt,name=status,proto3" json:"status"`
  1295. CreatedAt int64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  1296. // 1 成功 2 失败
  1297. ResultStatus int32 `protobuf:"varint,5,opt,name=result_status,json=resultStatus,proto3" json:"result_status"`
  1298. // 结果描述
  1299. ResultStatusDesc string `protobuf:"bytes,6,opt,name=result_status_desc,json=resultStatusDesc,proto3" json:"result_status_desc"`
  1300. Id int64 `protobuf:"varint,7,opt,name=id,proto3" json:"id"`
  1301. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1302. XXX_unrecognized []byte `json:"-"`
  1303. XXX_sizecache int32 `json:"-"`
  1304. }
  1305. func (m *GateCommandItem) Reset() { *m = GateCommandItem{} }
  1306. func (m *GateCommandItem) String() string { return proto.CompactTextString(m) }
  1307. func (*GateCommandItem) ProtoMessage() {}
  1308. func (*GateCommandItem) Descriptor() ([]byte, []int) {
  1309. return fileDescriptor_870276a56ac00da5, []int{23}
  1310. }
  1311. func (m *GateCommandItem) XXX_Unmarshal(b []byte) error {
  1312. return xxx_messageInfo_GateCommandItem.Unmarshal(m, b)
  1313. }
  1314. func (m *GateCommandItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1315. return xxx_messageInfo_GateCommandItem.Marshal(b, m, deterministic)
  1316. }
  1317. func (m *GateCommandItem) XXX_Merge(src proto.Message) {
  1318. xxx_messageInfo_GateCommandItem.Merge(m, src)
  1319. }
  1320. func (m *GateCommandItem) XXX_Size() int {
  1321. return xxx_messageInfo_GateCommandItem.Size(m)
  1322. }
  1323. func (m *GateCommandItem) XXX_DiscardUnknown() {
  1324. xxx_messageInfo_GateCommandItem.DiscardUnknown(m)
  1325. }
  1326. var xxx_messageInfo_GateCommandItem proto.InternalMessageInfo
  1327. func (m *GateCommandItem) GetDeviceId() int64 {
  1328. if m != nil {
  1329. return m.DeviceId
  1330. }
  1331. return 0
  1332. }
  1333. func (m *GateCommandItem) GetDesc() string {
  1334. if m != nil {
  1335. return m.Desc
  1336. }
  1337. return ""
  1338. }
  1339. func (m *GateCommandItem) GetStatus() int32 {
  1340. if m != nil {
  1341. return m.Status
  1342. }
  1343. return 0
  1344. }
  1345. func (m *GateCommandItem) GetCreatedAt() int64 {
  1346. if m != nil {
  1347. return m.CreatedAt
  1348. }
  1349. return 0
  1350. }
  1351. func (m *GateCommandItem) GetResultStatus() int32 {
  1352. if m != nil {
  1353. return m.ResultStatus
  1354. }
  1355. return 0
  1356. }
  1357. func (m *GateCommandItem) GetResultStatusDesc() string {
  1358. if m != nil {
  1359. return m.ResultStatusDesc
  1360. }
  1361. return ""
  1362. }
  1363. func (m *GateCommandItem) GetId() int64 {
  1364. if m != nil {
  1365. return m.Id
  1366. }
  1367. return 0
  1368. }
  1369. type GateCommandListReply struct {
  1370. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  1371. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  1372. List []*GateCommandItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  1373. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1374. XXX_unrecognized []byte `json:"-"`
  1375. XXX_sizecache int32 `json:"-"`
  1376. }
  1377. func (m *GateCommandListReply) Reset() { *m = GateCommandListReply{} }
  1378. func (m *GateCommandListReply) String() string { return proto.CompactTextString(m) }
  1379. func (*GateCommandListReply) ProtoMessage() {}
  1380. func (*GateCommandListReply) Descriptor() ([]byte, []int) {
  1381. return fileDescriptor_870276a56ac00da5, []int{24}
  1382. }
  1383. func (m *GateCommandListReply) XXX_Unmarshal(b []byte) error {
  1384. return xxx_messageInfo_GateCommandListReply.Unmarshal(m, b)
  1385. }
  1386. func (m *GateCommandListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1387. return xxx_messageInfo_GateCommandListReply.Marshal(b, m, deterministic)
  1388. }
  1389. func (m *GateCommandListReply) XXX_Merge(src proto.Message) {
  1390. xxx_messageInfo_GateCommandListReply.Merge(m, src)
  1391. }
  1392. func (m *GateCommandListReply) XXX_Size() int {
  1393. return xxx_messageInfo_GateCommandListReply.Size(m)
  1394. }
  1395. func (m *GateCommandListReply) XXX_DiscardUnknown() {
  1396. xxx_messageInfo_GateCommandListReply.DiscardUnknown(m)
  1397. }
  1398. var xxx_messageInfo_GateCommandListReply proto.InternalMessageInfo
  1399. func (m *GateCommandListReply) GetPage() int64 {
  1400. if m != nil {
  1401. return m.Page
  1402. }
  1403. return 0
  1404. }
  1405. func (m *GateCommandListReply) GetTotal() int64 {
  1406. if m != nil {
  1407. return m.Total
  1408. }
  1409. return 0
  1410. }
  1411. func (m *GateCommandListReply) GetList() []*GateCommandItem {
  1412. if m != nil {
  1413. return m.List
  1414. }
  1415. return nil
  1416. }
  1417. // 删除命令
  1418. type GateCommandDelRequest struct {
  1419. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1420. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1421. XXX_unrecognized []byte `json:"-"`
  1422. XXX_sizecache int32 `json:"-"`
  1423. }
  1424. func (m *GateCommandDelRequest) Reset() { *m = GateCommandDelRequest{} }
  1425. func (m *GateCommandDelRequest) String() string { return proto.CompactTextString(m) }
  1426. func (*GateCommandDelRequest) ProtoMessage() {}
  1427. func (*GateCommandDelRequest) Descriptor() ([]byte, []int) {
  1428. return fileDescriptor_870276a56ac00da5, []int{25}
  1429. }
  1430. func (m *GateCommandDelRequest) XXX_Unmarshal(b []byte) error {
  1431. return xxx_messageInfo_GateCommandDelRequest.Unmarshal(m, b)
  1432. }
  1433. func (m *GateCommandDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1434. return xxx_messageInfo_GateCommandDelRequest.Marshal(b, m, deterministic)
  1435. }
  1436. func (m *GateCommandDelRequest) XXX_Merge(src proto.Message) {
  1437. xxx_messageInfo_GateCommandDelRequest.Merge(m, src)
  1438. }
  1439. func (m *GateCommandDelRequest) XXX_Size() int {
  1440. return xxx_messageInfo_GateCommandDelRequest.Size(m)
  1441. }
  1442. func (m *GateCommandDelRequest) XXX_DiscardUnknown() {
  1443. xxx_messageInfo_GateCommandDelRequest.DiscardUnknown(m)
  1444. }
  1445. var xxx_messageInfo_GateCommandDelRequest proto.InternalMessageInfo
  1446. func (m *GateCommandDelRequest) GetId() int64 {
  1447. if m != nil {
  1448. return m.Id
  1449. }
  1450. return 0
  1451. }
  1452. type GateCommandDelReply struct {
  1453. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1454. XXX_unrecognized []byte `json:"-"`
  1455. XXX_sizecache int32 `json:"-"`
  1456. }
  1457. func (m *GateCommandDelReply) Reset() { *m = GateCommandDelReply{} }
  1458. func (m *GateCommandDelReply) String() string { return proto.CompactTextString(m) }
  1459. func (*GateCommandDelReply) ProtoMessage() {}
  1460. func (*GateCommandDelReply) Descriptor() ([]byte, []int) {
  1461. return fileDescriptor_870276a56ac00da5, []int{26}
  1462. }
  1463. func (m *GateCommandDelReply) XXX_Unmarshal(b []byte) error {
  1464. return xxx_messageInfo_GateCommandDelReply.Unmarshal(m, b)
  1465. }
  1466. func (m *GateCommandDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1467. return xxx_messageInfo_GateCommandDelReply.Marshal(b, m, deterministic)
  1468. }
  1469. func (m *GateCommandDelReply) XXX_Merge(src proto.Message) {
  1470. xxx_messageInfo_GateCommandDelReply.Merge(m, src)
  1471. }
  1472. func (m *GateCommandDelReply) XXX_Size() int {
  1473. return xxx_messageInfo_GateCommandDelReply.Size(m)
  1474. }
  1475. func (m *GateCommandDelReply) XXX_DiscardUnknown() {
  1476. xxx_messageInfo_GateCommandDelReply.DiscardUnknown(m)
  1477. }
  1478. var xxx_messageInfo_GateCommandDelReply proto.InternalMessageInfo
  1479. // 命令结果
  1480. type GateCommandResultRequest struct {
  1481. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1482. CmdCode int32 `protobuf:"varint,2,opt,name=cmd_code,json=cmdCode,proto3" json:"cmd_code"`
  1483. ResultStatus int32 `protobuf:"varint,3,opt,name=result_status,json=resultStatus,proto3" json:"result_status"`
  1484. ResultDesc string `protobuf:"bytes,4,opt,name=result_desc,json=resultDesc,proto3" json:"result_desc"`
  1485. Sn string `protobuf:"bytes,5,opt,name=sn,proto3" json:"sn"`
  1486. Protocol int32 `protobuf:"varint,6,opt,name=protocol,proto3" json:"protocol"`
  1487. Content string `protobuf:"bytes,7,opt,name=content,proto3" json:"content"`
  1488. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1489. XXX_unrecognized []byte `json:"-"`
  1490. XXX_sizecache int32 `json:"-"`
  1491. }
  1492. func (m *GateCommandResultRequest) Reset() { *m = GateCommandResultRequest{} }
  1493. func (m *GateCommandResultRequest) String() string { return proto.CompactTextString(m) }
  1494. func (*GateCommandResultRequest) ProtoMessage() {}
  1495. func (*GateCommandResultRequest) Descriptor() ([]byte, []int) {
  1496. return fileDescriptor_870276a56ac00da5, []int{27}
  1497. }
  1498. func (m *GateCommandResultRequest) XXX_Unmarshal(b []byte) error {
  1499. return xxx_messageInfo_GateCommandResultRequest.Unmarshal(m, b)
  1500. }
  1501. func (m *GateCommandResultRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1502. return xxx_messageInfo_GateCommandResultRequest.Marshal(b, m, deterministic)
  1503. }
  1504. func (m *GateCommandResultRequest) XXX_Merge(src proto.Message) {
  1505. xxx_messageInfo_GateCommandResultRequest.Merge(m, src)
  1506. }
  1507. func (m *GateCommandResultRequest) XXX_Size() int {
  1508. return xxx_messageInfo_GateCommandResultRequest.Size(m)
  1509. }
  1510. func (m *GateCommandResultRequest) XXX_DiscardUnknown() {
  1511. xxx_messageInfo_GateCommandResultRequest.DiscardUnknown(m)
  1512. }
  1513. var xxx_messageInfo_GateCommandResultRequest proto.InternalMessageInfo
  1514. func (m *GateCommandResultRequest) GetId() int64 {
  1515. if m != nil {
  1516. return m.Id
  1517. }
  1518. return 0
  1519. }
  1520. func (m *GateCommandResultRequest) GetCmdCode() int32 {
  1521. if m != nil {
  1522. return m.CmdCode
  1523. }
  1524. return 0
  1525. }
  1526. func (m *GateCommandResultRequest) GetResultStatus() int32 {
  1527. if m != nil {
  1528. return m.ResultStatus
  1529. }
  1530. return 0
  1531. }
  1532. func (m *GateCommandResultRequest) GetResultDesc() string {
  1533. if m != nil {
  1534. return m.ResultDesc
  1535. }
  1536. return ""
  1537. }
  1538. func (m *GateCommandResultRequest) GetSn() string {
  1539. if m != nil {
  1540. return m.Sn
  1541. }
  1542. return ""
  1543. }
  1544. func (m *GateCommandResultRequest) GetProtocol() int32 {
  1545. if m != nil {
  1546. return m.Protocol
  1547. }
  1548. return 0
  1549. }
  1550. func (m *GateCommandResultRequest) GetContent() string {
  1551. if m != nil {
  1552. return m.Content
  1553. }
  1554. return ""
  1555. }
  1556. type GateCommandResultReply struct {
  1557. HasTask bool `protobuf:"varint,1,opt,name=has_task,json=hasTask,proto3" json:"has_task"`
  1558. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1559. XXX_unrecognized []byte `json:"-"`
  1560. XXX_sizecache int32 `json:"-"`
  1561. }
  1562. func (m *GateCommandResultReply) Reset() { *m = GateCommandResultReply{} }
  1563. func (m *GateCommandResultReply) String() string { return proto.CompactTextString(m) }
  1564. func (*GateCommandResultReply) ProtoMessage() {}
  1565. func (*GateCommandResultReply) Descriptor() ([]byte, []int) {
  1566. return fileDescriptor_870276a56ac00da5, []int{28}
  1567. }
  1568. func (m *GateCommandResultReply) XXX_Unmarshal(b []byte) error {
  1569. return xxx_messageInfo_GateCommandResultReply.Unmarshal(m, b)
  1570. }
  1571. func (m *GateCommandResultReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1572. return xxx_messageInfo_GateCommandResultReply.Marshal(b, m, deterministic)
  1573. }
  1574. func (m *GateCommandResultReply) XXX_Merge(src proto.Message) {
  1575. xxx_messageInfo_GateCommandResultReply.Merge(m, src)
  1576. }
  1577. func (m *GateCommandResultReply) XXX_Size() int {
  1578. return xxx_messageInfo_GateCommandResultReply.Size(m)
  1579. }
  1580. func (m *GateCommandResultReply) XXX_DiscardUnknown() {
  1581. xxx_messageInfo_GateCommandResultReply.DiscardUnknown(m)
  1582. }
  1583. var xxx_messageInfo_GateCommandResultReply proto.InternalMessageInfo
  1584. func (m *GateCommandResultReply) GetHasTask() bool {
  1585. if m != nil {
  1586. return m.HasTask
  1587. }
  1588. return false
  1589. }
  1590. // 获取一条命令用于执行
  1591. type GateCommandUseRequest struct {
  1592. Sn string `protobuf:"bytes,1,opt,name=sn,proto3" json:"sn"`
  1593. Protocol int32 `protobuf:"varint,2,opt,name=protocol,proto3" json:"protocol"`
  1594. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1595. XXX_unrecognized []byte `json:"-"`
  1596. XXX_sizecache int32 `json:"-"`
  1597. }
  1598. func (m *GateCommandUseRequest) Reset() { *m = GateCommandUseRequest{} }
  1599. func (m *GateCommandUseRequest) String() string { return proto.CompactTextString(m) }
  1600. func (*GateCommandUseRequest) ProtoMessage() {}
  1601. func (*GateCommandUseRequest) Descriptor() ([]byte, []int) {
  1602. return fileDescriptor_870276a56ac00da5, []int{29}
  1603. }
  1604. func (m *GateCommandUseRequest) XXX_Unmarshal(b []byte) error {
  1605. return xxx_messageInfo_GateCommandUseRequest.Unmarshal(m, b)
  1606. }
  1607. func (m *GateCommandUseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1608. return xxx_messageInfo_GateCommandUseRequest.Marshal(b, m, deterministic)
  1609. }
  1610. func (m *GateCommandUseRequest) XXX_Merge(src proto.Message) {
  1611. xxx_messageInfo_GateCommandUseRequest.Merge(m, src)
  1612. }
  1613. func (m *GateCommandUseRequest) XXX_Size() int {
  1614. return xxx_messageInfo_GateCommandUseRequest.Size(m)
  1615. }
  1616. func (m *GateCommandUseRequest) XXX_DiscardUnknown() {
  1617. xxx_messageInfo_GateCommandUseRequest.DiscardUnknown(m)
  1618. }
  1619. var xxx_messageInfo_GateCommandUseRequest proto.InternalMessageInfo
  1620. func (m *GateCommandUseRequest) GetSn() string {
  1621. if m != nil {
  1622. return m.Sn
  1623. }
  1624. return ""
  1625. }
  1626. func (m *GateCommandUseRequest) GetProtocol() int32 {
  1627. if m != nil {
  1628. return m.Protocol
  1629. }
  1630. return 0
  1631. }
  1632. type GateCommandUseReply struct {
  1633. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1634. CmdCode int32 `protobuf:"varint,2,opt,name=cmd_code,json=cmdCode,proto3" json:"cmd_code"`
  1635. CmdParams string `protobuf:"bytes,3,opt,name=cmd_params,json=cmdParams,proto3" json:"cmd_params"`
  1636. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1637. XXX_unrecognized []byte `json:"-"`
  1638. XXX_sizecache int32 `json:"-"`
  1639. }
  1640. func (m *GateCommandUseReply) Reset() { *m = GateCommandUseReply{} }
  1641. func (m *GateCommandUseReply) String() string { return proto.CompactTextString(m) }
  1642. func (*GateCommandUseReply) ProtoMessage() {}
  1643. func (*GateCommandUseReply) Descriptor() ([]byte, []int) {
  1644. return fileDescriptor_870276a56ac00da5, []int{30}
  1645. }
  1646. func (m *GateCommandUseReply) XXX_Unmarshal(b []byte) error {
  1647. return xxx_messageInfo_GateCommandUseReply.Unmarshal(m, b)
  1648. }
  1649. func (m *GateCommandUseReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1650. return xxx_messageInfo_GateCommandUseReply.Marshal(b, m, deterministic)
  1651. }
  1652. func (m *GateCommandUseReply) XXX_Merge(src proto.Message) {
  1653. xxx_messageInfo_GateCommandUseReply.Merge(m, src)
  1654. }
  1655. func (m *GateCommandUseReply) XXX_Size() int {
  1656. return xxx_messageInfo_GateCommandUseReply.Size(m)
  1657. }
  1658. func (m *GateCommandUseReply) XXX_DiscardUnknown() {
  1659. xxx_messageInfo_GateCommandUseReply.DiscardUnknown(m)
  1660. }
  1661. var xxx_messageInfo_GateCommandUseReply proto.InternalMessageInfo
  1662. func (m *GateCommandUseReply) GetId() int64 {
  1663. if m != nil {
  1664. return m.Id
  1665. }
  1666. return 0
  1667. }
  1668. func (m *GateCommandUseReply) GetCmdCode() int32 {
  1669. if m != nil {
  1670. return m.CmdCode
  1671. }
  1672. return 0
  1673. }
  1674. func (m *GateCommandUseReply) GetCmdParams() string {
  1675. if m != nil {
  1676. return m.CmdParams
  1677. }
  1678. return ""
  1679. }
  1680. type GateUnitAddRequest struct {
  1681. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  1682. UnitId []int64 `protobuf:"varint,2,rep,packed,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1683. GardenId int64 `protobuf:"varint,3,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1684. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1685. XXX_unrecognized []byte `json:"-"`
  1686. XXX_sizecache int32 `json:"-"`
  1687. }
  1688. func (m *GateUnitAddRequest) Reset() { *m = GateUnitAddRequest{} }
  1689. func (m *GateUnitAddRequest) String() string { return proto.CompactTextString(m) }
  1690. func (*GateUnitAddRequest) ProtoMessage() {}
  1691. func (*GateUnitAddRequest) Descriptor() ([]byte, []int) {
  1692. return fileDescriptor_870276a56ac00da5, []int{31}
  1693. }
  1694. func (m *GateUnitAddRequest) XXX_Unmarshal(b []byte) error {
  1695. return xxx_messageInfo_GateUnitAddRequest.Unmarshal(m, b)
  1696. }
  1697. func (m *GateUnitAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1698. return xxx_messageInfo_GateUnitAddRequest.Marshal(b, m, deterministic)
  1699. }
  1700. func (m *GateUnitAddRequest) XXX_Merge(src proto.Message) {
  1701. xxx_messageInfo_GateUnitAddRequest.Merge(m, src)
  1702. }
  1703. func (m *GateUnitAddRequest) XXX_Size() int {
  1704. return xxx_messageInfo_GateUnitAddRequest.Size(m)
  1705. }
  1706. func (m *GateUnitAddRequest) XXX_DiscardUnknown() {
  1707. xxx_messageInfo_GateUnitAddRequest.DiscardUnknown(m)
  1708. }
  1709. var xxx_messageInfo_GateUnitAddRequest proto.InternalMessageInfo
  1710. func (m *GateUnitAddRequest) GetDeviceId() int64 {
  1711. if m != nil {
  1712. return m.DeviceId
  1713. }
  1714. return 0
  1715. }
  1716. func (m *GateUnitAddRequest) GetUnitId() []int64 {
  1717. if m != nil {
  1718. return m.UnitId
  1719. }
  1720. return nil
  1721. }
  1722. func (m *GateUnitAddRequest) GetGardenId() int64 {
  1723. if m != nil {
  1724. return m.GardenId
  1725. }
  1726. return 0
  1727. }
  1728. type GateUnitAddReply struct {
  1729. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1730. XXX_unrecognized []byte `json:"-"`
  1731. XXX_sizecache int32 `json:"-"`
  1732. }
  1733. func (m *GateUnitAddReply) Reset() { *m = GateUnitAddReply{} }
  1734. func (m *GateUnitAddReply) String() string { return proto.CompactTextString(m) }
  1735. func (*GateUnitAddReply) ProtoMessage() {}
  1736. func (*GateUnitAddReply) Descriptor() ([]byte, []int) {
  1737. return fileDescriptor_870276a56ac00da5, []int{32}
  1738. }
  1739. func (m *GateUnitAddReply) XXX_Unmarshal(b []byte) error {
  1740. return xxx_messageInfo_GateUnitAddReply.Unmarshal(m, b)
  1741. }
  1742. func (m *GateUnitAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1743. return xxx_messageInfo_GateUnitAddReply.Marshal(b, m, deterministic)
  1744. }
  1745. func (m *GateUnitAddReply) XXX_Merge(src proto.Message) {
  1746. xxx_messageInfo_GateUnitAddReply.Merge(m, src)
  1747. }
  1748. func (m *GateUnitAddReply) XXX_Size() int {
  1749. return xxx_messageInfo_GateUnitAddReply.Size(m)
  1750. }
  1751. func (m *GateUnitAddReply) XXX_DiscardUnknown() {
  1752. xxx_messageInfo_GateUnitAddReply.DiscardUnknown(m)
  1753. }
  1754. var xxx_messageInfo_GateUnitAddReply proto.InternalMessageInfo
  1755. type GateUnitListRequest struct {
  1756. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  1757. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1758. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1759. XXX_unrecognized []byte `json:"-"`
  1760. XXX_sizecache int32 `json:"-"`
  1761. }
  1762. func (m *GateUnitListRequest) Reset() { *m = GateUnitListRequest{} }
  1763. func (m *GateUnitListRequest) String() string { return proto.CompactTextString(m) }
  1764. func (*GateUnitListRequest) ProtoMessage() {}
  1765. func (*GateUnitListRequest) Descriptor() ([]byte, []int) {
  1766. return fileDescriptor_870276a56ac00da5, []int{33}
  1767. }
  1768. func (m *GateUnitListRequest) XXX_Unmarshal(b []byte) error {
  1769. return xxx_messageInfo_GateUnitListRequest.Unmarshal(m, b)
  1770. }
  1771. func (m *GateUnitListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1772. return xxx_messageInfo_GateUnitListRequest.Marshal(b, m, deterministic)
  1773. }
  1774. func (m *GateUnitListRequest) XXX_Merge(src proto.Message) {
  1775. xxx_messageInfo_GateUnitListRequest.Merge(m, src)
  1776. }
  1777. func (m *GateUnitListRequest) XXX_Size() int {
  1778. return xxx_messageInfo_GateUnitListRequest.Size(m)
  1779. }
  1780. func (m *GateUnitListRequest) XXX_DiscardUnknown() {
  1781. xxx_messageInfo_GateUnitListRequest.DiscardUnknown(m)
  1782. }
  1783. var xxx_messageInfo_GateUnitListRequest proto.InternalMessageInfo
  1784. func (m *GateUnitListRequest) GetDeviceId() int64 {
  1785. if m != nil {
  1786. return m.DeviceId
  1787. }
  1788. return 0
  1789. }
  1790. func (m *GateUnitListRequest) GetGardenId() int64 {
  1791. if m != nil {
  1792. return m.GardenId
  1793. }
  1794. return 0
  1795. }
  1796. type GateUnitListReply struct {
  1797. UnitId []int64 `protobuf:"varint,3,rep,packed,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1798. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1799. XXX_unrecognized []byte `json:"-"`
  1800. XXX_sizecache int32 `json:"-"`
  1801. }
  1802. func (m *GateUnitListReply) Reset() { *m = GateUnitListReply{} }
  1803. func (m *GateUnitListReply) String() string { return proto.CompactTextString(m) }
  1804. func (*GateUnitListReply) ProtoMessage() {}
  1805. func (*GateUnitListReply) Descriptor() ([]byte, []int) {
  1806. return fileDescriptor_870276a56ac00da5, []int{34}
  1807. }
  1808. func (m *GateUnitListReply) XXX_Unmarshal(b []byte) error {
  1809. return xxx_messageInfo_GateUnitListReply.Unmarshal(m, b)
  1810. }
  1811. func (m *GateUnitListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1812. return xxx_messageInfo_GateUnitListReply.Marshal(b, m, deterministic)
  1813. }
  1814. func (m *GateUnitListReply) XXX_Merge(src proto.Message) {
  1815. xxx_messageInfo_GateUnitListReply.Merge(m, src)
  1816. }
  1817. func (m *GateUnitListReply) XXX_Size() int {
  1818. return xxx_messageInfo_GateUnitListReply.Size(m)
  1819. }
  1820. func (m *GateUnitListReply) XXX_DiscardUnknown() {
  1821. xxx_messageInfo_GateUnitListReply.DiscardUnknown(m)
  1822. }
  1823. var xxx_messageInfo_GateUnitListReply proto.InternalMessageInfo
  1824. func (m *GateUnitListReply) GetUnitId() []int64 {
  1825. if m != nil {
  1826. return m.UnitId
  1827. }
  1828. return nil
  1829. }
  1830. type GateUnitDeviceRequest struct {
  1831. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1832. UnitId []int64 `protobuf:"varint,2,rep,packed,name=unit_id,json=unitId,proto3" json:"unit_id"`
  1833. OnlyHas bool `protobuf:"varint,3,opt,name=only_has,json=onlyHas,proto3" json:"only_has"`
  1834. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1835. XXX_unrecognized []byte `json:"-"`
  1836. XXX_sizecache int32 `json:"-"`
  1837. }
  1838. func (m *GateUnitDeviceRequest) Reset() { *m = GateUnitDeviceRequest{} }
  1839. func (m *GateUnitDeviceRequest) String() string { return proto.CompactTextString(m) }
  1840. func (*GateUnitDeviceRequest) ProtoMessage() {}
  1841. func (*GateUnitDeviceRequest) Descriptor() ([]byte, []int) {
  1842. return fileDescriptor_870276a56ac00da5, []int{35}
  1843. }
  1844. func (m *GateUnitDeviceRequest) XXX_Unmarshal(b []byte) error {
  1845. return xxx_messageInfo_GateUnitDeviceRequest.Unmarshal(m, b)
  1846. }
  1847. func (m *GateUnitDeviceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1848. return xxx_messageInfo_GateUnitDeviceRequest.Marshal(b, m, deterministic)
  1849. }
  1850. func (m *GateUnitDeviceRequest) XXX_Merge(src proto.Message) {
  1851. xxx_messageInfo_GateUnitDeviceRequest.Merge(m, src)
  1852. }
  1853. func (m *GateUnitDeviceRequest) XXX_Size() int {
  1854. return xxx_messageInfo_GateUnitDeviceRequest.Size(m)
  1855. }
  1856. func (m *GateUnitDeviceRequest) XXX_DiscardUnknown() {
  1857. xxx_messageInfo_GateUnitDeviceRequest.DiscardUnknown(m)
  1858. }
  1859. var xxx_messageInfo_GateUnitDeviceRequest proto.InternalMessageInfo
  1860. func (m *GateUnitDeviceRequest) GetGardenId() int64 {
  1861. if m != nil {
  1862. return m.GardenId
  1863. }
  1864. return 0
  1865. }
  1866. func (m *GateUnitDeviceRequest) GetUnitId() []int64 {
  1867. if m != nil {
  1868. return m.UnitId
  1869. }
  1870. return nil
  1871. }
  1872. func (m *GateUnitDeviceRequest) GetOnlyHas() bool {
  1873. if m != nil {
  1874. return m.OnlyHas
  1875. }
  1876. return false
  1877. }
  1878. type GateUnitDeviceReply struct {
  1879. List []*GateItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1880. HasDevice bool `protobuf:"varint,2,opt,name=has_device,json=hasDevice,proto3" json:"has_device"`
  1881. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1882. XXX_unrecognized []byte `json:"-"`
  1883. XXX_sizecache int32 `json:"-"`
  1884. }
  1885. func (m *GateUnitDeviceReply) Reset() { *m = GateUnitDeviceReply{} }
  1886. func (m *GateUnitDeviceReply) String() string { return proto.CompactTextString(m) }
  1887. func (*GateUnitDeviceReply) ProtoMessage() {}
  1888. func (*GateUnitDeviceReply) Descriptor() ([]byte, []int) {
  1889. return fileDescriptor_870276a56ac00da5, []int{36}
  1890. }
  1891. func (m *GateUnitDeviceReply) XXX_Unmarshal(b []byte) error {
  1892. return xxx_messageInfo_GateUnitDeviceReply.Unmarshal(m, b)
  1893. }
  1894. func (m *GateUnitDeviceReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1895. return xxx_messageInfo_GateUnitDeviceReply.Marshal(b, m, deterministic)
  1896. }
  1897. func (m *GateUnitDeviceReply) XXX_Merge(src proto.Message) {
  1898. xxx_messageInfo_GateUnitDeviceReply.Merge(m, src)
  1899. }
  1900. func (m *GateUnitDeviceReply) XXX_Size() int {
  1901. return xxx_messageInfo_GateUnitDeviceReply.Size(m)
  1902. }
  1903. func (m *GateUnitDeviceReply) XXX_DiscardUnknown() {
  1904. xxx_messageInfo_GateUnitDeviceReply.DiscardUnknown(m)
  1905. }
  1906. var xxx_messageInfo_GateUnitDeviceReply proto.InternalMessageInfo
  1907. func (m *GateUnitDeviceReply) GetList() []*GateItem {
  1908. if m != nil {
  1909. return m.List
  1910. }
  1911. return nil
  1912. }
  1913. func (m *GateUnitDeviceReply) GetHasDevice() bool {
  1914. if m != nil {
  1915. return m.HasDevice
  1916. }
  1917. return false
  1918. }
  1919. type GateUserPicAddRequest struct {
  1920. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  1921. Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"`
  1922. IdNumber string `protobuf:"bytes,3,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
  1923. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"`
  1924. PicUrl string `protobuf:"bytes,5,opt,name=pic_url,json=picUrl,proto3" json:"pic_url"`
  1925. Phone string `protobuf:"bytes,6,opt,name=phone,proto3" json:"phone"`
  1926. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1927. XXX_unrecognized []byte `json:"-"`
  1928. XXX_sizecache int32 `json:"-"`
  1929. }
  1930. func (m *GateUserPicAddRequest) Reset() { *m = GateUserPicAddRequest{} }
  1931. func (m *GateUserPicAddRequest) String() string { return proto.CompactTextString(m) }
  1932. func (*GateUserPicAddRequest) ProtoMessage() {}
  1933. func (*GateUserPicAddRequest) Descriptor() ([]byte, []int) {
  1934. return fileDescriptor_870276a56ac00da5, []int{37}
  1935. }
  1936. func (m *GateUserPicAddRequest) XXX_Unmarshal(b []byte) error {
  1937. return xxx_messageInfo_GateUserPicAddRequest.Unmarshal(m, b)
  1938. }
  1939. func (m *GateUserPicAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1940. return xxx_messageInfo_GateUserPicAddRequest.Marshal(b, m, deterministic)
  1941. }
  1942. func (m *GateUserPicAddRequest) XXX_Merge(src proto.Message) {
  1943. xxx_messageInfo_GateUserPicAddRequest.Merge(m, src)
  1944. }
  1945. func (m *GateUserPicAddRequest) XXX_Size() int {
  1946. return xxx_messageInfo_GateUserPicAddRequest.Size(m)
  1947. }
  1948. func (m *GateUserPicAddRequest) XXX_DiscardUnknown() {
  1949. xxx_messageInfo_GateUserPicAddRequest.DiscardUnknown(m)
  1950. }
  1951. var xxx_messageInfo_GateUserPicAddRequest proto.InternalMessageInfo
  1952. func (m *GateUserPicAddRequest) GetGardenId() int64 {
  1953. if m != nil {
  1954. return m.GardenId
  1955. }
  1956. return 0
  1957. }
  1958. func (m *GateUserPicAddRequest) GetUid() int64 {
  1959. if m != nil {
  1960. return m.Uid
  1961. }
  1962. return 0
  1963. }
  1964. func (m *GateUserPicAddRequest) GetIdNumber() string {
  1965. if m != nil {
  1966. return m.IdNumber
  1967. }
  1968. return ""
  1969. }
  1970. func (m *GateUserPicAddRequest) GetName() string {
  1971. if m != nil {
  1972. return m.Name
  1973. }
  1974. return ""
  1975. }
  1976. func (m *GateUserPicAddRequest) GetPicUrl() string {
  1977. if m != nil {
  1978. return m.PicUrl
  1979. }
  1980. return ""
  1981. }
  1982. func (m *GateUserPicAddRequest) GetPhone() string {
  1983. if m != nil {
  1984. return m.Phone
  1985. }
  1986. return ""
  1987. }
  1988. type GateUserPicAddReply struct {
  1989. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1990. XXX_unrecognized []byte `json:"-"`
  1991. XXX_sizecache int32 `json:"-"`
  1992. }
  1993. func (m *GateUserPicAddReply) Reset() { *m = GateUserPicAddReply{} }
  1994. func (m *GateUserPicAddReply) String() string { return proto.CompactTextString(m) }
  1995. func (*GateUserPicAddReply) ProtoMessage() {}
  1996. func (*GateUserPicAddReply) Descriptor() ([]byte, []int) {
  1997. return fileDescriptor_870276a56ac00da5, []int{38}
  1998. }
  1999. func (m *GateUserPicAddReply) XXX_Unmarshal(b []byte) error {
  2000. return xxx_messageInfo_GateUserPicAddReply.Unmarshal(m, b)
  2001. }
  2002. func (m *GateUserPicAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2003. return xxx_messageInfo_GateUserPicAddReply.Marshal(b, m, deterministic)
  2004. }
  2005. func (m *GateUserPicAddReply) XXX_Merge(src proto.Message) {
  2006. xxx_messageInfo_GateUserPicAddReply.Merge(m, src)
  2007. }
  2008. func (m *GateUserPicAddReply) XXX_Size() int {
  2009. return xxx_messageInfo_GateUserPicAddReply.Size(m)
  2010. }
  2011. func (m *GateUserPicAddReply) XXX_DiscardUnknown() {
  2012. xxx_messageInfo_GateUserPicAddReply.DiscardUnknown(m)
  2013. }
  2014. var xxx_messageInfo_GateUserPicAddReply proto.InternalMessageInfo
  2015. type GateUserPicInfoRequest struct {
  2016. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2017. Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"`
  2018. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2019. XXX_unrecognized []byte `json:"-"`
  2020. XXX_sizecache int32 `json:"-"`
  2021. }
  2022. func (m *GateUserPicInfoRequest) Reset() { *m = GateUserPicInfoRequest{} }
  2023. func (m *GateUserPicInfoRequest) String() string { return proto.CompactTextString(m) }
  2024. func (*GateUserPicInfoRequest) ProtoMessage() {}
  2025. func (*GateUserPicInfoRequest) Descriptor() ([]byte, []int) {
  2026. return fileDescriptor_870276a56ac00da5, []int{39}
  2027. }
  2028. func (m *GateUserPicInfoRequest) XXX_Unmarshal(b []byte) error {
  2029. return xxx_messageInfo_GateUserPicInfoRequest.Unmarshal(m, b)
  2030. }
  2031. func (m *GateUserPicInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2032. return xxx_messageInfo_GateUserPicInfoRequest.Marshal(b, m, deterministic)
  2033. }
  2034. func (m *GateUserPicInfoRequest) XXX_Merge(src proto.Message) {
  2035. xxx_messageInfo_GateUserPicInfoRequest.Merge(m, src)
  2036. }
  2037. func (m *GateUserPicInfoRequest) XXX_Size() int {
  2038. return xxx_messageInfo_GateUserPicInfoRequest.Size(m)
  2039. }
  2040. func (m *GateUserPicInfoRequest) XXX_DiscardUnknown() {
  2041. xxx_messageInfo_GateUserPicInfoRequest.DiscardUnknown(m)
  2042. }
  2043. var xxx_messageInfo_GateUserPicInfoRequest proto.InternalMessageInfo
  2044. func (m *GateUserPicInfoRequest) GetGardenId() int64 {
  2045. if m != nil {
  2046. return m.GardenId
  2047. }
  2048. return 0
  2049. }
  2050. func (m *GateUserPicInfoRequest) GetUid() int64 {
  2051. if m != nil {
  2052. return m.Uid
  2053. }
  2054. return 0
  2055. }
  2056. type GateUserPicInfoReply struct {
  2057. PicUrl string `protobuf:"bytes,1,opt,name=pic_url,json=picUrl,proto3" json:"pic_url"`
  2058. // 1 待下发 2 已下发 3 下发失败
  2059. DownStatus int32 `protobuf:"varint,2,opt,name=down_status,json=downStatus,proto3" json:"down_status"`
  2060. // 1 待审核 2 审核通过 3 审核未通过
  2061. ApproveStatus int32 `protobuf:"varint,3,opt,name=approve_status,json=approveStatus,proto3" json:"approve_status"`
  2062. Feedback string `protobuf:"bytes,4,opt,name=feedback,proto3" json:"feedback"`
  2063. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2064. XXX_unrecognized []byte `json:"-"`
  2065. XXX_sizecache int32 `json:"-"`
  2066. }
  2067. func (m *GateUserPicInfoReply) Reset() { *m = GateUserPicInfoReply{} }
  2068. func (m *GateUserPicInfoReply) String() string { return proto.CompactTextString(m) }
  2069. func (*GateUserPicInfoReply) ProtoMessage() {}
  2070. func (*GateUserPicInfoReply) Descriptor() ([]byte, []int) {
  2071. return fileDescriptor_870276a56ac00da5, []int{40}
  2072. }
  2073. func (m *GateUserPicInfoReply) XXX_Unmarshal(b []byte) error {
  2074. return xxx_messageInfo_GateUserPicInfoReply.Unmarshal(m, b)
  2075. }
  2076. func (m *GateUserPicInfoReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2077. return xxx_messageInfo_GateUserPicInfoReply.Marshal(b, m, deterministic)
  2078. }
  2079. func (m *GateUserPicInfoReply) XXX_Merge(src proto.Message) {
  2080. xxx_messageInfo_GateUserPicInfoReply.Merge(m, src)
  2081. }
  2082. func (m *GateUserPicInfoReply) XXX_Size() int {
  2083. return xxx_messageInfo_GateUserPicInfoReply.Size(m)
  2084. }
  2085. func (m *GateUserPicInfoReply) XXX_DiscardUnknown() {
  2086. xxx_messageInfo_GateUserPicInfoReply.DiscardUnknown(m)
  2087. }
  2088. var xxx_messageInfo_GateUserPicInfoReply proto.InternalMessageInfo
  2089. func (m *GateUserPicInfoReply) GetPicUrl() string {
  2090. if m != nil {
  2091. return m.PicUrl
  2092. }
  2093. return ""
  2094. }
  2095. func (m *GateUserPicInfoReply) GetDownStatus() int32 {
  2096. if m != nil {
  2097. return m.DownStatus
  2098. }
  2099. return 0
  2100. }
  2101. func (m *GateUserPicInfoReply) GetApproveStatus() int32 {
  2102. if m != nil {
  2103. return m.ApproveStatus
  2104. }
  2105. return 0
  2106. }
  2107. func (m *GateUserPicInfoReply) GetFeedback() string {
  2108. if m != nil {
  2109. return m.Feedback
  2110. }
  2111. return ""
  2112. }
  2113. type GateUserPicListRequest struct {
  2114. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2115. DownStatus int32 `protobuf:"varint,2,opt,name=down_status,json=downStatus,proto3" json:"down_status"`
  2116. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  2117. Page int64 `protobuf:"varint,4,opt,name=page,proto3" json:"page"`
  2118. PageSize int64 `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  2119. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2120. XXX_unrecognized []byte `json:"-"`
  2121. XXX_sizecache int32 `json:"-"`
  2122. }
  2123. func (m *GateUserPicListRequest) Reset() { *m = GateUserPicListRequest{} }
  2124. func (m *GateUserPicListRequest) String() string { return proto.CompactTextString(m) }
  2125. func (*GateUserPicListRequest) ProtoMessage() {}
  2126. func (*GateUserPicListRequest) Descriptor() ([]byte, []int) {
  2127. return fileDescriptor_870276a56ac00da5, []int{41}
  2128. }
  2129. func (m *GateUserPicListRequest) XXX_Unmarshal(b []byte) error {
  2130. return xxx_messageInfo_GateUserPicListRequest.Unmarshal(m, b)
  2131. }
  2132. func (m *GateUserPicListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2133. return xxx_messageInfo_GateUserPicListRequest.Marshal(b, m, deterministic)
  2134. }
  2135. func (m *GateUserPicListRequest) XXX_Merge(src proto.Message) {
  2136. xxx_messageInfo_GateUserPicListRequest.Merge(m, src)
  2137. }
  2138. func (m *GateUserPicListRequest) XXX_Size() int {
  2139. return xxx_messageInfo_GateUserPicListRequest.Size(m)
  2140. }
  2141. func (m *GateUserPicListRequest) XXX_DiscardUnknown() {
  2142. xxx_messageInfo_GateUserPicListRequest.DiscardUnknown(m)
  2143. }
  2144. var xxx_messageInfo_GateUserPicListRequest proto.InternalMessageInfo
  2145. func (m *GateUserPicListRequest) GetGardenId() int64 {
  2146. if m != nil {
  2147. return m.GardenId
  2148. }
  2149. return 0
  2150. }
  2151. func (m *GateUserPicListRequest) GetDownStatus() int32 {
  2152. if m != nil {
  2153. return m.DownStatus
  2154. }
  2155. return 0
  2156. }
  2157. func (m *GateUserPicListRequest) GetName() string {
  2158. if m != nil {
  2159. return m.Name
  2160. }
  2161. return ""
  2162. }
  2163. func (m *GateUserPicListRequest) GetPage() int64 {
  2164. if m != nil {
  2165. return m.Page
  2166. }
  2167. return 0
  2168. }
  2169. func (m *GateUserPicListRequest) GetPageSize() int64 {
  2170. if m != nil {
  2171. return m.PageSize
  2172. }
  2173. return 0
  2174. }
  2175. type GateUserPicDevice struct {
  2176. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  2177. DeviceName string `protobuf:"bytes,2,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  2178. DownStatus int32 `protobuf:"varint,3,opt,name=down_status,json=downStatus,proto3" json:"down_status"`
  2179. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2180. XXX_unrecognized []byte `json:"-"`
  2181. XXX_sizecache int32 `json:"-"`
  2182. }
  2183. func (m *GateUserPicDevice) Reset() { *m = GateUserPicDevice{} }
  2184. func (m *GateUserPicDevice) String() string { return proto.CompactTextString(m) }
  2185. func (*GateUserPicDevice) ProtoMessage() {}
  2186. func (*GateUserPicDevice) Descriptor() ([]byte, []int) {
  2187. return fileDescriptor_870276a56ac00da5, []int{42}
  2188. }
  2189. func (m *GateUserPicDevice) XXX_Unmarshal(b []byte) error {
  2190. return xxx_messageInfo_GateUserPicDevice.Unmarshal(m, b)
  2191. }
  2192. func (m *GateUserPicDevice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2193. return xxx_messageInfo_GateUserPicDevice.Marshal(b, m, deterministic)
  2194. }
  2195. func (m *GateUserPicDevice) XXX_Merge(src proto.Message) {
  2196. xxx_messageInfo_GateUserPicDevice.Merge(m, src)
  2197. }
  2198. func (m *GateUserPicDevice) XXX_Size() int {
  2199. return xxx_messageInfo_GateUserPicDevice.Size(m)
  2200. }
  2201. func (m *GateUserPicDevice) XXX_DiscardUnknown() {
  2202. xxx_messageInfo_GateUserPicDevice.DiscardUnknown(m)
  2203. }
  2204. var xxx_messageInfo_GateUserPicDevice proto.InternalMessageInfo
  2205. func (m *GateUserPicDevice) GetDeviceId() int64 {
  2206. if m != nil {
  2207. return m.DeviceId
  2208. }
  2209. return 0
  2210. }
  2211. func (m *GateUserPicDevice) GetDeviceName() string {
  2212. if m != nil {
  2213. return m.DeviceName
  2214. }
  2215. return ""
  2216. }
  2217. func (m *GateUserPicDevice) GetDownStatus() int32 {
  2218. if m != nil {
  2219. return m.DownStatus
  2220. }
  2221. return 0
  2222. }
  2223. type GateUserPicItem struct {
  2224. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2225. Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"`
  2226. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  2227. IdNumber string `protobuf:"bytes,4,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
  2228. HouseName string `protobuf:"bytes,5,opt,name=house_name,json=houseName,proto3" json:"house_name"`
  2229. CreatedAt int64 `protobuf:"varint,6,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  2230. ApprovedAt int64 `protobuf:"varint,7,opt,name=approved_at,json=approvedAt,proto3" json:"approved_at"`
  2231. ApproveStatus int32 `protobuf:"varint,8,opt,name=approve_status,json=approveStatus,proto3" json:"approve_status"`
  2232. DownStatus int32 `protobuf:"varint,9,opt,name=down_status,json=downStatus,proto3" json:"down_status"`
  2233. GatePermissions []*GateUserPicDevice `protobuf:"bytes,10,rep,name=gate_permissions,json=gatePermissions,proto3" json:"gate_permissions"`
  2234. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2235. XXX_unrecognized []byte `json:"-"`
  2236. XXX_sizecache int32 `json:"-"`
  2237. }
  2238. func (m *GateUserPicItem) Reset() { *m = GateUserPicItem{} }
  2239. func (m *GateUserPicItem) String() string { return proto.CompactTextString(m) }
  2240. func (*GateUserPicItem) ProtoMessage() {}
  2241. func (*GateUserPicItem) Descriptor() ([]byte, []int) {
  2242. return fileDescriptor_870276a56ac00da5, []int{43}
  2243. }
  2244. func (m *GateUserPicItem) XXX_Unmarshal(b []byte) error {
  2245. return xxx_messageInfo_GateUserPicItem.Unmarshal(m, b)
  2246. }
  2247. func (m *GateUserPicItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2248. return xxx_messageInfo_GateUserPicItem.Marshal(b, m, deterministic)
  2249. }
  2250. func (m *GateUserPicItem) XXX_Merge(src proto.Message) {
  2251. xxx_messageInfo_GateUserPicItem.Merge(m, src)
  2252. }
  2253. func (m *GateUserPicItem) XXX_Size() int {
  2254. return xxx_messageInfo_GateUserPicItem.Size(m)
  2255. }
  2256. func (m *GateUserPicItem) XXX_DiscardUnknown() {
  2257. xxx_messageInfo_GateUserPicItem.DiscardUnknown(m)
  2258. }
  2259. var xxx_messageInfo_GateUserPicItem proto.InternalMessageInfo
  2260. func (m *GateUserPicItem) GetId() int64 {
  2261. if m != nil {
  2262. return m.Id
  2263. }
  2264. return 0
  2265. }
  2266. func (m *GateUserPicItem) GetUid() int64 {
  2267. if m != nil {
  2268. return m.Uid
  2269. }
  2270. return 0
  2271. }
  2272. func (m *GateUserPicItem) GetName() string {
  2273. if m != nil {
  2274. return m.Name
  2275. }
  2276. return ""
  2277. }
  2278. func (m *GateUserPicItem) GetIdNumber() string {
  2279. if m != nil {
  2280. return m.IdNumber
  2281. }
  2282. return ""
  2283. }
  2284. func (m *GateUserPicItem) GetHouseName() string {
  2285. if m != nil {
  2286. return m.HouseName
  2287. }
  2288. return ""
  2289. }
  2290. func (m *GateUserPicItem) GetCreatedAt() int64 {
  2291. if m != nil {
  2292. return m.CreatedAt
  2293. }
  2294. return 0
  2295. }
  2296. func (m *GateUserPicItem) GetApprovedAt() int64 {
  2297. if m != nil {
  2298. return m.ApprovedAt
  2299. }
  2300. return 0
  2301. }
  2302. func (m *GateUserPicItem) GetApproveStatus() int32 {
  2303. if m != nil {
  2304. return m.ApproveStatus
  2305. }
  2306. return 0
  2307. }
  2308. func (m *GateUserPicItem) GetDownStatus() int32 {
  2309. if m != nil {
  2310. return m.DownStatus
  2311. }
  2312. return 0
  2313. }
  2314. func (m *GateUserPicItem) GetGatePermissions() []*GateUserPicDevice {
  2315. if m != nil {
  2316. return m.GatePermissions
  2317. }
  2318. return nil
  2319. }
  2320. type GateUserPicListReply struct {
  2321. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  2322. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  2323. List []*GateUserPicItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  2324. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2325. XXX_unrecognized []byte `json:"-"`
  2326. XXX_sizecache int32 `json:"-"`
  2327. }
  2328. func (m *GateUserPicListReply) Reset() { *m = GateUserPicListReply{} }
  2329. func (m *GateUserPicListReply) String() string { return proto.CompactTextString(m) }
  2330. func (*GateUserPicListReply) ProtoMessage() {}
  2331. func (*GateUserPicListReply) Descriptor() ([]byte, []int) {
  2332. return fileDescriptor_870276a56ac00da5, []int{44}
  2333. }
  2334. func (m *GateUserPicListReply) XXX_Unmarshal(b []byte) error {
  2335. return xxx_messageInfo_GateUserPicListReply.Unmarshal(m, b)
  2336. }
  2337. func (m *GateUserPicListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2338. return xxx_messageInfo_GateUserPicListReply.Marshal(b, m, deterministic)
  2339. }
  2340. func (m *GateUserPicListReply) XXX_Merge(src proto.Message) {
  2341. xxx_messageInfo_GateUserPicListReply.Merge(m, src)
  2342. }
  2343. func (m *GateUserPicListReply) XXX_Size() int {
  2344. return xxx_messageInfo_GateUserPicListReply.Size(m)
  2345. }
  2346. func (m *GateUserPicListReply) XXX_DiscardUnknown() {
  2347. xxx_messageInfo_GateUserPicListReply.DiscardUnknown(m)
  2348. }
  2349. var xxx_messageInfo_GateUserPicListReply proto.InternalMessageInfo
  2350. func (m *GateUserPicListReply) GetPage() int64 {
  2351. if m != nil {
  2352. return m.Page
  2353. }
  2354. return 0
  2355. }
  2356. func (m *GateUserPicListReply) GetTotal() int64 {
  2357. if m != nil {
  2358. return m.Total
  2359. }
  2360. return 0
  2361. }
  2362. func (m *GateUserPicListReply) GetList() []*GateUserPicItem {
  2363. if m != nil {
  2364. return m.List
  2365. }
  2366. return nil
  2367. }
  2368. type GateUserPicApproveRequest struct {
  2369. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2370. Id int64 `protobuf:"varint,2,opt,name=id,proto3" json:"id"`
  2371. Status bool `protobuf:"varint,3,opt,name=status,proto3" json:"status"`
  2372. Feedback string `protobuf:"bytes,4,opt,name=feedback,proto3" json:"feedback"`
  2373. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2374. XXX_unrecognized []byte `json:"-"`
  2375. XXX_sizecache int32 `json:"-"`
  2376. }
  2377. func (m *GateUserPicApproveRequest) Reset() { *m = GateUserPicApproveRequest{} }
  2378. func (m *GateUserPicApproveRequest) String() string { return proto.CompactTextString(m) }
  2379. func (*GateUserPicApproveRequest) ProtoMessage() {}
  2380. func (*GateUserPicApproveRequest) Descriptor() ([]byte, []int) {
  2381. return fileDescriptor_870276a56ac00da5, []int{45}
  2382. }
  2383. func (m *GateUserPicApproveRequest) XXX_Unmarshal(b []byte) error {
  2384. return xxx_messageInfo_GateUserPicApproveRequest.Unmarshal(m, b)
  2385. }
  2386. func (m *GateUserPicApproveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2387. return xxx_messageInfo_GateUserPicApproveRequest.Marshal(b, m, deterministic)
  2388. }
  2389. func (m *GateUserPicApproveRequest) XXX_Merge(src proto.Message) {
  2390. xxx_messageInfo_GateUserPicApproveRequest.Merge(m, src)
  2391. }
  2392. func (m *GateUserPicApproveRequest) XXX_Size() int {
  2393. return xxx_messageInfo_GateUserPicApproveRequest.Size(m)
  2394. }
  2395. func (m *GateUserPicApproveRequest) XXX_DiscardUnknown() {
  2396. xxx_messageInfo_GateUserPicApproveRequest.DiscardUnknown(m)
  2397. }
  2398. var xxx_messageInfo_GateUserPicApproveRequest proto.InternalMessageInfo
  2399. func (m *GateUserPicApproveRequest) GetGardenId() int64 {
  2400. if m != nil {
  2401. return m.GardenId
  2402. }
  2403. return 0
  2404. }
  2405. func (m *GateUserPicApproveRequest) GetId() int64 {
  2406. if m != nil {
  2407. return m.Id
  2408. }
  2409. return 0
  2410. }
  2411. func (m *GateUserPicApproveRequest) GetStatus() bool {
  2412. if m != nil {
  2413. return m.Status
  2414. }
  2415. return false
  2416. }
  2417. func (m *GateUserPicApproveRequest) GetFeedback() string {
  2418. if m != nil {
  2419. return m.Feedback
  2420. }
  2421. return ""
  2422. }
  2423. type GateUserPicApproveReply struct {
  2424. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2425. XXX_unrecognized []byte `json:"-"`
  2426. XXX_sizecache int32 `json:"-"`
  2427. }
  2428. func (m *GateUserPicApproveReply) Reset() { *m = GateUserPicApproveReply{} }
  2429. func (m *GateUserPicApproveReply) String() string { return proto.CompactTextString(m) }
  2430. func (*GateUserPicApproveReply) ProtoMessage() {}
  2431. func (*GateUserPicApproveReply) Descriptor() ([]byte, []int) {
  2432. return fileDescriptor_870276a56ac00da5, []int{46}
  2433. }
  2434. func (m *GateUserPicApproveReply) XXX_Unmarshal(b []byte) error {
  2435. return xxx_messageInfo_GateUserPicApproveReply.Unmarshal(m, b)
  2436. }
  2437. func (m *GateUserPicApproveReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2438. return xxx_messageInfo_GateUserPicApproveReply.Marshal(b, m, deterministic)
  2439. }
  2440. func (m *GateUserPicApproveReply) XXX_Merge(src proto.Message) {
  2441. xxx_messageInfo_GateUserPicApproveReply.Merge(m, src)
  2442. }
  2443. func (m *GateUserPicApproveReply) XXX_Size() int {
  2444. return xxx_messageInfo_GateUserPicApproveReply.Size(m)
  2445. }
  2446. func (m *GateUserPicApproveReply) XXX_DiscardUnknown() {
  2447. xxx_messageInfo_GateUserPicApproveReply.DiscardUnknown(m)
  2448. }
  2449. var xxx_messageInfo_GateUserPicApproveReply proto.InternalMessageInfo
  2450. type GateUserPicSyncRequest struct {
  2451. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2452. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2453. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2454. XXX_unrecognized []byte `json:"-"`
  2455. XXX_sizecache int32 `json:"-"`
  2456. }
  2457. func (m *GateUserPicSyncRequest) Reset() { *m = GateUserPicSyncRequest{} }
  2458. func (m *GateUserPicSyncRequest) String() string { return proto.CompactTextString(m) }
  2459. func (*GateUserPicSyncRequest) ProtoMessage() {}
  2460. func (*GateUserPicSyncRequest) Descriptor() ([]byte, []int) {
  2461. return fileDescriptor_870276a56ac00da5, []int{47}
  2462. }
  2463. func (m *GateUserPicSyncRequest) XXX_Unmarshal(b []byte) error {
  2464. return xxx_messageInfo_GateUserPicSyncRequest.Unmarshal(m, b)
  2465. }
  2466. func (m *GateUserPicSyncRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2467. return xxx_messageInfo_GateUserPicSyncRequest.Marshal(b, m, deterministic)
  2468. }
  2469. func (m *GateUserPicSyncRequest) XXX_Merge(src proto.Message) {
  2470. xxx_messageInfo_GateUserPicSyncRequest.Merge(m, src)
  2471. }
  2472. func (m *GateUserPicSyncRequest) XXX_Size() int {
  2473. return xxx_messageInfo_GateUserPicSyncRequest.Size(m)
  2474. }
  2475. func (m *GateUserPicSyncRequest) XXX_DiscardUnknown() {
  2476. xxx_messageInfo_GateUserPicSyncRequest.DiscardUnknown(m)
  2477. }
  2478. var xxx_messageInfo_GateUserPicSyncRequest proto.InternalMessageInfo
  2479. func (m *GateUserPicSyncRequest) GetId() int64 {
  2480. if m != nil {
  2481. return m.Id
  2482. }
  2483. return 0
  2484. }
  2485. func (m *GateUserPicSyncRequest) GetGardenId() int64 {
  2486. if m != nil {
  2487. return m.GardenId
  2488. }
  2489. return 0
  2490. }
  2491. type GateUserPicSyncReply struct {
  2492. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2493. XXX_unrecognized []byte `json:"-"`
  2494. XXX_sizecache int32 `json:"-"`
  2495. }
  2496. func (m *GateUserPicSyncReply) Reset() { *m = GateUserPicSyncReply{} }
  2497. func (m *GateUserPicSyncReply) String() string { return proto.CompactTextString(m) }
  2498. func (*GateUserPicSyncReply) ProtoMessage() {}
  2499. func (*GateUserPicSyncReply) Descriptor() ([]byte, []int) {
  2500. return fileDescriptor_870276a56ac00da5, []int{48}
  2501. }
  2502. func (m *GateUserPicSyncReply) XXX_Unmarshal(b []byte) error {
  2503. return xxx_messageInfo_GateUserPicSyncReply.Unmarshal(m, b)
  2504. }
  2505. func (m *GateUserPicSyncReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2506. return xxx_messageInfo_GateUserPicSyncReply.Marshal(b, m, deterministic)
  2507. }
  2508. func (m *GateUserPicSyncReply) XXX_Merge(src proto.Message) {
  2509. xxx_messageInfo_GateUserPicSyncReply.Merge(m, src)
  2510. }
  2511. func (m *GateUserPicSyncReply) XXX_Size() int {
  2512. return xxx_messageInfo_GateUserPicSyncReply.Size(m)
  2513. }
  2514. func (m *GateUserPicSyncReply) XXX_DiscardUnknown() {
  2515. xxx_messageInfo_GateUserPicSyncReply.DiscardUnknown(m)
  2516. }
  2517. var xxx_messageInfo_GateUserPicSyncReply proto.InternalMessageInfo
  2518. type GateCardAddRequest struct {
  2519. CardNumber string `protobuf:"bytes,1,opt,name=card_number,json=cardNumber,proto3" json:"card_number"`
  2520. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2521. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  2522. DeviceIds []int64 `protobuf:"varint,4,rep,packed,name=device_ids,json=deviceIds,proto3" json:"device_ids"`
  2523. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2524. XXX_unrecognized []byte `json:"-"`
  2525. XXX_sizecache int32 `json:"-"`
  2526. }
  2527. func (m *GateCardAddRequest) Reset() { *m = GateCardAddRequest{} }
  2528. func (m *GateCardAddRequest) String() string { return proto.CompactTextString(m) }
  2529. func (*GateCardAddRequest) ProtoMessage() {}
  2530. func (*GateCardAddRequest) Descriptor() ([]byte, []int) {
  2531. return fileDescriptor_870276a56ac00da5, []int{49}
  2532. }
  2533. func (m *GateCardAddRequest) XXX_Unmarshal(b []byte) error {
  2534. return xxx_messageInfo_GateCardAddRequest.Unmarshal(m, b)
  2535. }
  2536. func (m *GateCardAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2537. return xxx_messageInfo_GateCardAddRequest.Marshal(b, m, deterministic)
  2538. }
  2539. func (m *GateCardAddRequest) XXX_Merge(src proto.Message) {
  2540. xxx_messageInfo_GateCardAddRequest.Merge(m, src)
  2541. }
  2542. func (m *GateCardAddRequest) XXX_Size() int {
  2543. return xxx_messageInfo_GateCardAddRequest.Size(m)
  2544. }
  2545. func (m *GateCardAddRequest) XXX_DiscardUnknown() {
  2546. xxx_messageInfo_GateCardAddRequest.DiscardUnknown(m)
  2547. }
  2548. var xxx_messageInfo_GateCardAddRequest proto.InternalMessageInfo
  2549. func (m *GateCardAddRequest) GetCardNumber() string {
  2550. if m != nil {
  2551. return m.CardNumber
  2552. }
  2553. return ""
  2554. }
  2555. func (m *GateCardAddRequest) GetGardenId() int64 {
  2556. if m != nil {
  2557. return m.GardenId
  2558. }
  2559. return 0
  2560. }
  2561. func (m *GateCardAddRequest) GetName() string {
  2562. if m != nil {
  2563. return m.Name
  2564. }
  2565. return ""
  2566. }
  2567. func (m *GateCardAddRequest) GetDeviceIds() []int64 {
  2568. if m != nil {
  2569. return m.DeviceIds
  2570. }
  2571. return nil
  2572. }
  2573. type GateCardAddReply struct {
  2574. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2575. XXX_unrecognized []byte `json:"-"`
  2576. XXX_sizecache int32 `json:"-"`
  2577. }
  2578. func (m *GateCardAddReply) Reset() { *m = GateCardAddReply{} }
  2579. func (m *GateCardAddReply) String() string { return proto.CompactTextString(m) }
  2580. func (*GateCardAddReply) ProtoMessage() {}
  2581. func (*GateCardAddReply) Descriptor() ([]byte, []int) {
  2582. return fileDescriptor_870276a56ac00da5, []int{50}
  2583. }
  2584. func (m *GateCardAddReply) XXX_Unmarshal(b []byte) error {
  2585. return xxx_messageInfo_GateCardAddReply.Unmarshal(m, b)
  2586. }
  2587. func (m *GateCardAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2588. return xxx_messageInfo_GateCardAddReply.Marshal(b, m, deterministic)
  2589. }
  2590. func (m *GateCardAddReply) XXX_Merge(src proto.Message) {
  2591. xxx_messageInfo_GateCardAddReply.Merge(m, src)
  2592. }
  2593. func (m *GateCardAddReply) XXX_Size() int {
  2594. return xxx_messageInfo_GateCardAddReply.Size(m)
  2595. }
  2596. func (m *GateCardAddReply) XXX_DiscardUnknown() {
  2597. xxx_messageInfo_GateCardAddReply.DiscardUnknown(m)
  2598. }
  2599. var xxx_messageInfo_GateCardAddReply proto.InternalMessageInfo
  2600. type GateCardListRequest struct {
  2601. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2602. DownStatus int32 `protobuf:"varint,2,opt,name=down_status,json=downStatus,proto3" json:"down_status"`
  2603. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  2604. Page int64 `protobuf:"varint,4,opt,name=page,proto3" json:"page"`
  2605. PageSize int64 `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  2606. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2607. XXX_unrecognized []byte `json:"-"`
  2608. XXX_sizecache int32 `json:"-"`
  2609. }
  2610. func (m *GateCardListRequest) Reset() { *m = GateCardListRequest{} }
  2611. func (m *GateCardListRequest) String() string { return proto.CompactTextString(m) }
  2612. func (*GateCardListRequest) ProtoMessage() {}
  2613. func (*GateCardListRequest) Descriptor() ([]byte, []int) {
  2614. return fileDescriptor_870276a56ac00da5, []int{51}
  2615. }
  2616. func (m *GateCardListRequest) XXX_Unmarshal(b []byte) error {
  2617. return xxx_messageInfo_GateCardListRequest.Unmarshal(m, b)
  2618. }
  2619. func (m *GateCardListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2620. return xxx_messageInfo_GateCardListRequest.Marshal(b, m, deterministic)
  2621. }
  2622. func (m *GateCardListRequest) XXX_Merge(src proto.Message) {
  2623. xxx_messageInfo_GateCardListRequest.Merge(m, src)
  2624. }
  2625. func (m *GateCardListRequest) XXX_Size() int {
  2626. return xxx_messageInfo_GateCardListRequest.Size(m)
  2627. }
  2628. func (m *GateCardListRequest) XXX_DiscardUnknown() {
  2629. xxx_messageInfo_GateCardListRequest.DiscardUnknown(m)
  2630. }
  2631. var xxx_messageInfo_GateCardListRequest proto.InternalMessageInfo
  2632. func (m *GateCardListRequest) GetGardenId() int64 {
  2633. if m != nil {
  2634. return m.GardenId
  2635. }
  2636. return 0
  2637. }
  2638. func (m *GateCardListRequest) GetDownStatus() int32 {
  2639. if m != nil {
  2640. return m.DownStatus
  2641. }
  2642. return 0
  2643. }
  2644. func (m *GateCardListRequest) GetName() string {
  2645. if m != nil {
  2646. return m.Name
  2647. }
  2648. return ""
  2649. }
  2650. func (m *GateCardListRequest) GetPage() int64 {
  2651. if m != nil {
  2652. return m.Page
  2653. }
  2654. return 0
  2655. }
  2656. func (m *GateCardListRequest) GetPageSize() int64 {
  2657. if m != nil {
  2658. return m.PageSize
  2659. }
  2660. return 0
  2661. }
  2662. type GateCardDevice struct {
  2663. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  2664. DeviceName string `protobuf:"bytes,2,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  2665. DownStatus int32 `protobuf:"varint,3,opt,name=down_status,json=downStatus,proto3" json:"down_status"`
  2666. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2667. XXX_unrecognized []byte `json:"-"`
  2668. XXX_sizecache int32 `json:"-"`
  2669. }
  2670. func (m *GateCardDevice) Reset() { *m = GateCardDevice{} }
  2671. func (m *GateCardDevice) String() string { return proto.CompactTextString(m) }
  2672. func (*GateCardDevice) ProtoMessage() {}
  2673. func (*GateCardDevice) Descriptor() ([]byte, []int) {
  2674. return fileDescriptor_870276a56ac00da5, []int{52}
  2675. }
  2676. func (m *GateCardDevice) XXX_Unmarshal(b []byte) error {
  2677. return xxx_messageInfo_GateCardDevice.Unmarshal(m, b)
  2678. }
  2679. func (m *GateCardDevice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2680. return xxx_messageInfo_GateCardDevice.Marshal(b, m, deterministic)
  2681. }
  2682. func (m *GateCardDevice) XXX_Merge(src proto.Message) {
  2683. xxx_messageInfo_GateCardDevice.Merge(m, src)
  2684. }
  2685. func (m *GateCardDevice) XXX_Size() int {
  2686. return xxx_messageInfo_GateCardDevice.Size(m)
  2687. }
  2688. func (m *GateCardDevice) XXX_DiscardUnknown() {
  2689. xxx_messageInfo_GateCardDevice.DiscardUnknown(m)
  2690. }
  2691. var xxx_messageInfo_GateCardDevice proto.InternalMessageInfo
  2692. func (m *GateCardDevice) GetDeviceId() int64 {
  2693. if m != nil {
  2694. return m.DeviceId
  2695. }
  2696. return 0
  2697. }
  2698. func (m *GateCardDevice) GetDeviceName() string {
  2699. if m != nil {
  2700. return m.DeviceName
  2701. }
  2702. return ""
  2703. }
  2704. func (m *GateCardDevice) GetDownStatus() int32 {
  2705. if m != nil {
  2706. return m.DownStatus
  2707. }
  2708. return 0
  2709. }
  2710. type GateCardItem struct {
  2711. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2712. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  2713. CardNumber string `protobuf:"bytes,3,opt,name=card_number,json=cardNumber,proto3" json:"card_number"`
  2714. CreatedAt int64 `protobuf:"varint,4,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
  2715. DownStatus int32 `protobuf:"varint,5,opt,name=down_status,json=downStatus,proto3" json:"down_status"`
  2716. GatePermissions []*GateCardDevice `protobuf:"bytes,6,rep,name=gate_permissions,json=gatePermissions,proto3" json:"gate_permissions"`
  2717. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2718. XXX_unrecognized []byte `json:"-"`
  2719. XXX_sizecache int32 `json:"-"`
  2720. }
  2721. func (m *GateCardItem) Reset() { *m = GateCardItem{} }
  2722. func (m *GateCardItem) String() string { return proto.CompactTextString(m) }
  2723. func (*GateCardItem) ProtoMessage() {}
  2724. func (*GateCardItem) Descriptor() ([]byte, []int) {
  2725. return fileDescriptor_870276a56ac00da5, []int{53}
  2726. }
  2727. func (m *GateCardItem) XXX_Unmarshal(b []byte) error {
  2728. return xxx_messageInfo_GateCardItem.Unmarshal(m, b)
  2729. }
  2730. func (m *GateCardItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2731. return xxx_messageInfo_GateCardItem.Marshal(b, m, deterministic)
  2732. }
  2733. func (m *GateCardItem) XXX_Merge(src proto.Message) {
  2734. xxx_messageInfo_GateCardItem.Merge(m, src)
  2735. }
  2736. func (m *GateCardItem) XXX_Size() int {
  2737. return xxx_messageInfo_GateCardItem.Size(m)
  2738. }
  2739. func (m *GateCardItem) XXX_DiscardUnknown() {
  2740. xxx_messageInfo_GateCardItem.DiscardUnknown(m)
  2741. }
  2742. var xxx_messageInfo_GateCardItem proto.InternalMessageInfo
  2743. func (m *GateCardItem) GetId() int64 {
  2744. if m != nil {
  2745. return m.Id
  2746. }
  2747. return 0
  2748. }
  2749. func (m *GateCardItem) GetName() string {
  2750. if m != nil {
  2751. return m.Name
  2752. }
  2753. return ""
  2754. }
  2755. func (m *GateCardItem) GetCardNumber() string {
  2756. if m != nil {
  2757. return m.CardNumber
  2758. }
  2759. return ""
  2760. }
  2761. func (m *GateCardItem) GetCreatedAt() int64 {
  2762. if m != nil {
  2763. return m.CreatedAt
  2764. }
  2765. return 0
  2766. }
  2767. func (m *GateCardItem) GetDownStatus() int32 {
  2768. if m != nil {
  2769. return m.DownStatus
  2770. }
  2771. return 0
  2772. }
  2773. func (m *GateCardItem) GetGatePermissions() []*GateCardDevice {
  2774. if m != nil {
  2775. return m.GatePermissions
  2776. }
  2777. return nil
  2778. }
  2779. type GateCardListReply struct {
  2780. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  2781. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  2782. List []*GateCardItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  2783. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2784. XXX_unrecognized []byte `json:"-"`
  2785. XXX_sizecache int32 `json:"-"`
  2786. }
  2787. func (m *GateCardListReply) Reset() { *m = GateCardListReply{} }
  2788. func (m *GateCardListReply) String() string { return proto.CompactTextString(m) }
  2789. func (*GateCardListReply) ProtoMessage() {}
  2790. func (*GateCardListReply) Descriptor() ([]byte, []int) {
  2791. return fileDescriptor_870276a56ac00da5, []int{54}
  2792. }
  2793. func (m *GateCardListReply) XXX_Unmarshal(b []byte) error {
  2794. return xxx_messageInfo_GateCardListReply.Unmarshal(m, b)
  2795. }
  2796. func (m *GateCardListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2797. return xxx_messageInfo_GateCardListReply.Marshal(b, m, deterministic)
  2798. }
  2799. func (m *GateCardListReply) XXX_Merge(src proto.Message) {
  2800. xxx_messageInfo_GateCardListReply.Merge(m, src)
  2801. }
  2802. func (m *GateCardListReply) XXX_Size() int {
  2803. return xxx_messageInfo_GateCardListReply.Size(m)
  2804. }
  2805. func (m *GateCardListReply) XXX_DiscardUnknown() {
  2806. xxx_messageInfo_GateCardListReply.DiscardUnknown(m)
  2807. }
  2808. var xxx_messageInfo_GateCardListReply proto.InternalMessageInfo
  2809. func (m *GateCardListReply) GetPage() int64 {
  2810. if m != nil {
  2811. return m.Page
  2812. }
  2813. return 0
  2814. }
  2815. func (m *GateCardListReply) GetTotal() int64 {
  2816. if m != nil {
  2817. return m.Total
  2818. }
  2819. return 0
  2820. }
  2821. func (m *GateCardListReply) GetList() []*GateCardItem {
  2822. if m != nil {
  2823. return m.List
  2824. }
  2825. return nil
  2826. }
  2827. type GateCardSyncRequest struct {
  2828. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  2829. GardenId int64 `protobuf:"varint,2,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2830. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2831. XXX_unrecognized []byte `json:"-"`
  2832. XXX_sizecache int32 `json:"-"`
  2833. }
  2834. func (m *GateCardSyncRequest) Reset() { *m = GateCardSyncRequest{} }
  2835. func (m *GateCardSyncRequest) String() string { return proto.CompactTextString(m) }
  2836. func (*GateCardSyncRequest) ProtoMessage() {}
  2837. func (*GateCardSyncRequest) Descriptor() ([]byte, []int) {
  2838. return fileDescriptor_870276a56ac00da5, []int{55}
  2839. }
  2840. func (m *GateCardSyncRequest) XXX_Unmarshal(b []byte) error {
  2841. return xxx_messageInfo_GateCardSyncRequest.Unmarshal(m, b)
  2842. }
  2843. func (m *GateCardSyncRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2844. return xxx_messageInfo_GateCardSyncRequest.Marshal(b, m, deterministic)
  2845. }
  2846. func (m *GateCardSyncRequest) XXX_Merge(src proto.Message) {
  2847. xxx_messageInfo_GateCardSyncRequest.Merge(m, src)
  2848. }
  2849. func (m *GateCardSyncRequest) XXX_Size() int {
  2850. return xxx_messageInfo_GateCardSyncRequest.Size(m)
  2851. }
  2852. func (m *GateCardSyncRequest) XXX_DiscardUnknown() {
  2853. xxx_messageInfo_GateCardSyncRequest.DiscardUnknown(m)
  2854. }
  2855. var xxx_messageInfo_GateCardSyncRequest proto.InternalMessageInfo
  2856. func (m *GateCardSyncRequest) GetId() int64 {
  2857. if m != nil {
  2858. return m.Id
  2859. }
  2860. return 0
  2861. }
  2862. func (m *GateCardSyncRequest) GetGardenId() int64 {
  2863. if m != nil {
  2864. return m.GardenId
  2865. }
  2866. return 0
  2867. }
  2868. type GateCardSyncReply struct {
  2869. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2870. XXX_unrecognized []byte `json:"-"`
  2871. XXX_sizecache int32 `json:"-"`
  2872. }
  2873. func (m *GateCardSyncReply) Reset() { *m = GateCardSyncReply{} }
  2874. func (m *GateCardSyncReply) String() string { return proto.CompactTextString(m) }
  2875. func (*GateCardSyncReply) ProtoMessage() {}
  2876. func (*GateCardSyncReply) Descriptor() ([]byte, []int) {
  2877. return fileDescriptor_870276a56ac00da5, []int{56}
  2878. }
  2879. func (m *GateCardSyncReply) XXX_Unmarshal(b []byte) error {
  2880. return xxx_messageInfo_GateCardSyncReply.Unmarshal(m, b)
  2881. }
  2882. func (m *GateCardSyncReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2883. return xxx_messageInfo_GateCardSyncReply.Marshal(b, m, deterministic)
  2884. }
  2885. func (m *GateCardSyncReply) XXX_Merge(src proto.Message) {
  2886. xxx_messageInfo_GateCardSyncReply.Merge(m, src)
  2887. }
  2888. func (m *GateCardSyncReply) XXX_Size() int {
  2889. return xxx_messageInfo_GateCardSyncReply.Size(m)
  2890. }
  2891. func (m *GateCardSyncReply) XXX_DiscardUnknown() {
  2892. xxx_messageInfo_GateCardSyncReply.DiscardUnknown(m)
  2893. }
  2894. var xxx_messageInfo_GateCardSyncReply proto.InternalMessageInfo
  2895. // 白名单匹配
  2896. type GateWhiteMatchRequest struct {
  2897. Sn string `protobuf:"bytes,1,opt,name=sn,proto3" json:"sn"`
  2898. Protocol int32 `protobuf:"varint,2,opt,name=protocol,proto3" json:"protocol"`
  2899. CodeVal string `protobuf:"bytes,3,opt,name=code_val,json=codeVal,proto3" json:"code_val"`
  2900. CodeType int32 `protobuf:"varint,4,opt,name=code_type,json=codeType,proto3" json:"code_type"`
  2901. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2902. XXX_unrecognized []byte `json:"-"`
  2903. XXX_sizecache int32 `json:"-"`
  2904. }
  2905. func (m *GateWhiteMatchRequest) Reset() { *m = GateWhiteMatchRequest{} }
  2906. func (m *GateWhiteMatchRequest) String() string { return proto.CompactTextString(m) }
  2907. func (*GateWhiteMatchRequest) ProtoMessage() {}
  2908. func (*GateWhiteMatchRequest) Descriptor() ([]byte, []int) {
  2909. return fileDescriptor_870276a56ac00da5, []int{57}
  2910. }
  2911. func (m *GateWhiteMatchRequest) XXX_Unmarshal(b []byte) error {
  2912. return xxx_messageInfo_GateWhiteMatchRequest.Unmarshal(m, b)
  2913. }
  2914. func (m *GateWhiteMatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2915. return xxx_messageInfo_GateWhiteMatchRequest.Marshal(b, m, deterministic)
  2916. }
  2917. func (m *GateWhiteMatchRequest) XXX_Merge(src proto.Message) {
  2918. xxx_messageInfo_GateWhiteMatchRequest.Merge(m, src)
  2919. }
  2920. func (m *GateWhiteMatchRequest) XXX_Size() int {
  2921. return xxx_messageInfo_GateWhiteMatchRequest.Size(m)
  2922. }
  2923. func (m *GateWhiteMatchRequest) XXX_DiscardUnknown() {
  2924. xxx_messageInfo_GateWhiteMatchRequest.DiscardUnknown(m)
  2925. }
  2926. var xxx_messageInfo_GateWhiteMatchRequest proto.InternalMessageInfo
  2927. func (m *GateWhiteMatchRequest) GetSn() string {
  2928. if m != nil {
  2929. return m.Sn
  2930. }
  2931. return ""
  2932. }
  2933. func (m *GateWhiteMatchRequest) GetProtocol() int32 {
  2934. if m != nil {
  2935. return m.Protocol
  2936. }
  2937. return 0
  2938. }
  2939. func (m *GateWhiteMatchRequest) GetCodeVal() string {
  2940. if m != nil {
  2941. return m.CodeVal
  2942. }
  2943. return ""
  2944. }
  2945. func (m *GateWhiteMatchRequest) GetCodeType() int32 {
  2946. if m != nil {
  2947. return m.CodeType
  2948. }
  2949. return 0
  2950. }
  2951. type GateWhiteMatchReply struct {
  2952. Status int32 `protobuf:"varint,1,opt,name=status,proto3" json:"status"`
  2953. Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid"`
  2954. CardNumber string `protobuf:"bytes,3,opt,name=card_number,json=cardNumber,proto3" json:"card_number"`
  2955. IdNumber string `protobuf:"bytes,4,opt,name=id_number,json=idNumber,proto3" json:"id_number"`
  2956. Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone"`
  2957. DeviceName string `protobuf:"bytes,6,opt,name=device_name,json=deviceName,proto3" json:"device_name"`
  2958. Location string `protobuf:"bytes,7,opt,name=location,proto3" json:"location"`
  2959. Direction int32 `protobuf:"varint,8,opt,name=direction,proto3" json:"direction"`
  2960. Name string `protobuf:"bytes,9,opt,name=name,proto3" json:"name"`
  2961. HouseName string `protobuf:"bytes,10,opt,name=house_name,json=houseName,proto3" json:"house_name"`
  2962. DeviceId int64 `protobuf:"varint,11,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  2963. GardenId int64 `protobuf:"varint,12,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  2964. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2965. XXX_unrecognized []byte `json:"-"`
  2966. XXX_sizecache int32 `json:"-"`
  2967. }
  2968. func (m *GateWhiteMatchReply) Reset() { *m = GateWhiteMatchReply{} }
  2969. func (m *GateWhiteMatchReply) String() string { return proto.CompactTextString(m) }
  2970. func (*GateWhiteMatchReply) ProtoMessage() {}
  2971. func (*GateWhiteMatchReply) Descriptor() ([]byte, []int) {
  2972. return fileDescriptor_870276a56ac00da5, []int{58}
  2973. }
  2974. func (m *GateWhiteMatchReply) XXX_Unmarshal(b []byte) error {
  2975. return xxx_messageInfo_GateWhiteMatchReply.Unmarshal(m, b)
  2976. }
  2977. func (m *GateWhiteMatchReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2978. return xxx_messageInfo_GateWhiteMatchReply.Marshal(b, m, deterministic)
  2979. }
  2980. func (m *GateWhiteMatchReply) XXX_Merge(src proto.Message) {
  2981. xxx_messageInfo_GateWhiteMatchReply.Merge(m, src)
  2982. }
  2983. func (m *GateWhiteMatchReply) XXX_Size() int {
  2984. return xxx_messageInfo_GateWhiteMatchReply.Size(m)
  2985. }
  2986. func (m *GateWhiteMatchReply) XXX_DiscardUnknown() {
  2987. xxx_messageInfo_GateWhiteMatchReply.DiscardUnknown(m)
  2988. }
  2989. var xxx_messageInfo_GateWhiteMatchReply proto.InternalMessageInfo
  2990. func (m *GateWhiteMatchReply) GetStatus() int32 {
  2991. if m != nil {
  2992. return m.Status
  2993. }
  2994. return 0
  2995. }
  2996. func (m *GateWhiteMatchReply) GetUid() string {
  2997. if m != nil {
  2998. return m.Uid
  2999. }
  3000. return ""
  3001. }
  3002. func (m *GateWhiteMatchReply) GetCardNumber() string {
  3003. if m != nil {
  3004. return m.CardNumber
  3005. }
  3006. return ""
  3007. }
  3008. func (m *GateWhiteMatchReply) GetIdNumber() string {
  3009. if m != nil {
  3010. return m.IdNumber
  3011. }
  3012. return ""
  3013. }
  3014. func (m *GateWhiteMatchReply) GetPhone() string {
  3015. if m != nil {
  3016. return m.Phone
  3017. }
  3018. return ""
  3019. }
  3020. func (m *GateWhiteMatchReply) GetDeviceName() string {
  3021. if m != nil {
  3022. return m.DeviceName
  3023. }
  3024. return ""
  3025. }
  3026. func (m *GateWhiteMatchReply) GetLocation() string {
  3027. if m != nil {
  3028. return m.Location
  3029. }
  3030. return ""
  3031. }
  3032. func (m *GateWhiteMatchReply) GetDirection() int32 {
  3033. if m != nil {
  3034. return m.Direction
  3035. }
  3036. return 0
  3037. }
  3038. func (m *GateWhiteMatchReply) GetName() string {
  3039. if m != nil {
  3040. return m.Name
  3041. }
  3042. return ""
  3043. }
  3044. func (m *GateWhiteMatchReply) GetHouseName() string {
  3045. if m != nil {
  3046. return m.HouseName
  3047. }
  3048. return ""
  3049. }
  3050. func (m *GateWhiteMatchReply) GetDeviceId() int64 {
  3051. if m != nil {
  3052. return m.DeviceId
  3053. }
  3054. return 0
  3055. }
  3056. func (m *GateWhiteMatchReply) GetGardenId() int64 {
  3057. if m != nil {
  3058. return m.GardenId
  3059. }
  3060. return 0
  3061. }
  3062. // 门禁更新状态
  3063. type GateOnlineRequest struct {
  3064. Sn string `protobuf:"bytes,1,opt,name=sn,proto3" json:"sn"`
  3065. Protocol int32 `protobuf:"varint,2,opt,name=protocol,proto3" json:"protocol"`
  3066. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3067. XXX_unrecognized []byte `json:"-"`
  3068. XXX_sizecache int32 `json:"-"`
  3069. }
  3070. func (m *GateOnlineRequest) Reset() { *m = GateOnlineRequest{} }
  3071. func (m *GateOnlineRequest) String() string { return proto.CompactTextString(m) }
  3072. func (*GateOnlineRequest) ProtoMessage() {}
  3073. func (*GateOnlineRequest) Descriptor() ([]byte, []int) {
  3074. return fileDescriptor_870276a56ac00da5, []int{59}
  3075. }
  3076. func (m *GateOnlineRequest) XXX_Unmarshal(b []byte) error {
  3077. return xxx_messageInfo_GateOnlineRequest.Unmarshal(m, b)
  3078. }
  3079. func (m *GateOnlineRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3080. return xxx_messageInfo_GateOnlineRequest.Marshal(b, m, deterministic)
  3081. }
  3082. func (m *GateOnlineRequest) XXX_Merge(src proto.Message) {
  3083. xxx_messageInfo_GateOnlineRequest.Merge(m, src)
  3084. }
  3085. func (m *GateOnlineRequest) XXX_Size() int {
  3086. return xxx_messageInfo_GateOnlineRequest.Size(m)
  3087. }
  3088. func (m *GateOnlineRequest) XXX_DiscardUnknown() {
  3089. xxx_messageInfo_GateOnlineRequest.DiscardUnknown(m)
  3090. }
  3091. var xxx_messageInfo_GateOnlineRequest proto.InternalMessageInfo
  3092. func (m *GateOnlineRequest) GetSn() string {
  3093. if m != nil {
  3094. return m.Sn
  3095. }
  3096. return ""
  3097. }
  3098. func (m *GateOnlineRequest) GetProtocol() int32 {
  3099. if m != nil {
  3100. return m.Protocol
  3101. }
  3102. return 0
  3103. }
  3104. type GateOnlineReply struct {
  3105. HasTask bool `protobuf:"varint,1,opt,name=has_task,json=hasTask,proto3" json:"has_task"`
  3106. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3107. XXX_unrecognized []byte `json:"-"`
  3108. XXX_sizecache int32 `json:"-"`
  3109. }
  3110. func (m *GateOnlineReply) Reset() { *m = GateOnlineReply{} }
  3111. func (m *GateOnlineReply) String() string { return proto.CompactTextString(m) }
  3112. func (*GateOnlineReply) ProtoMessage() {}
  3113. func (*GateOnlineReply) Descriptor() ([]byte, []int) {
  3114. return fileDescriptor_870276a56ac00da5, []int{60}
  3115. }
  3116. func (m *GateOnlineReply) XXX_Unmarshal(b []byte) error {
  3117. return xxx_messageInfo_GateOnlineReply.Unmarshal(m, b)
  3118. }
  3119. func (m *GateOnlineReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3120. return xxx_messageInfo_GateOnlineReply.Marshal(b, m, deterministic)
  3121. }
  3122. func (m *GateOnlineReply) XXX_Merge(src proto.Message) {
  3123. xxx_messageInfo_GateOnlineReply.Merge(m, src)
  3124. }
  3125. func (m *GateOnlineReply) XXX_Size() int {
  3126. return xxx_messageInfo_GateOnlineReply.Size(m)
  3127. }
  3128. func (m *GateOnlineReply) XXX_DiscardUnknown() {
  3129. xxx_messageInfo_GateOnlineReply.DiscardUnknown(m)
  3130. }
  3131. var xxx_messageInfo_GateOnlineReply proto.InternalMessageInfo
  3132. func (m *GateOnlineReply) GetHasTask() bool {
  3133. if m != nil {
  3134. return m.HasTask
  3135. }
  3136. return false
  3137. }
  3138. // 添加进出场记录
  3139. type GateRecordAddRequest struct {
  3140. DeviceId int64 `protobuf:"varint,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  3141. Sn string `protobuf:"bytes,2,opt,name=sn,proto3" json:"sn"`
  3142. Location string `protobuf:"bytes,3,opt,name=location,proto3" json:"location"`
  3143. Direction int32 `protobuf:"varint,4,opt,name=direction,proto3" json:"direction"`
  3144. HouseholdUser string `protobuf:"bytes,5,opt,name=household_user,json=householdUser,proto3" json:"household_user"`
  3145. HouseholdIdNumber string `protobuf:"bytes,6,opt,name=household_id_number,json=householdIdNumber,proto3" json:"household_id_number"`
  3146. HouseholdHousename string `protobuf:"bytes,7,opt,name=household_housename,json=householdHousename,proto3" json:"household_housename"`
  3147. CardNumber string `protobuf:"bytes,8,opt,name=card_number,json=cardNumber,proto3" json:"card_number"`
  3148. CardOwner string `protobuf:"bytes,9,opt,name=card_owner,json=cardOwner,proto3" json:"card_owner"`
  3149. Online int32 `protobuf:"varint,10,opt,name=online,proto3" json:"online"`
  3150. GardenId int64 `protobuf:"varint,11,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3151. // 1 访客 2 非访客
  3152. IsVisitor int32 `protobuf:"varint,12,opt,name=is_visitor,json=isVisitor,proto3" json:"is_visitor"`
  3153. // 开门时间
  3154. OpenTime int64 `protobuf:"varint,13,opt,name=open_time,json=openTime,proto3" json:"open_time"`
  3155. HouseholdUid int64 `protobuf:"varint,14,opt,name=household_uid,json=householdUid,proto3" json:"household_uid"`
  3156. VisitorName string `protobuf:"bytes,15,opt,name=visitor_name,json=visitorName,proto3" json:"visitor_name"`
  3157. VisitorPhone string `protobuf:"bytes,16,opt,name=visitor_phone,json=visitorPhone,proto3" json:"visitor_phone"`
  3158. Protocol int32 `protobuf:"varint,17,opt,name=protocol,proto3" json:"protocol"`
  3159. // 1 二维码 2 刷卡 3 人脸
  3160. OpenType int32 `protobuf:"varint,18,opt,name=open_type,json=openType,proto3" json:"open_type"`
  3161. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3162. XXX_unrecognized []byte `json:"-"`
  3163. XXX_sizecache int32 `json:"-"`
  3164. }
  3165. func (m *GateRecordAddRequest) Reset() { *m = GateRecordAddRequest{} }
  3166. func (m *GateRecordAddRequest) String() string { return proto.CompactTextString(m) }
  3167. func (*GateRecordAddRequest) ProtoMessage() {}
  3168. func (*GateRecordAddRequest) Descriptor() ([]byte, []int) {
  3169. return fileDescriptor_870276a56ac00da5, []int{61}
  3170. }
  3171. func (m *GateRecordAddRequest) XXX_Unmarshal(b []byte) error {
  3172. return xxx_messageInfo_GateRecordAddRequest.Unmarshal(m, b)
  3173. }
  3174. func (m *GateRecordAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3175. return xxx_messageInfo_GateRecordAddRequest.Marshal(b, m, deterministic)
  3176. }
  3177. func (m *GateRecordAddRequest) XXX_Merge(src proto.Message) {
  3178. xxx_messageInfo_GateRecordAddRequest.Merge(m, src)
  3179. }
  3180. func (m *GateRecordAddRequest) XXX_Size() int {
  3181. return xxx_messageInfo_GateRecordAddRequest.Size(m)
  3182. }
  3183. func (m *GateRecordAddRequest) XXX_DiscardUnknown() {
  3184. xxx_messageInfo_GateRecordAddRequest.DiscardUnknown(m)
  3185. }
  3186. var xxx_messageInfo_GateRecordAddRequest proto.InternalMessageInfo
  3187. func (m *GateRecordAddRequest) GetDeviceId() int64 {
  3188. if m != nil {
  3189. return m.DeviceId
  3190. }
  3191. return 0
  3192. }
  3193. func (m *GateRecordAddRequest) GetSn() string {
  3194. if m != nil {
  3195. return m.Sn
  3196. }
  3197. return ""
  3198. }
  3199. func (m *GateRecordAddRequest) GetLocation() string {
  3200. if m != nil {
  3201. return m.Location
  3202. }
  3203. return ""
  3204. }
  3205. func (m *GateRecordAddRequest) GetDirection() int32 {
  3206. if m != nil {
  3207. return m.Direction
  3208. }
  3209. return 0
  3210. }
  3211. func (m *GateRecordAddRequest) GetHouseholdUser() string {
  3212. if m != nil {
  3213. return m.HouseholdUser
  3214. }
  3215. return ""
  3216. }
  3217. func (m *GateRecordAddRequest) GetHouseholdIdNumber() string {
  3218. if m != nil {
  3219. return m.HouseholdIdNumber
  3220. }
  3221. return ""
  3222. }
  3223. func (m *GateRecordAddRequest) GetHouseholdHousename() string {
  3224. if m != nil {
  3225. return m.HouseholdHousename
  3226. }
  3227. return ""
  3228. }
  3229. func (m *GateRecordAddRequest) GetCardNumber() string {
  3230. if m != nil {
  3231. return m.CardNumber
  3232. }
  3233. return ""
  3234. }
  3235. func (m *GateRecordAddRequest) GetCardOwner() string {
  3236. if m != nil {
  3237. return m.CardOwner
  3238. }
  3239. return ""
  3240. }
  3241. func (m *GateRecordAddRequest) GetOnline() int32 {
  3242. if m != nil {
  3243. return m.Online
  3244. }
  3245. return 0
  3246. }
  3247. func (m *GateRecordAddRequest) GetGardenId() int64 {
  3248. if m != nil {
  3249. return m.GardenId
  3250. }
  3251. return 0
  3252. }
  3253. func (m *GateRecordAddRequest) GetIsVisitor() int32 {
  3254. if m != nil {
  3255. return m.IsVisitor
  3256. }
  3257. return 0
  3258. }
  3259. func (m *GateRecordAddRequest) GetOpenTime() int64 {
  3260. if m != nil {
  3261. return m.OpenTime
  3262. }
  3263. return 0
  3264. }
  3265. func (m *GateRecordAddRequest) GetHouseholdUid() int64 {
  3266. if m != nil {
  3267. return m.HouseholdUid
  3268. }
  3269. return 0
  3270. }
  3271. func (m *GateRecordAddRequest) GetVisitorName() string {
  3272. if m != nil {
  3273. return m.VisitorName
  3274. }
  3275. return ""
  3276. }
  3277. func (m *GateRecordAddRequest) GetVisitorPhone() string {
  3278. if m != nil {
  3279. return m.VisitorPhone
  3280. }
  3281. return ""
  3282. }
  3283. func (m *GateRecordAddRequest) GetProtocol() int32 {
  3284. if m != nil {
  3285. return m.Protocol
  3286. }
  3287. return 0
  3288. }
  3289. func (m *GateRecordAddRequest) GetOpenType() int32 {
  3290. if m != nil {
  3291. return m.OpenType
  3292. }
  3293. return 0
  3294. }
  3295. type GateRecordAddReply struct {
  3296. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3297. XXX_unrecognized []byte `json:"-"`
  3298. XXX_sizecache int32 `json:"-"`
  3299. }
  3300. func (m *GateRecordAddReply) Reset() { *m = GateRecordAddReply{} }
  3301. func (m *GateRecordAddReply) String() string { return proto.CompactTextString(m) }
  3302. func (*GateRecordAddReply) ProtoMessage() {}
  3303. func (*GateRecordAddReply) Descriptor() ([]byte, []int) {
  3304. return fileDescriptor_870276a56ac00da5, []int{62}
  3305. }
  3306. func (m *GateRecordAddReply) XXX_Unmarshal(b []byte) error {
  3307. return xxx_messageInfo_GateRecordAddReply.Unmarshal(m, b)
  3308. }
  3309. func (m *GateRecordAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3310. return xxx_messageInfo_GateRecordAddReply.Marshal(b, m, deterministic)
  3311. }
  3312. func (m *GateRecordAddReply) XXX_Merge(src proto.Message) {
  3313. xxx_messageInfo_GateRecordAddReply.Merge(m, src)
  3314. }
  3315. func (m *GateRecordAddReply) XXX_Size() int {
  3316. return xxx_messageInfo_GateRecordAddReply.Size(m)
  3317. }
  3318. func (m *GateRecordAddReply) XXX_DiscardUnknown() {
  3319. xxx_messageInfo_GateRecordAddReply.DiscardUnknown(m)
  3320. }
  3321. var xxx_messageInfo_GateRecordAddReply proto.InternalMessageInfo
  3322. // 门禁进出场记录列表
  3323. type GateRecordListRequest struct {
  3324. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  3325. PageSize int64 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  3326. DeviceId string `protobuf:"bytes,3,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  3327. Start int64 `protobuf:"varint,4,opt,name=start,proto3" json:"start"`
  3328. End int64 `protobuf:"varint,5,opt,name=end,proto3" json:"end"`
  3329. IsVisitor int32 `protobuf:"varint,6,opt,name=is_visitor,json=isVisitor,proto3" json:"is_visitor"`
  3330. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3331. XXX_unrecognized []byte `json:"-"`
  3332. XXX_sizecache int32 `json:"-"`
  3333. }
  3334. func (m *GateRecordListRequest) Reset() { *m = GateRecordListRequest{} }
  3335. func (m *GateRecordListRequest) String() string { return proto.CompactTextString(m) }
  3336. func (*GateRecordListRequest) ProtoMessage() {}
  3337. func (*GateRecordListRequest) Descriptor() ([]byte, []int) {
  3338. return fileDescriptor_870276a56ac00da5, []int{63}
  3339. }
  3340. func (m *GateRecordListRequest) XXX_Unmarshal(b []byte) error {
  3341. return xxx_messageInfo_GateRecordListRequest.Unmarshal(m, b)
  3342. }
  3343. func (m *GateRecordListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3344. return xxx_messageInfo_GateRecordListRequest.Marshal(b, m, deterministic)
  3345. }
  3346. func (m *GateRecordListRequest) XXX_Merge(src proto.Message) {
  3347. xxx_messageInfo_GateRecordListRequest.Merge(m, src)
  3348. }
  3349. func (m *GateRecordListRequest) XXX_Size() int {
  3350. return xxx_messageInfo_GateRecordListRequest.Size(m)
  3351. }
  3352. func (m *GateRecordListRequest) XXX_DiscardUnknown() {
  3353. xxx_messageInfo_GateRecordListRequest.DiscardUnknown(m)
  3354. }
  3355. var xxx_messageInfo_GateRecordListRequest proto.InternalMessageInfo
  3356. func (m *GateRecordListRequest) GetPage() int64 {
  3357. if m != nil {
  3358. return m.Page
  3359. }
  3360. return 0
  3361. }
  3362. func (m *GateRecordListRequest) GetPageSize() int64 {
  3363. if m != nil {
  3364. return m.PageSize
  3365. }
  3366. return 0
  3367. }
  3368. func (m *GateRecordListRequest) GetDeviceId() string {
  3369. if m != nil {
  3370. return m.DeviceId
  3371. }
  3372. return ""
  3373. }
  3374. func (m *GateRecordListRequest) GetStart() int64 {
  3375. if m != nil {
  3376. return m.Start
  3377. }
  3378. return 0
  3379. }
  3380. func (m *GateRecordListRequest) GetEnd() int64 {
  3381. if m != nil {
  3382. return m.End
  3383. }
  3384. return 0
  3385. }
  3386. func (m *GateRecordListRequest) GetIsVisitor() int32 {
  3387. if m != nil {
  3388. return m.IsVisitor
  3389. }
  3390. return 0
  3391. }
  3392. type GateRecordItem struct {
  3393. DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  3394. WhiteId int64 `protobuf:"varint,2,opt,name=white_id,json=whiteId,proto3" json:"white_id"`
  3395. Location string `protobuf:"bytes,3,opt,name=location,proto3" json:"location"`
  3396. Direction int32 `protobuf:"varint,4,opt,name=direction,proto3" json:"direction"`
  3397. HouseholdUser string `protobuf:"bytes,5,opt,name=household_user,json=householdUser,proto3" json:"household_user"`
  3398. HouseholdIdNumber string `protobuf:"bytes,6,opt,name=household_id_number,json=householdIdNumber,proto3" json:"household_id_number"`
  3399. HouseholdHousename string `protobuf:"bytes,7,opt,name=household_housename,json=householdHousename,proto3" json:"household_housename"`
  3400. CardNumber string `protobuf:"bytes,8,opt,name=card_number,json=cardNumber,proto3" json:"card_number"`
  3401. CardOwner string `protobuf:"bytes,9,opt,name=card_owner,json=cardOwner,proto3" json:"card_owner"`
  3402. Online int32 `protobuf:"varint,10,opt,name=online,proto3" json:"online"`
  3403. GardenId int64 `protobuf:"varint,11,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3404. // 1 访客 2 非访客
  3405. IsVisitor int32 `protobuf:"varint,12,opt,name=is_visitor,json=isVisitor,proto3" json:"is_visitor"`
  3406. // 开门时间
  3407. OpenTime int64 `protobuf:"varint,13,opt,name=open_time,json=openTime,proto3" json:"open_time"`
  3408. HouseholdUid int64 `protobuf:"varint,14,opt,name=household_uid,json=householdUid,proto3" json:"household_uid"`
  3409. VisitorName string `protobuf:"bytes,15,opt,name=visitor_name,json=visitorName,proto3" json:"visitor_name"`
  3410. VisitorPhone string `protobuf:"bytes,16,opt,name=visitor_phone,json=visitorPhone,proto3" json:"visitor_phone"`
  3411. // 1 二维码 2 刷卡 3 人脸
  3412. OpenType int32 `protobuf:"varint,17,opt,name=open_type,json=openType,proto3" json:"open_type"`
  3413. Sn string `protobuf:"bytes,18,opt,name=sn,proto3" json:"sn"`
  3414. Protocol int32 `protobuf:"varint,19,opt,name=protocol,proto3" json:"protocol"`
  3415. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3416. XXX_unrecognized []byte `json:"-"`
  3417. XXX_sizecache int32 `json:"-"`
  3418. }
  3419. func (m *GateRecordItem) Reset() { *m = GateRecordItem{} }
  3420. func (m *GateRecordItem) String() string { return proto.CompactTextString(m) }
  3421. func (*GateRecordItem) ProtoMessage() {}
  3422. func (*GateRecordItem) Descriptor() ([]byte, []int) {
  3423. return fileDescriptor_870276a56ac00da5, []int{64}
  3424. }
  3425. func (m *GateRecordItem) XXX_Unmarshal(b []byte) error {
  3426. return xxx_messageInfo_GateRecordItem.Unmarshal(m, b)
  3427. }
  3428. func (m *GateRecordItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3429. return xxx_messageInfo_GateRecordItem.Marshal(b, m, deterministic)
  3430. }
  3431. func (m *GateRecordItem) XXX_Merge(src proto.Message) {
  3432. xxx_messageInfo_GateRecordItem.Merge(m, src)
  3433. }
  3434. func (m *GateRecordItem) XXX_Size() int {
  3435. return xxx_messageInfo_GateRecordItem.Size(m)
  3436. }
  3437. func (m *GateRecordItem) XXX_DiscardUnknown() {
  3438. xxx_messageInfo_GateRecordItem.DiscardUnknown(m)
  3439. }
  3440. var xxx_messageInfo_GateRecordItem proto.InternalMessageInfo
  3441. func (m *GateRecordItem) GetDeviceId() string {
  3442. if m != nil {
  3443. return m.DeviceId
  3444. }
  3445. return ""
  3446. }
  3447. func (m *GateRecordItem) GetWhiteId() int64 {
  3448. if m != nil {
  3449. return m.WhiteId
  3450. }
  3451. return 0
  3452. }
  3453. func (m *GateRecordItem) GetLocation() string {
  3454. if m != nil {
  3455. return m.Location
  3456. }
  3457. return ""
  3458. }
  3459. func (m *GateRecordItem) GetDirection() int32 {
  3460. if m != nil {
  3461. return m.Direction
  3462. }
  3463. return 0
  3464. }
  3465. func (m *GateRecordItem) GetHouseholdUser() string {
  3466. if m != nil {
  3467. return m.HouseholdUser
  3468. }
  3469. return ""
  3470. }
  3471. func (m *GateRecordItem) GetHouseholdIdNumber() string {
  3472. if m != nil {
  3473. return m.HouseholdIdNumber
  3474. }
  3475. return ""
  3476. }
  3477. func (m *GateRecordItem) GetHouseholdHousename() string {
  3478. if m != nil {
  3479. return m.HouseholdHousename
  3480. }
  3481. return ""
  3482. }
  3483. func (m *GateRecordItem) GetCardNumber() string {
  3484. if m != nil {
  3485. return m.CardNumber
  3486. }
  3487. return ""
  3488. }
  3489. func (m *GateRecordItem) GetCardOwner() string {
  3490. if m != nil {
  3491. return m.CardOwner
  3492. }
  3493. return ""
  3494. }
  3495. func (m *GateRecordItem) GetOnline() int32 {
  3496. if m != nil {
  3497. return m.Online
  3498. }
  3499. return 0
  3500. }
  3501. func (m *GateRecordItem) GetGardenId() int64 {
  3502. if m != nil {
  3503. return m.GardenId
  3504. }
  3505. return 0
  3506. }
  3507. func (m *GateRecordItem) GetIsVisitor() int32 {
  3508. if m != nil {
  3509. return m.IsVisitor
  3510. }
  3511. return 0
  3512. }
  3513. func (m *GateRecordItem) GetOpenTime() int64 {
  3514. if m != nil {
  3515. return m.OpenTime
  3516. }
  3517. return 0
  3518. }
  3519. func (m *GateRecordItem) GetHouseholdUid() int64 {
  3520. if m != nil {
  3521. return m.HouseholdUid
  3522. }
  3523. return 0
  3524. }
  3525. func (m *GateRecordItem) GetVisitorName() string {
  3526. if m != nil {
  3527. return m.VisitorName
  3528. }
  3529. return ""
  3530. }
  3531. func (m *GateRecordItem) GetVisitorPhone() string {
  3532. if m != nil {
  3533. return m.VisitorPhone
  3534. }
  3535. return ""
  3536. }
  3537. func (m *GateRecordItem) GetOpenType() int32 {
  3538. if m != nil {
  3539. return m.OpenType
  3540. }
  3541. return 0
  3542. }
  3543. func (m *GateRecordItem) GetSn() string {
  3544. if m != nil {
  3545. return m.Sn
  3546. }
  3547. return ""
  3548. }
  3549. func (m *GateRecordItem) GetProtocol() int32 {
  3550. if m != nil {
  3551. return m.Protocol
  3552. }
  3553. return 0
  3554. }
  3555. type GateRecordListReply struct {
  3556. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  3557. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  3558. List []*GateRecordItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3559. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3560. XXX_unrecognized []byte `json:"-"`
  3561. XXX_sizecache int32 `json:"-"`
  3562. }
  3563. func (m *GateRecordListReply) Reset() { *m = GateRecordListReply{} }
  3564. func (m *GateRecordListReply) String() string { return proto.CompactTextString(m) }
  3565. func (*GateRecordListReply) ProtoMessage() {}
  3566. func (*GateRecordListReply) Descriptor() ([]byte, []int) {
  3567. return fileDescriptor_870276a56ac00da5, []int{65}
  3568. }
  3569. func (m *GateRecordListReply) XXX_Unmarshal(b []byte) error {
  3570. return xxx_messageInfo_GateRecordListReply.Unmarshal(m, b)
  3571. }
  3572. func (m *GateRecordListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3573. return xxx_messageInfo_GateRecordListReply.Marshal(b, m, deterministic)
  3574. }
  3575. func (m *GateRecordListReply) XXX_Merge(src proto.Message) {
  3576. xxx_messageInfo_GateRecordListReply.Merge(m, src)
  3577. }
  3578. func (m *GateRecordListReply) XXX_Size() int {
  3579. return xxx_messageInfo_GateRecordListReply.Size(m)
  3580. }
  3581. func (m *GateRecordListReply) XXX_DiscardUnknown() {
  3582. xxx_messageInfo_GateRecordListReply.DiscardUnknown(m)
  3583. }
  3584. var xxx_messageInfo_GateRecordListReply proto.InternalMessageInfo
  3585. func (m *GateRecordListReply) GetPage() int64 {
  3586. if m != nil {
  3587. return m.Page
  3588. }
  3589. return 0
  3590. }
  3591. func (m *GateRecordListReply) GetTotal() int64 {
  3592. if m != nil {
  3593. return m.Total
  3594. }
  3595. return 0
  3596. }
  3597. func (m *GateRecordListReply) GetList() []*GateRecordItem {
  3598. if m != nil {
  3599. return m.List
  3600. }
  3601. return nil
  3602. }
  3603. type GateVisitorAddRequest struct {
  3604. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  3605. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  3606. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"`
  3607. Visitor string `protobuf:"bytes,4,opt,name=visitor,proto3" json:"visitor"`
  3608. VisitorPhone string `protobuf:"bytes,5,opt,name=visitor_phone,json=visitorPhone,proto3" json:"visitor_phone"`
  3609. DeviceId int64 `protobuf:"varint,6,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  3610. Start int64 `protobuf:"varint,7,opt,name=start,proto3" json:"start"`
  3611. End int64 `protobuf:"varint,8,opt,name=end,proto3" json:"end"`
  3612. GardenId int64 `protobuf:"varint,9,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  3613. Comment string `protobuf:"bytes,10,opt,name=comment,proto3" json:"comment"`
  3614. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3615. XXX_unrecognized []byte `json:"-"`
  3616. XXX_sizecache int32 `json:"-"`
  3617. }
  3618. func (m *GateVisitorAddRequest) Reset() { *m = GateVisitorAddRequest{} }
  3619. func (m *GateVisitorAddRequest) String() string { return proto.CompactTextString(m) }
  3620. func (*GateVisitorAddRequest) ProtoMessage() {}
  3621. func (*GateVisitorAddRequest) Descriptor() ([]byte, []int) {
  3622. return fileDescriptor_870276a56ac00da5, []int{66}
  3623. }
  3624. func (m *GateVisitorAddRequest) XXX_Unmarshal(b []byte) error {
  3625. return xxx_messageInfo_GateVisitorAddRequest.Unmarshal(m, b)
  3626. }
  3627. func (m *GateVisitorAddRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3628. return xxx_messageInfo_GateVisitorAddRequest.Marshal(b, m, deterministic)
  3629. }
  3630. func (m *GateVisitorAddRequest) XXX_Merge(src proto.Message) {
  3631. xxx_messageInfo_GateVisitorAddRequest.Merge(m, src)
  3632. }
  3633. func (m *GateVisitorAddRequest) XXX_Size() int {
  3634. return xxx_messageInfo_GateVisitorAddRequest.Size(m)
  3635. }
  3636. func (m *GateVisitorAddRequest) XXX_DiscardUnknown() {
  3637. xxx_messageInfo_GateVisitorAddRequest.DiscardUnknown(m)
  3638. }
  3639. var xxx_messageInfo_GateVisitorAddRequest proto.InternalMessageInfo
  3640. func (m *GateVisitorAddRequest) GetUid() int64 {
  3641. if m != nil {
  3642. return m.Uid
  3643. }
  3644. return 0
  3645. }
  3646. func (m *GateVisitorAddRequest) GetName() string {
  3647. if m != nil {
  3648. return m.Name
  3649. }
  3650. return ""
  3651. }
  3652. func (m *GateVisitorAddRequest) GetPhone() string {
  3653. if m != nil {
  3654. return m.Phone
  3655. }
  3656. return ""
  3657. }
  3658. func (m *GateVisitorAddRequest) GetVisitor() string {
  3659. if m != nil {
  3660. return m.Visitor
  3661. }
  3662. return ""
  3663. }
  3664. func (m *GateVisitorAddRequest) GetVisitorPhone() string {
  3665. if m != nil {
  3666. return m.VisitorPhone
  3667. }
  3668. return ""
  3669. }
  3670. func (m *GateVisitorAddRequest) GetDeviceId() int64 {
  3671. if m != nil {
  3672. return m.DeviceId
  3673. }
  3674. return 0
  3675. }
  3676. func (m *GateVisitorAddRequest) GetStart() int64 {
  3677. if m != nil {
  3678. return m.Start
  3679. }
  3680. return 0
  3681. }
  3682. func (m *GateVisitorAddRequest) GetEnd() int64 {
  3683. if m != nil {
  3684. return m.End
  3685. }
  3686. return 0
  3687. }
  3688. func (m *GateVisitorAddRequest) GetGardenId() int64 {
  3689. if m != nil {
  3690. return m.GardenId
  3691. }
  3692. return 0
  3693. }
  3694. func (m *GateVisitorAddRequest) GetComment() string {
  3695. if m != nil {
  3696. return m.Comment
  3697. }
  3698. return ""
  3699. }
  3700. type GateVisitorAddReply struct {
  3701. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  3702. Qcode string `protobuf:"bytes,2,opt,name=qcode,proto3" json:"qcode"`
  3703. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3704. XXX_unrecognized []byte `json:"-"`
  3705. XXX_sizecache int32 `json:"-"`
  3706. }
  3707. func (m *GateVisitorAddReply) Reset() { *m = GateVisitorAddReply{} }
  3708. func (m *GateVisitorAddReply) String() string { return proto.CompactTextString(m) }
  3709. func (*GateVisitorAddReply) ProtoMessage() {}
  3710. func (*GateVisitorAddReply) Descriptor() ([]byte, []int) {
  3711. return fileDescriptor_870276a56ac00da5, []int{67}
  3712. }
  3713. func (m *GateVisitorAddReply) XXX_Unmarshal(b []byte) error {
  3714. return xxx_messageInfo_GateVisitorAddReply.Unmarshal(m, b)
  3715. }
  3716. func (m *GateVisitorAddReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3717. return xxx_messageInfo_GateVisitorAddReply.Marshal(b, m, deterministic)
  3718. }
  3719. func (m *GateVisitorAddReply) XXX_Merge(src proto.Message) {
  3720. xxx_messageInfo_GateVisitorAddReply.Merge(m, src)
  3721. }
  3722. func (m *GateVisitorAddReply) XXX_Size() int {
  3723. return xxx_messageInfo_GateVisitorAddReply.Size(m)
  3724. }
  3725. func (m *GateVisitorAddReply) XXX_DiscardUnknown() {
  3726. xxx_messageInfo_GateVisitorAddReply.DiscardUnknown(m)
  3727. }
  3728. var xxx_messageInfo_GateVisitorAddReply proto.InternalMessageInfo
  3729. func (m *GateVisitorAddReply) GetId() int64 {
  3730. if m != nil {
  3731. return m.Id
  3732. }
  3733. return 0
  3734. }
  3735. func (m *GateVisitorAddReply) GetQcode() string {
  3736. if m != nil {
  3737. return m.Qcode
  3738. }
  3739. return ""
  3740. }
  3741. type GateVisitorListRequest struct {
  3742. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  3743. DeviceId int64 `protobuf:"varint,2,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  3744. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
  3745. Visitor string `protobuf:"bytes,4,opt,name=visitor,proto3" json:"visitor"`
  3746. Start int64 `protobuf:"varint,5,opt,name=start,proto3" json:"start"`
  3747. End int64 `protobuf:"varint,6,opt,name=end,proto3" json:"end"`
  3748. Page int64 `protobuf:"varint,7,opt,name=page,proto3" json:"page"`
  3749. PageSize int64 `protobuf:"varint,8,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
  3750. Id int64 `protobuf:"varint,9,opt,name=id,proto3" json:"id"`
  3751. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3752. XXX_unrecognized []byte `json:"-"`
  3753. XXX_sizecache int32 `json:"-"`
  3754. }
  3755. func (m *GateVisitorListRequest) Reset() { *m = GateVisitorListRequest{} }
  3756. func (m *GateVisitorListRequest) String() string { return proto.CompactTextString(m) }
  3757. func (*GateVisitorListRequest) ProtoMessage() {}
  3758. func (*GateVisitorListRequest) Descriptor() ([]byte, []int) {
  3759. return fileDescriptor_870276a56ac00da5, []int{68}
  3760. }
  3761. func (m *GateVisitorListRequest) XXX_Unmarshal(b []byte) error {
  3762. return xxx_messageInfo_GateVisitorListRequest.Unmarshal(m, b)
  3763. }
  3764. func (m *GateVisitorListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3765. return xxx_messageInfo_GateVisitorListRequest.Marshal(b, m, deterministic)
  3766. }
  3767. func (m *GateVisitorListRequest) XXX_Merge(src proto.Message) {
  3768. xxx_messageInfo_GateVisitorListRequest.Merge(m, src)
  3769. }
  3770. func (m *GateVisitorListRequest) XXX_Size() int {
  3771. return xxx_messageInfo_GateVisitorListRequest.Size(m)
  3772. }
  3773. func (m *GateVisitorListRequest) XXX_DiscardUnknown() {
  3774. xxx_messageInfo_GateVisitorListRequest.DiscardUnknown(m)
  3775. }
  3776. var xxx_messageInfo_GateVisitorListRequest proto.InternalMessageInfo
  3777. func (m *GateVisitorListRequest) GetUid() int64 {
  3778. if m != nil {
  3779. return m.Uid
  3780. }
  3781. return 0
  3782. }
  3783. func (m *GateVisitorListRequest) GetDeviceId() int64 {
  3784. if m != nil {
  3785. return m.DeviceId
  3786. }
  3787. return 0
  3788. }
  3789. func (m *GateVisitorListRequest) GetName() string {
  3790. if m != nil {
  3791. return m.Name
  3792. }
  3793. return ""
  3794. }
  3795. func (m *GateVisitorListRequest) GetVisitor() string {
  3796. if m != nil {
  3797. return m.Visitor
  3798. }
  3799. return ""
  3800. }
  3801. func (m *GateVisitorListRequest) GetStart() int64 {
  3802. if m != nil {
  3803. return m.Start
  3804. }
  3805. return 0
  3806. }
  3807. func (m *GateVisitorListRequest) GetEnd() int64 {
  3808. if m != nil {
  3809. return m.End
  3810. }
  3811. return 0
  3812. }
  3813. func (m *GateVisitorListRequest) GetPage() int64 {
  3814. if m != nil {
  3815. return m.Page
  3816. }
  3817. return 0
  3818. }
  3819. func (m *GateVisitorListRequest) GetPageSize() int64 {
  3820. if m != nil {
  3821. return m.PageSize
  3822. }
  3823. return 0
  3824. }
  3825. func (m *GateVisitorListRequest) GetId() int64 {
  3826. if m != nil {
  3827. return m.Id
  3828. }
  3829. return 0
  3830. }
  3831. type GateVisitorListItem struct {
  3832. Uid int64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid"`
  3833. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
  3834. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone"`
  3835. Visitor string `protobuf:"bytes,4,opt,name=visitor,proto3" json:"visitor"`
  3836. VisitorPhone string `protobuf:"bytes,5,opt,name=visitor_phone,json=visitorPhone,proto3" json:"visitor_phone"`
  3837. DeviceId int64 `protobuf:"varint,6,opt,name=device_id,json=deviceId,proto3" json:"device_id"`
  3838. Start int64 `protobuf:"varint,7,opt,name=start,proto3" json:"start"`
  3839. End int64 `protobuf:"varint,8,opt,name=end,proto3" json:"end"`
  3840. // 1 未通行 2 已同行 3 已过期
  3841. Status int64 `protobuf:"varint,9,opt,name=status,proto3" json:"status"`
  3842. OpenTime int64 `protobuf:"varint,10,opt,name=open_time,json=openTime,proto3" json:"open_time"`
  3843. GateName string `protobuf:"bytes,11,opt,name=gate_name,json=gateName,proto3" json:"gate_name"`
  3844. Id int64 `protobuf:"varint,12,opt,name=id,proto3" json:"id"`
  3845. Comment string `protobuf:"bytes,13,opt,name=comment,proto3" json:"comment"`
  3846. Qcode string `protobuf:"bytes,14,opt,name=qcode,proto3" json:"qcode"`
  3847. Location string `protobuf:"bytes,15,opt,name=location,proto3" json:"location"`
  3848. GardenName string `protobuf:"bytes,16,opt,name=garden_name,json=gardenName,proto3" json:"garden_name"`
  3849. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3850. XXX_unrecognized []byte `json:"-"`
  3851. XXX_sizecache int32 `json:"-"`
  3852. }
  3853. func (m *GateVisitorListItem) Reset() { *m = GateVisitorListItem{} }
  3854. func (m *GateVisitorListItem) String() string { return proto.CompactTextString(m) }
  3855. func (*GateVisitorListItem) ProtoMessage() {}
  3856. func (*GateVisitorListItem) Descriptor() ([]byte, []int) {
  3857. return fileDescriptor_870276a56ac00da5, []int{69}
  3858. }
  3859. func (m *GateVisitorListItem) XXX_Unmarshal(b []byte) error {
  3860. return xxx_messageInfo_GateVisitorListItem.Unmarshal(m, b)
  3861. }
  3862. func (m *GateVisitorListItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3863. return xxx_messageInfo_GateVisitorListItem.Marshal(b, m, deterministic)
  3864. }
  3865. func (m *GateVisitorListItem) XXX_Merge(src proto.Message) {
  3866. xxx_messageInfo_GateVisitorListItem.Merge(m, src)
  3867. }
  3868. func (m *GateVisitorListItem) XXX_Size() int {
  3869. return xxx_messageInfo_GateVisitorListItem.Size(m)
  3870. }
  3871. func (m *GateVisitorListItem) XXX_DiscardUnknown() {
  3872. xxx_messageInfo_GateVisitorListItem.DiscardUnknown(m)
  3873. }
  3874. var xxx_messageInfo_GateVisitorListItem proto.InternalMessageInfo
  3875. func (m *GateVisitorListItem) GetUid() int64 {
  3876. if m != nil {
  3877. return m.Uid
  3878. }
  3879. return 0
  3880. }
  3881. func (m *GateVisitorListItem) GetName() string {
  3882. if m != nil {
  3883. return m.Name
  3884. }
  3885. return ""
  3886. }
  3887. func (m *GateVisitorListItem) GetPhone() string {
  3888. if m != nil {
  3889. return m.Phone
  3890. }
  3891. return ""
  3892. }
  3893. func (m *GateVisitorListItem) GetVisitor() string {
  3894. if m != nil {
  3895. return m.Visitor
  3896. }
  3897. return ""
  3898. }
  3899. func (m *GateVisitorListItem) GetVisitorPhone() string {
  3900. if m != nil {
  3901. return m.VisitorPhone
  3902. }
  3903. return ""
  3904. }
  3905. func (m *GateVisitorListItem) GetDeviceId() int64 {
  3906. if m != nil {
  3907. return m.DeviceId
  3908. }
  3909. return 0
  3910. }
  3911. func (m *GateVisitorListItem) GetStart() int64 {
  3912. if m != nil {
  3913. return m.Start
  3914. }
  3915. return 0
  3916. }
  3917. func (m *GateVisitorListItem) GetEnd() int64 {
  3918. if m != nil {
  3919. return m.End
  3920. }
  3921. return 0
  3922. }
  3923. func (m *GateVisitorListItem) GetStatus() int64 {
  3924. if m != nil {
  3925. return m.Status
  3926. }
  3927. return 0
  3928. }
  3929. func (m *GateVisitorListItem) GetOpenTime() int64 {
  3930. if m != nil {
  3931. return m.OpenTime
  3932. }
  3933. return 0
  3934. }
  3935. func (m *GateVisitorListItem) GetGateName() string {
  3936. if m != nil {
  3937. return m.GateName
  3938. }
  3939. return ""
  3940. }
  3941. func (m *GateVisitorListItem) GetId() int64 {
  3942. if m != nil {
  3943. return m.Id
  3944. }
  3945. return 0
  3946. }
  3947. func (m *GateVisitorListItem) GetComment() string {
  3948. if m != nil {
  3949. return m.Comment
  3950. }
  3951. return ""
  3952. }
  3953. func (m *GateVisitorListItem) GetQcode() string {
  3954. if m != nil {
  3955. return m.Qcode
  3956. }
  3957. return ""
  3958. }
  3959. func (m *GateVisitorListItem) GetLocation() string {
  3960. if m != nil {
  3961. return m.Location
  3962. }
  3963. return ""
  3964. }
  3965. func (m *GateVisitorListItem) GetGardenName() string {
  3966. if m != nil {
  3967. return m.GardenName
  3968. }
  3969. return ""
  3970. }
  3971. type GateVisitorListReply struct {
  3972. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  3973. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total"`
  3974. List []*GateVisitorListItem `protobuf:"bytes,3,rep,name=list,proto3" json:"list"`
  3975. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3976. XXX_unrecognized []byte `json:"-"`
  3977. XXX_sizecache int32 `json:"-"`
  3978. }
  3979. func (m *GateVisitorListReply) Reset() { *m = GateVisitorListReply{} }
  3980. func (m *GateVisitorListReply) String() string { return proto.CompactTextString(m) }
  3981. func (*GateVisitorListReply) ProtoMessage() {}
  3982. func (*GateVisitorListReply) Descriptor() ([]byte, []int) {
  3983. return fileDescriptor_870276a56ac00da5, []int{70}
  3984. }
  3985. func (m *GateVisitorListReply) XXX_Unmarshal(b []byte) error {
  3986. return xxx_messageInfo_GateVisitorListReply.Unmarshal(m, b)
  3987. }
  3988. func (m *GateVisitorListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3989. return xxx_messageInfo_GateVisitorListReply.Marshal(b, m, deterministic)
  3990. }
  3991. func (m *GateVisitorListReply) XXX_Merge(src proto.Message) {
  3992. xxx_messageInfo_GateVisitorListReply.Merge(m, src)
  3993. }
  3994. func (m *GateVisitorListReply) XXX_Size() int {
  3995. return xxx_messageInfo_GateVisitorListReply.Size(m)
  3996. }
  3997. func (m *GateVisitorListReply) XXX_DiscardUnknown() {
  3998. xxx_messageInfo_GateVisitorListReply.DiscardUnknown(m)
  3999. }
  4000. var xxx_messageInfo_GateVisitorListReply proto.InternalMessageInfo
  4001. func (m *GateVisitorListReply) GetPage() int64 {
  4002. if m != nil {
  4003. return m.Page
  4004. }
  4005. return 0
  4006. }
  4007. func (m *GateVisitorListReply) GetTotal() int64 {
  4008. if m != nil {
  4009. return m.Total
  4010. }
  4011. return 0
  4012. }
  4013. func (m *GateVisitorListReply) GetList() []*GateVisitorListItem {
  4014. if m != nil {
  4015. return m.List
  4016. }
  4017. return nil
  4018. }
  4019. type GateVisitorCheckRequest struct {
  4020. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  4021. OpenTime int64 `protobuf:"varint,2,opt,name=open_time,json=openTime,proto3" json:"open_time"`
  4022. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4023. XXX_unrecognized []byte `json:"-"`
  4024. XXX_sizecache int32 `json:"-"`
  4025. }
  4026. func (m *GateVisitorCheckRequest) Reset() { *m = GateVisitorCheckRequest{} }
  4027. func (m *GateVisitorCheckRequest) String() string { return proto.CompactTextString(m) }
  4028. func (*GateVisitorCheckRequest) ProtoMessage() {}
  4029. func (*GateVisitorCheckRequest) Descriptor() ([]byte, []int) {
  4030. return fileDescriptor_870276a56ac00da5, []int{71}
  4031. }
  4032. func (m *GateVisitorCheckRequest) XXX_Unmarshal(b []byte) error {
  4033. return xxx_messageInfo_GateVisitorCheckRequest.Unmarshal(m, b)
  4034. }
  4035. func (m *GateVisitorCheckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4036. return xxx_messageInfo_GateVisitorCheckRequest.Marshal(b, m, deterministic)
  4037. }
  4038. func (m *GateVisitorCheckRequest) XXX_Merge(src proto.Message) {
  4039. xxx_messageInfo_GateVisitorCheckRequest.Merge(m, src)
  4040. }
  4041. func (m *GateVisitorCheckRequest) XXX_Size() int {
  4042. return xxx_messageInfo_GateVisitorCheckRequest.Size(m)
  4043. }
  4044. func (m *GateVisitorCheckRequest) XXX_DiscardUnknown() {
  4045. xxx_messageInfo_GateVisitorCheckRequest.DiscardUnknown(m)
  4046. }
  4047. var xxx_messageInfo_GateVisitorCheckRequest proto.InternalMessageInfo
  4048. func (m *GateVisitorCheckRequest) GetId() int64 {
  4049. if m != nil {
  4050. return m.Id
  4051. }
  4052. return 0
  4053. }
  4054. func (m *GateVisitorCheckRequest) GetOpenTime() int64 {
  4055. if m != nil {
  4056. return m.OpenTime
  4057. }
  4058. return 0
  4059. }
  4060. type GateVisitorCheckReply struct {
  4061. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4062. XXX_unrecognized []byte `json:"-"`
  4063. XXX_sizecache int32 `json:"-"`
  4064. }
  4065. func (m *GateVisitorCheckReply) Reset() { *m = GateVisitorCheckReply{} }
  4066. func (m *GateVisitorCheckReply) String() string { return proto.CompactTextString(m) }
  4067. func (*GateVisitorCheckReply) ProtoMessage() {}
  4068. func (*GateVisitorCheckReply) Descriptor() ([]byte, []int) {
  4069. return fileDescriptor_870276a56ac00da5, []int{72}
  4070. }
  4071. func (m *GateVisitorCheckReply) XXX_Unmarshal(b []byte) error {
  4072. return xxx_messageInfo_GateVisitorCheckReply.Unmarshal(m, b)
  4073. }
  4074. func (m *GateVisitorCheckReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4075. return xxx_messageInfo_GateVisitorCheckReply.Marshal(b, m, deterministic)
  4076. }
  4077. func (m *GateVisitorCheckReply) XXX_Merge(src proto.Message) {
  4078. xxx_messageInfo_GateVisitorCheckReply.Merge(m, src)
  4079. }
  4080. func (m *GateVisitorCheckReply) XXX_Size() int {
  4081. return xxx_messageInfo_GateVisitorCheckReply.Size(m)
  4082. }
  4083. func (m *GateVisitorCheckReply) XXX_DiscardUnknown() {
  4084. xxx_messageInfo_GateVisitorCheckReply.DiscardUnknown(m)
  4085. }
  4086. var xxx_messageInfo_GateVisitorCheckReply proto.InternalMessageInfo
  4087. type GateVisitorDelRequest struct {
  4088. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  4089. Uid int64 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid"`
  4090. Manager bool `protobuf:"varint,3,opt,name=manager,proto3" json:"manager"`
  4091. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4092. XXX_unrecognized []byte `json:"-"`
  4093. XXX_sizecache int32 `json:"-"`
  4094. }
  4095. func (m *GateVisitorDelRequest) Reset() { *m = GateVisitorDelRequest{} }
  4096. func (m *GateVisitorDelRequest) String() string { return proto.CompactTextString(m) }
  4097. func (*GateVisitorDelRequest) ProtoMessage() {}
  4098. func (*GateVisitorDelRequest) Descriptor() ([]byte, []int) {
  4099. return fileDescriptor_870276a56ac00da5, []int{73}
  4100. }
  4101. func (m *GateVisitorDelRequest) XXX_Unmarshal(b []byte) error {
  4102. return xxx_messageInfo_GateVisitorDelRequest.Unmarshal(m, b)
  4103. }
  4104. func (m *GateVisitorDelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4105. return xxx_messageInfo_GateVisitorDelRequest.Marshal(b, m, deterministic)
  4106. }
  4107. func (m *GateVisitorDelRequest) XXX_Merge(src proto.Message) {
  4108. xxx_messageInfo_GateVisitorDelRequest.Merge(m, src)
  4109. }
  4110. func (m *GateVisitorDelRequest) XXX_Size() int {
  4111. return xxx_messageInfo_GateVisitorDelRequest.Size(m)
  4112. }
  4113. func (m *GateVisitorDelRequest) XXX_DiscardUnknown() {
  4114. xxx_messageInfo_GateVisitorDelRequest.DiscardUnknown(m)
  4115. }
  4116. var xxx_messageInfo_GateVisitorDelRequest proto.InternalMessageInfo
  4117. func (m *GateVisitorDelRequest) GetId() int64 {
  4118. if m != nil {
  4119. return m.Id
  4120. }
  4121. return 0
  4122. }
  4123. func (m *GateVisitorDelRequest) GetUid() int64 {
  4124. if m != nil {
  4125. return m.Uid
  4126. }
  4127. return 0
  4128. }
  4129. func (m *GateVisitorDelRequest) GetManager() bool {
  4130. if m != nil {
  4131. return m.Manager
  4132. }
  4133. return false
  4134. }
  4135. type GateVisitorDelReply struct {
  4136. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4137. XXX_unrecognized []byte `json:"-"`
  4138. XXX_sizecache int32 `json:"-"`
  4139. }
  4140. func (m *GateVisitorDelReply) Reset() { *m = GateVisitorDelReply{} }
  4141. func (m *GateVisitorDelReply) String() string { return proto.CompactTextString(m) }
  4142. func (*GateVisitorDelReply) ProtoMessage() {}
  4143. func (*GateVisitorDelReply) Descriptor() ([]byte, []int) {
  4144. return fileDescriptor_870276a56ac00da5, []int{74}
  4145. }
  4146. func (m *GateVisitorDelReply) XXX_Unmarshal(b []byte) error {
  4147. return xxx_messageInfo_GateVisitorDelReply.Unmarshal(m, b)
  4148. }
  4149. func (m *GateVisitorDelReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4150. return xxx_messageInfo_GateVisitorDelReply.Marshal(b, m, deterministic)
  4151. }
  4152. func (m *GateVisitorDelReply) XXX_Merge(src proto.Message) {
  4153. xxx_messageInfo_GateVisitorDelReply.Merge(m, src)
  4154. }
  4155. func (m *GateVisitorDelReply) XXX_Size() int {
  4156. return xxx_messageInfo_GateVisitorDelReply.Size(m)
  4157. }
  4158. func (m *GateVisitorDelReply) XXX_DiscardUnknown() {
  4159. xxx_messageInfo_GateVisitorDelReply.DiscardUnknown(m)
  4160. }
  4161. var xxx_messageInfo_GateVisitorDelReply proto.InternalMessageInfo
  4162. type MqttFaceGateRequest struct {
  4163. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4164. XXX_unrecognized []byte `json:"-"`
  4165. XXX_sizecache int32 `json:"-"`
  4166. }
  4167. func (m *MqttFaceGateRequest) Reset() { *m = MqttFaceGateRequest{} }
  4168. func (m *MqttFaceGateRequest) String() string { return proto.CompactTextString(m) }
  4169. func (*MqttFaceGateRequest) ProtoMessage() {}
  4170. func (*MqttFaceGateRequest) Descriptor() ([]byte, []int) {
  4171. return fileDescriptor_870276a56ac00da5, []int{75}
  4172. }
  4173. func (m *MqttFaceGateRequest) XXX_Unmarshal(b []byte) error {
  4174. return xxx_messageInfo_MqttFaceGateRequest.Unmarshal(m, b)
  4175. }
  4176. func (m *MqttFaceGateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4177. return xxx_messageInfo_MqttFaceGateRequest.Marshal(b, m, deterministic)
  4178. }
  4179. func (m *MqttFaceGateRequest) XXX_Merge(src proto.Message) {
  4180. xxx_messageInfo_MqttFaceGateRequest.Merge(m, src)
  4181. }
  4182. func (m *MqttFaceGateRequest) XXX_Size() int {
  4183. return xxx_messageInfo_MqttFaceGateRequest.Size(m)
  4184. }
  4185. func (m *MqttFaceGateRequest) XXX_DiscardUnknown() {
  4186. xxx_messageInfo_MqttFaceGateRequest.DiscardUnknown(m)
  4187. }
  4188. var xxx_messageInfo_MqttFaceGateRequest proto.InternalMessageInfo
  4189. type MqttFaceGateReply struct {
  4190. Sns []string `protobuf:"bytes,1,rep,name=sns,proto3" json:"sns"`
  4191. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4192. XXX_unrecognized []byte `json:"-"`
  4193. XXX_sizecache int32 `json:"-"`
  4194. }
  4195. func (m *MqttFaceGateReply) Reset() { *m = MqttFaceGateReply{} }
  4196. func (m *MqttFaceGateReply) String() string { return proto.CompactTextString(m) }
  4197. func (*MqttFaceGateReply) ProtoMessage() {}
  4198. func (*MqttFaceGateReply) Descriptor() ([]byte, []int) {
  4199. return fileDescriptor_870276a56ac00da5, []int{76}
  4200. }
  4201. func (m *MqttFaceGateReply) XXX_Unmarshal(b []byte) error {
  4202. return xxx_messageInfo_MqttFaceGateReply.Unmarshal(m, b)
  4203. }
  4204. func (m *MqttFaceGateReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4205. return xxx_messageInfo_MqttFaceGateReply.Marshal(b, m, deterministic)
  4206. }
  4207. func (m *MqttFaceGateReply) XXX_Merge(src proto.Message) {
  4208. xxx_messageInfo_MqttFaceGateReply.Merge(m, src)
  4209. }
  4210. func (m *MqttFaceGateReply) XXX_Size() int {
  4211. return xxx_messageInfo_MqttFaceGateReply.Size(m)
  4212. }
  4213. func (m *MqttFaceGateReply) XXX_DiscardUnknown() {
  4214. xxx_messageInfo_MqttFaceGateReply.DiscardUnknown(m)
  4215. }
  4216. var xxx_messageInfo_MqttFaceGateReply proto.InternalMessageInfo
  4217. func (m *MqttFaceGateReply) GetSns() []string {
  4218. if m != nil {
  4219. return m.Sns
  4220. }
  4221. return nil
  4222. }
  4223. type HouseholdGateSyncCheckRequest struct {
  4224. GardenId int64 `protobuf:"varint,1,opt,name=garden_id,json=gardenId,proto3" json:"garden_id"`
  4225. UnitId int64 `protobuf:"varint,2,opt,name=unit_id,json=unitId,proto3" json:"unit_id"`
  4226. Uid int64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid"`
  4227. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4228. XXX_unrecognized []byte `json:"-"`
  4229. XXX_sizecache int32 `json:"-"`
  4230. }
  4231. func (m *HouseholdGateSyncCheckRequest) Reset() { *m = HouseholdGateSyncCheckRequest{} }
  4232. func (m *HouseholdGateSyncCheckRequest) String() string { return proto.CompactTextString(m) }
  4233. func (*HouseholdGateSyncCheckRequest) ProtoMessage() {}
  4234. func (*HouseholdGateSyncCheckRequest) Descriptor() ([]byte, []int) {
  4235. return fileDescriptor_870276a56ac00da5, []int{77}
  4236. }
  4237. func (m *HouseholdGateSyncCheckRequest) XXX_Unmarshal(b []byte) error {
  4238. return xxx_messageInfo_HouseholdGateSyncCheckRequest.Unmarshal(m, b)
  4239. }
  4240. func (m *HouseholdGateSyncCheckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4241. return xxx_messageInfo_HouseholdGateSyncCheckRequest.Marshal(b, m, deterministic)
  4242. }
  4243. func (m *HouseholdGateSyncCheckRequest) XXX_Merge(src proto.Message) {
  4244. xxx_messageInfo_HouseholdGateSyncCheckRequest.Merge(m, src)
  4245. }
  4246. func (m *HouseholdGateSyncCheckRequest) XXX_Size() int {
  4247. return xxx_messageInfo_HouseholdGateSyncCheckRequest.Size(m)
  4248. }
  4249. func (m *HouseholdGateSyncCheckRequest) XXX_DiscardUnknown() {
  4250. xxx_messageInfo_HouseholdGateSyncCheckRequest.DiscardUnknown(m)
  4251. }
  4252. var xxx_messageInfo_HouseholdGateSyncCheckRequest proto.InternalMessageInfo
  4253. func (m *HouseholdGateSyncCheckRequest) GetGardenId() int64 {
  4254. if m != nil {
  4255. return m.GardenId
  4256. }
  4257. return 0
  4258. }
  4259. func (m *HouseholdGateSyncCheckRequest) GetUnitId() int64 {
  4260. if m != nil {
  4261. return m.UnitId
  4262. }
  4263. return 0
  4264. }
  4265. func (m *HouseholdGateSyncCheckRequest) GetUid() int64 {
  4266. if m != nil {
  4267. return m.Uid
  4268. }
  4269. return 0
  4270. }
  4271. type HouseholdGateSyncCheckReply struct {
  4272. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4273. XXX_unrecognized []byte `json:"-"`
  4274. XXX_sizecache int32 `json:"-"`
  4275. }
  4276. func (m *HouseholdGateSyncCheckReply) Reset() { *m = HouseholdGateSyncCheckReply{} }
  4277. func (m *HouseholdGateSyncCheckReply) String() string { return proto.CompactTextString(m) }
  4278. func (*HouseholdGateSyncCheckReply) ProtoMessage() {}
  4279. func (*HouseholdGateSyncCheckReply) Descriptor() ([]byte, []int) {
  4280. return fileDescriptor_870276a56ac00da5, []int{78}
  4281. }
  4282. func (m *HouseholdGateSyncCheckReply) XXX_Unmarshal(b []byte) error {
  4283. return xxx_messageInfo_HouseholdGateSyncCheckReply.Unmarshal(m, b)
  4284. }
  4285. func (m *HouseholdGateSyncCheckReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4286. return xxx_messageInfo_HouseholdGateSyncCheckReply.Marshal(b, m, deterministic)
  4287. }
  4288. func (m *HouseholdGateSyncCheckReply) XXX_Merge(src proto.Message) {
  4289. xxx_messageInfo_HouseholdGateSyncCheckReply.Merge(m, src)
  4290. }
  4291. func (m *HouseholdGateSyncCheckReply) XXX_Size() int {
  4292. return xxx_messageInfo_HouseholdGateSyncCheckReply.Size(m)
  4293. }
  4294. func (m *HouseholdGateSyncCheckReply) XXX_DiscardUnknown() {
  4295. xxx_messageInfo_HouseholdGateSyncCheckReply.DiscardUnknown(m)
  4296. }
  4297. var xxx_messageInfo_HouseholdGateSyncCheckReply proto.InternalMessageInfo
  4298. func init() {
  4299. proto.RegisterType((*GateInRequest)(nil), "pb_v1.GateInRequest")
  4300. proto.RegisterType((*GateInReply)(nil), "pb_v1.GateInReply")
  4301. proto.RegisterType((*GateBatchInItem)(nil), "pb_v1.GateBatchInItem")
  4302. proto.RegisterType((*GateBatchInRequest)(nil), "pb_v1.GateBatchInRequest")
  4303. proto.RegisterType((*GateBatchInReply)(nil), "pb_v1.GateBatchInReply")
  4304. proto.RegisterType((*GateOutRequest)(nil), "pb_v1.GateOutRequest")
  4305. proto.RegisterType((*GateOutReply)(nil), "pb_v1.GateOutReply")
  4306. proto.RegisterType((*GateItem)(nil), "pb_v1.GateItem")
  4307. proto.RegisterType((*GateListRequest)(nil), "pb_v1.GateListRequest")
  4308. proto.RegisterType((*GateListReply)(nil), "pb_v1.GateListReply")
  4309. proto.RegisterType((*GateInfoRequest)(nil), "pb_v1.GateInfoRequest")
  4310. proto.RegisterType((*GateInfoReply)(nil), "pb_v1.GateInfoReply")
  4311. proto.RegisterType((*GateDelRequest)(nil), "pb_v1.GateDelRequest")
  4312. proto.RegisterType((*GateDelReply)(nil), "pb_v1.GateDelReply")
  4313. proto.RegisterType((*GateRecoveryRequest)(nil), "pb_v1.GateRecoveryRequest")
  4314. proto.RegisterType((*GateRecoveryReply)(nil), "pb_v1.GateRecoveryReply")
  4315. proto.RegisterType((*GateEnableRequest)(nil), "pb_v1.GateEnableRequest")
  4316. proto.RegisterType((*GateEnableReply)(nil), "pb_v1.GateEnableReply")
  4317. proto.RegisterType((*GateSetRequest)(nil), "pb_v1.GateSetRequest")
  4318. proto.RegisterType((*GateSetReply)(nil), "pb_v1.GateSetReply")
  4319. proto.RegisterType((*GateCommandAddRequest)(nil), "pb_v1.GateCommandAddRequest")
  4320. proto.RegisterType((*GateCommandAddReply)(nil), "pb_v1.GateCommandAddReply")
  4321. proto.RegisterType((*GateCommandListRequest)(nil), "pb_v1.GateCommandListRequest")
  4322. proto.RegisterType((*GateCommandItem)(nil), "pb_v1.GateCommandItem")
  4323. proto.RegisterType((*GateCommandListReply)(nil), "pb_v1.GateCommandListReply")
  4324. proto.RegisterType((*GateCommandDelRequest)(nil), "pb_v1.GateCommandDelRequest")
  4325. proto.RegisterType((*GateCommandDelReply)(nil), "pb_v1.GateCommandDelReply")
  4326. proto.RegisterType((*GateCommandResultRequest)(nil), "pb_v1.GateCommandResultRequest")
  4327. proto.RegisterType((*GateCommandResultReply)(nil), "pb_v1.GateCommandResultReply")
  4328. proto.RegisterType((*GateCommandUseRequest)(nil), "pb_v1.GateCommandUseRequest")
  4329. proto.RegisterType((*GateCommandUseReply)(nil), "pb_v1.GateCommandUseReply")
  4330. proto.RegisterType((*GateUnitAddRequest)(nil), "pb_v1.GateUnitAddRequest")
  4331. proto.RegisterType((*GateUnitAddReply)(nil), "pb_v1.GateUnitAddReply")
  4332. proto.RegisterType((*GateUnitListRequest)(nil), "pb_v1.GateUnitListRequest")
  4333. proto.RegisterType((*GateUnitListReply)(nil), "pb_v1.GateUnitListReply")
  4334. proto.RegisterType((*GateUnitDeviceRequest)(nil), "pb_v1.GateUnitDeviceRequest")
  4335. proto.RegisterType((*GateUnitDeviceReply)(nil), "pb_v1.GateUnitDeviceReply")
  4336. proto.RegisterType((*GateUserPicAddRequest)(nil), "pb_v1.GateUserPicAddRequest")
  4337. proto.RegisterType((*GateUserPicAddReply)(nil), "pb_v1.GateUserPicAddReply")
  4338. proto.RegisterType((*GateUserPicInfoRequest)(nil), "pb_v1.GateUserPicInfoRequest")
  4339. proto.RegisterType((*GateUserPicInfoReply)(nil), "pb_v1.GateUserPicInfoReply")
  4340. proto.RegisterType((*GateUserPicListRequest)(nil), "pb_v1.GateUserPicListRequest")
  4341. proto.RegisterType((*GateUserPicDevice)(nil), "pb_v1.GateUserPicDevice")
  4342. proto.RegisterType((*GateUserPicItem)(nil), "pb_v1.GateUserPicItem")
  4343. proto.RegisterType((*GateUserPicListReply)(nil), "pb_v1.GateUserPicListReply")
  4344. proto.RegisterType((*GateUserPicApproveRequest)(nil), "pb_v1.GateUserPicApproveRequest")
  4345. proto.RegisterType((*GateUserPicApproveReply)(nil), "pb_v1.GateUserPicApproveReply")
  4346. proto.RegisterType((*GateUserPicSyncRequest)(nil), "pb_v1.GateUserPicSyncRequest")
  4347. proto.RegisterType((*GateUserPicSyncReply)(nil), "pb_v1.GateUserPicSyncReply")
  4348. proto.RegisterType((*GateCardAddRequest)(nil), "pb_v1.GateCardAddRequest")
  4349. proto.RegisterType((*GateCardAddReply)(nil), "pb_v1.GateCardAddReply")
  4350. proto.RegisterType((*GateCardListRequest)(nil), "pb_v1.GateCardListRequest")
  4351. proto.RegisterType((*GateCardDevice)(nil), "pb_v1.GateCardDevice")
  4352. proto.RegisterType((*GateCardItem)(nil), "pb_v1.GateCardItem")
  4353. proto.RegisterType((*GateCardListReply)(nil), "pb_v1.GateCardListReply")
  4354. proto.RegisterType((*GateCardSyncRequest)(nil), "pb_v1.GateCardSyncRequest")
  4355. proto.RegisterType((*GateCardSyncReply)(nil), "pb_v1.GateCardSyncReply")
  4356. proto.RegisterType((*GateWhiteMatchRequest)(nil), "pb_v1.GateWhiteMatchRequest")
  4357. proto.RegisterType((*GateWhiteMatchReply)(nil), "pb_v1.GateWhiteMatchReply")
  4358. proto.RegisterType((*GateOnlineRequest)(nil), "pb_v1.GateOnlineRequest")
  4359. proto.RegisterType((*GateOnlineReply)(nil), "pb_v1.GateOnlineReply")
  4360. proto.RegisterType((*GateRecordAddRequest)(nil), "pb_v1.GateRecordAddRequest")
  4361. proto.RegisterType((*GateRecordAddReply)(nil), "pb_v1.GateRecordAddReply")
  4362. proto.RegisterType((*GateRecordListRequest)(nil), "pb_v1.GateRecordListRequest")
  4363. proto.RegisterType((*GateRecordItem)(nil), "pb_v1.GateRecordItem")
  4364. proto.RegisterType((*GateRecordListReply)(nil), "pb_v1.GateRecordListReply")
  4365. proto.RegisterType((*GateVisitorAddRequest)(nil), "pb_v1.GateVisitorAddRequest")
  4366. proto.RegisterType((*GateVisitorAddReply)(nil), "pb_v1.GateVisitorAddReply")
  4367. proto.RegisterType((*GateVisitorListRequest)(nil), "pb_v1.GateVisitorListRequest")
  4368. proto.RegisterType((*GateVisitorListItem)(nil), "pb_v1.GateVisitorListItem")
  4369. proto.RegisterType((*GateVisitorListReply)(nil), "pb_v1.GateVisitorListReply")
  4370. proto.RegisterType((*GateVisitorCheckRequest)(nil), "pb_v1.GateVisitorCheckRequest")
  4371. proto.RegisterType((*GateVisitorCheckReply)(nil), "pb_v1.GateVisitorCheckReply")
  4372. proto.RegisterType((*GateVisitorDelRequest)(nil), "pb_v1.GateVisitorDelRequest")
  4373. proto.RegisterType((*GateVisitorDelReply)(nil), "pb_v1.GateVisitorDelReply")
  4374. proto.RegisterType((*MqttFaceGateRequest)(nil), "pb_v1.MqttFaceGateRequest")
  4375. proto.RegisterType((*MqttFaceGateReply)(nil), "pb_v1.MqttFaceGateReply")
  4376. proto.RegisterType((*HouseholdGateSyncCheckRequest)(nil), "pb_v1.HouseholdGateSyncCheckRequest")
  4377. proto.RegisterType((*HouseholdGateSyncCheckReply)(nil), "pb_v1.HouseholdGateSyncCheckReply")
  4378. }
  4379. func init() {
  4380. proto.RegisterFile("device.proto", fileDescriptor_870276a56ac00da5)
  4381. }
  4382. var fileDescriptor_870276a56ac00da5 = []byte{
  4383. // 2576 bytes of a gzipped FileDescriptorProto
  4384. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcd, 0x6f, 0xdc, 0xc6,
  4385. 0x15, 0xc7, 0x2e, 0xf7, 0x83, 0x9c, 0x5d, 0xc9, 0x12, 0x25, 0xdb, 0x54, 0x52, 0xd7, 0x0a, 0x0d,
  4386. 0x23, 0x6e, 0xe0, 0x0f, 0x24, 0xe9, 0xad, 0x87, 0xc6, 0x96, 0x93, 0x58, 0x68, 0x13, 0x1b, 0x2b,
  4387. 0x3b, 0x45, 0x73, 0xe8, 0x82, 0x22, 0xc7, 0x5a, 0xd6, 0xbb, 0x24, 0xcd, 0x99, 0x95, 0xb1, 0x69,
  4388. 0x0f, 0x45, 0x81, 0x5e, 0x7a, 0x28, 0x0a, 0xf4, 0x52, 0xa0, 0xd7, 0xa2, 0xa7, 0xfe, 0x31, 0xed,
  4389. 0xa1, 0xa7, 0x06, 0xbd, 0xf4, 0x2f, 0xe8, 0x7f, 0x50, 0xbc, 0x79, 0x33, 0xe4, 0xcc, 0x2c, 0x77,
  4390. 0x25, 0x39, 0x41, 0xd1, 0xaf, 0x93, 0x38, 0x8f, 0xb3, 0xf3, 0xf1, 0x7b, 0xbf, 0xf7, 0x7b, 0x6f,
  4391. 0x86, 0x22, 0xc3, 0x84, 0x9e, 0xa6, 0x31, 0xbd, 0x5b, 0x94, 0x39, 0xcf, 0xfd, 0x6e, 0x71, 0x3c,
  4392. 0x3e, 0x7d, 0x37, 0xfc, 0x59, 0x9b, 0x6c, 0x7c, 0x1c, 0x71, 0x7a, 0x98, 0x8d, 0xe8, 0xcb, 0x39,
  4393. 0x65, 0xdc, 0xbf, 0x4e, 0x06, 0xd8, 0x71, 0x9c, 0x45, 0x33, 0x1a, 0xb4, 0xf6, 0x5b, 0xb7, 0xbc,
  4394. 0x11, 0x41, 0xd3, 0xa7, 0xd1, 0x8c, 0xfa, 0x9b, 0xa4, 0xcd, 0xb2, 0xa0, 0x2d, 0xec, 0x6d, 0x96,
  4395. 0xf9, 0xdf, 0x24, 0x64, 0x16, 0x65, 0xf3, 0xe7, 0x51, 0xcc, 0xf3, 0x32, 0x70, 0xb0, 0x7f, 0x6d,
  4396. 0xf1, 0xf7, 0x88, 0x1b, 0xcd, 0xf9, 0x64, 0xfc, 0x82, 0x2e, 0x82, 0x8e, 0x78, 0xdb, 0x87, 0xf6,
  4397. 0xf7, 0xe8, 0xc2, 0x7f, 0x83, 0xb8, 0x62, 0x35, 0x71, 0x3e, 0x0d, 0xba, 0xfb, 0xad, 0x5b, 0xdd,
  4398. 0x51, 0xd5, 0xf6, 0x6f, 0x90, 0x8d, 0x97, 0x71, 0x9e, 0xd0, 0x31, 0x9b, 0x17, 0x45, 0x5e, 0xf2,
  4399. 0xa0, 0xb7, 0xdf, 0xba, 0xe5, 0x8e, 0x86, 0xc2, 0x78, 0x84, 0x36, 0x58, 0x6c, 0x91, 0xc6, 0x55,
  4400. 0x97, 0xbe, 0xe8, 0x42, 0x8a, 0x34, 0x56, 0x1d, 0xde, 0x22, 0xc3, 0x38, 0x2a, 0x93, 0xaa, 0x87,
  4401. 0x2b, 0x7a, 0x0c, 0xc0, 0x26, 0xbb, 0x84, 0x1b, 0x64, 0xa0, 0x10, 0x28, 0xa6, 0x8b, 0xf0, 0xe7,
  4402. 0x6d, 0x72, 0x09, 0xda, 0x0f, 0x22, 0x1e, 0x4f, 0x0e, 0xb3, 0x43, 0x4e, 0x67, 0xff, 0x7b, 0x98,
  4403. 0x7c, 0x40, 0x7c, 0x0d, 0x03, 0x45, 0x8d, 0x77, 0x48, 0x67, 0x9a, 0x32, 0x1e, 0xb4, 0xf6, 0x9d,
  4404. 0x5b, 0x83, 0xf7, 0xae, 0xdc, 0x15, 0x14, 0xba, 0x6b, 0x81, 0x35, 0x12, 0x7d, 0x42, 0x9f, 0x6c,
  4405. 0x19, 0x23, 0x00, 0xb4, 0x94, 0x6c, 0x82, 0xed, 0xf1, 0x9c, 0xab, 0x11, 0xdf, 0x24, 0x9e, 0x04,
  4406. 0x36, 0x4d, 0x04, 0xac, 0xce, 0xc8, 0x45, 0xc3, 0x61, 0x02, 0x2f, 0x4f, 0xa2, 0x32, 0xa1, 0x19,
  4407. 0xbc, 0x6c, 0xe3, 0x4b, 0x34, 0x1c, 0x26, 0x80, 0x60, 0x3e, 0xe7, 0xe3, 0x39, 0xa3, 0x0a, 0xdf,
  4408. 0x7e, 0x3e, 0xe7, 0xcf, 0x18, 0x2d, 0xc3, 0x4d, 0x32, 0xac, 0xa6, 0x81, 0x69, 0x7f, 0xd9, 0x25,
  4409. 0xae, 0xf0, 0x30, 0xb8, 0x72, 0xed, 0x8c, 0x96, 0x9f, 0xdb, 0x2b, 0xfc, 0xec, 0xac, 0xf0, 0x73,
  4410. 0x67, 0xad, 0x9f, 0xbb, 0xa6, 0x9f, 0x1b, 0x7d, 0xd9, 0xb5, 0x7c, 0xa9, 0x93, 0xa1, 0x6f, 0x91,
  4411. 0xc1, 0x80, 0xc7, 0xb5, 0xe0, 0xb9, 0x4e, 0x06, 0xf2, 0xa5, 0xd8, 0x89, 0x87, 0x2b, 0x43, 0x93,
  4412. 0xd8, 0x89, 0x8e, 0x1f, 0x31, 0xf0, 0x53, 0xaf, 0x78, 0x3a, 0xa3, 0xc1, 0x40, 0x8c, 0x0b, 0xaf,
  4413. 0x9e, 0xa6, 0x33, 0xea, 0x5f, 0x21, 0x3d, 0xc6, 0x23, 0x3e, 0x67, 0xc1, 0x50, 0xac, 0x46, 0xb6,
  4414. 0xc0, 0x4e, 0xb3, 0xe8, 0x78, 0x4a, 0x83, 0x0d, 0x41, 0x26, 0xd9, 0xf2, 0xbf, 0x41, 0xbc, 0x24,
  4415. 0x2d, 0x69, 0xcc, 0xd3, 0x3c, 0x0b, 0x36, 0xc5, 0x4f, 0x6a, 0x03, 0xec, 0x6e, 0x9a, 0xc7, 0x91,
  4416. 0x78, 0x79, 0x49, 0xac, 0xa1, 0x6a, 0x03, 0x3c, 0x6a, 0xa7, 0xe3, 0x84, 0xb2, 0x38, 0xd8, 0x12,
  4417. 0x1d, 0x86, 0xca, 0xf8, 0x90, 0xb2, 0xd8, 0xa6, 0xfa, 0xb6, 0x98, 0x60, 0x1d, 0xd5, 0x7d, 0xd1,
  4418. 0x43, 0xa7, 0x3a, 0xc0, 0x08, 0x20, 0x20, 0x4e, 0x3b, 0xb8, 0x0a, 0x30, 0x08, 0x94, 0x00, 0xff,
  4419. 0x88, 0xb1, 0x57, 0x79, 0x99, 0x04, 0xbb, 0xf8, 0x4e, 0xb5, 0x81, 0x0b, 0x69, 0x11, 0x5c, 0x46,
  4420. 0x2e, 0xa4, 0x85, 0xbf, 0x45, 0x9c, 0x59, 0x14, 0x07, 0x57, 0x84, 0x01, 0x1e, 0x7d, 0x9f, 0x74,
  4421. 0xc4, 0xac, 0x57, 0x05, 0x88, 0xe2, 0x39, 0xfc, 0xbb, 0x94, 0x97, 0xef, 0xa7, 0x4c, 0x8f, 0x82,
  4422. 0xda, 0x93, 0x2d, 0xcb, 0x93, 0x30, 0x48, 0x74, 0x42, 0x65, 0x00, 0x88, 0x67, 0xf8, 0x01, 0xfc,
  4423. 0x1d, 0xb3, 0xf4, 0x0b, 0x2a, 0xd8, 0xe8, 0xc0, 0xba, 0x4e, 0xe8, 0x51, 0xfa, 0x05, 0x85, 0x75,
  4424. 0xe4, 0x73, 0x2e, 0xc8, 0xd8, 0x1d, 0xc1, 0xa3, 0xc9, 0x79, 0xa9, 0x29, 0x15, 0xe7, 0x91, 0xd2,
  4425. 0xbd, 0x8a, 0xd2, 0x56, 0x0c, 0xf4, 0x97, 0x62, 0xc0, 0xe4, 0xbc, 0xdb, 0xc4, 0xf9, 0x79, 0x96,
  4426. 0xf2, 0x71, 0x9a, 0xb0, 0xc0, 0xdb, 0x77, 0x80, 0x3e, 0xd0, 0x3e, 0x4c, 0xd8, 0x32, 0xe7, 0x49,
  4427. 0x03, 0xe7, 0x2d, 0xa7, 0x0e, 0xce, 0x74, 0xea, 0x70, 0xc9, 0xa9, 0xe1, 0x8f, 0x30, 0xab, 0x21,
  4428. 0xc8, 0xc5, 0x74, 0x51, 0xa1, 0xd8, 0xd2, 0x50, 0xdc, 0x25, 0x5d, 0x9e, 0xf3, 0x68, 0x2a, 0xa1,
  4429. 0xc5, 0x86, 0x7f, 0x43, 0x8a, 0x9c, 0x23, 0x44, 0xee, 0x92, 0x26, 0x72, 0x9a, 0xba, 0x7d, 0x8e,
  4430. 0x4e, 0x3c, 0xcc, 0x9e, 0xe7, 0xe7, 0x92, 0x32, 0x3b, 0x3f, 0xe8, 0x71, 0xed, 0x98, 0x71, 0x1d,
  4431. 0x7e, 0x5b, 0x65, 0x64, 0x18, 0x1b, 0xd6, 0x7e, 0x83, 0x74, 0xd2, 0xec, 0x79, 0x2e, 0x06, 0x6d,
  4432. 0x5a, 0x11, 0xbc, 0x0c, 0xef, 0xa0, 0xb6, 0x3e, 0xa4, 0xd3, 0xf3, 0x2c, 0x48, 0x69, 0xa4, 0xe8,
  4433. 0x0e, 0x1a, 0xf9, 0x1e, 0xd9, 0x81, 0xf6, 0x88, 0xc6, 0xf9, 0x29, 0x2d, 0x17, 0xe7, 0x1a, 0x63,
  4434. 0x87, 0x6c, 0x9b, 0xbf, 0x41, 0x8d, 0x17, 0xc6, 0x0f, 0x45, 0xfc, 0x7f, 0x75, 0x99, 0xaf, 0x85,
  4435. 0xc5, 0xd1, 0x85, 0x25, 0xdc, 0x46, 0x07, 0xa8, 0x69, 0x60, 0xe6, 0x5f, 0xb7, 0x11, 0x82, 0x23,
  4436. 0xfa, 0x35, 0xa4, 0x17, 0x43, 0xb8, 0x9c, 0x75, 0xc2, 0xd5, 0xb1, 0x84, 0x4b, 0x0c, 0xcb, 0x65,
  4437. 0xf4, 0xa0, 0xe6, 0xbb, 0x60, 0x10, 0xb1, 0x63, 0x88, 0x4d, 0x6f, 0x8d, 0xd8, 0xf4, 0x1b, 0xc5,
  4438. 0xc6, 0xb5, 0xc5, 0xc6, 0x5b, 0x16, 0x1b, 0xa2, 0x89, 0x8d, 0xf4, 0xb2, 0x40, 0x04, 0x20, 0xca,
  4439. 0xc8, 0x65, 0x68, 0x1f, 0xe4, 0xb3, 0x59, 0x94, 0x25, 0xf7, 0x93, 0x44, 0x01, 0xb5, 0x47, 0xdc,
  4440. 0x78, 0x96, 0x8c, 0x21, 0x0c, 0x05, 0x4e, 0xdd, 0x51, 0x3f, 0x9e, 0x25, 0x07, 0x79, 0x42, 0xfd,
  4441. 0x6b, 0x84, 0xc0, 0xab, 0x22, 0x2a, 0xa3, 0x19, 0x93, 0x14, 0xf6, 0xe2, 0x59, 0xf2, 0x44, 0x18,
  4442. 0x4c, 0x88, 0x1d, 0x8b, 0x21, 0x97, 0x91, 0x55, 0xfa, 0x7c, 0xb0, 0x8c, 0x3f, 0xb4, 0xc8, 0x15,
  4443. 0xcd, 0x6e, 0x49, 0xe1, 0x6a, 0x8f, 0xd5, 0xd9, 0xa7, 0x6d, 0x64, 0x9f, 0x5d, 0xd2, 0x65, 0x3c,
  4444. 0x2a, 0xb9, 0x9c, 0x1f, 0x1b, 0x00, 0x11, 0xcd, 0x12, 0xe1, 0x1f, 0x67, 0x04, 0x8f, 0x95, 0x08,
  4445. 0x74, 0x57, 0x49, 0x69, 0xcf, 0x94, 0xd2, 0xf0, 0xcb, 0x16, 0xd2, 0x4c, 0x2e, 0xf4, 0xec, 0x02,
  4446. 0xc2, 0x27, 0x1d, 0x91, 0xac, 0x10, 0x26, 0xf1, 0xac, 0xad, 0xda, 0x31, 0x56, 0x0d, 0xc0, 0x96,
  4447. 0x34, 0xe2, 0x34, 0x19, 0x47, 0x5c, 0x2e, 0xd3, 0x93, 0x96, 0xfb, 0x1c, 0xb4, 0xb2, 0xa4, 0x6c,
  4448. 0x3e, 0xe5, 0x63, 0xf9, 0x6b, 0x14, 0xee, 0x21, 0x1a, 0x8f, 0x70, 0x8c, 0xdb, 0xc4, 0x37, 0x3a,
  4449. 0x61, 0xaa, 0x44, 0x62, 0x6d, 0xe9, 0x3d, 0x45, 0xba, 0x04, 0x12, 0x21, 0xb5, 0x9c, 0x51, 0x3b,
  4450. 0x4d, 0xc2, 0x29, 0xd9, 0x5d, 0x72, 0xc3, 0xc5, 0xc4, 0xf2, 0x1d, 0x43, 0x2c, 0xf5, 0x8a, 0x50,
  4451. 0x83, 0x4c, 0x6a, 0xe6, 0xdb, 0x06, 0xf9, 0x34, 0xa1, 0xc2, 0x65, 0xb5, 0xaa, 0x65, 0x99, 0xac,
  4452. 0xa9, 0x24, 0xea, 0xcf, 0x2d, 0x12, 0x68, 0xf6, 0x91, 0xd8, 0xdd, 0x8a, 0x31, 0x0c, 0x42, 0xb7,
  4453. 0x4d, 0x42, 0x2f, 0x01, 0xeb, 0x34, 0x00, 0x7b, 0x9d, 0x0c, 0x64, 0x27, 0x81, 0xa8, 0xac, 0xec,
  4454. 0xd0, 0xa4, 0xb0, 0x64, 0x99, 0x8c, 0x6f, 0x5b, 0xd1, 0x7b, 0x56, 0xa5, 0x16, 0x90, 0x7e, 0x9c,
  4455. 0x67, 0x9c, 0x66, 0x5c, 0xc6, 0xb5, 0x6a, 0x86, 0xef, 0x1b, 0x81, 0xa0, 0xb6, 0x04, 0x3e, 0xd8,
  4456. 0x23, 0xee, 0x24, 0x62, 0x63, 0x1e, 0xb1, 0x17, 0x62, 0x5b, 0xee, 0xa8, 0x3f, 0x89, 0xd8, 0xd3,
  4457. 0x88, 0xbd, 0x08, 0x0f, 0x0c, 0x20, 0x9f, 0x31, 0xaa, 0x81, 0xc0, 0x32, 0x79, 0x3a, 0xb1, 0xd7,
  4458. 0xd4, 0xb6, 0xb2, 0xcc, 0xd8, 0x00, 0x59, 0x0c, 0x02, 0xd3, 0x5e, 0x00, 0x47, 0x53, 0x18, 0x1c,
  4459. 0x4b, 0x18, 0xc2, 0x13, 0x3c, 0x42, 0x3c, 0xcb, 0x52, 0xae, 0x09, 0xcd, 0xda, 0xe8, 0xb9, 0x4a,
  4460. 0xfa, 0xb2, 0x72, 0x08, 0xda, 0xa2, 0x70, 0xe8, 0x61, 0xe1, 0x60, 0x4a, 0xb5, 0x63, 0x4a, 0xb5,
  4461. 0x3a, 0x69, 0x54, 0x13, 0x01, 0x57, 0x1e, 0xe3, 0xee, 0xc0, 0x76, 0x6e, 0x75, 0x59, 0x97, 0x0f,
  4462. 0xc2, 0xdb, 0x98, 0xd6, 0xea, 0x01, 0x01, 0x2c, 0x6d, 0xbd, 0x8e, 0xbe, 0xde, 0x70, 0x82, 0x1e,
  4463. 0x82, 0xde, 0x0f, 0xc5, 0xf0, 0xe7, 0xaa, 0xf4, 0x56, 0x6e, 0x1f, 0x0a, 0xf2, 0x6c, 0xba, 0x18,
  4464. 0x4f, 0x22, 0x26, 0xd3, 0x60, 0x1f, 0xda, 0x8f, 0x22, 0x16, 0xfe, 0xb0, 0xde, 0xa8, 0x9a, 0x49,
  4465. 0x96, 0x0c, 0xda, 0x49, 0xad, 0xb9, 0x88, 0x01, 0x07, 0x02, 0xc5, 0x10, 0x00, 0xb1, 0x63, 0x77,
  4466. 0xe4, 0x4d, 0x22, 0x86, 0x03, 0x81, 0x4a, 0xe3, 0x2e, 0x18, 0x2d, 0x9f, 0xa4, 0xb1, 0xe9, 0xc4,
  4467. 0xd5, 0xbb, 0xd8, 0x22, 0xce, 0xbc, 0x02, 0x10, 0x1e, 0xa1, 0x7b, 0x9a, 0x8c, 0xb3, 0xf9, 0xec,
  4468. 0xb8, 0x3a, 0xab, 0xb9, 0x69, 0xf2, 0xa9, 0x68, 0x83, 0xd6, 0x88, 0x64, 0x88, 0x11, 0x26, 0x9e,
  4469. 0x01, 0x08, 0xa8, 0x00, 0xe7, 0xe5, 0x54, 0x06, 0x58, 0xaf, 0x48, 0xe3, 0x67, 0xe5, 0x14, 0x44,
  4470. 0xa8, 0x98, 0xe4, 0x99, 0x4a, 0x9d, 0xd8, 0x50, 0x7a, 0xa1, 0xaf, 0x13, 0x38, 0xf0, 0x31, 0xc6,
  4471. 0x96, 0x34, 0x5b, 0xa5, 0xda, 0x05, 0xd6, 0x1f, 0xfe, 0xa6, 0x85, 0x3a, 0x69, 0x8c, 0x24, 0xfd,
  4472. 0xaf, 0xd6, 0xd9, 0x32, 0xd6, 0x09, 0x35, 0x74, 0xfe, 0x2a, 0x1b, 0x1b, 0xd9, 0x8a, 0x80, 0x49,
  4473. 0xca, 0xcb, 0x4d, 0xb2, 0x19, 0x15, 0x45, 0x99, 0x9f, 0x52, 0x53, 0x84, 0x36, 0xa4, 0x55, 0x76,
  4474. 0x7b, 0x83, 0xb8, 0xcf, 0x29, 0x4d, 0x8e, 0xa3, 0xf8, 0x85, 0xaa, 0x33, 0x54, 0x3b, 0xfc, 0x5d,
  4475. 0xcb, 0xd8, 0xdf, 0xb9, 0xcf, 0x13, 0x67, 0xae, 0x4d, 0x79, 0xc4, 0xd1, 0x3c, 0xa2, 0x32, 0x42,
  4476. 0x67, 0x55, 0xe6, 0xec, 0x5a, 0x99, 0xb3, 0x94, 0xf1, 0x82, 0x8b, 0x43, 0x46, 0x7d, 0xc5, 0xb3,
  4477. 0xb7, 0xb5, 0x70, 0xc7, 0x5e, 0x78, 0xf8, 0x27, 0x79, 0xb4, 0x52, 0x7e, 0x82, 0x6c, 0x6d, 0xeb,
  4478. 0xd9, 0x32, 0x3b, 0x9b, 0xb6, 0x6b, 0x30, 0xb6, 0x63, 0x31, 0x16, 0xc2, 0x26, 0x9f, 0x33, 0xa3,
  4479. 0xc2, 0xf3, 0x84, 0x45, 0x2c, 0xd3, 0x4c, 0xeb, 0x3d, 0x3b, 0xad, 0x5f, 0x27, 0x03, 0xe9, 0x63,
  4480. 0xf1, 0x1e, 0x93, 0x31, 0x51, 0xa6, 0xfb, 0xbc, 0x81, 0x1a, 0x6e, 0x13, 0x35, 0x2c, 0x34, 0xbc,
  4481. 0x25, 0x37, 0x1e, 0x90, 0x2d, 0x51, 0x87, 0x16, 0xb4, 0x9c, 0xa5, 0x8c, 0xa5, 0x79, 0xc6, 0x02,
  4482. 0x22, 0xe4, 0x20, 0xd0, 0xe4, 0xc0, 0x70, 0xd0, 0xe8, 0x12, 0xfc, 0xe2, 0x49, 0xfd, 0x03, 0x55,
  4483. 0x21, 0x18, 0x1c, 0xfb, 0xba, 0x2a, 0x04, 0xcd, 0x4d, 0xb2, 0x42, 0xf8, 0x29, 0xd9, 0xd3, 0x03,
  4484. 0x19, 0xf7, 0x7b, 0x2e, 0x52, 0xa3, 0x9b, 0xdb, 0x95, 0x9b, 0xcd, 0x9a, 0xcb, 0xad, 0x6a, 0xae,
  4485. 0x75, 0x01, 0xb5, 0x47, 0xae, 0x36, 0xcd, 0x0e, 0x52, 0xf2, 0xa1, 0x11, 0x6a, 0x47, 0x8b, 0x2c,
  4486. 0x5e, 0x55, 0x77, 0xac, 0x4d, 0x22, 0x57, 0x0c, 0x34, 0x71, 0x18, 0x18, 0xfe, 0x17, 0x2d, 0xcc,
  4487. 0x95, 0x07, 0x51, 0xa9, 0x17, 0xe5, 0xd7, 0x89, 0x38, 0xd3, 0x2a, 0x1e, 0xca, 0x5b, 0x47, 0x30,
  4488. 0x49, 0x26, 0xae, 0x3d, 0xc1, 0x34, 0xf1, 0xfa, 0x1a, 0x21, 0x55, 0x00, 0xb2, 0xa0, 0x23, 0x92,
  4489. 0x8c, 0xa7, 0x22, 0x90, 0xa9, 0x4c, 0x5a, 0x2d, 0x03, 0xd6, 0xf6, 0xdb, 0x96, 0x2c, 0x14, 0xa2,
  4490. 0x32, 0xf9, 0x37, 0xd3, 0x98, 0x1c, 0xcf, 0x7b, 0xb0, 0xb2, 0x7f, 0x8d, 0xc0, 0xfc, 0xa5, 0x85,
  4491. 0xe7, 0x29, 0x98, 0xb1, 0x51, 0x5d, 0xd4, 0xb6, 0xda, 0xda, 0xb6, 0x2c, 0x2f, 0x3a, 0x4b, 0x5e,
  4492. 0x3c, 0xe3, 0x1c, 0x60, 0xad, 0xaa, 0xbb, 0x84, 0xe5, 0x07, 0x0d, 0x81, 0xde, 0x13, 0xd1, 0x76,
  4493. 0x59, 0xaf, 0xc7, 0x2b, 0x94, 0x96, 0xa3, 0xfc, 0x39, 0x8a, 0x75, 0xed, 0xe2, 0x8b, 0x85, 0xf8,
  4494. 0xdb, 0x46, 0x88, 0xef, 0x58, 0x93, 0x6a, 0xf1, 0xfd, 0xa0, 0xa6, 0xd2, 0x6b, 0xc7, 0xd0, 0x4e,
  4495. 0xbd, 0xd6, 0x3a, 0x80, 0x7e, 0x82, 0x95, 0xca, 0x0f, 0x26, 0x29, 0xa7, 0x9f, 0x44, 0x3c, 0x9e,
  4496. 0xbc, 0x46, 0x45, 0x2c, 0x4a, 0xdd, 0x3c, 0xa1, 0xe3, 0xd3, 0x68, 0xaa, 0x6e, 0x94, 0xa1, 0xfd,
  4497. 0x59, 0x24, 0xae, 0x5a, 0xc5, 0x2b, 0xbe, 0x28, 0xa8, 0xbc, 0x58, 0x13, 0x7d, 0x9f, 0x2e, 0x0a,
  4498. 0x1a, 0xfe, 0xb5, 0x8d, 0xdb, 0xd2, 0x67, 0x07, 0x00, 0x6b, 0x0d, 0x6a, 0x19, 0xe7, 0x3e, 0x2d,
  4499. 0x05, 0x79, 0x98, 0x82, 0xce, 0xa4, 0xc8, 0xda, 0x7c, 0x54, 0x15, 0x45, 0x5d, 0xad, 0x28, 0xb2,
  4500. 0xd9, 0xde, 0x5b, 0x62, 0xbb, 0x7e, 0x87, 0xd1, 0xb7, 0xee, 0x30, 0x8c, 0xdb, 0x0f, 0xd7, 0xbe,
  4501. 0xfd, 0x50, 0x2c, 0xf7, 0x4c, 0x65, 0xd1, 0x92, 0x22, 0xb1, 0x93, 0xa2, 0x11, 0x98, 0x83, 0x75,
  4502. 0x85, 0xf7, 0xd0, 0xf2, 0xf7, 0x77, 0xd1, 0xdf, 0x8f, 0xb3, 0x69, 0x9a, 0xbd, 0xd6, 0x41, 0xe7,
  4503. 0x36, 0x16, 0x05, 0x6a, 0x80, 0x33, 0xce, 0x56, 0x5f, 0x76, 0x50, 0xa3, 0x47, 0x34, 0xce, 0x0d,
  4504. 0x31, 0xbe, 0xe8, 0xf5, 0x5e, 0x85, 0xad, 0xb3, 0x0e, 0xdb, 0x8e, 0x8d, 0xed, 0x4d, 0xb2, 0x29,
  4505. 0x50, 0x9b, 0xe4, 0xd3, 0x04, 0x2f, 0xe7, 0xd1, 0xab, 0x1b, 0x95, 0x55, 0x5c, 0xd1, 0xdf, 0x25,
  4506. 0x3b, 0x75, 0xb7, 0x9a, 0x1a, 0xe8, 0xe5, 0xed, 0xea, 0xd5, 0xa1, 0xe2, 0xc8, 0x3d, 0xbd, 0xbf,
  4507. 0x78, 0xd2, 0x2e, 0x77, 0xfd, 0xea, 0xd5, 0x23, 0xf5, 0xc6, 0xa6, 0xa4, 0xdb, 0xa8, 0x5a, 0xd0,
  4508. 0x21, 0x7f, 0x95, 0xd1, 0x52, 0x52, 0xc1, 0x03, 0xcb, 0x63, 0x30, 0x00, 0xf9, 0x73, 0x81, 0xb8,
  4509. 0xbc, 0xe2, 0x95, 0x2d, 0xd3, 0xd7, 0x03, 0x2b, 0x6d, 0x5c, 0x23, 0x24, 0x65, 0xe3, 0xd3, 0x94,
  4510. 0xa5, 0x3c, 0x2f, 0xe5, 0xb5, 0xae, 0x97, 0xb2, 0xcf, 0xd0, 0x00, 0xbf, 0xcd, 0x0b, 0x9a, 0xe1,
  4511. 0x87, 0x89, 0x0d, 0xfc, 0x2d, 0x18, 0xc4, 0x97, 0x89, 0x1b, 0x64, 0x43, 0x03, 0x2e, 0x4d, 0xc4,
  4512. 0xd7, 0x06, 0x67, 0x34, 0xac, 0x71, 0x4b, 0x13, 0xff, 0x2d, 0x32, 0x94, 0xa3, 0x23, 0x4f, 0xf1,
  4513. 0xa3, 0xc3, 0x40, 0xda, 0x04, 0x53, 0x6f, 0x90, 0x0d, 0xd5, 0x05, 0xa3, 0x4a, 0x7e, 0x77, 0x90,
  4514. 0xc6, 0x27, 0x22, 0xb8, 0x74, 0xbe, 0x6d, 0x2f, 0x7f, 0x96, 0xc1, 0x55, 0x82, 0x56, 0xe0, 0xf7,
  4515. 0x06, 0x5c, 0x25, 0x68, 0xc5, 0x2e, 0x26, 0x7a, 0x8d, 0x5d, 0x20, 0x5f, 0x7f, 0x94, 0x27, 0x2d,
  4516. 0x34, 0xeb, 0x59, 0xb6, 0x49, 0x84, 0x8d, 0x9c, 0xd8, 0xb6, 0x2e, 0xff, 0x97, 0xae, 0xe3, 0x3c,
  4517. 0x8d, 0xa6, 0xd5, 0x3d, 0x59, 0xa7, 0xe1, 0x9e, 0xac, 0x5b, 0xdf, 0x93, 0x99, 0x7e, 0xe8, 0x59,
  4518. 0x7e, 0x08, 0xff, 0xd1, 0xc1, 0xc4, 0x8b, 0xcb, 0x6d, 0xbe, 0x14, 0xd3, 0xa7, 0xdd, 0x23, 0xee,
  4519. 0x2b, 0xd0, 0xc6, 0x5a, 0xce, 0xfb, 0xa2, 0x7d, 0x98, 0xfc, 0x3f, 0x50, 0xfe, 0xcb, 0x03, 0xc5,
  4520. 0x08, 0x86, 0x6d, 0x33, 0x18, 0xa4, 0x6a, 0xfa, 0x8d, 0x2a, 0xbe, 0x63, 0xa9, 0xf8, 0x8f, 0xeb,
  4521. 0xef, 0x13, 0xaf, 0x57, 0xa4, 0x7c, 0xcb, 0x28, 0x52, 0xf4, 0xca, 0xa8, 0xa6, 0xb1, 0x2c, 0x53,
  4522. 0x7e, 0xd5, 0xc6, 0x70, 0x94, 0x70, 0x6a, 0x49, 0x40, 0xa6, 0xee, 0xd6, 0xf2, 0xe9, 0x51, 0xaf,
  4523. 0xf8, 0xaa, 0x84, 0xec, 0xe8, 0x09, 0x39, 0x20, 0x7d, 0xe5, 0x30, 0xf9, 0xc5, 0x5f, 0x36, 0x97,
  4524. 0x91, 0xec, 0x36, 0x23, 0x59, 0x47, 0x58, 0xcf, 0xca, 0x3f, 0x55, 0x60, 0xf7, 0x1b, 0x02, 0xdb,
  4525. 0xad, 0x03, 0xdb, 0x20, 0x95, 0x67, 0x91, 0x4a, 0xdc, 0x52, 0xce, 0x66, 0x34, 0xe3, 0xea, 0x83,
  4526. 0xb0, 0x6c, 0x86, 0xdf, 0x41, 0xf0, 0x75, 0x3c, 0x9a, 0xee, 0x0a, 0x77, 0x49, 0xf7, 0x65, 0x75,
  4527. 0x51, 0xe8, 0x8d, 0xb0, 0x11, 0xfe, 0x4d, 0xde, 0x53, 0xc8, 0x5f, 0xeb, 0xea, 0xb6, 0x0c, 0xa7,
  4528. 0xb1, 0xcb, 0xf6, 0xf2, 0xe5, 0xfa, 0xd2, 0xa1, 0x61, 0x35, 0xaa, 0x15, 0x26, 0xdd, 0x06, 0x4c,
  4529. 0x7a, 0xcb, 0x1f, 0x05, 0xfa, 0xab, 0x24, 0xd6, 0xb5, 0x24, 0x16, 0xb7, 0xed, 0x55, 0xd7, 0xd5,
  4530. 0xbf, 0x77, 0x0c, 0x78, 0x60, 0x83, 0x42, 0x13, 0xff, 0xd3, 0xc9, 0x52, 0xd7, 0xaf, 0xb8, 0x57,
  4531. 0x55, 0xbf, 0x1a, 0xea, 0x42, 0x2c, 0x75, 0x31, 0xbe, 0x7e, 0x0d, 0xac, 0xaf, 0x5f, 0x88, 0xdc,
  4532. 0xb0, 0x22, 0x8c, 0xc6, 0xb8, 0x0d, 0x83, 0x71, 0x35, 0x95, 0x36, 0x35, 0x2a, 0xad, 0xfd, 0x7f,
  4533. 0x01, 0xeb, 0x1f, 0x1e, 0xb6, 0xec, 0x7f, 0x78, 0x08, 0x0b, 0x2c, 0xec, 0x0c, 0x1a, 0x5e, 0x4c,
  4534. 0x42, 0xee, 0x1a, 0x12, 0xf2, 0x86, 0x26, 0x21, 0x96, 0xeb, 0xa5, 0x8e, 0x7c, 0x84, 0x17, 0x0a,
  4535. 0xf2, 0xe5, 0xc1, 0x84, 0xc6, 0x2f, 0xd6, 0x1c, 0x79, 0x6a, 0x4c, 0xdb, 0x26, 0xa6, 0xe1, 0x55,
  4536. 0x43, 0x8e, 0xe4, 0x38, 0x50, 0x37, 0x1c, 0x19, 0x2f, 0x56, 0x7f, 0x51, 0x69, 0xb8, 0xf5, 0x0a,
  4537. 0x48, 0x7f, 0x16, 0x65, 0xd1, 0x89, 0x3c, 0x6e, 0xb8, 0x23, 0xd5, 0x54, 0xb7, 0xa9, 0xfa, 0xa0,
  4538. 0x30, 0xd7, 0x65, 0xb2, 0xf3, 0xc9, 0x4b, 0xce, 0x3f, 0x8a, 0x62, 0x8a, 0xa2, 0x29, 0x66, 0x0a,
  4539. 0x6f, 0x92, 0x6d, 0xd3, 0x0c, 0x90, 0x6e, 0x11, 0x87, 0x65, 0x4c, 0x5c, 0x3e, 0x7b, 0x23, 0x78,
  4540. 0x0c, 0x4f, 0xc8, 0xb5, 0x47, 0x2a, 0xbf, 0x88, 0x2f, 0x92, 0x8b, 0x2c, 0x36, 0x00, 0x39, 0xff,
  4541. 0xc5, 0x78, 0x4b, 0xbb, 0x18, 0x97, 0xfb, 0x72, 0xea, 0xbb, 0xda, 0x6b, 0xe4, 0xcd, 0x55, 0x13,
  4542. 0x15, 0xd3, 0xc5, 0x83, 0xf0, 0xf3, 0xfd, 0xa2, 0xcc, 0x0b, 0x5a, 0xf2, 0xc5, 0x9d, 0x2a, 0xe1,
  4543. 0xdd, 0x01, 0x82, 0xbe, 0x8a, 0x16, 0xf7, 0x8a, 0xe3, 0x7b, 0xa7, 0xef, 0x1e, 0xf7, 0x44, 0xd2,
  4544. 0x79, 0xff, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x36, 0x7e, 0xb2, 0x98, 0x30, 0x27, 0x00, 0x00,
  4545. }