organization.pb.go 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.30.0
  4. // protoc v3.21.12
  5. // source: organization.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type DcWorkingReq struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  24. DeviceCode string `protobuf:"bytes,2,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  25. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"` // c_time的搜索
  26. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"` // c_time的搜索
  27. Page int64 `protobuf:"varint,5,opt,name=page,proto3" json:"page,omitempty"`
  28. PageSize int64 `protobuf:"varint,6,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  29. Order string `protobuf:"bytes,7,opt,name=order,proto3" json:"order,omitempty"` // 排序字段及方向 例: id desc
  30. }
  31. func (x *DcWorkingReq) Reset() {
  32. *x = DcWorkingReq{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_organization_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *DcWorkingReq) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*DcWorkingReq) ProtoMessage() {}
  43. func (x *DcWorkingReq) ProtoReflect() protoreflect.Message {
  44. mi := &file_organization_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use DcWorkingReq.ProtoReflect.Descriptor instead.
  55. func (*DcWorkingReq) Descriptor() ([]byte, []int) {
  56. return file_organization_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *DcWorkingReq) GetProjectId() int64 {
  59. if x != nil {
  60. return x.ProjectId
  61. }
  62. return 0
  63. }
  64. func (x *DcWorkingReq) GetDeviceCode() string {
  65. if x != nil {
  66. return x.DeviceCode
  67. }
  68. return ""
  69. }
  70. func (x *DcWorkingReq) GetStime() string {
  71. if x != nil {
  72. return x.Stime
  73. }
  74. return ""
  75. }
  76. func (x *DcWorkingReq) GetEtime() string {
  77. if x != nil {
  78. return x.Etime
  79. }
  80. return ""
  81. }
  82. func (x *DcWorkingReq) GetPage() int64 {
  83. if x != nil {
  84. return x.Page
  85. }
  86. return 0
  87. }
  88. func (x *DcWorkingReq) GetPageSize() int64 {
  89. if x != nil {
  90. return x.PageSize
  91. }
  92. return 0
  93. }
  94. func (x *DcWorkingReq) GetOrder() string {
  95. if x != nil {
  96. return x.Order
  97. }
  98. return ""
  99. }
  100. type WorkingMf struct {
  101. state protoimpl.MessageState
  102. sizeCache protoimpl.SizeCache
  103. unknownFields protoimpl.UnknownFields
  104. // @gotags: json:"id"
  105. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  106. // @gotags: json:"project_id"
  107. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  108. // @gotags: json:"device_code"
  109. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  110. // @gotags: json:"water_temperature"
  111. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature"` // 水温 摄氏度
  112. // @gotags: json:"feed_flow"
  113. FeedFlow float64 `protobuf:"fixed64,5,opt,name=feed_flow,json=feedFlow,proto3" json:"feed_flow"` // 进水流量
  114. // @gotags: json:"con_flow"
  115. ConFlow float64 `protobuf:"fixed64,6,opt,name=con_flow,json=conFlow,proto3" json:"con_flow"` // 浓水流量
  116. // @gotags: json:"product_flow"
  117. ProductFlow float64 `protobuf:"fixed64,7,opt,name=product_flow,json=productFlow,proto3" json:"product_flow"` // 产水流量
  118. // @gotags: json:"feed_pressure"
  119. FeedPressure float64 `protobuf:"fixed64,8,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure"` // 进水压力
  120. // @gotags: json:"con_pressure"
  121. ConPressure float64 `protobuf:"fixed64,9,opt,name=con_pressure,json=conPressure,proto3" json:"con_pressure"` // 浓水压力
  122. // @gotags: json:"product_pressure"
  123. ProductPressure float64 `protobuf:"fixed64,10,opt,name=product_pressure,json=productPressure,proto3" json:"product_pressure"` // 产水压力
  124. // @gotags: json:"tmp"
  125. Tmp float64 `protobuf:"fixed64,11,opt,name=tmp,proto3" json:"tmp"` // 跨膜压差
  126. // @gotags: json:"flux"
  127. Flux float64 `protobuf:"fixed64,12,opt,name=flux,proto3" json:"flux"` // 膜通量
  128. // @gotags: json:"feed_wq_turbidity"
  129. FeedWqTurbidity float64 `protobuf:"fixed64,13,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity"` // 进水浊度
  130. // @gotags: json:"feed_wq_ph"
  131. FeedWqPh int64 `protobuf:"varint,14,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph"` // 进水 PH 值
  132. // @gotags: json:"product_wq_ph"
  133. ProductWqPh int64 `protobuf:"varint,15,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph"` // 产水 PH 值
  134. // @gotags: json:"feed_wq_al"
  135. FeedWqAl float64 `protobuf:"fixed64,16,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al"` // 进水水质:铝
  136. // @gotags: json:"product_wq_al"
  137. ProductWqAl float64 `protobuf:"fixed64,17,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al"` // 产水水质:铝
  138. // @gotags: json:"feed_wq_fe"
  139. FeedWqFe float64 `protobuf:"fixed64,18,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe"` // 进水水质:铁
  140. // @gotags: json:"product_wq_fe"
  141. ProductWqFe float64 `protobuf:"fixed64,19,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe"` // 产水水质:铁
  142. // @gotags: json:"feed_wq_mn"
  143. FeedWqMn float64 `protobuf:"fixed64,20,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn"` // 进水水质:锰
  144. // @gotags: json:"product_wq_mn"
  145. ProductWqMn float64 `protobuf:"fixed64,21,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn"` // 产水水质:锰
  146. // @gotags: json:"feed_wq_sio2"
  147. FeedWqSio2 float64 `protobuf:"fixed64,22,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2"` // 进水水质:二氧化硅
  148. // @gotags: json:"product_wq_sio2"
  149. ProductWqSio2 float64 `protobuf:"fixed64,23,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2"` // 产水水质:二氧化硅
  150. // @gotags: json:"feed_wq_cod"
  151. FeedWqCod float64 `protobuf:"fixed64,24,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod"` // 进水水质:COD
  152. // @gotags: json:"product_wq_cod"
  153. ProductWqCod float64 `protobuf:"fixed64,25,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod"` // 产水水质:COD
  154. // @gotags: json:"feed_wq_p"
  155. FeedWqP float64 `protobuf:"fixed64,26,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p"` // 进水水质:磷
  156. // @gotags: json:"product_wq_p"
  157. ProductWqP float64 `protobuf:"fixed64,27,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p"` // 产水水质:磷
  158. // @gotags: json:"step"
  159. Step int64 `protobuf:"varint,28,opt,name=step,proto3" json:"step"` // 设备当前步序值
  160. // @gotags: json:"c_time"
  161. CTime string `protobuf:"bytes,29,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  162. }
  163. func (x *WorkingMf) Reset() {
  164. *x = WorkingMf{}
  165. if protoimpl.UnsafeEnabled {
  166. mi := &file_organization_proto_msgTypes[1]
  167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  168. ms.StoreMessageInfo(mi)
  169. }
  170. }
  171. func (x *WorkingMf) String() string {
  172. return protoimpl.X.MessageStringOf(x)
  173. }
  174. func (*WorkingMf) ProtoMessage() {}
  175. func (x *WorkingMf) ProtoReflect() protoreflect.Message {
  176. mi := &file_organization_proto_msgTypes[1]
  177. if protoimpl.UnsafeEnabled && x != nil {
  178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  179. if ms.LoadMessageInfo() == nil {
  180. ms.StoreMessageInfo(mi)
  181. }
  182. return ms
  183. }
  184. return mi.MessageOf(x)
  185. }
  186. // Deprecated: Use WorkingMf.ProtoReflect.Descriptor instead.
  187. func (*WorkingMf) Descriptor() ([]byte, []int) {
  188. return file_organization_proto_rawDescGZIP(), []int{1}
  189. }
  190. func (x *WorkingMf) GetId() int64 {
  191. if x != nil {
  192. return x.Id
  193. }
  194. return 0
  195. }
  196. func (x *WorkingMf) GetProjectId() int64 {
  197. if x != nil {
  198. return x.ProjectId
  199. }
  200. return 0
  201. }
  202. func (x *WorkingMf) GetDeviceCode() string {
  203. if x != nil {
  204. return x.DeviceCode
  205. }
  206. return ""
  207. }
  208. func (x *WorkingMf) GetWaterTemperature() float64 {
  209. if x != nil {
  210. return x.WaterTemperature
  211. }
  212. return 0
  213. }
  214. func (x *WorkingMf) GetFeedFlow() float64 {
  215. if x != nil {
  216. return x.FeedFlow
  217. }
  218. return 0
  219. }
  220. func (x *WorkingMf) GetConFlow() float64 {
  221. if x != nil {
  222. return x.ConFlow
  223. }
  224. return 0
  225. }
  226. func (x *WorkingMf) GetProductFlow() float64 {
  227. if x != nil {
  228. return x.ProductFlow
  229. }
  230. return 0
  231. }
  232. func (x *WorkingMf) GetFeedPressure() float64 {
  233. if x != nil {
  234. return x.FeedPressure
  235. }
  236. return 0
  237. }
  238. func (x *WorkingMf) GetConPressure() float64 {
  239. if x != nil {
  240. return x.ConPressure
  241. }
  242. return 0
  243. }
  244. func (x *WorkingMf) GetProductPressure() float64 {
  245. if x != nil {
  246. return x.ProductPressure
  247. }
  248. return 0
  249. }
  250. func (x *WorkingMf) GetTmp() float64 {
  251. if x != nil {
  252. return x.Tmp
  253. }
  254. return 0
  255. }
  256. func (x *WorkingMf) GetFlux() float64 {
  257. if x != nil {
  258. return x.Flux
  259. }
  260. return 0
  261. }
  262. func (x *WorkingMf) GetFeedWqTurbidity() float64 {
  263. if x != nil {
  264. return x.FeedWqTurbidity
  265. }
  266. return 0
  267. }
  268. func (x *WorkingMf) GetFeedWqPh() int64 {
  269. if x != nil {
  270. return x.FeedWqPh
  271. }
  272. return 0
  273. }
  274. func (x *WorkingMf) GetProductWqPh() int64 {
  275. if x != nil {
  276. return x.ProductWqPh
  277. }
  278. return 0
  279. }
  280. func (x *WorkingMf) GetFeedWqAl() float64 {
  281. if x != nil {
  282. return x.FeedWqAl
  283. }
  284. return 0
  285. }
  286. func (x *WorkingMf) GetProductWqAl() float64 {
  287. if x != nil {
  288. return x.ProductWqAl
  289. }
  290. return 0
  291. }
  292. func (x *WorkingMf) GetFeedWqFe() float64 {
  293. if x != nil {
  294. return x.FeedWqFe
  295. }
  296. return 0
  297. }
  298. func (x *WorkingMf) GetProductWqFe() float64 {
  299. if x != nil {
  300. return x.ProductWqFe
  301. }
  302. return 0
  303. }
  304. func (x *WorkingMf) GetFeedWqMn() float64 {
  305. if x != nil {
  306. return x.FeedWqMn
  307. }
  308. return 0
  309. }
  310. func (x *WorkingMf) GetProductWqMn() float64 {
  311. if x != nil {
  312. return x.ProductWqMn
  313. }
  314. return 0
  315. }
  316. func (x *WorkingMf) GetFeedWqSio2() float64 {
  317. if x != nil {
  318. return x.FeedWqSio2
  319. }
  320. return 0
  321. }
  322. func (x *WorkingMf) GetProductWqSio2() float64 {
  323. if x != nil {
  324. return x.ProductWqSio2
  325. }
  326. return 0
  327. }
  328. func (x *WorkingMf) GetFeedWqCod() float64 {
  329. if x != nil {
  330. return x.FeedWqCod
  331. }
  332. return 0
  333. }
  334. func (x *WorkingMf) GetProductWqCod() float64 {
  335. if x != nil {
  336. return x.ProductWqCod
  337. }
  338. return 0
  339. }
  340. func (x *WorkingMf) GetFeedWqP() float64 {
  341. if x != nil {
  342. return x.FeedWqP
  343. }
  344. return 0
  345. }
  346. func (x *WorkingMf) GetProductWqP() float64 {
  347. if x != nil {
  348. return x.ProductWqP
  349. }
  350. return 0
  351. }
  352. func (x *WorkingMf) GetStep() int64 {
  353. if x != nil {
  354. return x.Step
  355. }
  356. return 0
  357. }
  358. func (x *WorkingMf) GetCTime() string {
  359. if x != nil {
  360. return x.CTime
  361. }
  362. return ""
  363. }
  364. type WorkingUf struct {
  365. state protoimpl.MessageState
  366. sizeCache protoimpl.SizeCache
  367. unknownFields protoimpl.UnknownFields
  368. // @gotags: json:"id"
  369. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  370. // @gotags: json:"project_id"
  371. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  372. // @gotags: json:"device_code"
  373. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  374. // @gotags: json:"water_temperature"
  375. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature"` // 水温 摄氏度
  376. // @gotags: json:"feed_flow"
  377. FeedFlow float64 `protobuf:"fixed64,5,opt,name=feed_flow,json=feedFlow,proto3" json:"feed_flow"` // 进水流量
  378. // @gotags: json:"con_flow"
  379. ConFlow float64 `protobuf:"fixed64,6,opt,name=con_flow,json=conFlow,proto3" json:"con_flow"` // 浓水流量
  380. // @gotags: json:"product_flow"
  381. ProductFlow float64 `protobuf:"fixed64,7,opt,name=product_flow,json=productFlow,proto3" json:"product_flow"` // 产水流量
  382. // @gotags: json:"feed_pressure"
  383. FeedPressure float64 `protobuf:"fixed64,8,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure"` // 进水压力
  384. // @gotags: json:"con_pressure"
  385. ConPressure float64 `protobuf:"fixed64,9,opt,name=con_pressure,json=conPressure,proto3" json:"con_pressure"` // 浓水压力
  386. // @gotags: json:"product_pressure"
  387. ProductPressure float64 `protobuf:"fixed64,10,opt,name=product_pressure,json=productPressure,proto3" json:"product_pressure"` // 产水压力
  388. // @gotags: json:"tmp"
  389. Tmp float64 `protobuf:"fixed64,11,opt,name=tmp,proto3" json:"tmp"` // 跨膜压差
  390. // @gotags: json:"flux"
  391. Flux float64 `protobuf:"fixed64,12,opt,name=flux,proto3" json:"flux"` // 膜通量
  392. // @gotags: json:"permeability"
  393. Permeability float64 `protobuf:"fixed64,32,opt,name=permeability,proto3" json:"permeability"` // 渗透率
  394. // @gotags: json:"feed_wq_turbidity"
  395. FeedWqTurbidity float64 `protobuf:"fixed64,13,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity"` // 进水浊度
  396. // @gotags: json:"feed_wq_ph"
  397. FeedWqPh int64 `protobuf:"varint,14,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph"` // 进水 PH 值
  398. // @gotags: json:"product_wq_ph"
  399. ProductWqPh int64 `protobuf:"varint,15,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph"` // 产水 PH 值
  400. // @gotags: json:"feed_wq_al"
  401. FeedWqAl float64 `protobuf:"fixed64,16,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al"` // 进水水质:铝
  402. // @gotags: json:"product_wq_al"
  403. ProductWqAl float64 `protobuf:"fixed64,17,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al"` // 产水水质:铝
  404. // @gotags: json:"feed_wq_fe"
  405. FeedWqFe float64 `protobuf:"fixed64,18,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe"` // 进水水质:铁
  406. // @gotags: json:"product_wq_fe"
  407. ProductWqFe float64 `protobuf:"fixed64,19,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe"` // 产水水质:铁
  408. // @gotags: json:"feed_wq_mn"
  409. FeedWqMn float64 `protobuf:"fixed64,20,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn"` // 进水水质:锰
  410. // @gotags: json:"product_wq_mn"
  411. ProductWqMn float64 `protobuf:"fixed64,21,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn"` // 产水水质:锰
  412. // @gotags: json:"feed_wq_sio2"
  413. FeedWqSio2 float64 `protobuf:"fixed64,22,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2"` // 进水水质:二氧化硅
  414. // @gotags: json:"product_wq_sio2"
  415. ProductWqSio2 float64 `protobuf:"fixed64,23,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2"` // 产水水质:二氧化硅
  416. // @gotags: json:"feed_wq_cod"
  417. FeedWqCod float64 `protobuf:"fixed64,24,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod"` // 进水水质:COD
  418. // @gotags: json:"product_wq_cod"
  419. ProductWqCod float64 `protobuf:"fixed64,25,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod"` // 产水水质:COD
  420. // @gotags: json:"feed_wq_p"
  421. FeedWqP float64 `protobuf:"fixed64,26,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p"` // 进水水质:磷
  422. // @gotags: json:"product_wq_p"
  423. ProductWqP float64 `protobuf:"fixed64,27,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p"` // 产水水质:磷
  424. // @gotags: json:"step"
  425. Step int64 `protobuf:"varint,28,opt,name=step,proto3" json:"step"` // 设备当前步序值
  426. // @gotags: json:"filter_time"
  427. FilterTime float64 `protobuf:"fixed64,29,opt,name=filter_time,json=filterTime,proto3" json:"filter_time"`
  428. // @gotags: json:"filter_cycle"
  429. FilterCycle int64 `protobuf:"varint,30,opt,name=filter_cycle,json=filterCycle,proto3" json:"filter_cycle"`
  430. // @gotags: json:"c_time"
  431. CTime string `protobuf:"bytes,31,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  432. }
  433. func (x *WorkingUf) Reset() {
  434. *x = WorkingUf{}
  435. if protoimpl.UnsafeEnabled {
  436. mi := &file_organization_proto_msgTypes[2]
  437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  438. ms.StoreMessageInfo(mi)
  439. }
  440. }
  441. func (x *WorkingUf) String() string {
  442. return protoimpl.X.MessageStringOf(x)
  443. }
  444. func (*WorkingUf) ProtoMessage() {}
  445. func (x *WorkingUf) ProtoReflect() protoreflect.Message {
  446. mi := &file_organization_proto_msgTypes[2]
  447. if protoimpl.UnsafeEnabled && x != nil {
  448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  449. if ms.LoadMessageInfo() == nil {
  450. ms.StoreMessageInfo(mi)
  451. }
  452. return ms
  453. }
  454. return mi.MessageOf(x)
  455. }
  456. // Deprecated: Use WorkingUf.ProtoReflect.Descriptor instead.
  457. func (*WorkingUf) Descriptor() ([]byte, []int) {
  458. return file_organization_proto_rawDescGZIP(), []int{2}
  459. }
  460. func (x *WorkingUf) GetId() int64 {
  461. if x != nil {
  462. return x.Id
  463. }
  464. return 0
  465. }
  466. func (x *WorkingUf) GetProjectId() int64 {
  467. if x != nil {
  468. return x.ProjectId
  469. }
  470. return 0
  471. }
  472. func (x *WorkingUf) GetDeviceCode() string {
  473. if x != nil {
  474. return x.DeviceCode
  475. }
  476. return ""
  477. }
  478. func (x *WorkingUf) GetWaterTemperature() float64 {
  479. if x != nil {
  480. return x.WaterTemperature
  481. }
  482. return 0
  483. }
  484. func (x *WorkingUf) GetFeedFlow() float64 {
  485. if x != nil {
  486. return x.FeedFlow
  487. }
  488. return 0
  489. }
  490. func (x *WorkingUf) GetConFlow() float64 {
  491. if x != nil {
  492. return x.ConFlow
  493. }
  494. return 0
  495. }
  496. func (x *WorkingUf) GetProductFlow() float64 {
  497. if x != nil {
  498. return x.ProductFlow
  499. }
  500. return 0
  501. }
  502. func (x *WorkingUf) GetFeedPressure() float64 {
  503. if x != nil {
  504. return x.FeedPressure
  505. }
  506. return 0
  507. }
  508. func (x *WorkingUf) GetConPressure() float64 {
  509. if x != nil {
  510. return x.ConPressure
  511. }
  512. return 0
  513. }
  514. func (x *WorkingUf) GetProductPressure() float64 {
  515. if x != nil {
  516. return x.ProductPressure
  517. }
  518. return 0
  519. }
  520. func (x *WorkingUf) GetTmp() float64 {
  521. if x != nil {
  522. return x.Tmp
  523. }
  524. return 0
  525. }
  526. func (x *WorkingUf) GetFlux() float64 {
  527. if x != nil {
  528. return x.Flux
  529. }
  530. return 0
  531. }
  532. func (x *WorkingUf) GetPermeability() float64 {
  533. if x != nil {
  534. return x.Permeability
  535. }
  536. return 0
  537. }
  538. func (x *WorkingUf) GetFeedWqTurbidity() float64 {
  539. if x != nil {
  540. return x.FeedWqTurbidity
  541. }
  542. return 0
  543. }
  544. func (x *WorkingUf) GetFeedWqPh() int64 {
  545. if x != nil {
  546. return x.FeedWqPh
  547. }
  548. return 0
  549. }
  550. func (x *WorkingUf) GetProductWqPh() int64 {
  551. if x != nil {
  552. return x.ProductWqPh
  553. }
  554. return 0
  555. }
  556. func (x *WorkingUf) GetFeedWqAl() float64 {
  557. if x != nil {
  558. return x.FeedWqAl
  559. }
  560. return 0
  561. }
  562. func (x *WorkingUf) GetProductWqAl() float64 {
  563. if x != nil {
  564. return x.ProductWqAl
  565. }
  566. return 0
  567. }
  568. func (x *WorkingUf) GetFeedWqFe() float64 {
  569. if x != nil {
  570. return x.FeedWqFe
  571. }
  572. return 0
  573. }
  574. func (x *WorkingUf) GetProductWqFe() float64 {
  575. if x != nil {
  576. return x.ProductWqFe
  577. }
  578. return 0
  579. }
  580. func (x *WorkingUf) GetFeedWqMn() float64 {
  581. if x != nil {
  582. return x.FeedWqMn
  583. }
  584. return 0
  585. }
  586. func (x *WorkingUf) GetProductWqMn() float64 {
  587. if x != nil {
  588. return x.ProductWqMn
  589. }
  590. return 0
  591. }
  592. func (x *WorkingUf) GetFeedWqSio2() float64 {
  593. if x != nil {
  594. return x.FeedWqSio2
  595. }
  596. return 0
  597. }
  598. func (x *WorkingUf) GetProductWqSio2() float64 {
  599. if x != nil {
  600. return x.ProductWqSio2
  601. }
  602. return 0
  603. }
  604. func (x *WorkingUf) GetFeedWqCod() float64 {
  605. if x != nil {
  606. return x.FeedWqCod
  607. }
  608. return 0
  609. }
  610. func (x *WorkingUf) GetProductWqCod() float64 {
  611. if x != nil {
  612. return x.ProductWqCod
  613. }
  614. return 0
  615. }
  616. func (x *WorkingUf) GetFeedWqP() float64 {
  617. if x != nil {
  618. return x.FeedWqP
  619. }
  620. return 0
  621. }
  622. func (x *WorkingUf) GetProductWqP() float64 {
  623. if x != nil {
  624. return x.ProductWqP
  625. }
  626. return 0
  627. }
  628. func (x *WorkingUf) GetStep() int64 {
  629. if x != nil {
  630. return x.Step
  631. }
  632. return 0
  633. }
  634. func (x *WorkingUf) GetFilterTime() float64 {
  635. if x != nil {
  636. return x.FilterTime
  637. }
  638. return 0
  639. }
  640. func (x *WorkingUf) GetFilterCycle() int64 {
  641. if x != nil {
  642. return x.FilterCycle
  643. }
  644. return 0
  645. }
  646. func (x *WorkingUf) GetCTime() string {
  647. if x != nil {
  648. return x.CTime
  649. }
  650. return ""
  651. }
  652. type WorkingNf struct {
  653. state protoimpl.MessageState
  654. sizeCache protoimpl.SizeCache
  655. unknownFields protoimpl.UnknownFields
  656. // gotags: json:"id"
  657. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  658. // gotags: json:"project_id"
  659. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  660. // gotags: json:"device_code"
  661. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  662. // gotags: json:"water_temperature"
  663. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  664. // gotags: json:"feed_flow_1st"
  665. FeedFlow_1St float64 `protobuf:"fixed64,5,opt,name=feed_flow_1st,json=feedFlow1st,proto3" json:"feed_flow_1st,omitempty"` // 一段进水流量
  666. // gotags: json:"con_flow_1st"
  667. ConFlow_1St float64 `protobuf:"fixed64,6,opt,name=con_flow_1st,json=conFlow1st,proto3" json:"con_flow_1st,omitempty"` // 一段浓水流量
  668. // gotags: json:"product_flow_1st"
  669. ProductFlow_1St float64 `protobuf:"fixed64,7,opt,name=product_flow_1st,json=productFlow1st,proto3" json:"product_flow_1st,omitempty"` // 一段产水流量
  670. // gotags: json:"feed_pressure_1st"
  671. FeedPressure_1St float64 `protobuf:"fixed64,8,opt,name=feed_pressure_1st,json=feedPressure1st,proto3" json:"feed_pressure_1st,omitempty"` // 一段进水压力
  672. // gotags: json:"con_pressure_1st"
  673. ConPressure_1St float64 `protobuf:"fixed64,9,opt,name=con_pressure_1st,json=conPressure1st,proto3" json:"con_pressure_1st,omitempty"` // 一段浓水压力
  674. // gotags: json:"product_pressure_1st"
  675. ProductPressure_1St float64 `protobuf:"fixed64,10,opt,name=product_pressure_1st,json=productPressure1st,proto3" json:"product_pressure_1st,omitempty"` // 一段产水压力
  676. // gotags: json:"tmp_1st"
  677. Tmp_1St float64 `protobuf:"fixed64,11,opt,name=tmp_1st,json=tmp1st,proto3" json:"tmp_1st,omitempty"` // 一段跨膜压差
  678. // gotags: json:"flux_1st"
  679. Flux_1St float64 `protobuf:"fixed64,12,opt,name=flux_1st,json=flux1st,proto3" json:"flux_1st,omitempty"` // 一段膜通量
  680. // gotags: json:"permeability_1st"
  681. Permeability_1St float64 `protobuf:"fixed64,13,opt,name=permeability_1st,json=permeability1st,proto3" json:"permeability_1st,omitempty"` // 一段渗透率
  682. // gotags: json:"feed_flow_2nd"
  683. FeedFlow_2Nd float64 `protobuf:"fixed64,14,opt,name=feed_flow_2nd,json=feedFlow2nd,proto3" json:"feed_flow_2nd,omitempty"` // 二段进水流量
  684. // gotags: json:"con_flow_2nd"
  685. ConFlow_2Nd float64 `protobuf:"fixed64,15,opt,name=con_flow_2nd,json=conFlow2nd,proto3" json:"con_flow_2nd,omitempty"` // 二段浓水流量
  686. // gotags: json:"product_flow_2nd"
  687. ProductFlow_2Nd float64 `protobuf:"fixed64,16,opt,name=product_flow_2nd,json=productFlow2nd,proto3" json:"product_flow_2nd,omitempty"` // 二段产水流量
  688. // gotags: json:"feed_pressure_2nd"
  689. FeedPressure_2Nd float64 `protobuf:"fixed64,17,opt,name=feed_pressure_2nd,json=feedPressure2nd,proto3" json:"feed_pressure_2nd,omitempty"` // 二段进水压力
  690. // gotags: json:"con_pressure_2nd"
  691. ConPressure_2Nd float64 `protobuf:"fixed64,18,opt,name=con_pressure_2nd,json=conPressure2nd,proto3" json:"con_pressure_2nd,omitempty"` // 二段浓水压力
  692. // gotags: json:"product_pressure_2nd"
  693. ProductPressure_2Nd float64 `protobuf:"fixed64,19,opt,name=product_pressure_2nd,json=productPressure2nd,proto3" json:"product_pressure_2nd,omitempty"` // 二段产水压力
  694. // gotags: json:"tmp_2nd"
  695. Tmp_2Nd float64 `protobuf:"fixed64,20,opt,name=tmp_2nd,json=tmp2nd,proto3" json:"tmp_2nd,omitempty"` // 二段压差
  696. // gotags: json:"flux_2nd"
  697. Flux_2Nd float64 `protobuf:"fixed64,21,opt,name=flux_2nd,json=flux2nd,proto3" json:"flux_2nd,omitempty"` // 二段通量
  698. // gotags: json:"permeability_2nd"
  699. Permeability_2Nd float64 `protobuf:"fixed64,22,opt,name=permeability_2nd,json=permeability2nd,proto3" json:"permeability_2nd,omitempty"` // 二段渗透率
  700. // gotags: json:"feed_flow_3th"
  701. FeedFlow_3Th float64 `protobuf:"fixed64,23,opt,name=feed_flow_3th,json=feedFlow3th,proto3" json:"feed_flow_3th,omitempty"` // 三段进水流量
  702. // gotags: json:"con_flow_3th"
  703. ConFlow_3Th float64 `protobuf:"fixed64,24,opt,name=con_flow_3th,json=conFlow3th,proto3" json:"con_flow_3th,omitempty"` // 三段浓水流量
  704. // gotags: json:"product_flow_3th"
  705. ProductFlow_3Th float64 `protobuf:"fixed64,25,opt,name=product_flow_3th,json=productFlow3th,proto3" json:"product_flow_3th,omitempty"` // 三段产水流量
  706. // gotags: json:"feed_pressure_3th"
  707. FeedPressure_3Th float64 `protobuf:"fixed64,26,opt,name=feed_pressure_3th,json=feedPressure3th,proto3" json:"feed_pressure_3th,omitempty"` // 三段进水压力
  708. // gotags: json:"con_pressure_3th"
  709. ConPressure_3Th float64 `protobuf:"fixed64,27,opt,name=con_pressure_3th,json=conPressure3th,proto3" json:"con_pressure_3th,omitempty"` // 三段浓水压力
  710. // gotags: json:"product_pressure_3th"
  711. ProductPressure_3Th float64 `protobuf:"fixed64,28,opt,name=product_pressure_3th,json=productPressure3th,proto3" json:"product_pressure_3th,omitempty"` // 三段产水压力
  712. // gotags: json:"tmp_3th"
  713. Tmp_3Th float64 `protobuf:"fixed64,29,opt,name=tmp_3th,json=tmp3th,proto3" json:"tmp_3th,omitempty"` // 三段压差
  714. // gotags: json:"flux_3th"
  715. Flux_3Th float64 `protobuf:"fixed64,30,opt,name=flux_3th,json=flux3th,proto3" json:"flux_3th,omitempty"` // 三段通量
  716. // gotags: json:"permeability_3th"
  717. Permeability_3Th float64 `protobuf:"fixed64,31,opt,name=permeability_3th,json=permeability3th,proto3" json:"permeability_3th,omitempty"` // 三段渗透率
  718. // gotags: json:"feed_wq_turbidity"
  719. FeedWqTurbidity float64 `protobuf:"fixed64,32,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  720. // gotags: json:"feed_wq_ph"
  721. FeedWqPh int64 `protobuf:"varint,33,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  722. // gotags: json:"product_wq_ph"
  723. ProductWqPh int64 `protobuf:"varint,34,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  724. // gotags: json:"feed_wq_al"
  725. FeedWqAl float64 `protobuf:"fixed64,35,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  726. // gotags: json:"product_wq_al"
  727. ProductWqAl float64 `protobuf:"fixed64,36,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  728. // gotags: json:"feed_wq_fe"
  729. FeedWqFe float64 `protobuf:"fixed64,37,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  730. // gotags: json:"product_wq_fe"
  731. ProductWqFe float64 `protobuf:"fixed64,38,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  732. // gotags: json:"feed_wq_mn"
  733. FeedWqMn float64 `protobuf:"fixed64,39,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  734. // gotags: json:"product_wq_mn"
  735. ProductWqMn float64 `protobuf:"fixed64,40,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  736. // gotags: json:"feed_wq_sio2"
  737. FeedWqSio2 float64 `protobuf:"fixed64,41,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  738. // gotags: json:"product_wq_sio2"
  739. ProductWqSio2 float64 `protobuf:"fixed64,42,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  740. // gotags: json:"feed_wq_cod"
  741. FeedWqCod float64 `protobuf:"fixed64,43,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  742. // gotags: json:"product_wq_cod"
  743. ProductWqCod float64 `protobuf:"fixed64,44,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  744. // gotags: json:"feed_wq_p"
  745. FeedWqP float64 `protobuf:"fixed64,45,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  746. // gotags: json:"product_wq_p"
  747. ProductWqP float64 `protobuf:"fixed64,46,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  748. // gotags: json:"step"
  749. Step int64 `protobuf:"varint,47,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  750. // gotags: json:"c_time"
  751. CTime string `protobuf:"bytes,48,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  752. }
  753. func (x *WorkingNf) Reset() {
  754. *x = WorkingNf{}
  755. if protoimpl.UnsafeEnabled {
  756. mi := &file_organization_proto_msgTypes[3]
  757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  758. ms.StoreMessageInfo(mi)
  759. }
  760. }
  761. func (x *WorkingNf) String() string {
  762. return protoimpl.X.MessageStringOf(x)
  763. }
  764. func (*WorkingNf) ProtoMessage() {}
  765. func (x *WorkingNf) ProtoReflect() protoreflect.Message {
  766. mi := &file_organization_proto_msgTypes[3]
  767. if protoimpl.UnsafeEnabled && x != nil {
  768. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  769. if ms.LoadMessageInfo() == nil {
  770. ms.StoreMessageInfo(mi)
  771. }
  772. return ms
  773. }
  774. return mi.MessageOf(x)
  775. }
  776. // Deprecated: Use WorkingNf.ProtoReflect.Descriptor instead.
  777. func (*WorkingNf) Descriptor() ([]byte, []int) {
  778. return file_organization_proto_rawDescGZIP(), []int{3}
  779. }
  780. func (x *WorkingNf) GetId() int64 {
  781. if x != nil {
  782. return x.Id
  783. }
  784. return 0
  785. }
  786. func (x *WorkingNf) GetProjectId() int64 {
  787. if x != nil {
  788. return x.ProjectId
  789. }
  790. return 0
  791. }
  792. func (x *WorkingNf) GetDeviceCode() string {
  793. if x != nil {
  794. return x.DeviceCode
  795. }
  796. return ""
  797. }
  798. func (x *WorkingNf) GetWaterTemperature() float64 {
  799. if x != nil {
  800. return x.WaterTemperature
  801. }
  802. return 0
  803. }
  804. func (x *WorkingNf) GetFeedFlow_1St() float64 {
  805. if x != nil {
  806. return x.FeedFlow_1St
  807. }
  808. return 0
  809. }
  810. func (x *WorkingNf) GetConFlow_1St() float64 {
  811. if x != nil {
  812. return x.ConFlow_1St
  813. }
  814. return 0
  815. }
  816. func (x *WorkingNf) GetProductFlow_1St() float64 {
  817. if x != nil {
  818. return x.ProductFlow_1St
  819. }
  820. return 0
  821. }
  822. func (x *WorkingNf) GetFeedPressure_1St() float64 {
  823. if x != nil {
  824. return x.FeedPressure_1St
  825. }
  826. return 0
  827. }
  828. func (x *WorkingNf) GetConPressure_1St() float64 {
  829. if x != nil {
  830. return x.ConPressure_1St
  831. }
  832. return 0
  833. }
  834. func (x *WorkingNf) GetProductPressure_1St() float64 {
  835. if x != nil {
  836. return x.ProductPressure_1St
  837. }
  838. return 0
  839. }
  840. func (x *WorkingNf) GetTmp_1St() float64 {
  841. if x != nil {
  842. return x.Tmp_1St
  843. }
  844. return 0
  845. }
  846. func (x *WorkingNf) GetFlux_1St() float64 {
  847. if x != nil {
  848. return x.Flux_1St
  849. }
  850. return 0
  851. }
  852. func (x *WorkingNf) GetPermeability_1St() float64 {
  853. if x != nil {
  854. return x.Permeability_1St
  855. }
  856. return 0
  857. }
  858. func (x *WorkingNf) GetFeedFlow_2Nd() float64 {
  859. if x != nil {
  860. return x.FeedFlow_2Nd
  861. }
  862. return 0
  863. }
  864. func (x *WorkingNf) GetConFlow_2Nd() float64 {
  865. if x != nil {
  866. return x.ConFlow_2Nd
  867. }
  868. return 0
  869. }
  870. func (x *WorkingNf) GetProductFlow_2Nd() float64 {
  871. if x != nil {
  872. return x.ProductFlow_2Nd
  873. }
  874. return 0
  875. }
  876. func (x *WorkingNf) GetFeedPressure_2Nd() float64 {
  877. if x != nil {
  878. return x.FeedPressure_2Nd
  879. }
  880. return 0
  881. }
  882. func (x *WorkingNf) GetConPressure_2Nd() float64 {
  883. if x != nil {
  884. return x.ConPressure_2Nd
  885. }
  886. return 0
  887. }
  888. func (x *WorkingNf) GetProductPressure_2Nd() float64 {
  889. if x != nil {
  890. return x.ProductPressure_2Nd
  891. }
  892. return 0
  893. }
  894. func (x *WorkingNf) GetTmp_2Nd() float64 {
  895. if x != nil {
  896. return x.Tmp_2Nd
  897. }
  898. return 0
  899. }
  900. func (x *WorkingNf) GetFlux_2Nd() float64 {
  901. if x != nil {
  902. return x.Flux_2Nd
  903. }
  904. return 0
  905. }
  906. func (x *WorkingNf) GetPermeability_2Nd() float64 {
  907. if x != nil {
  908. return x.Permeability_2Nd
  909. }
  910. return 0
  911. }
  912. func (x *WorkingNf) GetFeedFlow_3Th() float64 {
  913. if x != nil {
  914. return x.FeedFlow_3Th
  915. }
  916. return 0
  917. }
  918. func (x *WorkingNf) GetConFlow_3Th() float64 {
  919. if x != nil {
  920. return x.ConFlow_3Th
  921. }
  922. return 0
  923. }
  924. func (x *WorkingNf) GetProductFlow_3Th() float64 {
  925. if x != nil {
  926. return x.ProductFlow_3Th
  927. }
  928. return 0
  929. }
  930. func (x *WorkingNf) GetFeedPressure_3Th() float64 {
  931. if x != nil {
  932. return x.FeedPressure_3Th
  933. }
  934. return 0
  935. }
  936. func (x *WorkingNf) GetConPressure_3Th() float64 {
  937. if x != nil {
  938. return x.ConPressure_3Th
  939. }
  940. return 0
  941. }
  942. func (x *WorkingNf) GetProductPressure_3Th() float64 {
  943. if x != nil {
  944. return x.ProductPressure_3Th
  945. }
  946. return 0
  947. }
  948. func (x *WorkingNf) GetTmp_3Th() float64 {
  949. if x != nil {
  950. return x.Tmp_3Th
  951. }
  952. return 0
  953. }
  954. func (x *WorkingNf) GetFlux_3Th() float64 {
  955. if x != nil {
  956. return x.Flux_3Th
  957. }
  958. return 0
  959. }
  960. func (x *WorkingNf) GetPermeability_3Th() float64 {
  961. if x != nil {
  962. return x.Permeability_3Th
  963. }
  964. return 0
  965. }
  966. func (x *WorkingNf) GetFeedWqTurbidity() float64 {
  967. if x != nil {
  968. return x.FeedWqTurbidity
  969. }
  970. return 0
  971. }
  972. func (x *WorkingNf) GetFeedWqPh() int64 {
  973. if x != nil {
  974. return x.FeedWqPh
  975. }
  976. return 0
  977. }
  978. func (x *WorkingNf) GetProductWqPh() int64 {
  979. if x != nil {
  980. return x.ProductWqPh
  981. }
  982. return 0
  983. }
  984. func (x *WorkingNf) GetFeedWqAl() float64 {
  985. if x != nil {
  986. return x.FeedWqAl
  987. }
  988. return 0
  989. }
  990. func (x *WorkingNf) GetProductWqAl() float64 {
  991. if x != nil {
  992. return x.ProductWqAl
  993. }
  994. return 0
  995. }
  996. func (x *WorkingNf) GetFeedWqFe() float64 {
  997. if x != nil {
  998. return x.FeedWqFe
  999. }
  1000. return 0
  1001. }
  1002. func (x *WorkingNf) GetProductWqFe() float64 {
  1003. if x != nil {
  1004. return x.ProductWqFe
  1005. }
  1006. return 0
  1007. }
  1008. func (x *WorkingNf) GetFeedWqMn() float64 {
  1009. if x != nil {
  1010. return x.FeedWqMn
  1011. }
  1012. return 0
  1013. }
  1014. func (x *WorkingNf) GetProductWqMn() float64 {
  1015. if x != nil {
  1016. return x.ProductWqMn
  1017. }
  1018. return 0
  1019. }
  1020. func (x *WorkingNf) GetFeedWqSio2() float64 {
  1021. if x != nil {
  1022. return x.FeedWqSio2
  1023. }
  1024. return 0
  1025. }
  1026. func (x *WorkingNf) GetProductWqSio2() float64 {
  1027. if x != nil {
  1028. return x.ProductWqSio2
  1029. }
  1030. return 0
  1031. }
  1032. func (x *WorkingNf) GetFeedWqCod() float64 {
  1033. if x != nil {
  1034. return x.FeedWqCod
  1035. }
  1036. return 0
  1037. }
  1038. func (x *WorkingNf) GetProductWqCod() float64 {
  1039. if x != nil {
  1040. return x.ProductWqCod
  1041. }
  1042. return 0
  1043. }
  1044. func (x *WorkingNf) GetFeedWqP() float64 {
  1045. if x != nil {
  1046. return x.FeedWqP
  1047. }
  1048. return 0
  1049. }
  1050. func (x *WorkingNf) GetProductWqP() float64 {
  1051. if x != nil {
  1052. return x.ProductWqP
  1053. }
  1054. return 0
  1055. }
  1056. func (x *WorkingNf) GetStep() int64 {
  1057. if x != nil {
  1058. return x.Step
  1059. }
  1060. return 0
  1061. }
  1062. func (x *WorkingNf) GetCTime() string {
  1063. if x != nil {
  1064. return x.CTime
  1065. }
  1066. return ""
  1067. }
  1068. type WorkingRo struct {
  1069. state protoimpl.MessageState
  1070. sizeCache protoimpl.SizeCache
  1071. unknownFields protoimpl.UnknownFields
  1072. // gotags: json:"id"
  1073. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1074. // gotags: json:"project_id"
  1075. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1076. // gotags: json:"device_code"
  1077. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  1078. // gotags: json:"water_temperature"
  1079. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  1080. // gotags: json:"feed_flow_1st"
  1081. FeedFlow_1St float64 `protobuf:"fixed64,5,opt,name=feed_flow_1st,json=feedFlow1st,proto3" json:"feed_flow_1st,omitempty"` // 一段进水流量
  1082. // gotags: json:"con_flow_1st"
  1083. ConFlow_1St float64 `protobuf:"fixed64,6,opt,name=con_flow_1st,json=conFlow1st,proto3" json:"con_flow_1st,omitempty"` // 一段浓水流量
  1084. // gotags: json:"product_flow_1st"
  1085. ProductFlow_1St float64 `protobuf:"fixed64,7,opt,name=product_flow_1st,json=productFlow1st,proto3" json:"product_flow_1st,omitempty"` // 一段产水流量
  1086. // gotags: json:"feed_pressure_1st"
  1087. FeedPressure_1St float64 `protobuf:"fixed64,8,opt,name=feed_pressure_1st,json=feedPressure1st,proto3" json:"feed_pressure_1st,omitempty"` // 一段进水压力
  1088. // gotags: json:"con_pressure_1st"
  1089. ConPressure_1St float64 `protobuf:"fixed64,9,opt,name=con_pressure_1st,json=conPressure1st,proto3" json:"con_pressure_1st,omitempty"` // 一段浓水压力
  1090. // gotags: json:"product_pressure_1st"
  1091. ProductPressure_1St float64 `protobuf:"fixed64,10,opt,name=product_pressure_1st,json=productPressure1st,proto3" json:"product_pressure_1st,omitempty"` // 一段产水压力
  1092. // gotags: json:"tmp_1st"
  1093. Tmp_1St float64 `protobuf:"fixed64,11,opt,name=tmp_1st,json=tmp1st,proto3" json:"tmp_1st,omitempty"` // 一段跨膜压差
  1094. // gotags: json:"flux_1st"
  1095. Flux_1St float64 `protobuf:"fixed64,12,opt,name=flux_1st,json=flux1st,proto3" json:"flux_1st,omitempty"` // 一段膜通量
  1096. // gotags: json:"permeability_1st"
  1097. Permeability_1St float64 `protobuf:"fixed64,13,opt,name=permeability_1st,json=permeability1st,proto3" json:"permeability_1st,omitempty"` // 一段渗透率
  1098. // gotags: json:"feed_flow_2nd"
  1099. FeedFlow_2Nd float64 `protobuf:"fixed64,14,opt,name=feed_flow_2nd,json=feedFlow2nd,proto3" json:"feed_flow_2nd,omitempty"` // 二段进水流量
  1100. // gotags: json:"con_flow_2nd"
  1101. ConFlow_2Nd float64 `protobuf:"fixed64,15,opt,name=con_flow_2nd,json=conFlow2nd,proto3" json:"con_flow_2nd,omitempty"` // 二段浓水流量
  1102. // gotags: json:"product_flow_2nd"
  1103. ProductFlow_2Nd float64 `protobuf:"fixed64,16,opt,name=product_flow_2nd,json=productFlow2nd,proto3" json:"product_flow_2nd,omitempty"` // 二段产水流量
  1104. // gotags: json:"feed_pressure_2nd"
  1105. FeedPressure_2Nd float64 `protobuf:"fixed64,17,opt,name=feed_pressure_2nd,json=feedPressure2nd,proto3" json:"feed_pressure_2nd,omitempty"` // 二段进水压力
  1106. // gotags: json:"con_pressure_2nd"
  1107. ConPressure_2Nd float64 `protobuf:"fixed64,18,opt,name=con_pressure_2nd,json=conPressure2nd,proto3" json:"con_pressure_2nd,omitempty"` // 二段浓水压力
  1108. // gotags: json:"product_pressure_2nd"
  1109. ProductPressure_2Nd float64 `protobuf:"fixed64,19,opt,name=product_pressure_2nd,json=productPressure2nd,proto3" json:"product_pressure_2nd,omitempty"` // 二段产水压力
  1110. // gotags: json:"tmp_2nd"
  1111. Tmp_2Nd float64 `protobuf:"fixed64,20,opt,name=tmp_2nd,json=tmp2nd,proto3" json:"tmp_2nd,omitempty"` // 二段压差
  1112. // gotags: json:"flux_2nd"
  1113. Flux_2Nd float64 `protobuf:"fixed64,21,opt,name=flux_2nd,json=flux2nd,proto3" json:"flux_2nd,omitempty"` // 二段通量
  1114. // gotags: json:"permeability_2nd"
  1115. Permeability_2Nd float64 `protobuf:"fixed64,22,opt,name=permeability_2nd,json=permeability2nd,proto3" json:"permeability_2nd,omitempty"` // 二段渗透率
  1116. // gotags: json:"feed_flow_3th"
  1117. FeedFlow_3Th float64 `protobuf:"fixed64,23,opt,name=feed_flow_3th,json=feedFlow3th,proto3" json:"feed_flow_3th,omitempty"` // 三段进水流量
  1118. // gotags: json:"con_flow_3th"
  1119. ConFlow_3Th float64 `protobuf:"fixed64,24,opt,name=con_flow_3th,json=conFlow3th,proto3" json:"con_flow_3th,omitempty"` // 三段浓水流量
  1120. // gotags: json:"product_flow_3th"
  1121. ProductFlow_3Th float64 `protobuf:"fixed64,25,opt,name=product_flow_3th,json=productFlow3th,proto3" json:"product_flow_3th,omitempty"` // 三段产水流量
  1122. // gotags: json:"feed_pressure_3th"
  1123. FeedPressure_3Th float64 `protobuf:"fixed64,26,opt,name=feed_pressure_3th,json=feedPressure3th,proto3" json:"feed_pressure_3th,omitempty"` // 三段进水压力
  1124. // gotags: json:"con_pressure_3th"
  1125. ConPressure_3Th float64 `protobuf:"fixed64,27,opt,name=con_pressure_3th,json=conPressure3th,proto3" json:"con_pressure_3th,omitempty"` // 三段浓水压力
  1126. // gotags: json:"product_pressure_3th"
  1127. ProductPressure_3Th float64 `protobuf:"fixed64,28,opt,name=product_pressure_3th,json=productPressure3th,proto3" json:"product_pressure_3th,omitempty"` // 三段产水压力
  1128. // gotags: json:"tmp_3th"
  1129. Tmp_3Th float64 `protobuf:"fixed64,29,opt,name=tmp_3th,json=tmp3th,proto3" json:"tmp_3th,omitempty"` // 三段压差
  1130. // gotags: json:"flux_3th"
  1131. Flux_3Th float64 `protobuf:"fixed64,30,opt,name=flux_3th,json=flux3th,proto3" json:"flux_3th,omitempty"` // 三段通量
  1132. // gotags: json:"permeability_3th"
  1133. Permeability_3Th float64 `protobuf:"fixed64,31,opt,name=permeability_3th,json=permeability3th,proto3" json:"permeability_3th,omitempty"` // 三段渗透率
  1134. // gotags: json:"feed_wq_turbidity"
  1135. FeedWqTurbidity float64 `protobuf:"fixed64,32,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  1136. // gotags: json:"feed_wq_ph"
  1137. FeedWqPh int64 `protobuf:"varint,33,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  1138. // gotags: json:"product_wq_ph"
  1139. ProductWqPh int64 `protobuf:"varint,34,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  1140. // gotags: json:"feed_wq_al"
  1141. FeedWqAl float64 `protobuf:"fixed64,35,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  1142. // gotags: json:"product_wq_al"
  1143. ProductWqAl float64 `protobuf:"fixed64,36,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  1144. // gotags: json:"feed_wq_fe"
  1145. FeedWqFe float64 `protobuf:"fixed64,37,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  1146. // gotags: json:"product_wq_fe"
  1147. ProductWqFe float64 `protobuf:"fixed64,38,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  1148. // gotags: json:"feed_wq_mn"
  1149. FeedWqMn float64 `protobuf:"fixed64,39,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  1150. // gotags: json:"product_wq_mn"
  1151. ProductWqMn float64 `protobuf:"fixed64,40,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  1152. // gotags: json:"feed_wq_sio2"
  1153. FeedWqSio2 float64 `protobuf:"fixed64,41,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  1154. // gotags: json:"product_wq_sio2"
  1155. ProductWqSio2 float64 `protobuf:"fixed64,42,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  1156. // gotags: json:"feed_wq_cod"
  1157. FeedWqCod float64 `protobuf:"fixed64,43,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  1158. // gotags: json:"product_wq_cod"
  1159. ProductWqCod float64 `protobuf:"fixed64,44,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  1160. // gotags: json:"feed_wq_p"
  1161. FeedWqP float64 `protobuf:"fixed64,45,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  1162. // gotags: json:"product_wq_p"
  1163. ProductWqP float64 `protobuf:"fixed64,46,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  1164. // gotags: json:"step"
  1165. Step int64 `protobuf:"varint,47,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  1166. // gotags: json:"c_time"
  1167. CTime string `protobuf:"bytes,48,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  1168. }
  1169. func (x *WorkingRo) Reset() {
  1170. *x = WorkingRo{}
  1171. if protoimpl.UnsafeEnabled {
  1172. mi := &file_organization_proto_msgTypes[4]
  1173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1174. ms.StoreMessageInfo(mi)
  1175. }
  1176. }
  1177. func (x *WorkingRo) String() string {
  1178. return protoimpl.X.MessageStringOf(x)
  1179. }
  1180. func (*WorkingRo) ProtoMessage() {}
  1181. func (x *WorkingRo) ProtoReflect() protoreflect.Message {
  1182. mi := &file_organization_proto_msgTypes[4]
  1183. if protoimpl.UnsafeEnabled && x != nil {
  1184. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1185. if ms.LoadMessageInfo() == nil {
  1186. ms.StoreMessageInfo(mi)
  1187. }
  1188. return ms
  1189. }
  1190. return mi.MessageOf(x)
  1191. }
  1192. // Deprecated: Use WorkingRo.ProtoReflect.Descriptor instead.
  1193. func (*WorkingRo) Descriptor() ([]byte, []int) {
  1194. return file_organization_proto_rawDescGZIP(), []int{4}
  1195. }
  1196. func (x *WorkingRo) GetId() int64 {
  1197. if x != nil {
  1198. return x.Id
  1199. }
  1200. return 0
  1201. }
  1202. func (x *WorkingRo) GetProjectId() int64 {
  1203. if x != nil {
  1204. return x.ProjectId
  1205. }
  1206. return 0
  1207. }
  1208. func (x *WorkingRo) GetDeviceCode() string {
  1209. if x != nil {
  1210. return x.DeviceCode
  1211. }
  1212. return ""
  1213. }
  1214. func (x *WorkingRo) GetWaterTemperature() float64 {
  1215. if x != nil {
  1216. return x.WaterTemperature
  1217. }
  1218. return 0
  1219. }
  1220. func (x *WorkingRo) GetFeedFlow_1St() float64 {
  1221. if x != nil {
  1222. return x.FeedFlow_1St
  1223. }
  1224. return 0
  1225. }
  1226. func (x *WorkingRo) GetConFlow_1St() float64 {
  1227. if x != nil {
  1228. return x.ConFlow_1St
  1229. }
  1230. return 0
  1231. }
  1232. func (x *WorkingRo) GetProductFlow_1St() float64 {
  1233. if x != nil {
  1234. return x.ProductFlow_1St
  1235. }
  1236. return 0
  1237. }
  1238. func (x *WorkingRo) GetFeedPressure_1St() float64 {
  1239. if x != nil {
  1240. return x.FeedPressure_1St
  1241. }
  1242. return 0
  1243. }
  1244. func (x *WorkingRo) GetConPressure_1St() float64 {
  1245. if x != nil {
  1246. return x.ConPressure_1St
  1247. }
  1248. return 0
  1249. }
  1250. func (x *WorkingRo) GetProductPressure_1St() float64 {
  1251. if x != nil {
  1252. return x.ProductPressure_1St
  1253. }
  1254. return 0
  1255. }
  1256. func (x *WorkingRo) GetTmp_1St() float64 {
  1257. if x != nil {
  1258. return x.Tmp_1St
  1259. }
  1260. return 0
  1261. }
  1262. func (x *WorkingRo) GetFlux_1St() float64 {
  1263. if x != nil {
  1264. return x.Flux_1St
  1265. }
  1266. return 0
  1267. }
  1268. func (x *WorkingRo) GetPermeability_1St() float64 {
  1269. if x != nil {
  1270. return x.Permeability_1St
  1271. }
  1272. return 0
  1273. }
  1274. func (x *WorkingRo) GetFeedFlow_2Nd() float64 {
  1275. if x != nil {
  1276. return x.FeedFlow_2Nd
  1277. }
  1278. return 0
  1279. }
  1280. func (x *WorkingRo) GetConFlow_2Nd() float64 {
  1281. if x != nil {
  1282. return x.ConFlow_2Nd
  1283. }
  1284. return 0
  1285. }
  1286. func (x *WorkingRo) GetProductFlow_2Nd() float64 {
  1287. if x != nil {
  1288. return x.ProductFlow_2Nd
  1289. }
  1290. return 0
  1291. }
  1292. func (x *WorkingRo) GetFeedPressure_2Nd() float64 {
  1293. if x != nil {
  1294. return x.FeedPressure_2Nd
  1295. }
  1296. return 0
  1297. }
  1298. func (x *WorkingRo) GetConPressure_2Nd() float64 {
  1299. if x != nil {
  1300. return x.ConPressure_2Nd
  1301. }
  1302. return 0
  1303. }
  1304. func (x *WorkingRo) GetProductPressure_2Nd() float64 {
  1305. if x != nil {
  1306. return x.ProductPressure_2Nd
  1307. }
  1308. return 0
  1309. }
  1310. func (x *WorkingRo) GetTmp_2Nd() float64 {
  1311. if x != nil {
  1312. return x.Tmp_2Nd
  1313. }
  1314. return 0
  1315. }
  1316. func (x *WorkingRo) GetFlux_2Nd() float64 {
  1317. if x != nil {
  1318. return x.Flux_2Nd
  1319. }
  1320. return 0
  1321. }
  1322. func (x *WorkingRo) GetPermeability_2Nd() float64 {
  1323. if x != nil {
  1324. return x.Permeability_2Nd
  1325. }
  1326. return 0
  1327. }
  1328. func (x *WorkingRo) GetFeedFlow_3Th() float64 {
  1329. if x != nil {
  1330. return x.FeedFlow_3Th
  1331. }
  1332. return 0
  1333. }
  1334. func (x *WorkingRo) GetConFlow_3Th() float64 {
  1335. if x != nil {
  1336. return x.ConFlow_3Th
  1337. }
  1338. return 0
  1339. }
  1340. func (x *WorkingRo) GetProductFlow_3Th() float64 {
  1341. if x != nil {
  1342. return x.ProductFlow_3Th
  1343. }
  1344. return 0
  1345. }
  1346. func (x *WorkingRo) GetFeedPressure_3Th() float64 {
  1347. if x != nil {
  1348. return x.FeedPressure_3Th
  1349. }
  1350. return 0
  1351. }
  1352. func (x *WorkingRo) GetConPressure_3Th() float64 {
  1353. if x != nil {
  1354. return x.ConPressure_3Th
  1355. }
  1356. return 0
  1357. }
  1358. func (x *WorkingRo) GetProductPressure_3Th() float64 {
  1359. if x != nil {
  1360. return x.ProductPressure_3Th
  1361. }
  1362. return 0
  1363. }
  1364. func (x *WorkingRo) GetTmp_3Th() float64 {
  1365. if x != nil {
  1366. return x.Tmp_3Th
  1367. }
  1368. return 0
  1369. }
  1370. func (x *WorkingRo) GetFlux_3Th() float64 {
  1371. if x != nil {
  1372. return x.Flux_3Th
  1373. }
  1374. return 0
  1375. }
  1376. func (x *WorkingRo) GetPermeability_3Th() float64 {
  1377. if x != nil {
  1378. return x.Permeability_3Th
  1379. }
  1380. return 0
  1381. }
  1382. func (x *WorkingRo) GetFeedWqTurbidity() float64 {
  1383. if x != nil {
  1384. return x.FeedWqTurbidity
  1385. }
  1386. return 0
  1387. }
  1388. func (x *WorkingRo) GetFeedWqPh() int64 {
  1389. if x != nil {
  1390. return x.FeedWqPh
  1391. }
  1392. return 0
  1393. }
  1394. func (x *WorkingRo) GetProductWqPh() int64 {
  1395. if x != nil {
  1396. return x.ProductWqPh
  1397. }
  1398. return 0
  1399. }
  1400. func (x *WorkingRo) GetFeedWqAl() float64 {
  1401. if x != nil {
  1402. return x.FeedWqAl
  1403. }
  1404. return 0
  1405. }
  1406. func (x *WorkingRo) GetProductWqAl() float64 {
  1407. if x != nil {
  1408. return x.ProductWqAl
  1409. }
  1410. return 0
  1411. }
  1412. func (x *WorkingRo) GetFeedWqFe() float64 {
  1413. if x != nil {
  1414. return x.FeedWqFe
  1415. }
  1416. return 0
  1417. }
  1418. func (x *WorkingRo) GetProductWqFe() float64 {
  1419. if x != nil {
  1420. return x.ProductWqFe
  1421. }
  1422. return 0
  1423. }
  1424. func (x *WorkingRo) GetFeedWqMn() float64 {
  1425. if x != nil {
  1426. return x.FeedWqMn
  1427. }
  1428. return 0
  1429. }
  1430. func (x *WorkingRo) GetProductWqMn() float64 {
  1431. if x != nil {
  1432. return x.ProductWqMn
  1433. }
  1434. return 0
  1435. }
  1436. func (x *WorkingRo) GetFeedWqSio2() float64 {
  1437. if x != nil {
  1438. return x.FeedWqSio2
  1439. }
  1440. return 0
  1441. }
  1442. func (x *WorkingRo) GetProductWqSio2() float64 {
  1443. if x != nil {
  1444. return x.ProductWqSio2
  1445. }
  1446. return 0
  1447. }
  1448. func (x *WorkingRo) GetFeedWqCod() float64 {
  1449. if x != nil {
  1450. return x.FeedWqCod
  1451. }
  1452. return 0
  1453. }
  1454. func (x *WorkingRo) GetProductWqCod() float64 {
  1455. if x != nil {
  1456. return x.ProductWqCod
  1457. }
  1458. return 0
  1459. }
  1460. func (x *WorkingRo) GetFeedWqP() float64 {
  1461. if x != nil {
  1462. return x.FeedWqP
  1463. }
  1464. return 0
  1465. }
  1466. func (x *WorkingRo) GetProductWqP() float64 {
  1467. if x != nil {
  1468. return x.ProductWqP
  1469. }
  1470. return 0
  1471. }
  1472. func (x *WorkingRo) GetStep() int64 {
  1473. if x != nil {
  1474. return x.Step
  1475. }
  1476. return 0
  1477. }
  1478. func (x *WorkingRo) GetCTime() string {
  1479. if x != nil {
  1480. return x.CTime
  1481. }
  1482. return ""
  1483. }
  1484. type WorkingChest struct {
  1485. state protoimpl.MessageState
  1486. sizeCache protoimpl.SizeCache
  1487. unknownFields protoimpl.UnknownFields
  1488. // @gotags: json:"id"
  1489. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1490. // @gotags: json:"project_id"
  1491. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1492. // @gotags: json:"device_code"
  1493. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  1494. // @gotags: json:"switch"
  1495. Switch int64 `protobuf:"varint,4,opt,name=switch,proto3" json:"switch"` // 药箱液位开关 0: 关 1: 开
  1496. // @gotags: json:"level"
  1497. Level float64 `protobuf:"fixed64,5,opt,name=level,proto3" json:"level"` // 液位高度
  1498. // @gotags: json:"agitator_status"
  1499. AgitatorStatus int64 `protobuf:"varint,6,opt,name=agitator_status,json=agitatorStatus,proto3" json:"agitator_status"` // 搅拌器运行状态 0: 未运行 1:运行中
  1500. // @gotags: json:"agitator_duration"
  1501. AgitatorDuration int64 `protobuf:"varint,7,opt,name=agitator_duration,json=agitatorDuration,proto3" json:"agitator_duration"` // 搅拌器运行时长
  1502. // @gotags: json:"agitator_fault_status"
  1503. AgitatorFaultStatus int64 `protobuf:"varint,8,opt,name=agitator_fault_status,json=agitatorFaultStatus,proto3" json:"agitator_fault_status"` // 搅拌器故障状态 0:正常 1:故障
  1504. // @gotags: json:"c_time"
  1505. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  1506. }
  1507. func (x *WorkingChest) Reset() {
  1508. *x = WorkingChest{}
  1509. if protoimpl.UnsafeEnabled {
  1510. mi := &file_organization_proto_msgTypes[5]
  1511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1512. ms.StoreMessageInfo(mi)
  1513. }
  1514. }
  1515. func (x *WorkingChest) String() string {
  1516. return protoimpl.X.MessageStringOf(x)
  1517. }
  1518. func (*WorkingChest) ProtoMessage() {}
  1519. func (x *WorkingChest) ProtoReflect() protoreflect.Message {
  1520. mi := &file_organization_proto_msgTypes[5]
  1521. if protoimpl.UnsafeEnabled && x != nil {
  1522. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1523. if ms.LoadMessageInfo() == nil {
  1524. ms.StoreMessageInfo(mi)
  1525. }
  1526. return ms
  1527. }
  1528. return mi.MessageOf(x)
  1529. }
  1530. // Deprecated: Use WorkingChest.ProtoReflect.Descriptor instead.
  1531. func (*WorkingChest) Descriptor() ([]byte, []int) {
  1532. return file_organization_proto_rawDescGZIP(), []int{5}
  1533. }
  1534. func (x *WorkingChest) GetId() int64 {
  1535. if x != nil {
  1536. return x.Id
  1537. }
  1538. return 0
  1539. }
  1540. func (x *WorkingChest) GetProjectId() int64 {
  1541. if x != nil {
  1542. return x.ProjectId
  1543. }
  1544. return 0
  1545. }
  1546. func (x *WorkingChest) GetDeviceCode() string {
  1547. if x != nil {
  1548. return x.DeviceCode
  1549. }
  1550. return ""
  1551. }
  1552. func (x *WorkingChest) GetSwitch() int64 {
  1553. if x != nil {
  1554. return x.Switch
  1555. }
  1556. return 0
  1557. }
  1558. func (x *WorkingChest) GetLevel() float64 {
  1559. if x != nil {
  1560. return x.Level
  1561. }
  1562. return 0
  1563. }
  1564. func (x *WorkingChest) GetAgitatorStatus() int64 {
  1565. if x != nil {
  1566. return x.AgitatorStatus
  1567. }
  1568. return 0
  1569. }
  1570. func (x *WorkingChest) GetAgitatorDuration() int64 {
  1571. if x != nil {
  1572. return x.AgitatorDuration
  1573. }
  1574. return 0
  1575. }
  1576. func (x *WorkingChest) GetAgitatorFaultStatus() int64 {
  1577. if x != nil {
  1578. return x.AgitatorFaultStatus
  1579. }
  1580. return 0
  1581. }
  1582. func (x *WorkingChest) GetCTime() string {
  1583. if x != nil {
  1584. return x.CTime
  1585. }
  1586. return ""
  1587. }
  1588. type WorkingPump struct {
  1589. state protoimpl.MessageState
  1590. sizeCache protoimpl.SizeCache
  1591. unknownFields protoimpl.UnknownFields
  1592. // @gotags: json:"id"
  1593. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1594. // @gotags: json:"project_id"
  1595. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1596. // @gotags: json:"device_code"
  1597. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  1598. // @gotags: json:"feed_pressure"
  1599. FeedPressure float64 `protobuf:"fixed64,4,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure"` // 进水压力
  1600. // @gotags: json:"out_pressure"
  1601. OutPressure float64 `protobuf:"fixed64,5,opt,name=out_pressure,json=outPressure,proto3" json:"out_pressure"` // 出水压力
  1602. // @gotags: json:"duration"
  1603. Duration int64 `protobuf:"varint,6,opt,name=duration,proto3" json:"duration"` // 运行时长 单位 s
  1604. // @gotags: json:"current"
  1605. Current float64 `protobuf:"fixed64,7,opt,name=current,proto3" json:"current"` // 运行电流
  1606. // @gotags: json:"frequency"
  1607. Frequency float64 `protobuf:"fixed64,8,opt,name=frequency,proto3" json:"frequency"` // 运行频率
  1608. // @gotags: json:"lift"
  1609. Lift float64 `protobuf:"fixed64,9,opt,name=lift,proto3" json:"lift"` // 工作扬程
  1610. // @gotags: json:"efficiency"
  1611. Efficiency float64 `protobuf:"fixed64,10,opt,name=efficiency,proto3" json:"efficiency"` // 运行效率
  1612. // @gotags: json:"run_status"
  1613. RunStatus int64 `protobuf:"varint,11,opt,name=run_status,json=runStatus,proto3" json:"run_status"` // 运行状态 0: 停机 1: 运行正常
  1614. // @gotags: json:"fault_status"
  1615. FaultStatus int64 `protobuf:"varint,12,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status"` // 故障状态 0: 正常 1: 故障
  1616. // @gotags: json:"c_time"
  1617. CTime string `protobuf:"bytes,13,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  1618. }
  1619. func (x *WorkingPump) Reset() {
  1620. *x = WorkingPump{}
  1621. if protoimpl.UnsafeEnabled {
  1622. mi := &file_organization_proto_msgTypes[6]
  1623. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1624. ms.StoreMessageInfo(mi)
  1625. }
  1626. }
  1627. func (x *WorkingPump) String() string {
  1628. return protoimpl.X.MessageStringOf(x)
  1629. }
  1630. func (*WorkingPump) ProtoMessage() {}
  1631. func (x *WorkingPump) ProtoReflect() protoreflect.Message {
  1632. mi := &file_organization_proto_msgTypes[6]
  1633. if protoimpl.UnsafeEnabled && x != nil {
  1634. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1635. if ms.LoadMessageInfo() == nil {
  1636. ms.StoreMessageInfo(mi)
  1637. }
  1638. return ms
  1639. }
  1640. return mi.MessageOf(x)
  1641. }
  1642. // Deprecated: Use WorkingPump.ProtoReflect.Descriptor instead.
  1643. func (*WorkingPump) Descriptor() ([]byte, []int) {
  1644. return file_organization_proto_rawDescGZIP(), []int{6}
  1645. }
  1646. func (x *WorkingPump) GetId() int64 {
  1647. if x != nil {
  1648. return x.Id
  1649. }
  1650. return 0
  1651. }
  1652. func (x *WorkingPump) GetProjectId() int64 {
  1653. if x != nil {
  1654. return x.ProjectId
  1655. }
  1656. return 0
  1657. }
  1658. func (x *WorkingPump) GetDeviceCode() string {
  1659. if x != nil {
  1660. return x.DeviceCode
  1661. }
  1662. return ""
  1663. }
  1664. func (x *WorkingPump) GetFeedPressure() float64 {
  1665. if x != nil {
  1666. return x.FeedPressure
  1667. }
  1668. return 0
  1669. }
  1670. func (x *WorkingPump) GetOutPressure() float64 {
  1671. if x != nil {
  1672. return x.OutPressure
  1673. }
  1674. return 0
  1675. }
  1676. func (x *WorkingPump) GetDuration() int64 {
  1677. if x != nil {
  1678. return x.Duration
  1679. }
  1680. return 0
  1681. }
  1682. func (x *WorkingPump) GetCurrent() float64 {
  1683. if x != nil {
  1684. return x.Current
  1685. }
  1686. return 0
  1687. }
  1688. func (x *WorkingPump) GetFrequency() float64 {
  1689. if x != nil {
  1690. return x.Frequency
  1691. }
  1692. return 0
  1693. }
  1694. func (x *WorkingPump) GetLift() float64 {
  1695. if x != nil {
  1696. return x.Lift
  1697. }
  1698. return 0
  1699. }
  1700. func (x *WorkingPump) GetEfficiency() float64 {
  1701. if x != nil {
  1702. return x.Efficiency
  1703. }
  1704. return 0
  1705. }
  1706. func (x *WorkingPump) GetRunStatus() int64 {
  1707. if x != nil {
  1708. return x.RunStatus
  1709. }
  1710. return 0
  1711. }
  1712. func (x *WorkingPump) GetFaultStatus() int64 {
  1713. if x != nil {
  1714. return x.FaultStatus
  1715. }
  1716. return 0
  1717. }
  1718. func (x *WorkingPump) GetCTime() string {
  1719. if x != nil {
  1720. return x.CTime
  1721. }
  1722. return ""
  1723. }
  1724. type WorkingValve struct {
  1725. state protoimpl.MessageState
  1726. sizeCache protoimpl.SizeCache
  1727. unknownFields protoimpl.UnknownFields
  1728. // @gotags: json:"id"
  1729. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1730. // @gotags: json:"project_id"
  1731. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1732. // @gotags: json:"device_code"
  1733. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  1734. // @gotags: json:"adjust"
  1735. Adjust int64 `protobuf:"varint,4,opt,name=adjust,proto3" json:"adjust"` // 是否为调节阀门 0: 否 1: 是
  1736. // @gotags: json:"opening"
  1737. Opening float64 `protobuf:"fixed64,5,opt,name=opening,proto3" json:"opening"` // 当前阀门的开度
  1738. // @gotags: json:"closed"
  1739. Closed int64 `protobuf:"varint,6,opt,name=closed,proto3" json:"closed"` // 关到位 全关 0: 否 1: 是
  1740. // @gotags: json:"opened"
  1741. Opened int64 `protobuf:"varint,7,opt,name=opened,proto3" json:"opened"` // 开到位 开到 设置的开度 0: 否 1: 是
  1742. // @gotags: json:"fault_status"
  1743. FaultStatus int64 `protobuf:"varint,8,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status"` // 是否故障 0: 否 1: 是
  1744. // @gotags: json:"c_time"
  1745. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  1746. }
  1747. func (x *WorkingValve) Reset() {
  1748. *x = WorkingValve{}
  1749. if protoimpl.UnsafeEnabled {
  1750. mi := &file_organization_proto_msgTypes[7]
  1751. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1752. ms.StoreMessageInfo(mi)
  1753. }
  1754. }
  1755. func (x *WorkingValve) String() string {
  1756. return protoimpl.X.MessageStringOf(x)
  1757. }
  1758. func (*WorkingValve) ProtoMessage() {}
  1759. func (x *WorkingValve) ProtoReflect() protoreflect.Message {
  1760. mi := &file_organization_proto_msgTypes[7]
  1761. if protoimpl.UnsafeEnabled && x != nil {
  1762. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1763. if ms.LoadMessageInfo() == nil {
  1764. ms.StoreMessageInfo(mi)
  1765. }
  1766. return ms
  1767. }
  1768. return mi.MessageOf(x)
  1769. }
  1770. // Deprecated: Use WorkingValve.ProtoReflect.Descriptor instead.
  1771. func (*WorkingValve) Descriptor() ([]byte, []int) {
  1772. return file_organization_proto_rawDescGZIP(), []int{7}
  1773. }
  1774. func (x *WorkingValve) GetId() int64 {
  1775. if x != nil {
  1776. return x.Id
  1777. }
  1778. return 0
  1779. }
  1780. func (x *WorkingValve) GetProjectId() int64 {
  1781. if x != nil {
  1782. return x.ProjectId
  1783. }
  1784. return 0
  1785. }
  1786. func (x *WorkingValve) GetDeviceCode() string {
  1787. if x != nil {
  1788. return x.DeviceCode
  1789. }
  1790. return ""
  1791. }
  1792. func (x *WorkingValve) GetAdjust() int64 {
  1793. if x != nil {
  1794. return x.Adjust
  1795. }
  1796. return 0
  1797. }
  1798. func (x *WorkingValve) GetOpening() float64 {
  1799. if x != nil {
  1800. return x.Opening
  1801. }
  1802. return 0
  1803. }
  1804. func (x *WorkingValve) GetClosed() int64 {
  1805. if x != nil {
  1806. return x.Closed
  1807. }
  1808. return 0
  1809. }
  1810. func (x *WorkingValve) GetOpened() int64 {
  1811. if x != nil {
  1812. return x.Opened
  1813. }
  1814. return 0
  1815. }
  1816. func (x *WorkingValve) GetFaultStatus() int64 {
  1817. if x != nil {
  1818. return x.FaultStatus
  1819. }
  1820. return 0
  1821. }
  1822. func (x *WorkingValve) GetCTime() string {
  1823. if x != nil {
  1824. return x.CTime
  1825. }
  1826. return ""
  1827. }
  1828. type ItemHistoryData struct {
  1829. state protoimpl.MessageState
  1830. sizeCache protoimpl.SizeCache
  1831. unknownFields protoimpl.UnknownFields
  1832. // @gotags: json:"project_id"
  1833. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1834. // @gotags: json:"item_name"
  1835. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  1836. // @gotags: json:"val"
  1837. Val float64 `protobuf:"fixed64,3,opt,name=val,proto3" json:"val"`
  1838. // @gotags: json:"h_time"
  1839. HTime string `protobuf:"bytes,4,opt,name=h_time,json=hTime,proto3" json:"h_time"`
  1840. }
  1841. func (x *ItemHistoryData) Reset() {
  1842. *x = ItemHistoryData{}
  1843. if protoimpl.UnsafeEnabled {
  1844. mi := &file_organization_proto_msgTypes[8]
  1845. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1846. ms.StoreMessageInfo(mi)
  1847. }
  1848. }
  1849. func (x *ItemHistoryData) String() string {
  1850. return protoimpl.X.MessageStringOf(x)
  1851. }
  1852. func (*ItemHistoryData) ProtoMessage() {}
  1853. func (x *ItemHistoryData) ProtoReflect() protoreflect.Message {
  1854. mi := &file_organization_proto_msgTypes[8]
  1855. if protoimpl.UnsafeEnabled && x != nil {
  1856. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1857. if ms.LoadMessageInfo() == nil {
  1858. ms.StoreMessageInfo(mi)
  1859. }
  1860. return ms
  1861. }
  1862. return mi.MessageOf(x)
  1863. }
  1864. // Deprecated: Use ItemHistoryData.ProtoReflect.Descriptor instead.
  1865. func (*ItemHistoryData) Descriptor() ([]byte, []int) {
  1866. return file_organization_proto_rawDescGZIP(), []int{8}
  1867. }
  1868. func (x *ItemHistoryData) GetProjectId() int64 {
  1869. if x != nil {
  1870. return x.ProjectId
  1871. }
  1872. return 0
  1873. }
  1874. func (x *ItemHistoryData) GetItemName() string {
  1875. if x != nil {
  1876. return x.ItemName
  1877. }
  1878. return ""
  1879. }
  1880. func (x *ItemHistoryData) GetVal() float64 {
  1881. if x != nil {
  1882. return x.Val
  1883. }
  1884. return 0
  1885. }
  1886. func (x *ItemHistoryData) GetHTime() string {
  1887. if x != nil {
  1888. return x.HTime
  1889. }
  1890. return ""
  1891. }
  1892. type MultiAddItemHistoryDataReq struct {
  1893. state protoimpl.MessageState
  1894. sizeCache protoimpl.SizeCache
  1895. unknownFields protoimpl.UnknownFields
  1896. // @gotags: json:"project_id"
  1897. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1898. // @gotags: json:"list"
  1899. List []*ItemHistoryData `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  1900. }
  1901. func (x *MultiAddItemHistoryDataReq) Reset() {
  1902. *x = MultiAddItemHistoryDataReq{}
  1903. if protoimpl.UnsafeEnabled {
  1904. mi := &file_organization_proto_msgTypes[9]
  1905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1906. ms.StoreMessageInfo(mi)
  1907. }
  1908. }
  1909. func (x *MultiAddItemHistoryDataReq) String() string {
  1910. return protoimpl.X.MessageStringOf(x)
  1911. }
  1912. func (*MultiAddItemHistoryDataReq) ProtoMessage() {}
  1913. func (x *MultiAddItemHistoryDataReq) ProtoReflect() protoreflect.Message {
  1914. mi := &file_organization_proto_msgTypes[9]
  1915. if protoimpl.UnsafeEnabled && x != nil {
  1916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1917. if ms.LoadMessageInfo() == nil {
  1918. ms.StoreMessageInfo(mi)
  1919. }
  1920. return ms
  1921. }
  1922. return mi.MessageOf(x)
  1923. }
  1924. // Deprecated: Use MultiAddItemHistoryDataReq.ProtoReflect.Descriptor instead.
  1925. func (*MultiAddItemHistoryDataReq) Descriptor() ([]byte, []int) {
  1926. return file_organization_proto_rawDescGZIP(), []int{9}
  1927. }
  1928. func (x *MultiAddItemHistoryDataReq) GetProjectId() int64 {
  1929. if x != nil {
  1930. return x.ProjectId
  1931. }
  1932. return 0
  1933. }
  1934. func (x *MultiAddItemHistoryDataReq) GetList() []*ItemHistoryData {
  1935. if x != nil {
  1936. return x.List
  1937. }
  1938. return nil
  1939. }
  1940. type MultiAddItemHistoryDataResp struct {
  1941. state protoimpl.MessageState
  1942. sizeCache protoimpl.SizeCache
  1943. unknownFields protoimpl.UnknownFields
  1944. }
  1945. func (x *MultiAddItemHistoryDataResp) Reset() {
  1946. *x = MultiAddItemHistoryDataResp{}
  1947. if protoimpl.UnsafeEnabled {
  1948. mi := &file_organization_proto_msgTypes[10]
  1949. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1950. ms.StoreMessageInfo(mi)
  1951. }
  1952. }
  1953. func (x *MultiAddItemHistoryDataResp) String() string {
  1954. return protoimpl.X.MessageStringOf(x)
  1955. }
  1956. func (*MultiAddItemHistoryDataResp) ProtoMessage() {}
  1957. func (x *MultiAddItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  1958. mi := &file_organization_proto_msgTypes[10]
  1959. if protoimpl.UnsafeEnabled && x != nil {
  1960. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1961. if ms.LoadMessageInfo() == nil {
  1962. ms.StoreMessageInfo(mi)
  1963. }
  1964. return ms
  1965. }
  1966. return mi.MessageOf(x)
  1967. }
  1968. // Deprecated: Use MultiAddItemHistoryDataResp.ProtoReflect.Descriptor instead.
  1969. func (*MultiAddItemHistoryDataResp) Descriptor() ([]byte, []int) {
  1970. return file_organization_proto_rawDescGZIP(), []int{10}
  1971. }
  1972. type ItemHistoryDataListReq struct {
  1973. state protoimpl.MessageState
  1974. sizeCache protoimpl.SizeCache
  1975. unknownFields protoimpl.UnknownFields
  1976. // @gotags: json:"project_id"
  1977. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1978. // @gotags: json:"item_name"
  1979. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  1980. // @gotags: json:"interval"
  1981. Interval string `protobuf:"bytes,3,opt,name=interval,proto3" json:"interval"` //时间单位 s,minute,h,day
  1982. // @gotags: json:"aggregator"
  1983. Aggregator string `protobuf:"bytes,4,opt,name=aggregator,proto3" json:"aggregator"` //聚合方式 min,max,avg,sum,realtime, new
  1984. // @gotags: json:"stime"
  1985. Stime string `protobuf:"bytes,5,opt,name=stime,proto3" json:"stime"`
  1986. // @gotags: json:"etime"
  1987. Etime string `protobuf:"bytes,6,opt,name=etime,proto3" json:"etime"`
  1988. // @gotags: json:"size"
  1989. Size int64 `protobuf:"varint,7,opt,name=size,proto3" json:"size"`
  1990. }
  1991. func (x *ItemHistoryDataListReq) Reset() {
  1992. *x = ItemHistoryDataListReq{}
  1993. if protoimpl.UnsafeEnabled {
  1994. mi := &file_organization_proto_msgTypes[11]
  1995. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1996. ms.StoreMessageInfo(mi)
  1997. }
  1998. }
  1999. func (x *ItemHistoryDataListReq) String() string {
  2000. return protoimpl.X.MessageStringOf(x)
  2001. }
  2002. func (*ItemHistoryDataListReq) ProtoMessage() {}
  2003. func (x *ItemHistoryDataListReq) ProtoReflect() protoreflect.Message {
  2004. mi := &file_organization_proto_msgTypes[11]
  2005. if protoimpl.UnsafeEnabled && x != nil {
  2006. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2007. if ms.LoadMessageInfo() == nil {
  2008. ms.StoreMessageInfo(mi)
  2009. }
  2010. return ms
  2011. }
  2012. return mi.MessageOf(x)
  2013. }
  2014. // Deprecated: Use ItemHistoryDataListReq.ProtoReflect.Descriptor instead.
  2015. func (*ItemHistoryDataListReq) Descriptor() ([]byte, []int) {
  2016. return file_organization_proto_rawDescGZIP(), []int{11}
  2017. }
  2018. func (x *ItemHistoryDataListReq) GetProjectId() int64 {
  2019. if x != nil {
  2020. return x.ProjectId
  2021. }
  2022. return 0
  2023. }
  2024. func (x *ItemHistoryDataListReq) GetItemName() string {
  2025. if x != nil {
  2026. return x.ItemName
  2027. }
  2028. return ""
  2029. }
  2030. func (x *ItemHistoryDataListReq) GetInterval() string {
  2031. if x != nil {
  2032. return x.Interval
  2033. }
  2034. return ""
  2035. }
  2036. func (x *ItemHistoryDataListReq) GetAggregator() string {
  2037. if x != nil {
  2038. return x.Aggregator
  2039. }
  2040. return ""
  2041. }
  2042. func (x *ItemHistoryDataListReq) GetStime() string {
  2043. if x != nil {
  2044. return x.Stime
  2045. }
  2046. return ""
  2047. }
  2048. func (x *ItemHistoryDataListReq) GetEtime() string {
  2049. if x != nil {
  2050. return x.Etime
  2051. }
  2052. return ""
  2053. }
  2054. func (x *ItemHistoryDataListReq) GetSize() int64 {
  2055. if x != nil {
  2056. return x.Size
  2057. }
  2058. return 0
  2059. }
  2060. type ItemHistoryDataByTimeReq struct {
  2061. state protoimpl.MessageState
  2062. sizeCache protoimpl.SizeCache
  2063. unknownFields protoimpl.UnknownFields
  2064. // @gotags: json:"project_id"
  2065. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  2066. // @gotags: json:"item_name"
  2067. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  2068. // @gotags: json:"stime"
  2069. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime"`
  2070. // @gotags: json:"etime"
  2071. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime"`
  2072. }
  2073. func (x *ItemHistoryDataByTimeReq) Reset() {
  2074. *x = ItemHistoryDataByTimeReq{}
  2075. if protoimpl.UnsafeEnabled {
  2076. mi := &file_organization_proto_msgTypes[12]
  2077. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2078. ms.StoreMessageInfo(mi)
  2079. }
  2080. }
  2081. func (x *ItemHistoryDataByTimeReq) String() string {
  2082. return protoimpl.X.MessageStringOf(x)
  2083. }
  2084. func (*ItemHistoryDataByTimeReq) ProtoMessage() {}
  2085. func (x *ItemHistoryDataByTimeReq) ProtoReflect() protoreflect.Message {
  2086. mi := &file_organization_proto_msgTypes[12]
  2087. if protoimpl.UnsafeEnabled && x != nil {
  2088. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2089. if ms.LoadMessageInfo() == nil {
  2090. ms.StoreMessageInfo(mi)
  2091. }
  2092. return ms
  2093. }
  2094. return mi.MessageOf(x)
  2095. }
  2096. // Deprecated: Use ItemHistoryDataByTimeReq.ProtoReflect.Descriptor instead.
  2097. func (*ItemHistoryDataByTimeReq) Descriptor() ([]byte, []int) {
  2098. return file_organization_proto_rawDescGZIP(), []int{12}
  2099. }
  2100. func (x *ItemHistoryDataByTimeReq) GetProjectId() int64 {
  2101. if x != nil {
  2102. return x.ProjectId
  2103. }
  2104. return 0
  2105. }
  2106. func (x *ItemHistoryDataByTimeReq) GetItemName() string {
  2107. if x != nil {
  2108. return x.ItemName
  2109. }
  2110. return ""
  2111. }
  2112. func (x *ItemHistoryDataByTimeReq) GetStime() string {
  2113. if x != nil {
  2114. return x.Stime
  2115. }
  2116. return ""
  2117. }
  2118. func (x *ItemHistoryDataByTimeReq) GetEtime() string {
  2119. if x != nil {
  2120. return x.Etime
  2121. }
  2122. return ""
  2123. }
  2124. type ItemHistoryDataMaxMinResp struct {
  2125. state protoimpl.MessageState
  2126. sizeCache protoimpl.SizeCache
  2127. unknownFields protoimpl.UnknownFields
  2128. // @gotags: json:"max_val"
  2129. MaxVal float64 `protobuf:"fixed64,1,opt,name=max_val,json=maxVal,proto3" json:"max_val"`
  2130. // @gotags: json:"min_val"
  2131. MinVal float64 `protobuf:"fixed64,2,opt,name=min_val,json=minVal,proto3" json:"min_val"`
  2132. // @gotags: json:"avg_val"
  2133. AvgVal float64 `protobuf:"fixed64,3,opt,name=avg_val,json=avgVal,proto3" json:"avg_val"`
  2134. }
  2135. func (x *ItemHistoryDataMaxMinResp) Reset() {
  2136. *x = ItemHistoryDataMaxMinResp{}
  2137. if protoimpl.UnsafeEnabled {
  2138. mi := &file_organization_proto_msgTypes[13]
  2139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2140. ms.StoreMessageInfo(mi)
  2141. }
  2142. }
  2143. func (x *ItemHistoryDataMaxMinResp) String() string {
  2144. return protoimpl.X.MessageStringOf(x)
  2145. }
  2146. func (*ItemHistoryDataMaxMinResp) ProtoMessage() {}
  2147. func (x *ItemHistoryDataMaxMinResp) ProtoReflect() protoreflect.Message {
  2148. mi := &file_organization_proto_msgTypes[13]
  2149. if protoimpl.UnsafeEnabled && x != nil {
  2150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2151. if ms.LoadMessageInfo() == nil {
  2152. ms.StoreMessageInfo(mi)
  2153. }
  2154. return ms
  2155. }
  2156. return mi.MessageOf(x)
  2157. }
  2158. // Deprecated: Use ItemHistoryDataMaxMinResp.ProtoReflect.Descriptor instead.
  2159. func (*ItemHistoryDataMaxMinResp) Descriptor() ([]byte, []int) {
  2160. return file_organization_proto_rawDescGZIP(), []int{13}
  2161. }
  2162. func (x *ItemHistoryDataMaxMinResp) GetMaxVal() float64 {
  2163. if x != nil {
  2164. return x.MaxVal
  2165. }
  2166. return 0
  2167. }
  2168. func (x *ItemHistoryDataMaxMinResp) GetMinVal() float64 {
  2169. if x != nil {
  2170. return x.MinVal
  2171. }
  2172. return 0
  2173. }
  2174. func (x *ItemHistoryDataMaxMinResp) GetAvgVal() float64 {
  2175. if x != nil {
  2176. return x.AvgVal
  2177. }
  2178. return 0
  2179. }
  2180. type ItemHistoryDataFirstLastResp struct {
  2181. state protoimpl.MessageState
  2182. sizeCache protoimpl.SizeCache
  2183. unknownFields protoimpl.UnknownFields
  2184. // @gotags: json:"first"
  2185. First float64 `protobuf:"fixed64,1,opt,name=first,proto3" json:"first"`
  2186. // @gotags: json:"last"
  2187. Last float64 `protobuf:"fixed64,2,opt,name=last,proto3" json:"last"`
  2188. }
  2189. func (x *ItemHistoryDataFirstLastResp) Reset() {
  2190. *x = ItemHistoryDataFirstLastResp{}
  2191. if protoimpl.UnsafeEnabled {
  2192. mi := &file_organization_proto_msgTypes[14]
  2193. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2194. ms.StoreMessageInfo(mi)
  2195. }
  2196. }
  2197. func (x *ItemHistoryDataFirstLastResp) String() string {
  2198. return protoimpl.X.MessageStringOf(x)
  2199. }
  2200. func (*ItemHistoryDataFirstLastResp) ProtoMessage() {}
  2201. func (x *ItemHistoryDataFirstLastResp) ProtoReflect() protoreflect.Message {
  2202. mi := &file_organization_proto_msgTypes[14]
  2203. if protoimpl.UnsafeEnabled && x != nil {
  2204. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2205. if ms.LoadMessageInfo() == nil {
  2206. ms.StoreMessageInfo(mi)
  2207. }
  2208. return ms
  2209. }
  2210. return mi.MessageOf(x)
  2211. }
  2212. // Deprecated: Use ItemHistoryDataFirstLastResp.ProtoReflect.Descriptor instead.
  2213. func (*ItemHistoryDataFirstLastResp) Descriptor() ([]byte, []int) {
  2214. return file_organization_proto_rawDescGZIP(), []int{14}
  2215. }
  2216. func (x *ItemHistoryDataFirstLastResp) GetFirst() float64 {
  2217. if x != nil {
  2218. return x.First
  2219. }
  2220. return 0
  2221. }
  2222. func (x *ItemHistoryDataFirstLastResp) GetLast() float64 {
  2223. if x != nil {
  2224. return x.Last
  2225. }
  2226. return 0
  2227. }
  2228. type ChangeTypeItemHistoryDataResp struct {
  2229. state protoimpl.MessageState
  2230. sizeCache protoimpl.SizeCache
  2231. unknownFields protoimpl.UnknownFields
  2232. // @gotags: json:"value"
  2233. Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value"`
  2234. }
  2235. func (x *ChangeTypeItemHistoryDataResp) Reset() {
  2236. *x = ChangeTypeItemHistoryDataResp{}
  2237. if protoimpl.UnsafeEnabled {
  2238. mi := &file_organization_proto_msgTypes[15]
  2239. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2240. ms.StoreMessageInfo(mi)
  2241. }
  2242. }
  2243. func (x *ChangeTypeItemHistoryDataResp) String() string {
  2244. return protoimpl.X.MessageStringOf(x)
  2245. }
  2246. func (*ChangeTypeItemHistoryDataResp) ProtoMessage() {}
  2247. func (x *ChangeTypeItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  2248. mi := &file_organization_proto_msgTypes[15]
  2249. if protoimpl.UnsafeEnabled && x != nil {
  2250. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2251. if ms.LoadMessageInfo() == nil {
  2252. ms.StoreMessageInfo(mi)
  2253. }
  2254. return ms
  2255. }
  2256. return mi.MessageOf(x)
  2257. }
  2258. // Deprecated: Use ChangeTypeItemHistoryDataResp.ProtoReflect.Descriptor instead.
  2259. func (*ChangeTypeItemHistoryDataResp) Descriptor() ([]byte, []int) {
  2260. return file_organization_proto_rawDescGZIP(), []int{15}
  2261. }
  2262. func (x *ChangeTypeItemHistoryDataResp) GetValue() float64 {
  2263. if x != nil {
  2264. return x.Value
  2265. }
  2266. return 0
  2267. }
  2268. type ItemHistoryDataList struct {
  2269. state protoimpl.MessageState
  2270. sizeCache protoimpl.SizeCache
  2271. unknownFields protoimpl.UnknownFields
  2272. // @gotags: json:"item_name"
  2273. ItemName string `protobuf:"bytes,1,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  2274. // @gotags: json:"val"
  2275. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val"`
  2276. // @gotags: json:"h_time"
  2277. HTime string `protobuf:"bytes,3,opt,name=h_time,json=hTime,proto3" json:"h_time"`
  2278. }
  2279. func (x *ItemHistoryDataList) Reset() {
  2280. *x = ItemHistoryDataList{}
  2281. if protoimpl.UnsafeEnabled {
  2282. mi := &file_organization_proto_msgTypes[16]
  2283. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2284. ms.StoreMessageInfo(mi)
  2285. }
  2286. }
  2287. func (x *ItemHistoryDataList) String() string {
  2288. return protoimpl.X.MessageStringOf(x)
  2289. }
  2290. func (*ItemHistoryDataList) ProtoMessage() {}
  2291. func (x *ItemHistoryDataList) ProtoReflect() protoreflect.Message {
  2292. mi := &file_organization_proto_msgTypes[16]
  2293. if protoimpl.UnsafeEnabled && x != nil {
  2294. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2295. if ms.LoadMessageInfo() == nil {
  2296. ms.StoreMessageInfo(mi)
  2297. }
  2298. return ms
  2299. }
  2300. return mi.MessageOf(x)
  2301. }
  2302. // Deprecated: Use ItemHistoryDataList.ProtoReflect.Descriptor instead.
  2303. func (*ItemHistoryDataList) Descriptor() ([]byte, []int) {
  2304. return file_organization_proto_rawDescGZIP(), []int{16}
  2305. }
  2306. func (x *ItemHistoryDataList) GetItemName() string {
  2307. if x != nil {
  2308. return x.ItemName
  2309. }
  2310. return ""
  2311. }
  2312. func (x *ItemHistoryDataList) GetVal() float64 {
  2313. if x != nil {
  2314. return x.Val
  2315. }
  2316. return 0
  2317. }
  2318. func (x *ItemHistoryDataList) GetHTime() string {
  2319. if x != nil {
  2320. return x.HTime
  2321. }
  2322. return ""
  2323. }
  2324. type ItemHistoryDataForChart struct {
  2325. state protoimpl.MessageState
  2326. sizeCache protoimpl.SizeCache
  2327. unknownFields protoimpl.UnknownFields
  2328. // @gotags: json:"name"
  2329. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name"`
  2330. // @gotags: json:"val"
  2331. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val"`
  2332. // @gotags: json:"htime_at"
  2333. HtimeAt string `protobuf:"bytes,3,opt,name=htime_at,json=htimeAt,proto3" json:"htime_at"`
  2334. }
  2335. func (x *ItemHistoryDataForChart) Reset() {
  2336. *x = ItemHistoryDataForChart{}
  2337. if protoimpl.UnsafeEnabled {
  2338. mi := &file_organization_proto_msgTypes[17]
  2339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2340. ms.StoreMessageInfo(mi)
  2341. }
  2342. }
  2343. func (x *ItemHistoryDataForChart) String() string {
  2344. return protoimpl.X.MessageStringOf(x)
  2345. }
  2346. func (*ItemHistoryDataForChart) ProtoMessage() {}
  2347. func (x *ItemHistoryDataForChart) ProtoReflect() protoreflect.Message {
  2348. mi := &file_organization_proto_msgTypes[17]
  2349. if protoimpl.UnsafeEnabled && x != nil {
  2350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2351. if ms.LoadMessageInfo() == nil {
  2352. ms.StoreMessageInfo(mi)
  2353. }
  2354. return ms
  2355. }
  2356. return mi.MessageOf(x)
  2357. }
  2358. // Deprecated: Use ItemHistoryDataForChart.ProtoReflect.Descriptor instead.
  2359. func (*ItemHistoryDataForChart) Descriptor() ([]byte, []int) {
  2360. return file_organization_proto_rawDescGZIP(), []int{17}
  2361. }
  2362. func (x *ItemHistoryDataForChart) GetName() string {
  2363. if x != nil {
  2364. return x.Name
  2365. }
  2366. return ""
  2367. }
  2368. func (x *ItemHistoryDataForChart) GetVal() float64 {
  2369. if x != nil {
  2370. return x.Val
  2371. }
  2372. return 0
  2373. }
  2374. func (x *ItemHistoryDataForChart) GetHtimeAt() string {
  2375. if x != nil {
  2376. return x.HtimeAt
  2377. }
  2378. return ""
  2379. }
  2380. type ItemHistoryDataForChartReq struct {
  2381. state protoimpl.MessageState
  2382. sizeCache protoimpl.SizeCache
  2383. unknownFields protoimpl.UnknownFields
  2384. // @gotags: json:"project_id"
  2385. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  2386. // @gotags: json:"item_name"
  2387. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  2388. // @gotags: json:"stime"
  2389. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime"`
  2390. // @gotags: json:"etime"
  2391. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime"`
  2392. // @gotags: json:"interval"
  2393. Interval string `protobuf:"bytes,5,opt,name=interval,proto3" json:"interval"`
  2394. // @gotags: json:"size"
  2395. Size int64 `protobuf:"varint,6,opt,name=size,proto3" json:"size"`
  2396. // @gotags: json:"aggregator"
  2397. Aggregator string `protobuf:"bytes,7,opt,name=aggregator,proto3" json:"aggregator"`
  2398. }
  2399. func (x *ItemHistoryDataForChartReq) Reset() {
  2400. *x = ItemHistoryDataForChartReq{}
  2401. if protoimpl.UnsafeEnabled {
  2402. mi := &file_organization_proto_msgTypes[18]
  2403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2404. ms.StoreMessageInfo(mi)
  2405. }
  2406. }
  2407. func (x *ItemHistoryDataForChartReq) String() string {
  2408. return protoimpl.X.MessageStringOf(x)
  2409. }
  2410. func (*ItemHistoryDataForChartReq) ProtoMessage() {}
  2411. func (x *ItemHistoryDataForChartReq) ProtoReflect() protoreflect.Message {
  2412. mi := &file_organization_proto_msgTypes[18]
  2413. if protoimpl.UnsafeEnabled && x != nil {
  2414. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2415. if ms.LoadMessageInfo() == nil {
  2416. ms.StoreMessageInfo(mi)
  2417. }
  2418. return ms
  2419. }
  2420. return mi.MessageOf(x)
  2421. }
  2422. // Deprecated: Use ItemHistoryDataForChartReq.ProtoReflect.Descriptor instead.
  2423. func (*ItemHistoryDataForChartReq) Descriptor() ([]byte, []int) {
  2424. return file_organization_proto_rawDescGZIP(), []int{18}
  2425. }
  2426. func (x *ItemHistoryDataForChartReq) GetProjectId() int64 {
  2427. if x != nil {
  2428. return x.ProjectId
  2429. }
  2430. return 0
  2431. }
  2432. func (x *ItemHistoryDataForChartReq) GetItemName() string {
  2433. if x != nil {
  2434. return x.ItemName
  2435. }
  2436. return ""
  2437. }
  2438. func (x *ItemHistoryDataForChartReq) GetStime() string {
  2439. if x != nil {
  2440. return x.Stime
  2441. }
  2442. return ""
  2443. }
  2444. func (x *ItemHistoryDataForChartReq) GetEtime() string {
  2445. if x != nil {
  2446. return x.Etime
  2447. }
  2448. return ""
  2449. }
  2450. func (x *ItemHistoryDataForChartReq) GetInterval() string {
  2451. if x != nil {
  2452. return x.Interval
  2453. }
  2454. return ""
  2455. }
  2456. func (x *ItemHistoryDataForChartReq) GetSize() int64 {
  2457. if x != nil {
  2458. return x.Size
  2459. }
  2460. return 0
  2461. }
  2462. func (x *ItemHistoryDataForChartReq) GetAggregator() string {
  2463. if x != nil {
  2464. return x.Aggregator
  2465. }
  2466. return ""
  2467. }
  2468. type ItemHistoryDataForChartResp struct {
  2469. state protoimpl.MessageState
  2470. sizeCache protoimpl.SizeCache
  2471. unknownFields protoimpl.UnknownFields
  2472. // @gotags: json:"list"
  2473. List []*ItemHistoryDataForChart `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2474. }
  2475. func (x *ItemHistoryDataForChartResp) Reset() {
  2476. *x = ItemHistoryDataForChartResp{}
  2477. if protoimpl.UnsafeEnabled {
  2478. mi := &file_organization_proto_msgTypes[19]
  2479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2480. ms.StoreMessageInfo(mi)
  2481. }
  2482. }
  2483. func (x *ItemHistoryDataForChartResp) String() string {
  2484. return protoimpl.X.MessageStringOf(x)
  2485. }
  2486. func (*ItemHistoryDataForChartResp) ProtoMessage() {}
  2487. func (x *ItemHistoryDataForChartResp) ProtoReflect() protoreflect.Message {
  2488. mi := &file_organization_proto_msgTypes[19]
  2489. if protoimpl.UnsafeEnabled && x != nil {
  2490. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2491. if ms.LoadMessageInfo() == nil {
  2492. ms.StoreMessageInfo(mi)
  2493. }
  2494. return ms
  2495. }
  2496. return mi.MessageOf(x)
  2497. }
  2498. // Deprecated: Use ItemHistoryDataForChartResp.ProtoReflect.Descriptor instead.
  2499. func (*ItemHistoryDataForChartResp) Descriptor() ([]byte, []int) {
  2500. return file_organization_proto_rawDescGZIP(), []int{19}
  2501. }
  2502. func (x *ItemHistoryDataForChartResp) GetList() []*ItemHistoryDataForChart {
  2503. if x != nil {
  2504. return x.List
  2505. }
  2506. return nil
  2507. }
  2508. type ItemHistoryDataListResp struct {
  2509. state protoimpl.MessageState
  2510. sizeCache protoimpl.SizeCache
  2511. unknownFields protoimpl.UnknownFields
  2512. // @gotags: json:"list"
  2513. List []*ItemHistoryDataList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2514. }
  2515. func (x *ItemHistoryDataListResp) Reset() {
  2516. *x = ItemHistoryDataListResp{}
  2517. if protoimpl.UnsafeEnabled {
  2518. mi := &file_organization_proto_msgTypes[20]
  2519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2520. ms.StoreMessageInfo(mi)
  2521. }
  2522. }
  2523. func (x *ItemHistoryDataListResp) String() string {
  2524. return protoimpl.X.MessageStringOf(x)
  2525. }
  2526. func (*ItemHistoryDataListResp) ProtoMessage() {}
  2527. func (x *ItemHistoryDataListResp) ProtoReflect() protoreflect.Message {
  2528. mi := &file_organization_proto_msgTypes[20]
  2529. if protoimpl.UnsafeEnabled && x != nil {
  2530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2531. if ms.LoadMessageInfo() == nil {
  2532. ms.StoreMessageInfo(mi)
  2533. }
  2534. return ms
  2535. }
  2536. return mi.MessageOf(x)
  2537. }
  2538. // Deprecated: Use ItemHistoryDataListResp.ProtoReflect.Descriptor instead.
  2539. func (*ItemHistoryDataListResp) Descriptor() ([]byte, []int) {
  2540. return file_organization_proto_rawDescGZIP(), []int{20}
  2541. }
  2542. func (x *ItemHistoryDataListResp) GetList() []*ItemHistoryDataList {
  2543. if x != nil {
  2544. return x.List
  2545. }
  2546. return nil
  2547. }
  2548. type GetWorkingUfByCodeResp struct {
  2549. state protoimpl.MessageState
  2550. sizeCache protoimpl.SizeCache
  2551. unknownFields protoimpl.UnknownFields
  2552. // @gotags: json:"list"
  2553. List []*WorkingUf `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2554. }
  2555. func (x *GetWorkingUfByCodeResp) Reset() {
  2556. *x = GetWorkingUfByCodeResp{}
  2557. if protoimpl.UnsafeEnabled {
  2558. mi := &file_organization_proto_msgTypes[21]
  2559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2560. ms.StoreMessageInfo(mi)
  2561. }
  2562. }
  2563. func (x *GetWorkingUfByCodeResp) String() string {
  2564. return protoimpl.X.MessageStringOf(x)
  2565. }
  2566. func (*GetWorkingUfByCodeResp) ProtoMessage() {}
  2567. func (x *GetWorkingUfByCodeResp) ProtoReflect() protoreflect.Message {
  2568. mi := &file_organization_proto_msgTypes[21]
  2569. if protoimpl.UnsafeEnabled && x != nil {
  2570. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2571. if ms.LoadMessageInfo() == nil {
  2572. ms.StoreMessageInfo(mi)
  2573. }
  2574. return ms
  2575. }
  2576. return mi.MessageOf(x)
  2577. }
  2578. // Deprecated: Use GetWorkingUfByCodeResp.ProtoReflect.Descriptor instead.
  2579. func (*GetWorkingUfByCodeResp) Descriptor() ([]byte, []int) {
  2580. return file_organization_proto_rawDescGZIP(), []int{21}
  2581. }
  2582. func (x *GetWorkingUfByCodeResp) GetList() []*WorkingUf {
  2583. if x != nil {
  2584. return x.List
  2585. }
  2586. return nil
  2587. }
  2588. type FindWorkingUfByCycleReq struct {
  2589. state protoimpl.MessageState
  2590. sizeCache protoimpl.SizeCache
  2591. unknownFields protoimpl.UnknownFields
  2592. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  2593. DeviceCode string `protobuf:"bytes,2,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  2594. FilterCycle int64 `protobuf:"varint,3,opt,name=filter_cycle,json=filterCycle,proto3" json:"filter_cycle,omitempty"`
  2595. Step int64 `protobuf:"varint,4,opt,name=step,proto3" json:"step,omitempty"`
  2596. FilterTimeStart float64 `protobuf:"fixed64,5,opt,name=filter_time_start,json=filterTimeStart,proto3" json:"filter_time_start,omitempty"`
  2597. FilterTimeEnd float64 `protobuf:"fixed64,6,opt,name=filter_time_end,json=filterTimeEnd,proto3" json:"filter_time_end,omitempty"`
  2598. Limit int64 `protobuf:"varint,7,opt,name=limit,proto3" json:"limit,omitempty"`
  2599. }
  2600. func (x *FindWorkingUfByCycleReq) Reset() {
  2601. *x = FindWorkingUfByCycleReq{}
  2602. if protoimpl.UnsafeEnabled {
  2603. mi := &file_organization_proto_msgTypes[22]
  2604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2605. ms.StoreMessageInfo(mi)
  2606. }
  2607. }
  2608. func (x *FindWorkingUfByCycleReq) String() string {
  2609. return protoimpl.X.MessageStringOf(x)
  2610. }
  2611. func (*FindWorkingUfByCycleReq) ProtoMessage() {}
  2612. func (x *FindWorkingUfByCycleReq) ProtoReflect() protoreflect.Message {
  2613. mi := &file_organization_proto_msgTypes[22]
  2614. if protoimpl.UnsafeEnabled && x != nil {
  2615. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2616. if ms.LoadMessageInfo() == nil {
  2617. ms.StoreMessageInfo(mi)
  2618. }
  2619. return ms
  2620. }
  2621. return mi.MessageOf(x)
  2622. }
  2623. // Deprecated: Use FindWorkingUfByCycleReq.ProtoReflect.Descriptor instead.
  2624. func (*FindWorkingUfByCycleReq) Descriptor() ([]byte, []int) {
  2625. return file_organization_proto_rawDescGZIP(), []int{22}
  2626. }
  2627. func (x *FindWorkingUfByCycleReq) GetProjectId() int64 {
  2628. if x != nil {
  2629. return x.ProjectId
  2630. }
  2631. return 0
  2632. }
  2633. func (x *FindWorkingUfByCycleReq) GetDeviceCode() string {
  2634. if x != nil {
  2635. return x.DeviceCode
  2636. }
  2637. return ""
  2638. }
  2639. func (x *FindWorkingUfByCycleReq) GetFilterCycle() int64 {
  2640. if x != nil {
  2641. return x.FilterCycle
  2642. }
  2643. return 0
  2644. }
  2645. func (x *FindWorkingUfByCycleReq) GetStep() int64 {
  2646. if x != nil {
  2647. return x.Step
  2648. }
  2649. return 0
  2650. }
  2651. func (x *FindWorkingUfByCycleReq) GetFilterTimeStart() float64 {
  2652. if x != nil {
  2653. return x.FilterTimeStart
  2654. }
  2655. return 0
  2656. }
  2657. func (x *FindWorkingUfByCycleReq) GetFilterTimeEnd() float64 {
  2658. if x != nil {
  2659. return x.FilterTimeEnd
  2660. }
  2661. return 0
  2662. }
  2663. func (x *FindWorkingUfByCycleReq) GetLimit() int64 {
  2664. if x != nil {
  2665. return x.Limit
  2666. }
  2667. return 0
  2668. }
  2669. type FindWorkingUfByCycleResp struct {
  2670. state protoimpl.MessageState
  2671. sizeCache protoimpl.SizeCache
  2672. unknownFields protoimpl.UnknownFields
  2673. // @gotags: json:"list"
  2674. List []*WorkingUf `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2675. }
  2676. func (x *FindWorkingUfByCycleResp) Reset() {
  2677. *x = FindWorkingUfByCycleResp{}
  2678. if protoimpl.UnsafeEnabled {
  2679. mi := &file_organization_proto_msgTypes[23]
  2680. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2681. ms.StoreMessageInfo(mi)
  2682. }
  2683. }
  2684. func (x *FindWorkingUfByCycleResp) String() string {
  2685. return protoimpl.X.MessageStringOf(x)
  2686. }
  2687. func (*FindWorkingUfByCycleResp) ProtoMessage() {}
  2688. func (x *FindWorkingUfByCycleResp) ProtoReflect() protoreflect.Message {
  2689. mi := &file_organization_proto_msgTypes[23]
  2690. if protoimpl.UnsafeEnabled && x != nil {
  2691. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2692. if ms.LoadMessageInfo() == nil {
  2693. ms.StoreMessageInfo(mi)
  2694. }
  2695. return ms
  2696. }
  2697. return mi.MessageOf(x)
  2698. }
  2699. // Deprecated: Use FindWorkingUfByCycleResp.ProtoReflect.Descriptor instead.
  2700. func (*FindWorkingUfByCycleResp) Descriptor() ([]byte, []int) {
  2701. return file_organization_proto_rawDescGZIP(), []int{23}
  2702. }
  2703. func (x *FindWorkingUfByCycleResp) GetList() []*WorkingUf {
  2704. if x != nil {
  2705. return x.List
  2706. }
  2707. return nil
  2708. }
  2709. type GetWorkingRoByCodeResp struct {
  2710. state protoimpl.MessageState
  2711. sizeCache protoimpl.SizeCache
  2712. unknownFields protoimpl.UnknownFields
  2713. // @gotags: json:"list"
  2714. List []*WorkingRo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2715. }
  2716. func (x *GetWorkingRoByCodeResp) Reset() {
  2717. *x = GetWorkingRoByCodeResp{}
  2718. if protoimpl.UnsafeEnabled {
  2719. mi := &file_organization_proto_msgTypes[24]
  2720. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2721. ms.StoreMessageInfo(mi)
  2722. }
  2723. }
  2724. func (x *GetWorkingRoByCodeResp) String() string {
  2725. return protoimpl.X.MessageStringOf(x)
  2726. }
  2727. func (*GetWorkingRoByCodeResp) ProtoMessage() {}
  2728. func (x *GetWorkingRoByCodeResp) ProtoReflect() protoreflect.Message {
  2729. mi := &file_organization_proto_msgTypes[24]
  2730. if protoimpl.UnsafeEnabled && x != nil {
  2731. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2732. if ms.LoadMessageInfo() == nil {
  2733. ms.StoreMessageInfo(mi)
  2734. }
  2735. return ms
  2736. }
  2737. return mi.MessageOf(x)
  2738. }
  2739. // Deprecated: Use GetWorkingRoByCodeResp.ProtoReflect.Descriptor instead.
  2740. func (*GetWorkingRoByCodeResp) Descriptor() ([]byte, []int) {
  2741. return file_organization_proto_rawDescGZIP(), []int{24}
  2742. }
  2743. func (x *GetWorkingRoByCodeResp) GetList() []*WorkingRo {
  2744. if x != nil {
  2745. return x.List
  2746. }
  2747. return nil
  2748. }
  2749. type GetWorkingNfByCodeResp struct {
  2750. state protoimpl.MessageState
  2751. sizeCache protoimpl.SizeCache
  2752. unknownFields protoimpl.UnknownFields
  2753. // @gotags: json:"list"
  2754. List []*WorkingNf `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2755. }
  2756. func (x *GetWorkingNfByCodeResp) Reset() {
  2757. *x = GetWorkingNfByCodeResp{}
  2758. if protoimpl.UnsafeEnabled {
  2759. mi := &file_organization_proto_msgTypes[25]
  2760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2761. ms.StoreMessageInfo(mi)
  2762. }
  2763. }
  2764. func (x *GetWorkingNfByCodeResp) String() string {
  2765. return protoimpl.X.MessageStringOf(x)
  2766. }
  2767. func (*GetWorkingNfByCodeResp) ProtoMessage() {}
  2768. func (x *GetWorkingNfByCodeResp) ProtoReflect() protoreflect.Message {
  2769. mi := &file_organization_proto_msgTypes[25]
  2770. if protoimpl.UnsafeEnabled && x != nil {
  2771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2772. if ms.LoadMessageInfo() == nil {
  2773. ms.StoreMessageInfo(mi)
  2774. }
  2775. return ms
  2776. }
  2777. return mi.MessageOf(x)
  2778. }
  2779. // Deprecated: Use GetWorkingNfByCodeResp.ProtoReflect.Descriptor instead.
  2780. func (*GetWorkingNfByCodeResp) Descriptor() ([]byte, []int) {
  2781. return file_organization_proto_rawDescGZIP(), []int{25}
  2782. }
  2783. func (x *GetWorkingNfByCodeResp) GetList() []*WorkingNf {
  2784. if x != nil {
  2785. return x.List
  2786. }
  2787. return nil
  2788. }
  2789. type GetWorkingMfByCodeResp struct {
  2790. state protoimpl.MessageState
  2791. sizeCache protoimpl.SizeCache
  2792. unknownFields protoimpl.UnknownFields
  2793. // @gotags: json:"list"
  2794. List []*WorkingMf `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2795. }
  2796. func (x *GetWorkingMfByCodeResp) Reset() {
  2797. *x = GetWorkingMfByCodeResp{}
  2798. if protoimpl.UnsafeEnabled {
  2799. mi := &file_organization_proto_msgTypes[26]
  2800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2801. ms.StoreMessageInfo(mi)
  2802. }
  2803. }
  2804. func (x *GetWorkingMfByCodeResp) String() string {
  2805. return protoimpl.X.MessageStringOf(x)
  2806. }
  2807. func (*GetWorkingMfByCodeResp) ProtoMessage() {}
  2808. func (x *GetWorkingMfByCodeResp) ProtoReflect() protoreflect.Message {
  2809. mi := &file_organization_proto_msgTypes[26]
  2810. if protoimpl.UnsafeEnabled && x != nil {
  2811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2812. if ms.LoadMessageInfo() == nil {
  2813. ms.StoreMessageInfo(mi)
  2814. }
  2815. return ms
  2816. }
  2817. return mi.MessageOf(x)
  2818. }
  2819. // Deprecated: Use GetWorkingMfByCodeResp.ProtoReflect.Descriptor instead.
  2820. func (*GetWorkingMfByCodeResp) Descriptor() ([]byte, []int) {
  2821. return file_organization_proto_rawDescGZIP(), []int{26}
  2822. }
  2823. func (x *GetWorkingMfByCodeResp) GetList() []*WorkingMf {
  2824. if x != nil {
  2825. return x.List
  2826. }
  2827. return nil
  2828. }
  2829. type GetWorkingPumpByCodeResp struct {
  2830. state protoimpl.MessageState
  2831. sizeCache protoimpl.SizeCache
  2832. unknownFields protoimpl.UnknownFields
  2833. // @gotags: json:"list"
  2834. List []*WorkingPump `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2835. }
  2836. func (x *GetWorkingPumpByCodeResp) Reset() {
  2837. *x = GetWorkingPumpByCodeResp{}
  2838. if protoimpl.UnsafeEnabled {
  2839. mi := &file_organization_proto_msgTypes[27]
  2840. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2841. ms.StoreMessageInfo(mi)
  2842. }
  2843. }
  2844. func (x *GetWorkingPumpByCodeResp) String() string {
  2845. return protoimpl.X.MessageStringOf(x)
  2846. }
  2847. func (*GetWorkingPumpByCodeResp) ProtoMessage() {}
  2848. func (x *GetWorkingPumpByCodeResp) ProtoReflect() protoreflect.Message {
  2849. mi := &file_organization_proto_msgTypes[27]
  2850. if protoimpl.UnsafeEnabled && x != nil {
  2851. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2852. if ms.LoadMessageInfo() == nil {
  2853. ms.StoreMessageInfo(mi)
  2854. }
  2855. return ms
  2856. }
  2857. return mi.MessageOf(x)
  2858. }
  2859. // Deprecated: Use GetWorkingPumpByCodeResp.ProtoReflect.Descriptor instead.
  2860. func (*GetWorkingPumpByCodeResp) Descriptor() ([]byte, []int) {
  2861. return file_organization_proto_rawDescGZIP(), []int{27}
  2862. }
  2863. func (x *GetWorkingPumpByCodeResp) GetList() []*WorkingPump {
  2864. if x != nil {
  2865. return x.List
  2866. }
  2867. return nil
  2868. }
  2869. type GetWorkingValveByCodeResp struct {
  2870. state protoimpl.MessageState
  2871. sizeCache protoimpl.SizeCache
  2872. unknownFields protoimpl.UnknownFields
  2873. // @gotags: json:"list"
  2874. List []*WorkingValve `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2875. }
  2876. func (x *GetWorkingValveByCodeResp) Reset() {
  2877. *x = GetWorkingValveByCodeResp{}
  2878. if protoimpl.UnsafeEnabled {
  2879. mi := &file_organization_proto_msgTypes[28]
  2880. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2881. ms.StoreMessageInfo(mi)
  2882. }
  2883. }
  2884. func (x *GetWorkingValveByCodeResp) String() string {
  2885. return protoimpl.X.MessageStringOf(x)
  2886. }
  2887. func (*GetWorkingValveByCodeResp) ProtoMessage() {}
  2888. func (x *GetWorkingValveByCodeResp) ProtoReflect() protoreflect.Message {
  2889. mi := &file_organization_proto_msgTypes[28]
  2890. if protoimpl.UnsafeEnabled && x != nil {
  2891. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2892. if ms.LoadMessageInfo() == nil {
  2893. ms.StoreMessageInfo(mi)
  2894. }
  2895. return ms
  2896. }
  2897. return mi.MessageOf(x)
  2898. }
  2899. // Deprecated: Use GetWorkingValveByCodeResp.ProtoReflect.Descriptor instead.
  2900. func (*GetWorkingValveByCodeResp) Descriptor() ([]byte, []int) {
  2901. return file_organization_proto_rawDescGZIP(), []int{28}
  2902. }
  2903. func (x *GetWorkingValveByCodeResp) GetList() []*WorkingValve {
  2904. if x != nil {
  2905. return x.List
  2906. }
  2907. return nil
  2908. }
  2909. type GetWorkingChestByCodeResp struct {
  2910. state protoimpl.MessageState
  2911. sizeCache protoimpl.SizeCache
  2912. unknownFields protoimpl.UnknownFields
  2913. // @gotags: json:"list"
  2914. List []*WorkingChest `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2915. }
  2916. func (x *GetWorkingChestByCodeResp) Reset() {
  2917. *x = GetWorkingChestByCodeResp{}
  2918. if protoimpl.UnsafeEnabled {
  2919. mi := &file_organization_proto_msgTypes[29]
  2920. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2921. ms.StoreMessageInfo(mi)
  2922. }
  2923. }
  2924. func (x *GetWorkingChestByCodeResp) String() string {
  2925. return protoimpl.X.MessageStringOf(x)
  2926. }
  2927. func (*GetWorkingChestByCodeResp) ProtoMessage() {}
  2928. func (x *GetWorkingChestByCodeResp) ProtoReflect() protoreflect.Message {
  2929. mi := &file_organization_proto_msgTypes[29]
  2930. if protoimpl.UnsafeEnabled && x != nil {
  2931. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2932. if ms.LoadMessageInfo() == nil {
  2933. ms.StoreMessageInfo(mi)
  2934. }
  2935. return ms
  2936. }
  2937. return mi.MessageOf(x)
  2938. }
  2939. // Deprecated: Use GetWorkingChestByCodeResp.ProtoReflect.Descriptor instead.
  2940. func (*GetWorkingChestByCodeResp) Descriptor() ([]byte, []int) {
  2941. return file_organization_proto_rawDescGZIP(), []int{29}
  2942. }
  2943. func (x *GetWorkingChestByCodeResp) GetList() []*WorkingChest {
  2944. if x != nil {
  2945. return x.List
  2946. }
  2947. return nil
  2948. }
  2949. var File_organization_proto protoreflect.FileDescriptor
  2950. var file_organization_proto_rawDesc = []byte{
  2951. 0x0a, 0x12, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
  2952. 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0xc1, 0x01, 0x0a, 0x0c, 0x44, 0x63, 0x57,
  2953. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
  2954. 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  2955. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69,
  2956. 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64,
  2957. 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69,
  2958. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12,
  2959. 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2960. 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20,
  2961. 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67,
  2962. 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61,
  2963. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18,
  2964. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0xa9, 0x07, 0x0a,
  2965. 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  2966. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72,
  2967. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2968. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76,
  2969. 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2970. 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61,
  2971. 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18,
  2972. 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70,
  2973. 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2974. 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  2975. 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  2976. 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12,
  2977. 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18,
  2978. 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c,
  2979. 0x6f, 0x77, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  2980. 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50,
  2981. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70,
  2982. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63,
  2983. 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72,
  2984. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a,
  2985. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65,
  2986. 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01,
  2987. 0x28, 0x01, 0x52, 0x03, 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18,
  2988. 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x12, 0x2a, 0x0a, 0x11, 0x66,
  2989. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  2990. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75,
  2991. 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2992. 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65,
  2993. 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2994. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72,
  2995. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65,
  2996. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66,
  2997. 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75,
  2998. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  2999. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66,
  3000. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52,
  3001. 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f,
  3002. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01,
  3003. 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a,
  3004. 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
  3005. 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70,
  3006. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01,
  3007. 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12,
  3008. 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18,
  3009. 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f,
  3010. 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  3011. 0x73, 0x69, 0x6f, 0x32, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64,
  3012. 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65,
  3013. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09,
  3014. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f,
  3015. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28,
  3016. 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12,
  3017. 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01,
  3018. 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70,
  3019. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28,
  3020. 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a,
  3021. 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65,
  3022. 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28,
  3023. 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x91, 0x08, 0x0a, 0x09, 0x57, 0x6f, 0x72,
  3024. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3025. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  3026. 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
  3027. 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f,
  3028. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69,
  3029. 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f,
  3030. 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  3031. 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74,
  3032. 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  3033. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77,
  3034. 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01,
  3035. 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70,
  3036. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28,
  3037. 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23,
  3038. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18,
  3039. 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73,
  3040. 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  3041. 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72,
  3042. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  3043. 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01,
  3044. 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  3045. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03,
  3046. 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28,
  3047. 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x6d, 0x65,
  3048. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70,
  3049. 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x2a, 0x0a, 0x11, 0x66,
  3050. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  3051. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75,
  3052. 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  3053. 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65,
  3054. 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  3055. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72,
  3056. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65,
  3057. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66,
  3058. 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75,
  3059. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  3060. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66,
  3061. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52,
  3062. 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f,
  3063. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01,
  3064. 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a,
  3065. 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
  3066. 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70,
  3067. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01,
  3068. 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12,
  3069. 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18,
  3070. 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f,
  3071. 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  3072. 0x73, 0x69, 0x6f, 0x32, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64,
  3073. 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65,
  3074. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09,
  3075. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f,
  3076. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28,
  3077. 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12,
  3078. 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01,
  3079. 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70,
  3080. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28,
  3081. 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a,
  3082. 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65,
  3083. 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  3084. 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x69,
  3085. 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x79, 0x63,
  3086. 0x6c, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
  3087. 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  3088. 0x1f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a,
  3089. 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  3090. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72,
  3091. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  3092. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76,
  3093. 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  3094. 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61,
  3095. 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18,
  3096. 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70,
  3097. 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f,
  3098. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  3099. 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63,
  3100. 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28,
  3101. 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a,
  3102. 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73,
  3103. 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  3104. 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f,
  3105. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01,
  3106. 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  3107. 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  3108. 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63,
  3109. 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a,
  3110. 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  3111. 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f,
  3112. 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12,
  3113. 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01,
  3114. 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78,
  3115. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78,
  3116. 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c,
  3117. 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70,
  3118. 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x31, 0x73, 0x74, 0x12, 0x22,
  3119. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18,
  3120. 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32,
  3121. 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32,
  3122. 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f,
  3123. 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  3124. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e,
  3125. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a,
  3126. 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f,
  3127. 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50,
  3128. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f,
  3129. 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12,
  3130. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  3131. 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  3132. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01,
  3133. 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73,
  3134. 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e,
  3135. 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12,
  3136. 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28,
  3137. 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x32, 0x6e, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65,
  3138. 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16,
  3139. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  3140. 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c,
  3141. 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65,
  3142. 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e,
  3143. 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52,
  3144. 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70,
  3145. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18,
  3146. 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c,
  3147. 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72,
  3148. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01,
  3149. 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74,
  3150. 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  3151. 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e,
  3152. 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70,
  3153. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f,
  3154. 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75,
  3155. 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a,
  3156. 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06,
  3157. 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33,
  3158. 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74,
  3159. 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  3160. 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72,
  3161. 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11,
  3162. 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74,
  3163. 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54,
  3164. 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64,
  3165. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x21, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65,
  3166. 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  3167. 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x22, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70,
  3168. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65,
  3169. 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08,
  3170. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64,
  3171. 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52,
  3172. 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a,
  3173. 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01,
  3174. 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72,
  3175. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x26, 0x20, 0x01, 0x28,
  3176. 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c,
  3177. 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01,
  3178. 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d,
  3179. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20,
  3180. 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e,
  3181. 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32,
  3182. 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69,
  3183. 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  3184. 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f,
  3185. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65,
  3186. 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52,
  3187. 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72,
  3188. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01,
  3189. 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64,
  3190. 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20,
  3191. 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c,
  3192. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01,
  3193. 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12,
  3194. 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74,
  3195. 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01,
  3196. 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f,
  3197. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  3198. 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  3199. 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f,
  3200. 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
  3201. 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76,
  3202. 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72,
  3203. 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01,
  3204. 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61,
  3205. 0x74, 0x75, 0x72, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f,
  3206. 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65,
  3207. 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f,
  3208. 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  3209. 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72,
  3210. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07,
  3211. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f,
  3212. 0x77, 0x31, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65,
  3213. 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52,
  3214. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74,
  3215. 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  3216. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50,
  3217. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72,
  3218. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31,
  3219. 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  3220. 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
  3221. 0x74, 0x6d, 0x70, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74,
  3222. 0x6d, 0x70, 0x31, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73,
  3223. 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74,
  3224. 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  3225. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d,
  3226. 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66,
  3227. 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01,
  3228. 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12,
  3229. 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18,
  3230. 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e,
  3231. 0x64, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f,
  3232. 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f,
  3233. 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66,
  3234. 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64,
  3235. 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73,
  3236. 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70,
  3237. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28,
  3238. 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e,
  3239. 0x64, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65,
  3240. 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52,
  3241. 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  3242. 0x32, 0x6e, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14,
  3243. 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08,
  3244. 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07,
  3245. 0x66, 0x6c, 0x75, 0x78, 0x32, 0x6e, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65,
  3246. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28,
  3247. 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32,
  3248. 0x6e, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f,
  3249. 0x33, 0x74, 0x68, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46,
  3250. 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c,
  3251. 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f,
  3252. 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64,
  3253. 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01,
  3254. 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33,
  3255. 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  3256. 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66,
  3257. 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28,
  3258. 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33,
  3259. 0x74, 0x68, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65,
  3260. 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64,
  3261. 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68,
  3262. 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50,
  3263. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d,
  3264. 0x70, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70,
  3265. 0x33, 0x74, 0x68, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18,
  3266. 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29,
  3267. 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33,
  3268. 0x74, 0x68, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61,
  3269. 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65,
  3270. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20,
  3271. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62,
  3272. 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  3273. 0x5f, 0x70, 0x68, 0x18, 0x21, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57,
  3274. 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  3275. 0x71, 0x5f, 0x70, 0x68, 0x18, 0x22, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  3276. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  3277. 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65,
  3278. 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  3279. 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72,
  3280. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65,
  3281. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66,
  3282. 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75,
  3283. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  3284. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66,
  3285. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52,
  3286. 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f,
  3287. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01,
  3288. 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a,
  3289. 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20,
  3290. 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12,
  3291. 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69,
  3292. 0x6f, 0x32, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  3293. 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f,
  3294. 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65,
  3295. 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75,
  3296. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52,
  3297. 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a,
  3298. 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01,
  3299. 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f,
  3300. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52,
  3301. 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73,
  3302. 0x74, 0x65, 0x70, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12,
  3303. 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52,
  3304. 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xad, 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  3305. 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  3306. 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  3307. 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f,
  3308. 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
  3309. 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76,
  3310. 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63,
  3311. 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12,
  3312. 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05,
  3313. 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f,
  3314. 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e,
  3315. 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b,
  3316. 0x0a, 0x11, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74,
  3317. 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x61, 0x67, 0x69, 0x74, 0x61,
  3318. 0x74, 0x6f, 0x72, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x15, 0x61,
  3319. 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74,
  3320. 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x61, 0x67, 0x69, 0x74,
  3321. 0x61, 0x74, 0x6f, 0x72, 0x46, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  3322. 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  3323. 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x86, 0x03, 0x0a, 0x0b, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  3324. 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3325. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  3326. 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
  3327. 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f,
  3328. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69,
  3329. 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70,
  3330. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66,
  3331. 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f,
  3332. 0x75, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  3333. 0x01, 0x52, 0x0b, 0x6f, 0x75, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x1a,
  3334. 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  3335. 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75,
  3336. 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x75, 0x72,
  3337. 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
  3338. 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e,
  3339. 0x63, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x66, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01,
  3340. 0x52, 0x04, 0x6c, 0x69, 0x66, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69,
  3341. 0x65, 0x6e, 0x63, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x65, 0x66, 0x66, 0x69,
  3342. 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x5f, 0x73, 0x74,
  3343. 0x61, 0x74, 0x75, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x53,
  3344. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73,
  3345. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75,
  3346. 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69,
  3347. 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22,
  3348. 0xfa, 0x01, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65,
  3349. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  3350. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02,
  3351. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
  3352. 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03,
  3353. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65,
  3354. 0x12, 0x16, 0x0a, 0x06, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  3355. 0x52, 0x06, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x6e,
  3356. 0x69, 0x6e, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69,
  3357. 0x6e, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01,
  3358. 0x28, 0x03, 0x52, 0x06, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70,
  3359. 0x65, 0x6e, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e,
  3360. 0x65, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
  3361. 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53,
  3362. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  3363. 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x76, 0x0a, 0x0f,
  3364. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12,
  3365. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  3366. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b,
  3367. 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3368. 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76,
  3369. 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a,
  3370. 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68,
  3371. 0x54, 0x69, 0x6d, 0x65, 0x22, 0x64, 0x0a, 0x1a, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64,
  3372. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52,
  3373. 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  3374. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  3375. 0x64, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3376. 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  3377. 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x4d, 0x75,
  3378. 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  3379. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x22, 0xd0, 0x01, 0x0a, 0x16, 0x49, 0x74,
  3380. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73,
  3381. 0x74, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
  3382. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  3383. 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  3384. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65,
  3385. 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01,
  3386. 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a,
  3387. 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  3388. 0x52, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05,
  3389. 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69,
  3390. 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
  3391. 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65,
  3392. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x82, 0x01, 0x0a,
  3393. 0x18, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  3394. 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
  3395. 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  3396. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d,
  3397. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65,
  3398. 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03,
  3399. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65,
  3400. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d,
  3401. 0x65, 0x22, 0x66, 0x0a, 0x19, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  3402. 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x17,
  3403. 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52,
  3404. 0x06, 0x6d, 0x61, 0x78, 0x56, 0x61, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x69, 0x6e, 0x5f, 0x76,
  3405. 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x56, 0x61, 0x6c,
  3406. 0x12, 0x17, 0x0a, 0x07, 0x61, 0x76, 0x67, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  3407. 0x01, 0x52, 0x06, 0x61, 0x76, 0x67, 0x56, 0x61, 0x6c, 0x22, 0x48, 0x0a, 0x1c, 0x49, 0x74, 0x65,
  3408. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x69, 0x72, 0x73,
  3409. 0x74, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x72,
  3410. 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x66, 0x69, 0x72, 0x73, 0x74, 0x12,
  3411. 0x12, 0x0a, 0x04, 0x6c, 0x61, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6c,
  3412. 0x61, 0x73, 0x74, 0x22, 0x35, 0x0a, 0x1d, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70,
  3413. 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  3414. 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20,
  3415. 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x5b, 0x0a, 0x13, 0x49, 0x74,
  3416. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73,
  3417. 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  3418. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10,
  3419. 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c,
  3420. 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3421. 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x5a, 0x0a, 0x17, 0x49, 0x74, 0x65, 0x6d, 0x48,
  3422. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61,
  3423. 0x72, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  3424. 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20,
  3425. 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x68, 0x74, 0x69, 0x6d,
  3426. 0x65, 0x5f, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x68, 0x74, 0x69, 0x6d,
  3427. 0x65, 0x41, 0x74, 0x22, 0xd4, 0x01, 0x0a, 0x1a, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  3428. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x52,
  3429. 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  3430. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  3431. 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  3432. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14,
  3433. 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73,
  3434. 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20,
  3435. 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e,
  3436. 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e,
  3437. 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06,
  3438. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x67,
  3439. 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  3440. 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x22, 0x4e, 0x0a, 0x1b, 0x49, 0x74,
  3441. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72,
  3442. 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  3443. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65,
  3444. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72, 0x43,
  3445. 0x68, 0x61, 0x72, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x46, 0x0a, 0x17, 0x49, 0x74,
  3446. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73,
  3447. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  3448. 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  3449. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69,
  3450. 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  3451. 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04,
  3452. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e,
  3453. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  3454. 0xfa, 0x01, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55,
  3455. 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  3456. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  3457. 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65,
  3458. 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3459. 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x66,
  3460. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  3461. 0x03, 0x52, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x12,
  3462. 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74,
  3463. 0x65, 0x70, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d,
  3464. 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66,
  3465. 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x26,
  3466. 0x0a, 0x0f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x65, 0x6e,
  3467. 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54,
  3468. 0x69, 0x6d, 0x65, 0x45, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
  3469. 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0x3d, 0x0a, 0x18,
  3470. 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43,
  3471. 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  3472. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b,
  3473. 0x69, 0x6e, 0x67, 0x55, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47,
  3474. 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64,
  3475. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  3476. 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  3477. 0x52, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57,
  3478. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
  3479. 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  3480. 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x52,
  3481. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b,
  3482. 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
  3483. 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
  3484. 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x52, 0x04, 0x6c, 0x69,
  3485. 0x73, 0x74, 0x22, 0x3f, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  3486. 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x23,
  3487. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70,
  3488. 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x52, 0x04, 0x6c,
  3489. 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  3490. 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70,
  3491. 0x12, 0x24, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10,
  3492. 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65,
  3493. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72,
  3494. 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3495. 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  3496. 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68,
  3497. 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x32, 0xbd, 0x08, 0x0a, 0x0c, 0x4f, 0x72,
  3498. 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x12, 0x47, 0x65,
  3499. 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65,
  3500. 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52,
  3501. 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  3502. 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x51,
  3503. 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42,
  3504. 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x12, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  3505. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65,
  3506. 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x6f, 0x72,
  3507. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x79, 0x63, 0x6c, 0x65, 0x52, 0x65, 0x73,
  3508. 0x70, 0x12, 0x42, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52,
  3509. 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57,
  3510. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x47,
  3511. 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64,
  3512. 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b,
  3513. 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10,
  3514. 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71,
  3515. 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  3516. 0x43, 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
  3517. 0x46, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d,
  3518. 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57,
  3519. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x47,
  3520. 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43,
  3521. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f,
  3522. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65,
  3523. 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52,
  3524. 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  3525. 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
  3526. 0x70, 0x12, 0x5a, 0x0a, 0x17, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65,
  3527. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x2e, 0x70,
  3528. 0x62, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  3529. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x70,
  3530. 0x62, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  3531. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4e, 0x0a,
  3532. 0x13, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  3533. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  3534. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  3535. 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  3536. 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x52, 0x0a,
  3537. 0x15, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  3538. 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d,
  3539. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d,
  3540. 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  3541. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
  3542. 0x70, 0x12, 0x5a, 0x0a, 0x1b, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  3543. 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65,
  3544. 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  3545. 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d,
  3546. 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44,
  3547. 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x60, 0x0a,
  3548. 0x1e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  3549. 0x46, 0x69, 0x72, 0x73, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12,
  3550. 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  3551. 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x20, 0x2e,
  3552. 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61,
  3553. 0x74, 0x61, 0x46, 0x69, 0x72, 0x73, 0x74, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
  3554. 0x5c, 0x0a, 0x19, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65,
  3555. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x2e, 0x70,
  3556. 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  3557. 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x70, 0x62, 0x2e,
  3558. 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69,
  3559. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a,
  3560. 0x17, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  3561. 0x46, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x72, 0x74, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74,
  3562. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72,
  3563. 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74,
  3564. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x46, 0x6f, 0x72,
  3565. 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70,
  3566. 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3567. }
  3568. var (
  3569. file_organization_proto_rawDescOnce sync.Once
  3570. file_organization_proto_rawDescData = file_organization_proto_rawDesc
  3571. )
  3572. func file_organization_proto_rawDescGZIP() []byte {
  3573. file_organization_proto_rawDescOnce.Do(func() {
  3574. file_organization_proto_rawDescData = protoimpl.X.CompressGZIP(file_organization_proto_rawDescData)
  3575. })
  3576. return file_organization_proto_rawDescData
  3577. }
  3578. var file_organization_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
  3579. var file_organization_proto_goTypes = []interface{}{
  3580. (*DcWorkingReq)(nil), // 0: pb.DcWorkingReq
  3581. (*WorkingMf)(nil), // 1: pb.WorkingMf
  3582. (*WorkingUf)(nil), // 2: pb.WorkingUf
  3583. (*WorkingNf)(nil), // 3: pb.WorkingNf
  3584. (*WorkingRo)(nil), // 4: pb.WorkingRo
  3585. (*WorkingChest)(nil), // 5: pb.WorkingChest
  3586. (*WorkingPump)(nil), // 6: pb.WorkingPump
  3587. (*WorkingValve)(nil), // 7: pb.WorkingValve
  3588. (*ItemHistoryData)(nil), // 8: pb.ItemHistoryData
  3589. (*MultiAddItemHistoryDataReq)(nil), // 9: pb.MultiAddItemHistoryDataReq
  3590. (*MultiAddItemHistoryDataResp)(nil), // 10: pb.MultiAddItemHistoryDataResp
  3591. (*ItemHistoryDataListReq)(nil), // 11: pb.ItemHistoryDataListReq
  3592. (*ItemHistoryDataByTimeReq)(nil), // 12: pb.ItemHistoryDataByTimeReq
  3593. (*ItemHistoryDataMaxMinResp)(nil), // 13: pb.ItemHistoryDataMaxMinResp
  3594. (*ItemHistoryDataFirstLastResp)(nil), // 14: pb.ItemHistoryDataFirstLastResp
  3595. (*ChangeTypeItemHistoryDataResp)(nil), // 15: pb.ChangeTypeItemHistoryDataResp
  3596. (*ItemHistoryDataList)(nil), // 16: pb.ItemHistoryDataList
  3597. (*ItemHistoryDataForChart)(nil), // 17: pb.ItemHistoryDataForChart
  3598. (*ItemHistoryDataForChartReq)(nil), // 18: pb.ItemHistoryDataForChartReq
  3599. (*ItemHistoryDataForChartResp)(nil), // 19: pb.ItemHistoryDataForChartResp
  3600. (*ItemHistoryDataListResp)(nil), // 20: pb.ItemHistoryDataListResp
  3601. (*GetWorkingUfByCodeResp)(nil), // 21: pb.GetWorkingUfByCodeResp
  3602. (*FindWorkingUfByCycleReq)(nil), // 22: pb.FindWorkingUfByCycleReq
  3603. (*FindWorkingUfByCycleResp)(nil), // 23: pb.FindWorkingUfByCycleResp
  3604. (*GetWorkingRoByCodeResp)(nil), // 24: pb.GetWorkingRoByCodeResp
  3605. (*GetWorkingNfByCodeResp)(nil), // 25: pb.GetWorkingNfByCodeResp
  3606. (*GetWorkingMfByCodeResp)(nil), // 26: pb.GetWorkingMfByCodeResp
  3607. (*GetWorkingPumpByCodeResp)(nil), // 27: pb.GetWorkingPumpByCodeResp
  3608. (*GetWorkingValveByCodeResp)(nil), // 28: pb.GetWorkingValveByCodeResp
  3609. (*GetWorkingChestByCodeResp)(nil), // 29: pb.GetWorkingChestByCodeResp
  3610. }
  3611. var file_organization_proto_depIdxs = []int32{
  3612. 8, // 0: pb.MultiAddItemHistoryDataReq.list:type_name -> pb.ItemHistoryData
  3613. 17, // 1: pb.ItemHistoryDataForChartResp.list:type_name -> pb.ItemHistoryDataForChart
  3614. 16, // 2: pb.ItemHistoryDataListResp.list:type_name -> pb.ItemHistoryDataList
  3615. 2, // 3: pb.GetWorkingUfByCodeResp.list:type_name -> pb.WorkingUf
  3616. 2, // 4: pb.FindWorkingUfByCycleResp.list:type_name -> pb.WorkingUf
  3617. 4, // 5: pb.GetWorkingRoByCodeResp.list:type_name -> pb.WorkingRo
  3618. 3, // 6: pb.GetWorkingNfByCodeResp.list:type_name -> pb.WorkingNf
  3619. 1, // 7: pb.GetWorkingMfByCodeResp.list:type_name -> pb.WorkingMf
  3620. 6, // 8: pb.GetWorkingPumpByCodeResp.list:type_name -> pb.WorkingPump
  3621. 7, // 9: pb.GetWorkingValveByCodeResp.list:type_name -> pb.WorkingValve
  3622. 5, // 10: pb.GetWorkingChestByCodeResp.list:type_name -> pb.WorkingChest
  3623. 0, // 11: pb.Organization.GetWorkingUfByCode:input_type -> pb.DcWorkingReq
  3624. 22, // 12: pb.Organization.FindWorkingUfByCycle:input_type -> pb.FindWorkingUfByCycleReq
  3625. 0, // 13: pb.Organization.GetWorkingRoByCode:input_type -> pb.DcWorkingReq
  3626. 0, // 14: pb.Organization.GetWorkingChestByCode:input_type -> pb.DcWorkingReq
  3627. 0, // 15: pb.Organization.GetWorkingPumpByCode:input_type -> pb.DcWorkingReq
  3628. 0, // 16: pb.Organization.GetWorkingValveByCode:input_type -> pb.DcWorkingReq
  3629. 9, // 17: pb.Organization.MultiAddItemHistoryData:input_type -> pb.MultiAddItemHistoryDataReq
  3630. 11, // 18: pb.Organization.ItemHistoryDataList:input_type -> pb.ItemHistoryDataListReq
  3631. 12, // 19: pb.Organization.ItemHistoryDataByTime:input_type -> pb.ItemHistoryDataByTimeReq
  3632. 12, // 20: pb.Organization.ItemHistoryDataMaxMinByTime:input_type -> pb.ItemHistoryDataByTimeReq
  3633. 12, // 21: pb.Organization.ItemHistoryDataFirstLastByTime:input_type -> pb.ItemHistoryDataByTimeReq
  3634. 12, // 22: pb.Organization.ChangeTypeItemHistoryData:input_type -> pb.ItemHistoryDataByTimeReq
  3635. 18, // 23: pb.Organization.ItemHistoryDataForChart:input_type -> pb.ItemHistoryDataForChartReq
  3636. 21, // 24: pb.Organization.GetWorkingUfByCode:output_type -> pb.GetWorkingUfByCodeResp
  3637. 23, // 25: pb.Organization.FindWorkingUfByCycle:output_type -> pb.FindWorkingUfByCycleResp
  3638. 24, // 26: pb.Organization.GetWorkingRoByCode:output_type -> pb.GetWorkingRoByCodeResp
  3639. 29, // 27: pb.Organization.GetWorkingChestByCode:output_type -> pb.GetWorkingChestByCodeResp
  3640. 27, // 28: pb.Organization.GetWorkingPumpByCode:output_type -> pb.GetWorkingPumpByCodeResp
  3641. 28, // 29: pb.Organization.GetWorkingValveByCode:output_type -> pb.GetWorkingValveByCodeResp
  3642. 10, // 30: pb.Organization.MultiAddItemHistoryData:output_type -> pb.MultiAddItemHistoryDataResp
  3643. 20, // 31: pb.Organization.ItemHistoryDataList:output_type -> pb.ItemHistoryDataListResp
  3644. 20, // 32: pb.Organization.ItemHistoryDataByTime:output_type -> pb.ItemHistoryDataListResp
  3645. 13, // 33: pb.Organization.ItemHistoryDataMaxMinByTime:output_type -> pb.ItemHistoryDataMaxMinResp
  3646. 14, // 34: pb.Organization.ItemHistoryDataFirstLastByTime:output_type -> pb.ItemHistoryDataFirstLastResp
  3647. 15, // 35: pb.Organization.ChangeTypeItemHistoryData:output_type -> pb.ChangeTypeItemHistoryDataResp
  3648. 19, // 36: pb.Organization.ItemHistoryDataForChart:output_type -> pb.ItemHistoryDataForChartResp
  3649. 24, // [24:37] is the sub-list for method output_type
  3650. 11, // [11:24] is the sub-list for method input_type
  3651. 11, // [11:11] is the sub-list for extension type_name
  3652. 11, // [11:11] is the sub-list for extension extendee
  3653. 0, // [0:11] is the sub-list for field type_name
  3654. }
  3655. func init() { file_organization_proto_init() }
  3656. func file_organization_proto_init() {
  3657. if File_organization_proto != nil {
  3658. return
  3659. }
  3660. if !protoimpl.UnsafeEnabled {
  3661. file_organization_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3662. switch v := v.(*DcWorkingReq); i {
  3663. case 0:
  3664. return &v.state
  3665. case 1:
  3666. return &v.sizeCache
  3667. case 2:
  3668. return &v.unknownFields
  3669. default:
  3670. return nil
  3671. }
  3672. }
  3673. file_organization_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3674. switch v := v.(*WorkingMf); i {
  3675. case 0:
  3676. return &v.state
  3677. case 1:
  3678. return &v.sizeCache
  3679. case 2:
  3680. return &v.unknownFields
  3681. default:
  3682. return nil
  3683. }
  3684. }
  3685. file_organization_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3686. switch v := v.(*WorkingUf); i {
  3687. case 0:
  3688. return &v.state
  3689. case 1:
  3690. return &v.sizeCache
  3691. case 2:
  3692. return &v.unknownFields
  3693. default:
  3694. return nil
  3695. }
  3696. }
  3697. file_organization_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3698. switch v := v.(*WorkingNf); i {
  3699. case 0:
  3700. return &v.state
  3701. case 1:
  3702. return &v.sizeCache
  3703. case 2:
  3704. return &v.unknownFields
  3705. default:
  3706. return nil
  3707. }
  3708. }
  3709. file_organization_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3710. switch v := v.(*WorkingRo); i {
  3711. case 0:
  3712. return &v.state
  3713. case 1:
  3714. return &v.sizeCache
  3715. case 2:
  3716. return &v.unknownFields
  3717. default:
  3718. return nil
  3719. }
  3720. }
  3721. file_organization_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3722. switch v := v.(*WorkingChest); i {
  3723. case 0:
  3724. return &v.state
  3725. case 1:
  3726. return &v.sizeCache
  3727. case 2:
  3728. return &v.unknownFields
  3729. default:
  3730. return nil
  3731. }
  3732. }
  3733. file_organization_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3734. switch v := v.(*WorkingPump); i {
  3735. case 0:
  3736. return &v.state
  3737. case 1:
  3738. return &v.sizeCache
  3739. case 2:
  3740. return &v.unknownFields
  3741. default:
  3742. return nil
  3743. }
  3744. }
  3745. file_organization_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3746. switch v := v.(*WorkingValve); i {
  3747. case 0:
  3748. return &v.state
  3749. case 1:
  3750. return &v.sizeCache
  3751. case 2:
  3752. return &v.unknownFields
  3753. default:
  3754. return nil
  3755. }
  3756. }
  3757. file_organization_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3758. switch v := v.(*ItemHistoryData); i {
  3759. case 0:
  3760. return &v.state
  3761. case 1:
  3762. return &v.sizeCache
  3763. case 2:
  3764. return &v.unknownFields
  3765. default:
  3766. return nil
  3767. }
  3768. }
  3769. file_organization_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3770. switch v := v.(*MultiAddItemHistoryDataReq); i {
  3771. case 0:
  3772. return &v.state
  3773. case 1:
  3774. return &v.sizeCache
  3775. case 2:
  3776. return &v.unknownFields
  3777. default:
  3778. return nil
  3779. }
  3780. }
  3781. file_organization_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3782. switch v := v.(*MultiAddItemHistoryDataResp); i {
  3783. case 0:
  3784. return &v.state
  3785. case 1:
  3786. return &v.sizeCache
  3787. case 2:
  3788. return &v.unknownFields
  3789. default:
  3790. return nil
  3791. }
  3792. }
  3793. file_organization_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3794. switch v := v.(*ItemHistoryDataListReq); i {
  3795. case 0:
  3796. return &v.state
  3797. case 1:
  3798. return &v.sizeCache
  3799. case 2:
  3800. return &v.unknownFields
  3801. default:
  3802. return nil
  3803. }
  3804. }
  3805. file_organization_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3806. switch v := v.(*ItemHistoryDataByTimeReq); i {
  3807. case 0:
  3808. return &v.state
  3809. case 1:
  3810. return &v.sizeCache
  3811. case 2:
  3812. return &v.unknownFields
  3813. default:
  3814. return nil
  3815. }
  3816. }
  3817. file_organization_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3818. switch v := v.(*ItemHistoryDataMaxMinResp); i {
  3819. case 0:
  3820. return &v.state
  3821. case 1:
  3822. return &v.sizeCache
  3823. case 2:
  3824. return &v.unknownFields
  3825. default:
  3826. return nil
  3827. }
  3828. }
  3829. file_organization_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3830. switch v := v.(*ItemHistoryDataFirstLastResp); i {
  3831. case 0:
  3832. return &v.state
  3833. case 1:
  3834. return &v.sizeCache
  3835. case 2:
  3836. return &v.unknownFields
  3837. default:
  3838. return nil
  3839. }
  3840. }
  3841. file_organization_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3842. switch v := v.(*ChangeTypeItemHistoryDataResp); i {
  3843. case 0:
  3844. return &v.state
  3845. case 1:
  3846. return &v.sizeCache
  3847. case 2:
  3848. return &v.unknownFields
  3849. default:
  3850. return nil
  3851. }
  3852. }
  3853. file_organization_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3854. switch v := v.(*ItemHistoryDataList); i {
  3855. case 0:
  3856. return &v.state
  3857. case 1:
  3858. return &v.sizeCache
  3859. case 2:
  3860. return &v.unknownFields
  3861. default:
  3862. return nil
  3863. }
  3864. }
  3865. file_organization_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3866. switch v := v.(*ItemHistoryDataForChart); i {
  3867. case 0:
  3868. return &v.state
  3869. case 1:
  3870. return &v.sizeCache
  3871. case 2:
  3872. return &v.unknownFields
  3873. default:
  3874. return nil
  3875. }
  3876. }
  3877. file_organization_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3878. switch v := v.(*ItemHistoryDataForChartReq); i {
  3879. case 0:
  3880. return &v.state
  3881. case 1:
  3882. return &v.sizeCache
  3883. case 2:
  3884. return &v.unknownFields
  3885. default:
  3886. return nil
  3887. }
  3888. }
  3889. file_organization_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3890. switch v := v.(*ItemHistoryDataForChartResp); i {
  3891. case 0:
  3892. return &v.state
  3893. case 1:
  3894. return &v.sizeCache
  3895. case 2:
  3896. return &v.unknownFields
  3897. default:
  3898. return nil
  3899. }
  3900. }
  3901. file_organization_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3902. switch v := v.(*ItemHistoryDataListResp); i {
  3903. case 0:
  3904. return &v.state
  3905. case 1:
  3906. return &v.sizeCache
  3907. case 2:
  3908. return &v.unknownFields
  3909. default:
  3910. return nil
  3911. }
  3912. }
  3913. file_organization_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3914. switch v := v.(*GetWorkingUfByCodeResp); i {
  3915. case 0:
  3916. return &v.state
  3917. case 1:
  3918. return &v.sizeCache
  3919. case 2:
  3920. return &v.unknownFields
  3921. default:
  3922. return nil
  3923. }
  3924. }
  3925. file_organization_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3926. switch v := v.(*FindWorkingUfByCycleReq); i {
  3927. case 0:
  3928. return &v.state
  3929. case 1:
  3930. return &v.sizeCache
  3931. case 2:
  3932. return &v.unknownFields
  3933. default:
  3934. return nil
  3935. }
  3936. }
  3937. file_organization_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3938. switch v := v.(*FindWorkingUfByCycleResp); i {
  3939. case 0:
  3940. return &v.state
  3941. case 1:
  3942. return &v.sizeCache
  3943. case 2:
  3944. return &v.unknownFields
  3945. default:
  3946. return nil
  3947. }
  3948. }
  3949. file_organization_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3950. switch v := v.(*GetWorkingRoByCodeResp); i {
  3951. case 0:
  3952. return &v.state
  3953. case 1:
  3954. return &v.sizeCache
  3955. case 2:
  3956. return &v.unknownFields
  3957. default:
  3958. return nil
  3959. }
  3960. }
  3961. file_organization_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3962. switch v := v.(*GetWorkingNfByCodeResp); i {
  3963. case 0:
  3964. return &v.state
  3965. case 1:
  3966. return &v.sizeCache
  3967. case 2:
  3968. return &v.unknownFields
  3969. default:
  3970. return nil
  3971. }
  3972. }
  3973. file_organization_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3974. switch v := v.(*GetWorkingMfByCodeResp); i {
  3975. case 0:
  3976. return &v.state
  3977. case 1:
  3978. return &v.sizeCache
  3979. case 2:
  3980. return &v.unknownFields
  3981. default:
  3982. return nil
  3983. }
  3984. }
  3985. file_organization_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3986. switch v := v.(*GetWorkingPumpByCodeResp); i {
  3987. case 0:
  3988. return &v.state
  3989. case 1:
  3990. return &v.sizeCache
  3991. case 2:
  3992. return &v.unknownFields
  3993. default:
  3994. return nil
  3995. }
  3996. }
  3997. file_organization_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3998. switch v := v.(*GetWorkingValveByCodeResp); i {
  3999. case 0:
  4000. return &v.state
  4001. case 1:
  4002. return &v.sizeCache
  4003. case 2:
  4004. return &v.unknownFields
  4005. default:
  4006. return nil
  4007. }
  4008. }
  4009. file_organization_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4010. switch v := v.(*GetWorkingChestByCodeResp); i {
  4011. case 0:
  4012. return &v.state
  4013. case 1:
  4014. return &v.sizeCache
  4015. case 2:
  4016. return &v.unknownFields
  4017. default:
  4018. return nil
  4019. }
  4020. }
  4021. }
  4022. type x struct{}
  4023. out := protoimpl.TypeBuilder{
  4024. File: protoimpl.DescBuilder{
  4025. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4026. RawDescriptor: file_organization_proto_rawDesc,
  4027. NumEnums: 0,
  4028. NumMessages: 30,
  4029. NumExtensions: 0,
  4030. NumServices: 1,
  4031. },
  4032. GoTypes: file_organization_proto_goTypes,
  4033. DependencyIndexes: file_organization_proto_depIdxs,
  4034. MessageInfos: file_organization_proto_msgTypes,
  4035. }.Build()
  4036. File_organization_proto = out.File
  4037. file_organization_proto_rawDesc = nil
  4038. file_organization_proto_goTypes = nil
  4039. file_organization_proto_depIdxs = nil
  4040. }