organization.pb.go 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.0
  4. // protoc v4.23.4
  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:"feed_wq_turbidity"
  393. FeedWqTurbidity float64 `protobuf:"fixed64,13,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity"` // 进水浊度
  394. // @gotags: json:"feed_wq_ph"
  395. FeedWqPh int64 `protobuf:"varint,14,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph"` // 进水 PH 值
  396. // @gotags: json:"product_wq_ph"
  397. ProductWqPh int64 `protobuf:"varint,15,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph"` // 产水 PH 值
  398. // @gotags: json:"feed_wq_al"
  399. FeedWqAl float64 `protobuf:"fixed64,16,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al"` // 进水水质:铝
  400. // @gotags: json:"product_wq_al"
  401. ProductWqAl float64 `protobuf:"fixed64,17,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al"` // 产水水质:铝
  402. // @gotags: json:"feed_wq_fe"
  403. FeedWqFe float64 `protobuf:"fixed64,18,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe"` // 进水水质:铁
  404. // @gotags: json:"product_wq_fe"
  405. ProductWqFe float64 `protobuf:"fixed64,19,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe"` // 产水水质:铁
  406. // @gotags: json:"feed_wq_mn"
  407. FeedWqMn float64 `protobuf:"fixed64,20,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn"` // 进水水质:锰
  408. // @gotags: json:"product_wq_mn"
  409. ProductWqMn float64 `protobuf:"fixed64,21,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn"` // 产水水质:锰
  410. // @gotags: json:"feed_wq_sio2"
  411. FeedWqSio2 float64 `protobuf:"fixed64,22,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2"` // 进水水质:二氧化硅
  412. // @gotags: json:"product_wq_sio2"
  413. ProductWqSio2 float64 `protobuf:"fixed64,23,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2"` // 产水水质:二氧化硅
  414. // @gotags: json:"feed_wq_cod"
  415. FeedWqCod float64 `protobuf:"fixed64,24,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod"` // 进水水质:COD
  416. // @gotags: json:"product_wq_cod"
  417. ProductWqCod float64 `protobuf:"fixed64,25,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod"` // 产水水质:COD
  418. // @gotags: json:"feed_wq_p"
  419. FeedWqP float64 `protobuf:"fixed64,26,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p"` // 进水水质:磷
  420. // @gotags: json:"product_wq_p"
  421. ProductWqP float64 `protobuf:"fixed64,27,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p"` // 产水水质:磷
  422. // @gotags: json:"step"
  423. Step int64 `protobuf:"varint,28,opt,name=step,proto3" json:"step"` // 设备当前步序值
  424. // @gotags: json:"c_time"
  425. CTime string `protobuf:"bytes,29,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  426. }
  427. func (x *WorkingUf) Reset() {
  428. *x = WorkingUf{}
  429. if protoimpl.UnsafeEnabled {
  430. mi := &file_organization_proto_msgTypes[2]
  431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  432. ms.StoreMessageInfo(mi)
  433. }
  434. }
  435. func (x *WorkingUf) String() string {
  436. return protoimpl.X.MessageStringOf(x)
  437. }
  438. func (*WorkingUf) ProtoMessage() {}
  439. func (x *WorkingUf) ProtoReflect() protoreflect.Message {
  440. mi := &file_organization_proto_msgTypes[2]
  441. if protoimpl.UnsafeEnabled && x != nil {
  442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  443. if ms.LoadMessageInfo() == nil {
  444. ms.StoreMessageInfo(mi)
  445. }
  446. return ms
  447. }
  448. return mi.MessageOf(x)
  449. }
  450. // Deprecated: Use WorkingUf.ProtoReflect.Descriptor instead.
  451. func (*WorkingUf) Descriptor() ([]byte, []int) {
  452. return file_organization_proto_rawDescGZIP(), []int{2}
  453. }
  454. func (x *WorkingUf) GetId() int64 {
  455. if x != nil {
  456. return x.Id
  457. }
  458. return 0
  459. }
  460. func (x *WorkingUf) GetProjectId() int64 {
  461. if x != nil {
  462. return x.ProjectId
  463. }
  464. return 0
  465. }
  466. func (x *WorkingUf) GetDeviceCode() string {
  467. if x != nil {
  468. return x.DeviceCode
  469. }
  470. return ""
  471. }
  472. func (x *WorkingUf) GetWaterTemperature() float64 {
  473. if x != nil {
  474. return x.WaterTemperature
  475. }
  476. return 0
  477. }
  478. func (x *WorkingUf) GetFeedFlow() float64 {
  479. if x != nil {
  480. return x.FeedFlow
  481. }
  482. return 0
  483. }
  484. func (x *WorkingUf) GetConFlow() float64 {
  485. if x != nil {
  486. return x.ConFlow
  487. }
  488. return 0
  489. }
  490. func (x *WorkingUf) GetProductFlow() float64 {
  491. if x != nil {
  492. return x.ProductFlow
  493. }
  494. return 0
  495. }
  496. func (x *WorkingUf) GetFeedPressure() float64 {
  497. if x != nil {
  498. return x.FeedPressure
  499. }
  500. return 0
  501. }
  502. func (x *WorkingUf) GetConPressure() float64 {
  503. if x != nil {
  504. return x.ConPressure
  505. }
  506. return 0
  507. }
  508. func (x *WorkingUf) GetProductPressure() float64 {
  509. if x != nil {
  510. return x.ProductPressure
  511. }
  512. return 0
  513. }
  514. func (x *WorkingUf) GetTmp() float64 {
  515. if x != nil {
  516. return x.Tmp
  517. }
  518. return 0
  519. }
  520. func (x *WorkingUf) GetFlux() float64 {
  521. if x != nil {
  522. return x.Flux
  523. }
  524. return 0
  525. }
  526. func (x *WorkingUf) GetFeedWqTurbidity() float64 {
  527. if x != nil {
  528. return x.FeedWqTurbidity
  529. }
  530. return 0
  531. }
  532. func (x *WorkingUf) GetFeedWqPh() int64 {
  533. if x != nil {
  534. return x.FeedWqPh
  535. }
  536. return 0
  537. }
  538. func (x *WorkingUf) GetProductWqPh() int64 {
  539. if x != nil {
  540. return x.ProductWqPh
  541. }
  542. return 0
  543. }
  544. func (x *WorkingUf) GetFeedWqAl() float64 {
  545. if x != nil {
  546. return x.FeedWqAl
  547. }
  548. return 0
  549. }
  550. func (x *WorkingUf) GetProductWqAl() float64 {
  551. if x != nil {
  552. return x.ProductWqAl
  553. }
  554. return 0
  555. }
  556. func (x *WorkingUf) GetFeedWqFe() float64 {
  557. if x != nil {
  558. return x.FeedWqFe
  559. }
  560. return 0
  561. }
  562. func (x *WorkingUf) GetProductWqFe() float64 {
  563. if x != nil {
  564. return x.ProductWqFe
  565. }
  566. return 0
  567. }
  568. func (x *WorkingUf) GetFeedWqMn() float64 {
  569. if x != nil {
  570. return x.FeedWqMn
  571. }
  572. return 0
  573. }
  574. func (x *WorkingUf) GetProductWqMn() float64 {
  575. if x != nil {
  576. return x.ProductWqMn
  577. }
  578. return 0
  579. }
  580. func (x *WorkingUf) GetFeedWqSio2() float64 {
  581. if x != nil {
  582. return x.FeedWqSio2
  583. }
  584. return 0
  585. }
  586. func (x *WorkingUf) GetProductWqSio2() float64 {
  587. if x != nil {
  588. return x.ProductWqSio2
  589. }
  590. return 0
  591. }
  592. func (x *WorkingUf) GetFeedWqCod() float64 {
  593. if x != nil {
  594. return x.FeedWqCod
  595. }
  596. return 0
  597. }
  598. func (x *WorkingUf) GetProductWqCod() float64 {
  599. if x != nil {
  600. return x.ProductWqCod
  601. }
  602. return 0
  603. }
  604. func (x *WorkingUf) GetFeedWqP() float64 {
  605. if x != nil {
  606. return x.FeedWqP
  607. }
  608. return 0
  609. }
  610. func (x *WorkingUf) GetProductWqP() float64 {
  611. if x != nil {
  612. return x.ProductWqP
  613. }
  614. return 0
  615. }
  616. func (x *WorkingUf) GetStep() int64 {
  617. if x != nil {
  618. return x.Step
  619. }
  620. return 0
  621. }
  622. func (x *WorkingUf) GetCTime() string {
  623. if x != nil {
  624. return x.CTime
  625. }
  626. return ""
  627. }
  628. type WorkingNf struct {
  629. state protoimpl.MessageState
  630. sizeCache protoimpl.SizeCache
  631. unknownFields protoimpl.UnknownFields
  632. // gotags: json:"id"
  633. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  634. // gotags: json:"project_id"
  635. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  636. // gotags: json:"device_code"
  637. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  638. // gotags: json:"water_temperature"
  639. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  640. // gotags: json:"feed_flow_1st"
  641. FeedFlow_1St float64 `protobuf:"fixed64,5,opt,name=feed_flow_1st,json=feedFlow1st,proto3" json:"feed_flow_1st,omitempty"` // 一段进水流量
  642. // gotags: json:"con_flow_1st"
  643. ConFlow_1St float64 `protobuf:"fixed64,6,opt,name=con_flow_1st,json=conFlow1st,proto3" json:"con_flow_1st,omitempty"` // 一段浓水流量
  644. // gotags: json:"product_flow_1st"
  645. ProductFlow_1St float64 `protobuf:"fixed64,7,opt,name=product_flow_1st,json=productFlow1st,proto3" json:"product_flow_1st,omitempty"` // 一段产水流量
  646. // gotags: json:"feed_pressure_1st"
  647. FeedPressure_1St float64 `protobuf:"fixed64,8,opt,name=feed_pressure_1st,json=feedPressure1st,proto3" json:"feed_pressure_1st,omitempty"` // 一段进水压力
  648. // gotags: json:"con_pressure_1st"
  649. ConPressure_1St float64 `protobuf:"fixed64,9,opt,name=con_pressure_1st,json=conPressure1st,proto3" json:"con_pressure_1st,omitempty"` // 一段浓水压力
  650. // gotags: json:"product_pressure_1st"
  651. ProductPressure_1St float64 `protobuf:"fixed64,10,opt,name=product_pressure_1st,json=productPressure1st,proto3" json:"product_pressure_1st,omitempty"` // 一段产水压力
  652. // gotags: json:"tmp_1st"
  653. Tmp_1St float64 `protobuf:"fixed64,11,opt,name=tmp_1st,json=tmp1st,proto3" json:"tmp_1st,omitempty"` // 一段跨膜压差
  654. // gotags: json:"flux_1st"
  655. Flux_1St float64 `protobuf:"fixed64,12,opt,name=flux_1st,json=flux1st,proto3" json:"flux_1st,omitempty"` // 一段膜通量
  656. // gotags: json:"permeability_1st"
  657. Permeability_1St float64 `protobuf:"fixed64,13,opt,name=permeability_1st,json=permeability1st,proto3" json:"permeability_1st,omitempty"` // 一段渗透率
  658. // gotags: json:"feed_flow_2nd"
  659. FeedFlow_2Nd float64 `protobuf:"fixed64,14,opt,name=feed_flow_2nd,json=feedFlow2nd,proto3" json:"feed_flow_2nd,omitempty"` // 二段进水流量
  660. // gotags: json:"con_flow_2nd"
  661. ConFlow_2Nd float64 `protobuf:"fixed64,15,opt,name=con_flow_2nd,json=conFlow2nd,proto3" json:"con_flow_2nd,omitempty"` // 二段浓水流量
  662. // gotags: json:"product_flow_2nd"
  663. ProductFlow_2Nd float64 `protobuf:"fixed64,16,opt,name=product_flow_2nd,json=productFlow2nd,proto3" json:"product_flow_2nd,omitempty"` // 二段产水流量
  664. // gotags: json:"feed_pressure_2nd"
  665. FeedPressure_2Nd float64 `protobuf:"fixed64,17,opt,name=feed_pressure_2nd,json=feedPressure2nd,proto3" json:"feed_pressure_2nd,omitempty"` // 二段进水压力
  666. // gotags: json:"con_pressure_2nd"
  667. ConPressure_2Nd float64 `protobuf:"fixed64,18,opt,name=con_pressure_2nd,json=conPressure2nd,proto3" json:"con_pressure_2nd,omitempty"` // 二段浓水压力
  668. // gotags: json:"product_pressure_2nd"
  669. ProductPressure_2Nd float64 `protobuf:"fixed64,19,opt,name=product_pressure_2nd,json=productPressure2nd,proto3" json:"product_pressure_2nd,omitempty"` // 二段产水压力
  670. // gotags: json:"tmp_2nd"
  671. Tmp_2Nd float64 `protobuf:"fixed64,20,opt,name=tmp_2nd,json=tmp2nd,proto3" json:"tmp_2nd,omitempty"` // 二段压差
  672. // gotags: json:"flux_2nd"
  673. Flux_2Nd float64 `protobuf:"fixed64,21,opt,name=flux_2nd,json=flux2nd,proto3" json:"flux_2nd,omitempty"` // 二段通量
  674. // gotags: json:"permeability_2nd"
  675. Permeability_2Nd float64 `protobuf:"fixed64,22,opt,name=permeability_2nd,json=permeability2nd,proto3" json:"permeability_2nd,omitempty"` // 二段渗透率
  676. // gotags: json:"feed_flow_3th"
  677. FeedFlow_3Th float64 `protobuf:"fixed64,23,opt,name=feed_flow_3th,json=feedFlow3th,proto3" json:"feed_flow_3th,omitempty"` // 三段进水流量
  678. // gotags: json:"con_flow_3th"
  679. ConFlow_3Th float64 `protobuf:"fixed64,24,opt,name=con_flow_3th,json=conFlow3th,proto3" json:"con_flow_3th,omitempty"` // 三段浓水流量
  680. // gotags: json:"product_flow_3th"
  681. ProductFlow_3Th float64 `protobuf:"fixed64,25,opt,name=product_flow_3th,json=productFlow3th,proto3" json:"product_flow_3th,omitempty"` // 三段产水流量
  682. // gotags: json:"feed_pressure_3th"
  683. FeedPressure_3Th float64 `protobuf:"fixed64,26,opt,name=feed_pressure_3th,json=feedPressure3th,proto3" json:"feed_pressure_3th,omitempty"` // 三段进水压力
  684. // gotags: json:"con_pressure_3th"
  685. ConPressure_3Th float64 `protobuf:"fixed64,27,opt,name=con_pressure_3th,json=conPressure3th,proto3" json:"con_pressure_3th,omitempty"` // 三段浓水压力
  686. // gotags: json:"product_pressure_3th"
  687. ProductPressure_3Th float64 `protobuf:"fixed64,28,opt,name=product_pressure_3th,json=productPressure3th,proto3" json:"product_pressure_3th,omitempty"` // 三段产水压力
  688. // gotags: json:"tmp_3th"
  689. Tmp_3Th float64 `protobuf:"fixed64,29,opt,name=tmp_3th,json=tmp3th,proto3" json:"tmp_3th,omitempty"` // 三段压差
  690. // gotags: json:"flux_3th"
  691. Flux_3Th float64 `protobuf:"fixed64,30,opt,name=flux_3th,json=flux3th,proto3" json:"flux_3th,omitempty"` // 三段通量
  692. // gotags: json:"permeability_3th"
  693. Permeability_3Th float64 `protobuf:"fixed64,31,opt,name=permeability_3th,json=permeability3th,proto3" json:"permeability_3th,omitempty"` // 三段渗透率
  694. // gotags: json:"feed_wq_turbidity"
  695. FeedWqTurbidity float64 `protobuf:"fixed64,32,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  696. // gotags: json:"feed_wq_ph"
  697. FeedWqPh int64 `protobuf:"varint,33,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  698. // gotags: json:"product_wq_ph"
  699. ProductWqPh int64 `protobuf:"varint,34,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  700. // gotags: json:"feed_wq_al"
  701. FeedWqAl float64 `protobuf:"fixed64,35,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  702. // gotags: json:"product_wq_al"
  703. ProductWqAl float64 `protobuf:"fixed64,36,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  704. // gotags: json:"feed_wq_fe"
  705. FeedWqFe float64 `protobuf:"fixed64,37,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  706. // gotags: json:"product_wq_fe"
  707. ProductWqFe float64 `protobuf:"fixed64,38,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  708. // gotags: json:"feed_wq_mn"
  709. FeedWqMn float64 `protobuf:"fixed64,39,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  710. // gotags: json:"product_wq_mn"
  711. ProductWqMn float64 `protobuf:"fixed64,40,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  712. // gotags: json:"feed_wq_sio2"
  713. FeedWqSio2 float64 `protobuf:"fixed64,41,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  714. // gotags: json:"product_wq_sio2"
  715. ProductWqSio2 float64 `protobuf:"fixed64,42,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  716. // gotags: json:"feed_wq_cod"
  717. FeedWqCod float64 `protobuf:"fixed64,43,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  718. // gotags: json:"product_wq_cod"
  719. ProductWqCod float64 `protobuf:"fixed64,44,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  720. // gotags: json:"feed_wq_p"
  721. FeedWqP float64 `protobuf:"fixed64,45,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  722. // gotags: json:"product_wq_p"
  723. ProductWqP float64 `protobuf:"fixed64,46,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  724. // gotags: json:"step"
  725. Step int64 `protobuf:"varint,47,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  726. // gotags: json:"c_time"
  727. CTime string `protobuf:"bytes,48,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  728. }
  729. func (x *WorkingNf) Reset() {
  730. *x = WorkingNf{}
  731. if protoimpl.UnsafeEnabled {
  732. mi := &file_organization_proto_msgTypes[3]
  733. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  734. ms.StoreMessageInfo(mi)
  735. }
  736. }
  737. func (x *WorkingNf) String() string {
  738. return protoimpl.X.MessageStringOf(x)
  739. }
  740. func (*WorkingNf) ProtoMessage() {}
  741. func (x *WorkingNf) ProtoReflect() protoreflect.Message {
  742. mi := &file_organization_proto_msgTypes[3]
  743. if protoimpl.UnsafeEnabled && x != nil {
  744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  745. if ms.LoadMessageInfo() == nil {
  746. ms.StoreMessageInfo(mi)
  747. }
  748. return ms
  749. }
  750. return mi.MessageOf(x)
  751. }
  752. // Deprecated: Use WorkingNf.ProtoReflect.Descriptor instead.
  753. func (*WorkingNf) Descriptor() ([]byte, []int) {
  754. return file_organization_proto_rawDescGZIP(), []int{3}
  755. }
  756. func (x *WorkingNf) GetId() int64 {
  757. if x != nil {
  758. return x.Id
  759. }
  760. return 0
  761. }
  762. func (x *WorkingNf) GetProjectId() int64 {
  763. if x != nil {
  764. return x.ProjectId
  765. }
  766. return 0
  767. }
  768. func (x *WorkingNf) GetDeviceCode() string {
  769. if x != nil {
  770. return x.DeviceCode
  771. }
  772. return ""
  773. }
  774. func (x *WorkingNf) GetWaterTemperature() float64 {
  775. if x != nil {
  776. return x.WaterTemperature
  777. }
  778. return 0
  779. }
  780. func (x *WorkingNf) GetFeedFlow_1St() float64 {
  781. if x != nil {
  782. return x.FeedFlow_1St
  783. }
  784. return 0
  785. }
  786. func (x *WorkingNf) GetConFlow_1St() float64 {
  787. if x != nil {
  788. return x.ConFlow_1St
  789. }
  790. return 0
  791. }
  792. func (x *WorkingNf) GetProductFlow_1St() float64 {
  793. if x != nil {
  794. return x.ProductFlow_1St
  795. }
  796. return 0
  797. }
  798. func (x *WorkingNf) GetFeedPressure_1St() float64 {
  799. if x != nil {
  800. return x.FeedPressure_1St
  801. }
  802. return 0
  803. }
  804. func (x *WorkingNf) GetConPressure_1St() float64 {
  805. if x != nil {
  806. return x.ConPressure_1St
  807. }
  808. return 0
  809. }
  810. func (x *WorkingNf) GetProductPressure_1St() float64 {
  811. if x != nil {
  812. return x.ProductPressure_1St
  813. }
  814. return 0
  815. }
  816. func (x *WorkingNf) GetTmp_1St() float64 {
  817. if x != nil {
  818. return x.Tmp_1St
  819. }
  820. return 0
  821. }
  822. func (x *WorkingNf) GetFlux_1St() float64 {
  823. if x != nil {
  824. return x.Flux_1St
  825. }
  826. return 0
  827. }
  828. func (x *WorkingNf) GetPermeability_1St() float64 {
  829. if x != nil {
  830. return x.Permeability_1St
  831. }
  832. return 0
  833. }
  834. func (x *WorkingNf) GetFeedFlow_2Nd() float64 {
  835. if x != nil {
  836. return x.FeedFlow_2Nd
  837. }
  838. return 0
  839. }
  840. func (x *WorkingNf) GetConFlow_2Nd() float64 {
  841. if x != nil {
  842. return x.ConFlow_2Nd
  843. }
  844. return 0
  845. }
  846. func (x *WorkingNf) GetProductFlow_2Nd() float64 {
  847. if x != nil {
  848. return x.ProductFlow_2Nd
  849. }
  850. return 0
  851. }
  852. func (x *WorkingNf) GetFeedPressure_2Nd() float64 {
  853. if x != nil {
  854. return x.FeedPressure_2Nd
  855. }
  856. return 0
  857. }
  858. func (x *WorkingNf) GetConPressure_2Nd() float64 {
  859. if x != nil {
  860. return x.ConPressure_2Nd
  861. }
  862. return 0
  863. }
  864. func (x *WorkingNf) GetProductPressure_2Nd() float64 {
  865. if x != nil {
  866. return x.ProductPressure_2Nd
  867. }
  868. return 0
  869. }
  870. func (x *WorkingNf) GetTmp_2Nd() float64 {
  871. if x != nil {
  872. return x.Tmp_2Nd
  873. }
  874. return 0
  875. }
  876. func (x *WorkingNf) GetFlux_2Nd() float64 {
  877. if x != nil {
  878. return x.Flux_2Nd
  879. }
  880. return 0
  881. }
  882. func (x *WorkingNf) GetPermeability_2Nd() float64 {
  883. if x != nil {
  884. return x.Permeability_2Nd
  885. }
  886. return 0
  887. }
  888. func (x *WorkingNf) GetFeedFlow_3Th() float64 {
  889. if x != nil {
  890. return x.FeedFlow_3Th
  891. }
  892. return 0
  893. }
  894. func (x *WorkingNf) GetConFlow_3Th() float64 {
  895. if x != nil {
  896. return x.ConFlow_3Th
  897. }
  898. return 0
  899. }
  900. func (x *WorkingNf) GetProductFlow_3Th() float64 {
  901. if x != nil {
  902. return x.ProductFlow_3Th
  903. }
  904. return 0
  905. }
  906. func (x *WorkingNf) GetFeedPressure_3Th() float64 {
  907. if x != nil {
  908. return x.FeedPressure_3Th
  909. }
  910. return 0
  911. }
  912. func (x *WorkingNf) GetConPressure_3Th() float64 {
  913. if x != nil {
  914. return x.ConPressure_3Th
  915. }
  916. return 0
  917. }
  918. func (x *WorkingNf) GetProductPressure_3Th() float64 {
  919. if x != nil {
  920. return x.ProductPressure_3Th
  921. }
  922. return 0
  923. }
  924. func (x *WorkingNf) GetTmp_3Th() float64 {
  925. if x != nil {
  926. return x.Tmp_3Th
  927. }
  928. return 0
  929. }
  930. func (x *WorkingNf) GetFlux_3Th() float64 {
  931. if x != nil {
  932. return x.Flux_3Th
  933. }
  934. return 0
  935. }
  936. func (x *WorkingNf) GetPermeability_3Th() float64 {
  937. if x != nil {
  938. return x.Permeability_3Th
  939. }
  940. return 0
  941. }
  942. func (x *WorkingNf) GetFeedWqTurbidity() float64 {
  943. if x != nil {
  944. return x.FeedWqTurbidity
  945. }
  946. return 0
  947. }
  948. func (x *WorkingNf) GetFeedWqPh() int64 {
  949. if x != nil {
  950. return x.FeedWqPh
  951. }
  952. return 0
  953. }
  954. func (x *WorkingNf) GetProductWqPh() int64 {
  955. if x != nil {
  956. return x.ProductWqPh
  957. }
  958. return 0
  959. }
  960. func (x *WorkingNf) GetFeedWqAl() float64 {
  961. if x != nil {
  962. return x.FeedWqAl
  963. }
  964. return 0
  965. }
  966. func (x *WorkingNf) GetProductWqAl() float64 {
  967. if x != nil {
  968. return x.ProductWqAl
  969. }
  970. return 0
  971. }
  972. func (x *WorkingNf) GetFeedWqFe() float64 {
  973. if x != nil {
  974. return x.FeedWqFe
  975. }
  976. return 0
  977. }
  978. func (x *WorkingNf) GetProductWqFe() float64 {
  979. if x != nil {
  980. return x.ProductWqFe
  981. }
  982. return 0
  983. }
  984. func (x *WorkingNf) GetFeedWqMn() float64 {
  985. if x != nil {
  986. return x.FeedWqMn
  987. }
  988. return 0
  989. }
  990. func (x *WorkingNf) GetProductWqMn() float64 {
  991. if x != nil {
  992. return x.ProductWqMn
  993. }
  994. return 0
  995. }
  996. func (x *WorkingNf) GetFeedWqSio2() float64 {
  997. if x != nil {
  998. return x.FeedWqSio2
  999. }
  1000. return 0
  1001. }
  1002. func (x *WorkingNf) GetProductWqSio2() float64 {
  1003. if x != nil {
  1004. return x.ProductWqSio2
  1005. }
  1006. return 0
  1007. }
  1008. func (x *WorkingNf) GetFeedWqCod() float64 {
  1009. if x != nil {
  1010. return x.FeedWqCod
  1011. }
  1012. return 0
  1013. }
  1014. func (x *WorkingNf) GetProductWqCod() float64 {
  1015. if x != nil {
  1016. return x.ProductWqCod
  1017. }
  1018. return 0
  1019. }
  1020. func (x *WorkingNf) GetFeedWqP() float64 {
  1021. if x != nil {
  1022. return x.FeedWqP
  1023. }
  1024. return 0
  1025. }
  1026. func (x *WorkingNf) GetProductWqP() float64 {
  1027. if x != nil {
  1028. return x.ProductWqP
  1029. }
  1030. return 0
  1031. }
  1032. func (x *WorkingNf) GetStep() int64 {
  1033. if x != nil {
  1034. return x.Step
  1035. }
  1036. return 0
  1037. }
  1038. func (x *WorkingNf) GetCTime() string {
  1039. if x != nil {
  1040. return x.CTime
  1041. }
  1042. return ""
  1043. }
  1044. type WorkingRo struct {
  1045. state protoimpl.MessageState
  1046. sizeCache protoimpl.SizeCache
  1047. unknownFields protoimpl.UnknownFields
  1048. // gotags: json:"id"
  1049. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1050. // gotags: json:"project_id"
  1051. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1052. // gotags: json:"device_code"
  1053. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  1054. // gotags: json:"water_temperature"
  1055. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  1056. // gotags: json:"feed_flow_1st"
  1057. FeedFlow_1St float64 `protobuf:"fixed64,5,opt,name=feed_flow_1st,json=feedFlow1st,proto3" json:"feed_flow_1st,omitempty"` // 一段进水流量
  1058. // gotags: json:"con_flow_1st"
  1059. ConFlow_1St float64 `protobuf:"fixed64,6,opt,name=con_flow_1st,json=conFlow1st,proto3" json:"con_flow_1st,omitempty"` // 一段浓水流量
  1060. // gotags: json:"product_flow_1st"
  1061. ProductFlow_1St float64 `protobuf:"fixed64,7,opt,name=product_flow_1st,json=productFlow1st,proto3" json:"product_flow_1st,omitempty"` // 一段产水流量
  1062. // gotags: json:"feed_pressure_1st"
  1063. FeedPressure_1St float64 `protobuf:"fixed64,8,opt,name=feed_pressure_1st,json=feedPressure1st,proto3" json:"feed_pressure_1st,omitempty"` // 一段进水压力
  1064. // gotags: json:"con_pressure_1st"
  1065. ConPressure_1St float64 `protobuf:"fixed64,9,opt,name=con_pressure_1st,json=conPressure1st,proto3" json:"con_pressure_1st,omitempty"` // 一段浓水压力
  1066. // gotags: json:"product_pressure_1st"
  1067. ProductPressure_1St float64 `protobuf:"fixed64,10,opt,name=product_pressure_1st,json=productPressure1st,proto3" json:"product_pressure_1st,omitempty"` // 一段产水压力
  1068. // gotags: json:"tmp_1st"
  1069. Tmp_1St float64 `protobuf:"fixed64,11,opt,name=tmp_1st,json=tmp1st,proto3" json:"tmp_1st,omitempty"` // 一段跨膜压差
  1070. // gotags: json:"flux_1st"
  1071. Flux_1St float64 `protobuf:"fixed64,12,opt,name=flux_1st,json=flux1st,proto3" json:"flux_1st,omitempty"` // 一段膜通量
  1072. // gotags: json:"permeability_1st"
  1073. Permeability_1St float64 `protobuf:"fixed64,13,opt,name=permeability_1st,json=permeability1st,proto3" json:"permeability_1st,omitempty"` // 一段渗透率
  1074. // gotags: json:"feed_flow_2nd"
  1075. FeedFlow_2Nd float64 `protobuf:"fixed64,14,opt,name=feed_flow_2nd,json=feedFlow2nd,proto3" json:"feed_flow_2nd,omitempty"` // 二段进水流量
  1076. // gotags: json:"con_flow_2nd"
  1077. ConFlow_2Nd float64 `protobuf:"fixed64,15,opt,name=con_flow_2nd,json=conFlow2nd,proto3" json:"con_flow_2nd,omitempty"` // 二段浓水流量
  1078. // gotags: json:"product_flow_2nd"
  1079. ProductFlow_2Nd float64 `protobuf:"fixed64,16,opt,name=product_flow_2nd,json=productFlow2nd,proto3" json:"product_flow_2nd,omitempty"` // 二段产水流量
  1080. // gotags: json:"feed_pressure_2nd"
  1081. FeedPressure_2Nd float64 `protobuf:"fixed64,17,opt,name=feed_pressure_2nd,json=feedPressure2nd,proto3" json:"feed_pressure_2nd,omitempty"` // 二段进水压力
  1082. // gotags: json:"con_pressure_2nd"
  1083. ConPressure_2Nd float64 `protobuf:"fixed64,18,opt,name=con_pressure_2nd,json=conPressure2nd,proto3" json:"con_pressure_2nd,omitempty"` // 二段浓水压力
  1084. // gotags: json:"product_pressure_2nd"
  1085. ProductPressure_2Nd float64 `protobuf:"fixed64,19,opt,name=product_pressure_2nd,json=productPressure2nd,proto3" json:"product_pressure_2nd,omitempty"` // 二段产水压力
  1086. // gotags: json:"tmp_2nd"
  1087. Tmp_2Nd float64 `protobuf:"fixed64,20,opt,name=tmp_2nd,json=tmp2nd,proto3" json:"tmp_2nd,omitempty"` // 二段压差
  1088. // gotags: json:"flux_2nd"
  1089. Flux_2Nd float64 `protobuf:"fixed64,21,opt,name=flux_2nd,json=flux2nd,proto3" json:"flux_2nd,omitempty"` // 二段通量
  1090. // gotags: json:"permeability_2nd"
  1091. Permeability_2Nd float64 `protobuf:"fixed64,22,opt,name=permeability_2nd,json=permeability2nd,proto3" json:"permeability_2nd,omitempty"` // 二段渗透率
  1092. // gotags: json:"feed_flow_3th"
  1093. FeedFlow_3Th float64 `protobuf:"fixed64,23,opt,name=feed_flow_3th,json=feedFlow3th,proto3" json:"feed_flow_3th,omitempty"` // 三段进水流量
  1094. // gotags: json:"con_flow_3th"
  1095. ConFlow_3Th float64 `protobuf:"fixed64,24,opt,name=con_flow_3th,json=conFlow3th,proto3" json:"con_flow_3th,omitempty"` // 三段浓水流量
  1096. // gotags: json:"product_flow_3th"
  1097. ProductFlow_3Th float64 `protobuf:"fixed64,25,opt,name=product_flow_3th,json=productFlow3th,proto3" json:"product_flow_3th,omitempty"` // 三段产水流量
  1098. // gotags: json:"feed_pressure_3th"
  1099. FeedPressure_3Th float64 `protobuf:"fixed64,26,opt,name=feed_pressure_3th,json=feedPressure3th,proto3" json:"feed_pressure_3th,omitempty"` // 三段进水压力
  1100. // gotags: json:"con_pressure_3th"
  1101. ConPressure_3Th float64 `protobuf:"fixed64,27,opt,name=con_pressure_3th,json=conPressure3th,proto3" json:"con_pressure_3th,omitempty"` // 三段浓水压力
  1102. // gotags: json:"product_pressure_3th"
  1103. ProductPressure_3Th float64 `protobuf:"fixed64,28,opt,name=product_pressure_3th,json=productPressure3th,proto3" json:"product_pressure_3th,omitempty"` // 三段产水压力
  1104. // gotags: json:"tmp_3th"
  1105. Tmp_3Th float64 `protobuf:"fixed64,29,opt,name=tmp_3th,json=tmp3th,proto3" json:"tmp_3th,omitempty"` // 三段压差
  1106. // gotags: json:"flux_3th"
  1107. Flux_3Th float64 `protobuf:"fixed64,30,opt,name=flux_3th,json=flux3th,proto3" json:"flux_3th,omitempty"` // 三段通量
  1108. // gotags: json:"permeability_3th"
  1109. Permeability_3Th float64 `protobuf:"fixed64,31,opt,name=permeability_3th,json=permeability3th,proto3" json:"permeability_3th,omitempty"` // 三段渗透率
  1110. // gotags: json:"feed_wq_turbidity"
  1111. FeedWqTurbidity float64 `protobuf:"fixed64,32,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  1112. // gotags: json:"feed_wq_ph"
  1113. FeedWqPh int64 `protobuf:"varint,33,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  1114. // gotags: json:"product_wq_ph"
  1115. ProductWqPh int64 `protobuf:"varint,34,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  1116. // gotags: json:"feed_wq_al"
  1117. FeedWqAl float64 `protobuf:"fixed64,35,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  1118. // gotags: json:"product_wq_al"
  1119. ProductWqAl float64 `protobuf:"fixed64,36,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  1120. // gotags: json:"feed_wq_fe"
  1121. FeedWqFe float64 `protobuf:"fixed64,37,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  1122. // gotags: json:"product_wq_fe"
  1123. ProductWqFe float64 `protobuf:"fixed64,38,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  1124. // gotags: json:"feed_wq_mn"
  1125. FeedWqMn float64 `protobuf:"fixed64,39,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  1126. // gotags: json:"product_wq_mn"
  1127. ProductWqMn float64 `protobuf:"fixed64,40,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  1128. // gotags: json:"feed_wq_sio2"
  1129. FeedWqSio2 float64 `protobuf:"fixed64,41,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  1130. // gotags: json:"product_wq_sio2"
  1131. ProductWqSio2 float64 `protobuf:"fixed64,42,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  1132. // gotags: json:"feed_wq_cod"
  1133. FeedWqCod float64 `protobuf:"fixed64,43,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  1134. // gotags: json:"product_wq_cod"
  1135. ProductWqCod float64 `protobuf:"fixed64,44,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  1136. // gotags: json:"feed_wq_p"
  1137. FeedWqP float64 `protobuf:"fixed64,45,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  1138. // gotags: json:"product_wq_p"
  1139. ProductWqP float64 `protobuf:"fixed64,46,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  1140. // gotags: json:"step"
  1141. Step int64 `protobuf:"varint,47,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  1142. // gotags: json:"c_time"
  1143. CTime string `protobuf:"bytes,48,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  1144. }
  1145. func (x *WorkingRo) Reset() {
  1146. *x = WorkingRo{}
  1147. if protoimpl.UnsafeEnabled {
  1148. mi := &file_organization_proto_msgTypes[4]
  1149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. }
  1153. func (x *WorkingRo) String() string {
  1154. return protoimpl.X.MessageStringOf(x)
  1155. }
  1156. func (*WorkingRo) ProtoMessage() {}
  1157. func (x *WorkingRo) ProtoReflect() protoreflect.Message {
  1158. mi := &file_organization_proto_msgTypes[4]
  1159. if protoimpl.UnsafeEnabled && x != nil {
  1160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1161. if ms.LoadMessageInfo() == nil {
  1162. ms.StoreMessageInfo(mi)
  1163. }
  1164. return ms
  1165. }
  1166. return mi.MessageOf(x)
  1167. }
  1168. // Deprecated: Use WorkingRo.ProtoReflect.Descriptor instead.
  1169. func (*WorkingRo) Descriptor() ([]byte, []int) {
  1170. return file_organization_proto_rawDescGZIP(), []int{4}
  1171. }
  1172. func (x *WorkingRo) GetId() int64 {
  1173. if x != nil {
  1174. return x.Id
  1175. }
  1176. return 0
  1177. }
  1178. func (x *WorkingRo) GetProjectId() int64 {
  1179. if x != nil {
  1180. return x.ProjectId
  1181. }
  1182. return 0
  1183. }
  1184. func (x *WorkingRo) GetDeviceCode() string {
  1185. if x != nil {
  1186. return x.DeviceCode
  1187. }
  1188. return ""
  1189. }
  1190. func (x *WorkingRo) GetWaterTemperature() float64 {
  1191. if x != nil {
  1192. return x.WaterTemperature
  1193. }
  1194. return 0
  1195. }
  1196. func (x *WorkingRo) GetFeedFlow_1St() float64 {
  1197. if x != nil {
  1198. return x.FeedFlow_1St
  1199. }
  1200. return 0
  1201. }
  1202. func (x *WorkingRo) GetConFlow_1St() float64 {
  1203. if x != nil {
  1204. return x.ConFlow_1St
  1205. }
  1206. return 0
  1207. }
  1208. func (x *WorkingRo) GetProductFlow_1St() float64 {
  1209. if x != nil {
  1210. return x.ProductFlow_1St
  1211. }
  1212. return 0
  1213. }
  1214. func (x *WorkingRo) GetFeedPressure_1St() float64 {
  1215. if x != nil {
  1216. return x.FeedPressure_1St
  1217. }
  1218. return 0
  1219. }
  1220. func (x *WorkingRo) GetConPressure_1St() float64 {
  1221. if x != nil {
  1222. return x.ConPressure_1St
  1223. }
  1224. return 0
  1225. }
  1226. func (x *WorkingRo) GetProductPressure_1St() float64 {
  1227. if x != nil {
  1228. return x.ProductPressure_1St
  1229. }
  1230. return 0
  1231. }
  1232. func (x *WorkingRo) GetTmp_1St() float64 {
  1233. if x != nil {
  1234. return x.Tmp_1St
  1235. }
  1236. return 0
  1237. }
  1238. func (x *WorkingRo) GetFlux_1St() float64 {
  1239. if x != nil {
  1240. return x.Flux_1St
  1241. }
  1242. return 0
  1243. }
  1244. func (x *WorkingRo) GetPermeability_1St() float64 {
  1245. if x != nil {
  1246. return x.Permeability_1St
  1247. }
  1248. return 0
  1249. }
  1250. func (x *WorkingRo) GetFeedFlow_2Nd() float64 {
  1251. if x != nil {
  1252. return x.FeedFlow_2Nd
  1253. }
  1254. return 0
  1255. }
  1256. func (x *WorkingRo) GetConFlow_2Nd() float64 {
  1257. if x != nil {
  1258. return x.ConFlow_2Nd
  1259. }
  1260. return 0
  1261. }
  1262. func (x *WorkingRo) GetProductFlow_2Nd() float64 {
  1263. if x != nil {
  1264. return x.ProductFlow_2Nd
  1265. }
  1266. return 0
  1267. }
  1268. func (x *WorkingRo) GetFeedPressure_2Nd() float64 {
  1269. if x != nil {
  1270. return x.FeedPressure_2Nd
  1271. }
  1272. return 0
  1273. }
  1274. func (x *WorkingRo) GetConPressure_2Nd() float64 {
  1275. if x != nil {
  1276. return x.ConPressure_2Nd
  1277. }
  1278. return 0
  1279. }
  1280. func (x *WorkingRo) GetProductPressure_2Nd() float64 {
  1281. if x != nil {
  1282. return x.ProductPressure_2Nd
  1283. }
  1284. return 0
  1285. }
  1286. func (x *WorkingRo) GetTmp_2Nd() float64 {
  1287. if x != nil {
  1288. return x.Tmp_2Nd
  1289. }
  1290. return 0
  1291. }
  1292. func (x *WorkingRo) GetFlux_2Nd() float64 {
  1293. if x != nil {
  1294. return x.Flux_2Nd
  1295. }
  1296. return 0
  1297. }
  1298. func (x *WorkingRo) GetPermeability_2Nd() float64 {
  1299. if x != nil {
  1300. return x.Permeability_2Nd
  1301. }
  1302. return 0
  1303. }
  1304. func (x *WorkingRo) GetFeedFlow_3Th() float64 {
  1305. if x != nil {
  1306. return x.FeedFlow_3Th
  1307. }
  1308. return 0
  1309. }
  1310. func (x *WorkingRo) GetConFlow_3Th() float64 {
  1311. if x != nil {
  1312. return x.ConFlow_3Th
  1313. }
  1314. return 0
  1315. }
  1316. func (x *WorkingRo) GetProductFlow_3Th() float64 {
  1317. if x != nil {
  1318. return x.ProductFlow_3Th
  1319. }
  1320. return 0
  1321. }
  1322. func (x *WorkingRo) GetFeedPressure_3Th() float64 {
  1323. if x != nil {
  1324. return x.FeedPressure_3Th
  1325. }
  1326. return 0
  1327. }
  1328. func (x *WorkingRo) GetConPressure_3Th() float64 {
  1329. if x != nil {
  1330. return x.ConPressure_3Th
  1331. }
  1332. return 0
  1333. }
  1334. func (x *WorkingRo) GetProductPressure_3Th() float64 {
  1335. if x != nil {
  1336. return x.ProductPressure_3Th
  1337. }
  1338. return 0
  1339. }
  1340. func (x *WorkingRo) GetTmp_3Th() float64 {
  1341. if x != nil {
  1342. return x.Tmp_3Th
  1343. }
  1344. return 0
  1345. }
  1346. func (x *WorkingRo) GetFlux_3Th() float64 {
  1347. if x != nil {
  1348. return x.Flux_3Th
  1349. }
  1350. return 0
  1351. }
  1352. func (x *WorkingRo) GetPermeability_3Th() float64 {
  1353. if x != nil {
  1354. return x.Permeability_3Th
  1355. }
  1356. return 0
  1357. }
  1358. func (x *WorkingRo) GetFeedWqTurbidity() float64 {
  1359. if x != nil {
  1360. return x.FeedWqTurbidity
  1361. }
  1362. return 0
  1363. }
  1364. func (x *WorkingRo) GetFeedWqPh() int64 {
  1365. if x != nil {
  1366. return x.FeedWqPh
  1367. }
  1368. return 0
  1369. }
  1370. func (x *WorkingRo) GetProductWqPh() int64 {
  1371. if x != nil {
  1372. return x.ProductWqPh
  1373. }
  1374. return 0
  1375. }
  1376. func (x *WorkingRo) GetFeedWqAl() float64 {
  1377. if x != nil {
  1378. return x.FeedWqAl
  1379. }
  1380. return 0
  1381. }
  1382. func (x *WorkingRo) GetProductWqAl() float64 {
  1383. if x != nil {
  1384. return x.ProductWqAl
  1385. }
  1386. return 0
  1387. }
  1388. func (x *WorkingRo) GetFeedWqFe() float64 {
  1389. if x != nil {
  1390. return x.FeedWqFe
  1391. }
  1392. return 0
  1393. }
  1394. func (x *WorkingRo) GetProductWqFe() float64 {
  1395. if x != nil {
  1396. return x.ProductWqFe
  1397. }
  1398. return 0
  1399. }
  1400. func (x *WorkingRo) GetFeedWqMn() float64 {
  1401. if x != nil {
  1402. return x.FeedWqMn
  1403. }
  1404. return 0
  1405. }
  1406. func (x *WorkingRo) GetProductWqMn() float64 {
  1407. if x != nil {
  1408. return x.ProductWqMn
  1409. }
  1410. return 0
  1411. }
  1412. func (x *WorkingRo) GetFeedWqSio2() float64 {
  1413. if x != nil {
  1414. return x.FeedWqSio2
  1415. }
  1416. return 0
  1417. }
  1418. func (x *WorkingRo) GetProductWqSio2() float64 {
  1419. if x != nil {
  1420. return x.ProductWqSio2
  1421. }
  1422. return 0
  1423. }
  1424. func (x *WorkingRo) GetFeedWqCod() float64 {
  1425. if x != nil {
  1426. return x.FeedWqCod
  1427. }
  1428. return 0
  1429. }
  1430. func (x *WorkingRo) GetProductWqCod() float64 {
  1431. if x != nil {
  1432. return x.ProductWqCod
  1433. }
  1434. return 0
  1435. }
  1436. func (x *WorkingRo) GetFeedWqP() float64 {
  1437. if x != nil {
  1438. return x.FeedWqP
  1439. }
  1440. return 0
  1441. }
  1442. func (x *WorkingRo) GetProductWqP() float64 {
  1443. if x != nil {
  1444. return x.ProductWqP
  1445. }
  1446. return 0
  1447. }
  1448. func (x *WorkingRo) GetStep() int64 {
  1449. if x != nil {
  1450. return x.Step
  1451. }
  1452. return 0
  1453. }
  1454. func (x *WorkingRo) GetCTime() string {
  1455. if x != nil {
  1456. return x.CTime
  1457. }
  1458. return ""
  1459. }
  1460. type WorkingChest struct {
  1461. state protoimpl.MessageState
  1462. sizeCache protoimpl.SizeCache
  1463. unknownFields protoimpl.UnknownFields
  1464. // @gotags: json:"id"
  1465. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1466. // @gotags: json:"project_id"
  1467. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1468. // @gotags: json:"device_code"
  1469. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  1470. // @gotags: json:"switch"
  1471. Switch int64 `protobuf:"varint,4,opt,name=switch,proto3" json:"switch"` // 药箱液位开关 0: 关 1: 开
  1472. // @gotags: json:"level"
  1473. Level float64 `protobuf:"fixed64,5,opt,name=level,proto3" json:"level"` // 液位高度
  1474. // @gotags: json:"agitator_status"
  1475. AgitatorStatus int64 `protobuf:"varint,6,opt,name=agitator_status,json=agitatorStatus,proto3" json:"agitator_status"` // 搅拌器运行状态 0: 未运行 1:运行中
  1476. // @gotags: json:"agitator_duration"
  1477. AgitatorDuration int64 `protobuf:"varint,7,opt,name=agitator_duration,json=agitatorDuration,proto3" json:"agitator_duration"` // 搅拌器运行时长
  1478. // @gotags: json:"agitator_fault_status"
  1479. AgitatorFaultStatus int64 `protobuf:"varint,8,opt,name=agitator_fault_status,json=agitatorFaultStatus,proto3" json:"agitator_fault_status"` // 搅拌器故障状态 0:正常 1:故障
  1480. // @gotags: json:"c_time"
  1481. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  1482. }
  1483. func (x *WorkingChest) Reset() {
  1484. *x = WorkingChest{}
  1485. if protoimpl.UnsafeEnabled {
  1486. mi := &file_organization_proto_msgTypes[5]
  1487. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1488. ms.StoreMessageInfo(mi)
  1489. }
  1490. }
  1491. func (x *WorkingChest) String() string {
  1492. return protoimpl.X.MessageStringOf(x)
  1493. }
  1494. func (*WorkingChest) ProtoMessage() {}
  1495. func (x *WorkingChest) ProtoReflect() protoreflect.Message {
  1496. mi := &file_organization_proto_msgTypes[5]
  1497. if protoimpl.UnsafeEnabled && x != nil {
  1498. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1499. if ms.LoadMessageInfo() == nil {
  1500. ms.StoreMessageInfo(mi)
  1501. }
  1502. return ms
  1503. }
  1504. return mi.MessageOf(x)
  1505. }
  1506. // Deprecated: Use WorkingChest.ProtoReflect.Descriptor instead.
  1507. func (*WorkingChest) Descriptor() ([]byte, []int) {
  1508. return file_organization_proto_rawDescGZIP(), []int{5}
  1509. }
  1510. func (x *WorkingChest) GetId() int64 {
  1511. if x != nil {
  1512. return x.Id
  1513. }
  1514. return 0
  1515. }
  1516. func (x *WorkingChest) GetProjectId() int64 {
  1517. if x != nil {
  1518. return x.ProjectId
  1519. }
  1520. return 0
  1521. }
  1522. func (x *WorkingChest) GetDeviceCode() string {
  1523. if x != nil {
  1524. return x.DeviceCode
  1525. }
  1526. return ""
  1527. }
  1528. func (x *WorkingChest) GetSwitch() int64 {
  1529. if x != nil {
  1530. return x.Switch
  1531. }
  1532. return 0
  1533. }
  1534. func (x *WorkingChest) GetLevel() float64 {
  1535. if x != nil {
  1536. return x.Level
  1537. }
  1538. return 0
  1539. }
  1540. func (x *WorkingChest) GetAgitatorStatus() int64 {
  1541. if x != nil {
  1542. return x.AgitatorStatus
  1543. }
  1544. return 0
  1545. }
  1546. func (x *WorkingChest) GetAgitatorDuration() int64 {
  1547. if x != nil {
  1548. return x.AgitatorDuration
  1549. }
  1550. return 0
  1551. }
  1552. func (x *WorkingChest) GetAgitatorFaultStatus() int64 {
  1553. if x != nil {
  1554. return x.AgitatorFaultStatus
  1555. }
  1556. return 0
  1557. }
  1558. func (x *WorkingChest) GetCTime() string {
  1559. if x != nil {
  1560. return x.CTime
  1561. }
  1562. return ""
  1563. }
  1564. type WorkingPump struct {
  1565. state protoimpl.MessageState
  1566. sizeCache protoimpl.SizeCache
  1567. unknownFields protoimpl.UnknownFields
  1568. // @gotags: json:"id"
  1569. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1570. // @gotags: json:"project_id"
  1571. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1572. // @gotags: json:"device_code"
  1573. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  1574. // @gotags: json:"feed_pressure"
  1575. FeedPressure float64 `protobuf:"fixed64,4,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure"` // 进水压力
  1576. // @gotags: json:"out_pressure"
  1577. OutPressure float64 `protobuf:"fixed64,5,opt,name=out_pressure,json=outPressure,proto3" json:"out_pressure"` // 出水压力
  1578. // @gotags: json:"duration"
  1579. Duration int64 `protobuf:"varint,6,opt,name=duration,proto3" json:"duration"` // 运行时长 单位 s
  1580. // @gotags: json:"current"
  1581. Current float64 `protobuf:"fixed64,7,opt,name=current,proto3" json:"current"` // 运行电流
  1582. // @gotags: json:"frequency"
  1583. Frequency float64 `protobuf:"fixed64,8,opt,name=frequency,proto3" json:"frequency"` // 运行频率
  1584. // @gotags: json:"lift"
  1585. Lift float64 `protobuf:"fixed64,9,opt,name=lift,proto3" json:"lift"` // 工作扬程
  1586. // @gotags: json:"efficiency"
  1587. Efficiency float64 `protobuf:"fixed64,10,opt,name=efficiency,proto3" json:"efficiency"` // 运行效率
  1588. // @gotags: json:"run_status"
  1589. RunStatus int64 `protobuf:"varint,11,opt,name=run_status,json=runStatus,proto3" json:"run_status"` // 运行状态 0: 停机 1: 运行正常
  1590. // @gotags: json:"fault_status"
  1591. FaultStatus int64 `protobuf:"varint,12,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status"` // 故障状态 0: 正常 1: 故障
  1592. // @gotags: json:"c_time"
  1593. CTime string `protobuf:"bytes,13,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  1594. }
  1595. func (x *WorkingPump) Reset() {
  1596. *x = WorkingPump{}
  1597. if protoimpl.UnsafeEnabled {
  1598. mi := &file_organization_proto_msgTypes[6]
  1599. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1600. ms.StoreMessageInfo(mi)
  1601. }
  1602. }
  1603. func (x *WorkingPump) String() string {
  1604. return protoimpl.X.MessageStringOf(x)
  1605. }
  1606. func (*WorkingPump) ProtoMessage() {}
  1607. func (x *WorkingPump) ProtoReflect() protoreflect.Message {
  1608. mi := &file_organization_proto_msgTypes[6]
  1609. if protoimpl.UnsafeEnabled && x != nil {
  1610. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1611. if ms.LoadMessageInfo() == nil {
  1612. ms.StoreMessageInfo(mi)
  1613. }
  1614. return ms
  1615. }
  1616. return mi.MessageOf(x)
  1617. }
  1618. // Deprecated: Use WorkingPump.ProtoReflect.Descriptor instead.
  1619. func (*WorkingPump) Descriptor() ([]byte, []int) {
  1620. return file_organization_proto_rawDescGZIP(), []int{6}
  1621. }
  1622. func (x *WorkingPump) GetId() int64 {
  1623. if x != nil {
  1624. return x.Id
  1625. }
  1626. return 0
  1627. }
  1628. func (x *WorkingPump) GetProjectId() int64 {
  1629. if x != nil {
  1630. return x.ProjectId
  1631. }
  1632. return 0
  1633. }
  1634. func (x *WorkingPump) GetDeviceCode() string {
  1635. if x != nil {
  1636. return x.DeviceCode
  1637. }
  1638. return ""
  1639. }
  1640. func (x *WorkingPump) GetFeedPressure() float64 {
  1641. if x != nil {
  1642. return x.FeedPressure
  1643. }
  1644. return 0
  1645. }
  1646. func (x *WorkingPump) GetOutPressure() float64 {
  1647. if x != nil {
  1648. return x.OutPressure
  1649. }
  1650. return 0
  1651. }
  1652. func (x *WorkingPump) GetDuration() int64 {
  1653. if x != nil {
  1654. return x.Duration
  1655. }
  1656. return 0
  1657. }
  1658. func (x *WorkingPump) GetCurrent() float64 {
  1659. if x != nil {
  1660. return x.Current
  1661. }
  1662. return 0
  1663. }
  1664. func (x *WorkingPump) GetFrequency() float64 {
  1665. if x != nil {
  1666. return x.Frequency
  1667. }
  1668. return 0
  1669. }
  1670. func (x *WorkingPump) GetLift() float64 {
  1671. if x != nil {
  1672. return x.Lift
  1673. }
  1674. return 0
  1675. }
  1676. func (x *WorkingPump) GetEfficiency() float64 {
  1677. if x != nil {
  1678. return x.Efficiency
  1679. }
  1680. return 0
  1681. }
  1682. func (x *WorkingPump) GetRunStatus() int64 {
  1683. if x != nil {
  1684. return x.RunStatus
  1685. }
  1686. return 0
  1687. }
  1688. func (x *WorkingPump) GetFaultStatus() int64 {
  1689. if x != nil {
  1690. return x.FaultStatus
  1691. }
  1692. return 0
  1693. }
  1694. func (x *WorkingPump) GetCTime() string {
  1695. if x != nil {
  1696. return x.CTime
  1697. }
  1698. return ""
  1699. }
  1700. type WorkingValve struct {
  1701. state protoimpl.MessageState
  1702. sizeCache protoimpl.SizeCache
  1703. unknownFields protoimpl.UnknownFields
  1704. // @gotags: json:"id"
  1705. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1706. // @gotags: json:"project_id"
  1707. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1708. // @gotags: json:"device_code"
  1709. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code"`
  1710. // @gotags: json:"adjust"
  1711. Adjust int64 `protobuf:"varint,4,opt,name=adjust,proto3" json:"adjust"` // 是否为调节阀门 0: 否 1: 是
  1712. // @gotags: json:"opening"
  1713. Opening float64 `protobuf:"fixed64,5,opt,name=opening,proto3" json:"opening"` // 当前阀门的开度
  1714. // @gotags: json:"closed"
  1715. Closed int64 `protobuf:"varint,6,opt,name=closed,proto3" json:"closed"` // 关到位 全关 0: 否 1: 是
  1716. // @gotags: json:"opened"
  1717. Opened int64 `protobuf:"varint,7,opt,name=opened,proto3" json:"opened"` // 开到位 开到 设置的开度 0: 否 1: 是
  1718. // @gotags: json:"fault_status"
  1719. FaultStatus int64 `protobuf:"varint,8,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status"` // 是否故障 0: 否 1: 是
  1720. // @gotags: json:"c_time"
  1721. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time"`
  1722. }
  1723. func (x *WorkingValve) Reset() {
  1724. *x = WorkingValve{}
  1725. if protoimpl.UnsafeEnabled {
  1726. mi := &file_organization_proto_msgTypes[7]
  1727. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1728. ms.StoreMessageInfo(mi)
  1729. }
  1730. }
  1731. func (x *WorkingValve) String() string {
  1732. return protoimpl.X.MessageStringOf(x)
  1733. }
  1734. func (*WorkingValve) ProtoMessage() {}
  1735. func (x *WorkingValve) ProtoReflect() protoreflect.Message {
  1736. mi := &file_organization_proto_msgTypes[7]
  1737. if protoimpl.UnsafeEnabled && x != nil {
  1738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1739. if ms.LoadMessageInfo() == nil {
  1740. ms.StoreMessageInfo(mi)
  1741. }
  1742. return ms
  1743. }
  1744. return mi.MessageOf(x)
  1745. }
  1746. // Deprecated: Use WorkingValve.ProtoReflect.Descriptor instead.
  1747. func (*WorkingValve) Descriptor() ([]byte, []int) {
  1748. return file_organization_proto_rawDescGZIP(), []int{7}
  1749. }
  1750. func (x *WorkingValve) GetId() int64 {
  1751. if x != nil {
  1752. return x.Id
  1753. }
  1754. return 0
  1755. }
  1756. func (x *WorkingValve) GetProjectId() int64 {
  1757. if x != nil {
  1758. return x.ProjectId
  1759. }
  1760. return 0
  1761. }
  1762. func (x *WorkingValve) GetDeviceCode() string {
  1763. if x != nil {
  1764. return x.DeviceCode
  1765. }
  1766. return ""
  1767. }
  1768. func (x *WorkingValve) GetAdjust() int64 {
  1769. if x != nil {
  1770. return x.Adjust
  1771. }
  1772. return 0
  1773. }
  1774. func (x *WorkingValve) GetOpening() float64 {
  1775. if x != nil {
  1776. return x.Opening
  1777. }
  1778. return 0
  1779. }
  1780. func (x *WorkingValve) GetClosed() int64 {
  1781. if x != nil {
  1782. return x.Closed
  1783. }
  1784. return 0
  1785. }
  1786. func (x *WorkingValve) GetOpened() int64 {
  1787. if x != nil {
  1788. return x.Opened
  1789. }
  1790. return 0
  1791. }
  1792. func (x *WorkingValve) GetFaultStatus() int64 {
  1793. if x != nil {
  1794. return x.FaultStatus
  1795. }
  1796. return 0
  1797. }
  1798. func (x *WorkingValve) GetCTime() string {
  1799. if x != nil {
  1800. return x.CTime
  1801. }
  1802. return ""
  1803. }
  1804. type ItemHistoryData struct {
  1805. state protoimpl.MessageState
  1806. sizeCache protoimpl.SizeCache
  1807. unknownFields protoimpl.UnknownFields
  1808. // @gotags: json:"project_id"
  1809. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1810. // @gotags: json:"item_name"
  1811. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  1812. // @gotags: json:"val"
  1813. Val float64 `protobuf:"fixed64,3,opt,name=val,proto3" json:"val"`
  1814. // @gotags: json:"h_time"
  1815. HTime string `protobuf:"bytes,4,opt,name=h_time,json=hTime,proto3" json:"h_time"`
  1816. }
  1817. func (x *ItemHistoryData) Reset() {
  1818. *x = ItemHistoryData{}
  1819. if protoimpl.UnsafeEnabled {
  1820. mi := &file_organization_proto_msgTypes[8]
  1821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1822. ms.StoreMessageInfo(mi)
  1823. }
  1824. }
  1825. func (x *ItemHistoryData) String() string {
  1826. return protoimpl.X.MessageStringOf(x)
  1827. }
  1828. func (*ItemHistoryData) ProtoMessage() {}
  1829. func (x *ItemHistoryData) ProtoReflect() protoreflect.Message {
  1830. mi := &file_organization_proto_msgTypes[8]
  1831. if protoimpl.UnsafeEnabled && x != nil {
  1832. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1833. if ms.LoadMessageInfo() == nil {
  1834. ms.StoreMessageInfo(mi)
  1835. }
  1836. return ms
  1837. }
  1838. return mi.MessageOf(x)
  1839. }
  1840. // Deprecated: Use ItemHistoryData.ProtoReflect.Descriptor instead.
  1841. func (*ItemHistoryData) Descriptor() ([]byte, []int) {
  1842. return file_organization_proto_rawDescGZIP(), []int{8}
  1843. }
  1844. func (x *ItemHistoryData) GetProjectId() int64 {
  1845. if x != nil {
  1846. return x.ProjectId
  1847. }
  1848. return 0
  1849. }
  1850. func (x *ItemHistoryData) GetItemName() string {
  1851. if x != nil {
  1852. return x.ItemName
  1853. }
  1854. return ""
  1855. }
  1856. func (x *ItemHistoryData) GetVal() float64 {
  1857. if x != nil {
  1858. return x.Val
  1859. }
  1860. return 0
  1861. }
  1862. func (x *ItemHistoryData) GetHTime() string {
  1863. if x != nil {
  1864. return x.HTime
  1865. }
  1866. return ""
  1867. }
  1868. type MultiAddItemHistoryDataReq struct {
  1869. state protoimpl.MessageState
  1870. sizeCache protoimpl.SizeCache
  1871. unknownFields protoimpl.UnknownFields
  1872. // @gotags: json:"project_id"
  1873. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1874. // @gotags: json:"list"
  1875. List []*ItemHistoryData `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  1876. }
  1877. func (x *MultiAddItemHistoryDataReq) Reset() {
  1878. *x = MultiAddItemHistoryDataReq{}
  1879. if protoimpl.UnsafeEnabled {
  1880. mi := &file_organization_proto_msgTypes[9]
  1881. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1882. ms.StoreMessageInfo(mi)
  1883. }
  1884. }
  1885. func (x *MultiAddItemHistoryDataReq) String() string {
  1886. return protoimpl.X.MessageStringOf(x)
  1887. }
  1888. func (*MultiAddItemHistoryDataReq) ProtoMessage() {}
  1889. func (x *MultiAddItemHistoryDataReq) ProtoReflect() protoreflect.Message {
  1890. mi := &file_organization_proto_msgTypes[9]
  1891. if protoimpl.UnsafeEnabled && x != nil {
  1892. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1893. if ms.LoadMessageInfo() == nil {
  1894. ms.StoreMessageInfo(mi)
  1895. }
  1896. return ms
  1897. }
  1898. return mi.MessageOf(x)
  1899. }
  1900. // Deprecated: Use MultiAddItemHistoryDataReq.ProtoReflect.Descriptor instead.
  1901. func (*MultiAddItemHistoryDataReq) Descriptor() ([]byte, []int) {
  1902. return file_organization_proto_rawDescGZIP(), []int{9}
  1903. }
  1904. func (x *MultiAddItemHistoryDataReq) GetProjectId() int64 {
  1905. if x != nil {
  1906. return x.ProjectId
  1907. }
  1908. return 0
  1909. }
  1910. func (x *MultiAddItemHistoryDataReq) GetList() []*ItemHistoryData {
  1911. if x != nil {
  1912. return x.List
  1913. }
  1914. return nil
  1915. }
  1916. type MultiAddItemHistoryDataResp struct {
  1917. state protoimpl.MessageState
  1918. sizeCache protoimpl.SizeCache
  1919. unknownFields protoimpl.UnknownFields
  1920. }
  1921. func (x *MultiAddItemHistoryDataResp) Reset() {
  1922. *x = MultiAddItemHistoryDataResp{}
  1923. if protoimpl.UnsafeEnabled {
  1924. mi := &file_organization_proto_msgTypes[10]
  1925. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1926. ms.StoreMessageInfo(mi)
  1927. }
  1928. }
  1929. func (x *MultiAddItemHistoryDataResp) String() string {
  1930. return protoimpl.X.MessageStringOf(x)
  1931. }
  1932. func (*MultiAddItemHistoryDataResp) ProtoMessage() {}
  1933. func (x *MultiAddItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  1934. mi := &file_organization_proto_msgTypes[10]
  1935. if protoimpl.UnsafeEnabled && x != nil {
  1936. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1937. if ms.LoadMessageInfo() == nil {
  1938. ms.StoreMessageInfo(mi)
  1939. }
  1940. return ms
  1941. }
  1942. return mi.MessageOf(x)
  1943. }
  1944. // Deprecated: Use MultiAddItemHistoryDataResp.ProtoReflect.Descriptor instead.
  1945. func (*MultiAddItemHistoryDataResp) Descriptor() ([]byte, []int) {
  1946. return file_organization_proto_rawDescGZIP(), []int{10}
  1947. }
  1948. type ItemHistoryDataListReq struct {
  1949. state protoimpl.MessageState
  1950. sizeCache protoimpl.SizeCache
  1951. unknownFields protoimpl.UnknownFields
  1952. // @gotags: json:"project_id"
  1953. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  1954. // @gotags: json:"item_name"
  1955. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  1956. // @gotags: json:"interval"
  1957. Interval string `protobuf:"bytes,3,opt,name=interval,proto3" json:"interval"` //时间单位 s,minute,h,day
  1958. // @gotags: json:"aggregator"
  1959. Aggregator string `protobuf:"bytes,4,opt,name=aggregator,proto3" json:"aggregator"` //聚合方式 min,max,avg,sum,realtime, new
  1960. // @gotags: json:"stime"
  1961. Stime string `protobuf:"bytes,5,opt,name=stime,proto3" json:"stime"`
  1962. // @gotags: json:"etime"
  1963. Etime string `protobuf:"bytes,6,opt,name=etime,proto3" json:"etime"`
  1964. // @gotags: json:"size"
  1965. Size int64 `protobuf:"varint,7,opt,name=size,proto3" json:"size"`
  1966. }
  1967. func (x *ItemHistoryDataListReq) Reset() {
  1968. *x = ItemHistoryDataListReq{}
  1969. if protoimpl.UnsafeEnabled {
  1970. mi := &file_organization_proto_msgTypes[11]
  1971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1972. ms.StoreMessageInfo(mi)
  1973. }
  1974. }
  1975. func (x *ItemHistoryDataListReq) String() string {
  1976. return protoimpl.X.MessageStringOf(x)
  1977. }
  1978. func (*ItemHistoryDataListReq) ProtoMessage() {}
  1979. func (x *ItemHistoryDataListReq) ProtoReflect() protoreflect.Message {
  1980. mi := &file_organization_proto_msgTypes[11]
  1981. if protoimpl.UnsafeEnabled && x != nil {
  1982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1983. if ms.LoadMessageInfo() == nil {
  1984. ms.StoreMessageInfo(mi)
  1985. }
  1986. return ms
  1987. }
  1988. return mi.MessageOf(x)
  1989. }
  1990. // Deprecated: Use ItemHistoryDataListReq.ProtoReflect.Descriptor instead.
  1991. func (*ItemHistoryDataListReq) Descriptor() ([]byte, []int) {
  1992. return file_organization_proto_rawDescGZIP(), []int{11}
  1993. }
  1994. func (x *ItemHistoryDataListReq) GetProjectId() int64 {
  1995. if x != nil {
  1996. return x.ProjectId
  1997. }
  1998. return 0
  1999. }
  2000. func (x *ItemHistoryDataListReq) GetItemName() string {
  2001. if x != nil {
  2002. return x.ItemName
  2003. }
  2004. return ""
  2005. }
  2006. func (x *ItemHistoryDataListReq) GetInterval() string {
  2007. if x != nil {
  2008. return x.Interval
  2009. }
  2010. return ""
  2011. }
  2012. func (x *ItemHistoryDataListReq) GetAggregator() string {
  2013. if x != nil {
  2014. return x.Aggregator
  2015. }
  2016. return ""
  2017. }
  2018. func (x *ItemHistoryDataListReq) GetStime() string {
  2019. if x != nil {
  2020. return x.Stime
  2021. }
  2022. return ""
  2023. }
  2024. func (x *ItemHistoryDataListReq) GetEtime() string {
  2025. if x != nil {
  2026. return x.Etime
  2027. }
  2028. return ""
  2029. }
  2030. func (x *ItemHistoryDataListReq) GetSize() int64 {
  2031. if x != nil {
  2032. return x.Size
  2033. }
  2034. return 0
  2035. }
  2036. type ItemHistoryDataByTimeReq struct {
  2037. state protoimpl.MessageState
  2038. sizeCache protoimpl.SizeCache
  2039. unknownFields protoimpl.UnknownFields
  2040. // @gotags: json:"project_id"
  2041. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id"`
  2042. // @gotags: json:"item_name"
  2043. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  2044. // @gotags: json:"stime"
  2045. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime"`
  2046. // @gotags: json:"etime"
  2047. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime"`
  2048. }
  2049. func (x *ItemHistoryDataByTimeReq) Reset() {
  2050. *x = ItemHistoryDataByTimeReq{}
  2051. if protoimpl.UnsafeEnabled {
  2052. mi := &file_organization_proto_msgTypes[12]
  2053. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2054. ms.StoreMessageInfo(mi)
  2055. }
  2056. }
  2057. func (x *ItemHistoryDataByTimeReq) String() string {
  2058. return protoimpl.X.MessageStringOf(x)
  2059. }
  2060. func (*ItemHistoryDataByTimeReq) ProtoMessage() {}
  2061. func (x *ItemHistoryDataByTimeReq) ProtoReflect() protoreflect.Message {
  2062. mi := &file_organization_proto_msgTypes[12]
  2063. if protoimpl.UnsafeEnabled && x != nil {
  2064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2065. if ms.LoadMessageInfo() == nil {
  2066. ms.StoreMessageInfo(mi)
  2067. }
  2068. return ms
  2069. }
  2070. return mi.MessageOf(x)
  2071. }
  2072. // Deprecated: Use ItemHistoryDataByTimeReq.ProtoReflect.Descriptor instead.
  2073. func (*ItemHistoryDataByTimeReq) Descriptor() ([]byte, []int) {
  2074. return file_organization_proto_rawDescGZIP(), []int{12}
  2075. }
  2076. func (x *ItemHistoryDataByTimeReq) GetProjectId() int64 {
  2077. if x != nil {
  2078. return x.ProjectId
  2079. }
  2080. return 0
  2081. }
  2082. func (x *ItemHistoryDataByTimeReq) GetItemName() string {
  2083. if x != nil {
  2084. return x.ItemName
  2085. }
  2086. return ""
  2087. }
  2088. func (x *ItemHistoryDataByTimeReq) GetStime() string {
  2089. if x != nil {
  2090. return x.Stime
  2091. }
  2092. return ""
  2093. }
  2094. func (x *ItemHistoryDataByTimeReq) GetEtime() string {
  2095. if x != nil {
  2096. return x.Etime
  2097. }
  2098. return ""
  2099. }
  2100. type ItemHistoryDataMaxMinResp struct {
  2101. state protoimpl.MessageState
  2102. sizeCache protoimpl.SizeCache
  2103. unknownFields protoimpl.UnknownFields
  2104. // @gotags: json:"max_val"
  2105. MaxVal float64 `protobuf:"fixed64,1,opt,name=max_val,json=maxVal,proto3" json:"max_val"`
  2106. // @gotags: json:"min_val"
  2107. MinVal float64 `protobuf:"fixed64,2,opt,name=min_val,json=minVal,proto3" json:"min_val"`
  2108. }
  2109. func (x *ItemHistoryDataMaxMinResp) Reset() {
  2110. *x = ItemHistoryDataMaxMinResp{}
  2111. if protoimpl.UnsafeEnabled {
  2112. mi := &file_organization_proto_msgTypes[13]
  2113. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2114. ms.StoreMessageInfo(mi)
  2115. }
  2116. }
  2117. func (x *ItemHistoryDataMaxMinResp) String() string {
  2118. return protoimpl.X.MessageStringOf(x)
  2119. }
  2120. func (*ItemHistoryDataMaxMinResp) ProtoMessage() {}
  2121. func (x *ItemHistoryDataMaxMinResp) ProtoReflect() protoreflect.Message {
  2122. mi := &file_organization_proto_msgTypes[13]
  2123. if protoimpl.UnsafeEnabled && x != nil {
  2124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2125. if ms.LoadMessageInfo() == nil {
  2126. ms.StoreMessageInfo(mi)
  2127. }
  2128. return ms
  2129. }
  2130. return mi.MessageOf(x)
  2131. }
  2132. // Deprecated: Use ItemHistoryDataMaxMinResp.ProtoReflect.Descriptor instead.
  2133. func (*ItemHistoryDataMaxMinResp) Descriptor() ([]byte, []int) {
  2134. return file_organization_proto_rawDescGZIP(), []int{13}
  2135. }
  2136. func (x *ItemHistoryDataMaxMinResp) GetMaxVal() float64 {
  2137. if x != nil {
  2138. return x.MaxVal
  2139. }
  2140. return 0
  2141. }
  2142. func (x *ItemHistoryDataMaxMinResp) GetMinVal() float64 {
  2143. if x != nil {
  2144. return x.MinVal
  2145. }
  2146. return 0
  2147. }
  2148. type ItemHistoryDataList struct {
  2149. state protoimpl.MessageState
  2150. sizeCache protoimpl.SizeCache
  2151. unknownFields protoimpl.UnknownFields
  2152. // @gotags: json:"item_name"
  2153. ItemName string `protobuf:"bytes,1,opt,name=item_name,json=itemName,proto3" json:"item_name"`
  2154. // @gotags: json:"val"
  2155. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val"`
  2156. // @gotags: json:"h_time"
  2157. HTime string `protobuf:"bytes,3,opt,name=h_time,json=hTime,proto3" json:"h_time"`
  2158. }
  2159. func (x *ItemHistoryDataList) Reset() {
  2160. *x = ItemHistoryDataList{}
  2161. if protoimpl.UnsafeEnabled {
  2162. mi := &file_organization_proto_msgTypes[14]
  2163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2164. ms.StoreMessageInfo(mi)
  2165. }
  2166. }
  2167. func (x *ItemHistoryDataList) String() string {
  2168. return protoimpl.X.MessageStringOf(x)
  2169. }
  2170. func (*ItemHistoryDataList) ProtoMessage() {}
  2171. func (x *ItemHistoryDataList) ProtoReflect() protoreflect.Message {
  2172. mi := &file_organization_proto_msgTypes[14]
  2173. if protoimpl.UnsafeEnabled && x != nil {
  2174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2175. if ms.LoadMessageInfo() == nil {
  2176. ms.StoreMessageInfo(mi)
  2177. }
  2178. return ms
  2179. }
  2180. return mi.MessageOf(x)
  2181. }
  2182. // Deprecated: Use ItemHistoryDataList.ProtoReflect.Descriptor instead.
  2183. func (*ItemHistoryDataList) Descriptor() ([]byte, []int) {
  2184. return file_organization_proto_rawDescGZIP(), []int{14}
  2185. }
  2186. func (x *ItemHistoryDataList) GetItemName() string {
  2187. if x != nil {
  2188. return x.ItemName
  2189. }
  2190. return ""
  2191. }
  2192. func (x *ItemHistoryDataList) GetVal() float64 {
  2193. if x != nil {
  2194. return x.Val
  2195. }
  2196. return 0
  2197. }
  2198. func (x *ItemHistoryDataList) GetHTime() string {
  2199. if x != nil {
  2200. return x.HTime
  2201. }
  2202. return ""
  2203. }
  2204. type ItemHistoryDataListResp struct {
  2205. state protoimpl.MessageState
  2206. sizeCache protoimpl.SizeCache
  2207. unknownFields protoimpl.UnknownFields
  2208. // @gotags: json:"list"
  2209. List []*ItemHistoryDataList `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2210. }
  2211. func (x *ItemHistoryDataListResp) Reset() {
  2212. *x = ItemHistoryDataListResp{}
  2213. if protoimpl.UnsafeEnabled {
  2214. mi := &file_organization_proto_msgTypes[15]
  2215. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2216. ms.StoreMessageInfo(mi)
  2217. }
  2218. }
  2219. func (x *ItemHistoryDataListResp) String() string {
  2220. return protoimpl.X.MessageStringOf(x)
  2221. }
  2222. func (*ItemHistoryDataListResp) ProtoMessage() {}
  2223. func (x *ItemHistoryDataListResp) ProtoReflect() protoreflect.Message {
  2224. mi := &file_organization_proto_msgTypes[15]
  2225. if protoimpl.UnsafeEnabled && x != nil {
  2226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2227. if ms.LoadMessageInfo() == nil {
  2228. ms.StoreMessageInfo(mi)
  2229. }
  2230. return ms
  2231. }
  2232. return mi.MessageOf(x)
  2233. }
  2234. // Deprecated: Use ItemHistoryDataListResp.ProtoReflect.Descriptor instead.
  2235. func (*ItemHistoryDataListResp) Descriptor() ([]byte, []int) {
  2236. return file_organization_proto_rawDescGZIP(), []int{15}
  2237. }
  2238. func (x *ItemHistoryDataListResp) GetList() []*ItemHistoryDataList {
  2239. if x != nil {
  2240. return x.List
  2241. }
  2242. return nil
  2243. }
  2244. type GetWorkingUfByCodeResp struct {
  2245. state protoimpl.MessageState
  2246. sizeCache protoimpl.SizeCache
  2247. unknownFields protoimpl.UnknownFields
  2248. // @gotags: json:"list"
  2249. List []*WorkingUf `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2250. }
  2251. func (x *GetWorkingUfByCodeResp) Reset() {
  2252. *x = GetWorkingUfByCodeResp{}
  2253. if protoimpl.UnsafeEnabled {
  2254. mi := &file_organization_proto_msgTypes[16]
  2255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2256. ms.StoreMessageInfo(mi)
  2257. }
  2258. }
  2259. func (x *GetWorkingUfByCodeResp) String() string {
  2260. return protoimpl.X.MessageStringOf(x)
  2261. }
  2262. func (*GetWorkingUfByCodeResp) ProtoMessage() {}
  2263. func (x *GetWorkingUfByCodeResp) ProtoReflect() protoreflect.Message {
  2264. mi := &file_organization_proto_msgTypes[16]
  2265. if protoimpl.UnsafeEnabled && x != nil {
  2266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2267. if ms.LoadMessageInfo() == nil {
  2268. ms.StoreMessageInfo(mi)
  2269. }
  2270. return ms
  2271. }
  2272. return mi.MessageOf(x)
  2273. }
  2274. // Deprecated: Use GetWorkingUfByCodeResp.ProtoReflect.Descriptor instead.
  2275. func (*GetWorkingUfByCodeResp) Descriptor() ([]byte, []int) {
  2276. return file_organization_proto_rawDescGZIP(), []int{16}
  2277. }
  2278. func (x *GetWorkingUfByCodeResp) GetList() []*WorkingUf {
  2279. if x != nil {
  2280. return x.List
  2281. }
  2282. return nil
  2283. }
  2284. type GetWorkingRoByCodeResp struct {
  2285. state protoimpl.MessageState
  2286. sizeCache protoimpl.SizeCache
  2287. unknownFields protoimpl.UnknownFields
  2288. // @gotags: json:"list"
  2289. List []*WorkingRo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2290. }
  2291. func (x *GetWorkingRoByCodeResp) Reset() {
  2292. *x = GetWorkingRoByCodeResp{}
  2293. if protoimpl.UnsafeEnabled {
  2294. mi := &file_organization_proto_msgTypes[17]
  2295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2296. ms.StoreMessageInfo(mi)
  2297. }
  2298. }
  2299. func (x *GetWorkingRoByCodeResp) String() string {
  2300. return protoimpl.X.MessageStringOf(x)
  2301. }
  2302. func (*GetWorkingRoByCodeResp) ProtoMessage() {}
  2303. func (x *GetWorkingRoByCodeResp) ProtoReflect() protoreflect.Message {
  2304. mi := &file_organization_proto_msgTypes[17]
  2305. if protoimpl.UnsafeEnabled && x != nil {
  2306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2307. if ms.LoadMessageInfo() == nil {
  2308. ms.StoreMessageInfo(mi)
  2309. }
  2310. return ms
  2311. }
  2312. return mi.MessageOf(x)
  2313. }
  2314. // Deprecated: Use GetWorkingRoByCodeResp.ProtoReflect.Descriptor instead.
  2315. func (*GetWorkingRoByCodeResp) Descriptor() ([]byte, []int) {
  2316. return file_organization_proto_rawDescGZIP(), []int{17}
  2317. }
  2318. func (x *GetWorkingRoByCodeResp) GetList() []*WorkingRo {
  2319. if x != nil {
  2320. return x.List
  2321. }
  2322. return nil
  2323. }
  2324. type GetWorkingNfByCodeResp struct {
  2325. state protoimpl.MessageState
  2326. sizeCache protoimpl.SizeCache
  2327. unknownFields protoimpl.UnknownFields
  2328. // @gotags: json:"list"
  2329. List []*WorkingNf `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2330. }
  2331. func (x *GetWorkingNfByCodeResp) Reset() {
  2332. *x = GetWorkingNfByCodeResp{}
  2333. if protoimpl.UnsafeEnabled {
  2334. mi := &file_organization_proto_msgTypes[18]
  2335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2336. ms.StoreMessageInfo(mi)
  2337. }
  2338. }
  2339. func (x *GetWorkingNfByCodeResp) String() string {
  2340. return protoimpl.X.MessageStringOf(x)
  2341. }
  2342. func (*GetWorkingNfByCodeResp) ProtoMessage() {}
  2343. func (x *GetWorkingNfByCodeResp) ProtoReflect() protoreflect.Message {
  2344. mi := &file_organization_proto_msgTypes[18]
  2345. if protoimpl.UnsafeEnabled && x != nil {
  2346. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2347. if ms.LoadMessageInfo() == nil {
  2348. ms.StoreMessageInfo(mi)
  2349. }
  2350. return ms
  2351. }
  2352. return mi.MessageOf(x)
  2353. }
  2354. // Deprecated: Use GetWorkingNfByCodeResp.ProtoReflect.Descriptor instead.
  2355. func (*GetWorkingNfByCodeResp) Descriptor() ([]byte, []int) {
  2356. return file_organization_proto_rawDescGZIP(), []int{18}
  2357. }
  2358. func (x *GetWorkingNfByCodeResp) GetList() []*WorkingNf {
  2359. if x != nil {
  2360. return x.List
  2361. }
  2362. return nil
  2363. }
  2364. type GetWorkingMfByCodeResp struct {
  2365. state protoimpl.MessageState
  2366. sizeCache protoimpl.SizeCache
  2367. unknownFields protoimpl.UnknownFields
  2368. // @gotags: json:"list"
  2369. List []*WorkingMf `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2370. }
  2371. func (x *GetWorkingMfByCodeResp) Reset() {
  2372. *x = GetWorkingMfByCodeResp{}
  2373. if protoimpl.UnsafeEnabled {
  2374. mi := &file_organization_proto_msgTypes[19]
  2375. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2376. ms.StoreMessageInfo(mi)
  2377. }
  2378. }
  2379. func (x *GetWorkingMfByCodeResp) String() string {
  2380. return protoimpl.X.MessageStringOf(x)
  2381. }
  2382. func (*GetWorkingMfByCodeResp) ProtoMessage() {}
  2383. func (x *GetWorkingMfByCodeResp) ProtoReflect() protoreflect.Message {
  2384. mi := &file_organization_proto_msgTypes[19]
  2385. if protoimpl.UnsafeEnabled && x != nil {
  2386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2387. if ms.LoadMessageInfo() == nil {
  2388. ms.StoreMessageInfo(mi)
  2389. }
  2390. return ms
  2391. }
  2392. return mi.MessageOf(x)
  2393. }
  2394. // Deprecated: Use GetWorkingMfByCodeResp.ProtoReflect.Descriptor instead.
  2395. func (*GetWorkingMfByCodeResp) Descriptor() ([]byte, []int) {
  2396. return file_organization_proto_rawDescGZIP(), []int{19}
  2397. }
  2398. func (x *GetWorkingMfByCodeResp) GetList() []*WorkingMf {
  2399. if x != nil {
  2400. return x.List
  2401. }
  2402. return nil
  2403. }
  2404. type GetWorkingPumpByCodeResp struct {
  2405. state protoimpl.MessageState
  2406. sizeCache protoimpl.SizeCache
  2407. unknownFields protoimpl.UnknownFields
  2408. // @gotags: json:"list"
  2409. List []*WorkingPump `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2410. }
  2411. func (x *GetWorkingPumpByCodeResp) Reset() {
  2412. *x = GetWorkingPumpByCodeResp{}
  2413. if protoimpl.UnsafeEnabled {
  2414. mi := &file_organization_proto_msgTypes[20]
  2415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2416. ms.StoreMessageInfo(mi)
  2417. }
  2418. }
  2419. func (x *GetWorkingPumpByCodeResp) String() string {
  2420. return protoimpl.X.MessageStringOf(x)
  2421. }
  2422. func (*GetWorkingPumpByCodeResp) ProtoMessage() {}
  2423. func (x *GetWorkingPumpByCodeResp) ProtoReflect() protoreflect.Message {
  2424. mi := &file_organization_proto_msgTypes[20]
  2425. if protoimpl.UnsafeEnabled && x != nil {
  2426. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2427. if ms.LoadMessageInfo() == nil {
  2428. ms.StoreMessageInfo(mi)
  2429. }
  2430. return ms
  2431. }
  2432. return mi.MessageOf(x)
  2433. }
  2434. // Deprecated: Use GetWorkingPumpByCodeResp.ProtoReflect.Descriptor instead.
  2435. func (*GetWorkingPumpByCodeResp) Descriptor() ([]byte, []int) {
  2436. return file_organization_proto_rawDescGZIP(), []int{20}
  2437. }
  2438. func (x *GetWorkingPumpByCodeResp) GetList() []*WorkingPump {
  2439. if x != nil {
  2440. return x.List
  2441. }
  2442. return nil
  2443. }
  2444. type GetWorkingValveByCodeResp struct {
  2445. state protoimpl.MessageState
  2446. sizeCache protoimpl.SizeCache
  2447. unknownFields protoimpl.UnknownFields
  2448. // @gotags: json:"list"
  2449. List []*WorkingValve `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2450. }
  2451. func (x *GetWorkingValveByCodeResp) Reset() {
  2452. *x = GetWorkingValveByCodeResp{}
  2453. if protoimpl.UnsafeEnabled {
  2454. mi := &file_organization_proto_msgTypes[21]
  2455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2456. ms.StoreMessageInfo(mi)
  2457. }
  2458. }
  2459. func (x *GetWorkingValveByCodeResp) String() string {
  2460. return protoimpl.X.MessageStringOf(x)
  2461. }
  2462. func (*GetWorkingValveByCodeResp) ProtoMessage() {}
  2463. func (x *GetWorkingValveByCodeResp) ProtoReflect() protoreflect.Message {
  2464. mi := &file_organization_proto_msgTypes[21]
  2465. if protoimpl.UnsafeEnabled && x != nil {
  2466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2467. if ms.LoadMessageInfo() == nil {
  2468. ms.StoreMessageInfo(mi)
  2469. }
  2470. return ms
  2471. }
  2472. return mi.MessageOf(x)
  2473. }
  2474. // Deprecated: Use GetWorkingValveByCodeResp.ProtoReflect.Descriptor instead.
  2475. func (*GetWorkingValveByCodeResp) Descriptor() ([]byte, []int) {
  2476. return file_organization_proto_rawDescGZIP(), []int{21}
  2477. }
  2478. func (x *GetWorkingValveByCodeResp) GetList() []*WorkingValve {
  2479. if x != nil {
  2480. return x.List
  2481. }
  2482. return nil
  2483. }
  2484. type GetWorkingChestByCodeResp struct {
  2485. state protoimpl.MessageState
  2486. sizeCache protoimpl.SizeCache
  2487. unknownFields protoimpl.UnknownFields
  2488. // @gotags: json:"list"
  2489. List []*WorkingChest `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2490. }
  2491. func (x *GetWorkingChestByCodeResp) Reset() {
  2492. *x = GetWorkingChestByCodeResp{}
  2493. if protoimpl.UnsafeEnabled {
  2494. mi := &file_organization_proto_msgTypes[22]
  2495. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2496. ms.StoreMessageInfo(mi)
  2497. }
  2498. }
  2499. func (x *GetWorkingChestByCodeResp) String() string {
  2500. return protoimpl.X.MessageStringOf(x)
  2501. }
  2502. func (*GetWorkingChestByCodeResp) ProtoMessage() {}
  2503. func (x *GetWorkingChestByCodeResp) ProtoReflect() protoreflect.Message {
  2504. mi := &file_organization_proto_msgTypes[22]
  2505. if protoimpl.UnsafeEnabled && x != nil {
  2506. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2507. if ms.LoadMessageInfo() == nil {
  2508. ms.StoreMessageInfo(mi)
  2509. }
  2510. return ms
  2511. }
  2512. return mi.MessageOf(x)
  2513. }
  2514. // Deprecated: Use GetWorkingChestByCodeResp.ProtoReflect.Descriptor instead.
  2515. func (*GetWorkingChestByCodeResp) Descriptor() ([]byte, []int) {
  2516. return file_organization_proto_rawDescGZIP(), []int{22}
  2517. }
  2518. func (x *GetWorkingChestByCodeResp) GetList() []*WorkingChest {
  2519. if x != nil {
  2520. return x.List
  2521. }
  2522. return nil
  2523. }
  2524. var File_organization_proto protoreflect.FileDescriptor
  2525. var file_organization_proto_rawDesc = []byte{
  2526. 0x0a, 0x12, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
  2527. 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0xc1, 0x01, 0x0a, 0x0c, 0x44, 0x63, 0x57,
  2528. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
  2529. 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70,
  2530. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69,
  2531. 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64,
  2532. 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69,
  2533. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12,
  2534. 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2535. 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20,
  2536. 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67,
  2537. 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61,
  2538. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18,
  2539. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0xa9, 0x07, 0x0a,
  2540. 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  2541. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72,
  2542. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2543. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76,
  2544. 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2545. 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61,
  2546. 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18,
  2547. 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70,
  2548. 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2549. 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  2550. 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  2551. 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12,
  2552. 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18,
  2553. 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c,
  2554. 0x6f, 0x77, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  2555. 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50,
  2556. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70,
  2557. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63,
  2558. 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72,
  2559. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a,
  2560. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65,
  2561. 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01,
  2562. 0x28, 0x01, 0x52, 0x03, 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18,
  2563. 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x12, 0x2a, 0x0a, 0x11, 0x66,
  2564. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  2565. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75,
  2566. 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2567. 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65,
  2568. 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2569. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72,
  2570. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65,
  2571. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66,
  2572. 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75,
  2573. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  2574. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66,
  2575. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52,
  2576. 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f,
  2577. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01,
  2578. 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a,
  2579. 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28,
  2580. 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70,
  2581. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01,
  2582. 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12,
  2583. 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18,
  2584. 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f,
  2585. 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  2586. 0x73, 0x69, 0x6f, 0x32, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64,
  2587. 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65,
  2588. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09,
  2589. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f,
  2590. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28,
  2591. 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12,
  2592. 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01,
  2593. 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70,
  2594. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28,
  2595. 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a,
  2596. 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65,
  2597. 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28,
  2598. 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xa9, 0x07, 0x0a, 0x09, 0x57, 0x6f, 0x72,
  2599. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2600. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  2601. 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
  2602. 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f,
  2603. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69,
  2604. 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f,
  2605. 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  2606. 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74,
  2607. 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  2608. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77,
  2609. 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01,
  2610. 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70,
  2611. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28,
  2612. 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23,
  2613. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18,
  2614. 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73,
  2615. 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  2616. 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72,
  2617. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  2618. 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01,
  2619. 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  2620. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03,
  2621. 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28,
  2622. 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2623. 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01,
  2624. 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64,
  2625. 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70,
  2626. 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50,
  2627. 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  2628. 0x70, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  2629. 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  2630. 0x5f, 0x61, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57,
  2631. 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  2632. 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  2633. 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2634. 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65,
  2635. 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2636. 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72,
  2637. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65,
  2638. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66,
  2639. 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75,
  2640. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  2641. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66,
  2642. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28,
  2643. 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a,
  2644. 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32,
  2645. 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57,
  2646. 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  2647. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64,
  2648. 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2649. 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70,
  2650. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66,
  2651. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07,
  2652. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75,
  2653. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70,
  2654. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65,
  2655. 0x70, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a,
  2656. 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63,
  2657. 0x54, 0x69, 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  2658. 0x4e, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  2659. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  2660. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  2661. 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  2662. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  2663. 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70,
  2664. 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77,
  2665. 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12,
  2666. 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74,
  2667. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77,
  2668. 0x31, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f,
  2669. 0x31, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c,
  2670. 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2671. 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52,
  2672. 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12,
  2673. 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  2674. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64,
  2675. 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x63,
  2676. 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18,
  2677. 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  2678. 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2679. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20,
  2680. 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73,
  2681. 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x31,
  2682. 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73, 0x74,
  2683. 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01,
  2684. 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x70,
  2685. 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74, 0x18,
  2686. 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c,
  2687. 0x69, 0x74, 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66,
  2688. 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66,
  2689. 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f,
  2690. 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01,
  2691. 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10,
  2692. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64,
  2693. 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46,
  2694. 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70,
  2695. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28,
  2696. 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32,
  2697. 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75,
  2698. 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f,
  2699. 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x14,
  2700. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  2701. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64,
  2702. 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x17,
  2703. 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52,
  2704. 0x06, 0x74, 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f,
  2705. 0x32, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x32,
  2706. 0x6e, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  2707. 0x74, 0x79, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65,
  2708. 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22, 0x0a,
  2709. 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x17,
  2710. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74,
  2711. 0x68, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74,
  2712. 0x68, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77,
  2713. 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66,
  2714. 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70,
  2715. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a,
  2716. 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33,
  2717. 0x74, 0x68, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72,
  2718. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e,
  2719. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b, 0x20,
  2720. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  2721. 0x33, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70,
  2722. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01, 0x28,
  2723. 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  2724. 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74, 0x68,
  2725. 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12, 0x19,
  2726. 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01,
  2727. 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72,
  2728. 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f, 0x20,
  2729. 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  2730. 0x79, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  2731. 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52,
  2732. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  2733. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x21,
  2734. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22,
  2735. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  2736. 0x22, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  2737. 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c,
  2738. 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c,
  2739. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  2740. 0x6c, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2741. 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  2742. 0x66, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  2743. 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  2744. 0x5f, 0x66, 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  2745. 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  2746. 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  2747. 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  2748. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f,
  2749. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
  2750. 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  2751. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72,
  2752. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a, 0x20,
  2753. 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69,
  2754. 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  2755. 0x64, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43,
  2756. 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  2757. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  2758. 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64,
  2759. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65,
  2760. 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  2761. 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64,
  2762. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x2f,
  2763. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  2764. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  2765. 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x12,
  2766. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  2767. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  2768. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f,
  2769. 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20,
  2770. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
  2771. 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61,
  2772. 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65,
  2773. 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x22, 0x0a, 0x0d,
  2774. 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x05, 0x20,
  2775. 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74,
  2776. 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74,
  2777. 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x31,
  2778. 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c,
  2779. 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72,
  2780. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x11,
  2781. 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73,
  2782. 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65,
  2783. 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f,
  2784. 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x09, 0x20, 0x01,
  2785. 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31,
  2786. 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72,
  2787. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01,
  2788. 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  2789. 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x31, 0x73, 0x74, 0x18,
  2790. 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73, 0x74, 0x12, 0x19, 0x0a,
  2791. 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52,
  2792. 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d,
  2793. 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0d, 0x20, 0x01,
  2794. 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
  2795. 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  2796. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64,
  2797. 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66,
  2798. 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63,
  2799. 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f,
  2800. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x10, 0x20,
  2801. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77,
  2802. 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73,
  2803. 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f,
  2804. 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12,
  2805. 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f,
  2806. 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72,
  2807. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f,
  2808. 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e,
  2809. 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2810. 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x74,
  2811. 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d,
  2812. 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x32, 0x6e, 0x64,
  2813. 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x32, 0x6e, 0x64, 0x12,
  2814. 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f,
  2815. 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65,
  2816. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65,
  2817. 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x17, 0x20, 0x01, 0x28,
  2818. 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x20,
  2819. 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x18,
  2820. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68,
  2821. 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  2822. 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64,
  2823. 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65,
  2824. 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18,
  2825. 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73,
  2826. 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72,
  2827. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01,
  2828. 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68,
  2829. 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73,
  2830. 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12,
  2831. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33,
  2832. 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1d, 0x20,
  2833. 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12, 0x19, 0x0a, 0x08, 0x66,
  2834. 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66,
  2835. 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61,
  2836. 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x01,
  2837. 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x33, 0x74,
  2838. 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72,
  2839. 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65,
  2840. 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a,
  2841. 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x21, 0x20, 0x01, 0x28,
  2842. 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70,
  2843. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x22, 0x20, 0x01,
  2844. 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x68, 0x12,
  2845. 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x23, 0x20,
  2846. 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a,
  2847. 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x24,
  2848. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x41,
  2849. 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18,
  2850. 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x46, 0x65, 0x12,
  2851. 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65,
  2852. 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57,
  2853. 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d,
  2854. 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d,
  2855. 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  2856. 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  2857. 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  2858. 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65,
  2859. 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75,
  2860. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x01,
  2861. 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12,
  2862. 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2b,
  2863. 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12,
  2864. 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  2865. 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2866. 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  2867. 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  2868. 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  2869. 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  2870. 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x2f, 0x20, 0x01, 0x28,
  2871. 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d,
  2872. 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xad,
  2873. 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x12,
  2874. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  2875. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  2876. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f,
  2877. 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20,
  2878. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
  2879. 0x16, 0x0a, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  2880. 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c,
  2881. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x27, 0x0a,
  2882. 0x0f, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  2883. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72,
  2884. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74,
  2885. 0x6f, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28,
  2886. 0x03, 0x52, 0x10, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x44, 0x75, 0x72, 0x61, 0x74,
  2887. 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x15, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f,
  2888. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01,
  2889. 0x28, 0x03, 0x52, 0x13, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x46, 0x61, 0x75, 0x6c,
  2890. 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d,
  2891. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x86,
  2892. 0x03, 0x0a, 0x0b, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x12, 0x0e,
  2893. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d,
  2894. 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  2895. 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a,
  2896. 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01,
  2897. 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x23,
  2898. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18,
  2899. 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73,
  2900. 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x75, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  2901. 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x6f, 0x75, 0x74, 0x50, 0x72,
  2902. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69,
  2903. 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69,
  2904. 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x07, 0x20,
  2905. 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09,
  2906. 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52,
  2907. 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69,
  2908. 0x66, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6c, 0x69, 0x66, 0x74, 0x12, 0x1e,
  2909. 0x0a, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x0a, 0x20, 0x01,
  2910. 0x28, 0x01, 0x52, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x1d,
  2911. 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0b, 0x20, 0x01,
  2912. 0x28, 0x03, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x21, 0x0a,
  2913. 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0c, 0x20,
  2914. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2915. 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09,
  2916. 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xfa, 0x01, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b,
  2917. 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  2918. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
  2919. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  2920. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63,
  2921. 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65,
  2922. 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x64, 0x6a, 0x75,
  2923. 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74,
  2924. 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28,
  2925. 0x01, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6c,
  2926. 0x6f, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x6c, 0x6f, 0x73,
  2927. 0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01,
  2928. 0x28, 0x03, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61,
  2929. 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03,
  2930. 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a,
  2931. 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63,
  2932. 0x54, 0x69, 0x6d, 0x65, 0x22, 0x76, 0x0a, 0x0f, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  2933. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  2934. 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f,
  2935. 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e,
  2936. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e,
  2937. 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01,
  2938. 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  2939. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x64, 0x0a, 0x1a,
  2940. 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  2941. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72,
  2942. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2943. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  2944. 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65,
  2945. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x6c, 0x69,
  2946. 0x73, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74,
  2947. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73,
  2948. 0x70, 0x22, 0xd0, 0x01, 0x0a, 0x16, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  2949. 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a,
  2950. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2951. 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69,
  2952. 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2953. 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65,
  2954. 0x72, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x65,
  2955. 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74,
  2956. 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67,
  2957. 0x61, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20,
  2958. 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74,
  2959. 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65,
  2960. 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  2961. 0x73, 0x69, 0x7a, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x18, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  2962. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65,
  2963. 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
  2964. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
  2965. 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  2966. 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a,
  2967. 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74,
  2968. 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  2969. 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x22, 0x4d, 0x0a, 0x19, 0x49, 0x74, 0x65,
  2970. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78, 0x4d,
  2971. 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x61,
  2972. 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x56, 0x61, 0x6c, 0x12,
  2973. 0x17, 0x0a, 0x07, 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01,
  2974. 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x22, 0x5b, 0x0a, 0x13, 0x49, 0x74, 0x65, 0x6d,
  2975. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2976. 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  2977. 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03,
  2978. 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15,
  2979. 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2980. 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x46, 0x0a, 0x17, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  2981. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
  2982. 0x12, 0x2b, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17,
  2983. 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44,
  2984. 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a,
  2985. 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43,
  2986. 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  2987. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  2988. 0x6e, 0x67, 0x55, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65,
  2989. 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65,
  2990. 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  2991. 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52,
  2992. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f,
  2993. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
  2994. 0x70, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2995. 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4e, 0x66, 0x52, 0x04,
  2996. 0x6c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  2997. 0x6e, 0x67, 0x4d, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21,
  2998. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70,
  2999. 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x4d, 0x66, 0x52, 0x04, 0x6c, 0x69, 0x73,
  3000. 0x74, 0x22, 0x3f, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50,
  3001. 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x23, 0x0a,
  3002. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x62,
  3003. 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x52, 0x04, 0x6c, 0x69,
  3004. 0x73, 0x74, 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  3005. 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
  3006. 0x24, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e,
  3007. 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x52,
  3008. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b,
  3009. 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
  3010. 0x73, 0x70, 0x12, 0x24, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  3011. 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65,
  3012. 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x32, 0xce, 0x05, 0x0a, 0x0c, 0x4f, 0x72, 0x67,
  3013. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x0a, 0x12, 0x47, 0x65, 0x74,
  3014. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12,
  3015. 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65,
  3016. 0x71, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  3017. 0x67, 0x55, 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x42, 0x0a,
  3018. 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43,
  3019. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  3020. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f,
  3021. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73,
  3022. 0x70, 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43,
  3023. 0x68, 0x65, 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e,
  3024. 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x70,
  3025. 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73,
  3026. 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x46, 0x0a, 0x14, 0x47,
  3027. 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43,
  3028. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69,
  3029. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f,
  3030. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52,
  3031. 0x65, 0x73, 0x70, 0x12, 0x48, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  3032. 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70,
  3033. 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1d,
  3034. 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61,
  3035. 0x6c, 0x76, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a,
  3036. 0x17, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  3037. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75,
  3038. 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  3039. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75,
  3040. 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  3041. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4e, 0x0a, 0x13, 0x49, 0x74, 0x65,
  3042. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74,
  3043. 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  3044. 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70,
  3045. 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  3046. 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x52, 0x0a, 0x15, 0x49, 0x74, 0x65,
  3047. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69,
  3048. 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  3049. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71,
  3050. 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  3051. 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a,
  3052. 0x1b, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  3053. 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70,
  3054. 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  3055. 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e,
  3056. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d,
  3057. 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70,
  3058. 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3059. }
  3060. var (
  3061. file_organization_proto_rawDescOnce sync.Once
  3062. file_organization_proto_rawDescData = file_organization_proto_rawDesc
  3063. )
  3064. func file_organization_proto_rawDescGZIP() []byte {
  3065. file_organization_proto_rawDescOnce.Do(func() {
  3066. file_organization_proto_rawDescData = protoimpl.X.CompressGZIP(file_organization_proto_rawDescData)
  3067. })
  3068. return file_organization_proto_rawDescData
  3069. }
  3070. var file_organization_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
  3071. var file_organization_proto_goTypes = []interface{}{
  3072. (*DcWorkingReq)(nil), // 0: pb.DcWorkingReq
  3073. (*WorkingMf)(nil), // 1: pb.WorkingMf
  3074. (*WorkingUf)(nil), // 2: pb.WorkingUf
  3075. (*WorkingNf)(nil), // 3: pb.WorkingNf
  3076. (*WorkingRo)(nil), // 4: pb.WorkingRo
  3077. (*WorkingChest)(nil), // 5: pb.WorkingChest
  3078. (*WorkingPump)(nil), // 6: pb.WorkingPump
  3079. (*WorkingValve)(nil), // 7: pb.WorkingValve
  3080. (*ItemHistoryData)(nil), // 8: pb.ItemHistoryData
  3081. (*MultiAddItemHistoryDataReq)(nil), // 9: pb.MultiAddItemHistoryDataReq
  3082. (*MultiAddItemHistoryDataResp)(nil), // 10: pb.MultiAddItemHistoryDataResp
  3083. (*ItemHistoryDataListReq)(nil), // 11: pb.ItemHistoryDataListReq
  3084. (*ItemHistoryDataByTimeReq)(nil), // 12: pb.ItemHistoryDataByTimeReq
  3085. (*ItemHistoryDataMaxMinResp)(nil), // 13: pb.ItemHistoryDataMaxMinResp
  3086. (*ItemHistoryDataList)(nil), // 14: pb.ItemHistoryDataList
  3087. (*ItemHistoryDataListResp)(nil), // 15: pb.ItemHistoryDataListResp
  3088. (*GetWorkingUfByCodeResp)(nil), // 16: pb.GetWorkingUfByCodeResp
  3089. (*GetWorkingRoByCodeResp)(nil), // 17: pb.GetWorkingRoByCodeResp
  3090. (*GetWorkingNfByCodeResp)(nil), // 18: pb.GetWorkingNfByCodeResp
  3091. (*GetWorkingMfByCodeResp)(nil), // 19: pb.GetWorkingMfByCodeResp
  3092. (*GetWorkingPumpByCodeResp)(nil), // 20: pb.GetWorkingPumpByCodeResp
  3093. (*GetWorkingValveByCodeResp)(nil), // 21: pb.GetWorkingValveByCodeResp
  3094. (*GetWorkingChestByCodeResp)(nil), // 22: pb.GetWorkingChestByCodeResp
  3095. }
  3096. var file_organization_proto_depIdxs = []int32{
  3097. 8, // 0: pb.MultiAddItemHistoryDataReq.list:type_name -> pb.ItemHistoryData
  3098. 14, // 1: pb.ItemHistoryDataListResp.list:type_name -> pb.ItemHistoryDataList
  3099. 2, // 2: pb.GetWorkingUfByCodeResp.list:type_name -> pb.WorkingUf
  3100. 4, // 3: pb.GetWorkingRoByCodeResp.list:type_name -> pb.WorkingRo
  3101. 3, // 4: pb.GetWorkingNfByCodeResp.list:type_name -> pb.WorkingNf
  3102. 1, // 5: pb.GetWorkingMfByCodeResp.list:type_name -> pb.WorkingMf
  3103. 6, // 6: pb.GetWorkingPumpByCodeResp.list:type_name -> pb.WorkingPump
  3104. 7, // 7: pb.GetWorkingValveByCodeResp.list:type_name -> pb.WorkingValve
  3105. 5, // 8: pb.GetWorkingChestByCodeResp.list:type_name -> pb.WorkingChest
  3106. 0, // 9: pb.Organization.GetWorkingUfByCode:input_type -> pb.DcWorkingReq
  3107. 0, // 10: pb.Organization.GetWorkingRoByCode:input_type -> pb.DcWorkingReq
  3108. 0, // 11: pb.Organization.GetWorkingChestByCode:input_type -> pb.DcWorkingReq
  3109. 0, // 12: pb.Organization.GetWorkingPumpByCode:input_type -> pb.DcWorkingReq
  3110. 0, // 13: pb.Organization.GetWorkingValveByCode:input_type -> pb.DcWorkingReq
  3111. 9, // 14: pb.Organization.MultiAddItemHistoryData:input_type -> pb.MultiAddItemHistoryDataReq
  3112. 11, // 15: pb.Organization.ItemHistoryDataList:input_type -> pb.ItemHistoryDataListReq
  3113. 12, // 16: pb.Organization.ItemHistoryDataByTime:input_type -> pb.ItemHistoryDataByTimeReq
  3114. 12, // 17: pb.Organization.ItemHistoryDataMaxMinByTime:input_type -> pb.ItemHistoryDataByTimeReq
  3115. 16, // 18: pb.Organization.GetWorkingUfByCode:output_type -> pb.GetWorkingUfByCodeResp
  3116. 17, // 19: pb.Organization.GetWorkingRoByCode:output_type -> pb.GetWorkingRoByCodeResp
  3117. 22, // 20: pb.Organization.GetWorkingChestByCode:output_type -> pb.GetWorkingChestByCodeResp
  3118. 20, // 21: pb.Organization.GetWorkingPumpByCode:output_type -> pb.GetWorkingPumpByCodeResp
  3119. 21, // 22: pb.Organization.GetWorkingValveByCode:output_type -> pb.GetWorkingValveByCodeResp
  3120. 10, // 23: pb.Organization.MultiAddItemHistoryData:output_type -> pb.MultiAddItemHistoryDataResp
  3121. 15, // 24: pb.Organization.ItemHistoryDataList:output_type -> pb.ItemHistoryDataListResp
  3122. 15, // 25: pb.Organization.ItemHistoryDataByTime:output_type -> pb.ItemHistoryDataListResp
  3123. 13, // 26: pb.Organization.ItemHistoryDataMaxMinByTime:output_type -> pb.ItemHistoryDataMaxMinResp
  3124. 18, // [18:27] is the sub-list for method output_type
  3125. 9, // [9:18] is the sub-list for method input_type
  3126. 9, // [9:9] is the sub-list for extension type_name
  3127. 9, // [9:9] is the sub-list for extension extendee
  3128. 0, // [0:9] is the sub-list for field type_name
  3129. }
  3130. func init() { file_organization_proto_init() }
  3131. func file_organization_proto_init() {
  3132. if File_organization_proto != nil {
  3133. return
  3134. }
  3135. if !protoimpl.UnsafeEnabled {
  3136. file_organization_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3137. switch v := v.(*DcWorkingReq); i {
  3138. case 0:
  3139. return &v.state
  3140. case 1:
  3141. return &v.sizeCache
  3142. case 2:
  3143. return &v.unknownFields
  3144. default:
  3145. return nil
  3146. }
  3147. }
  3148. file_organization_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3149. switch v := v.(*WorkingMf); i {
  3150. case 0:
  3151. return &v.state
  3152. case 1:
  3153. return &v.sizeCache
  3154. case 2:
  3155. return &v.unknownFields
  3156. default:
  3157. return nil
  3158. }
  3159. }
  3160. file_organization_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3161. switch v := v.(*WorkingUf); i {
  3162. case 0:
  3163. return &v.state
  3164. case 1:
  3165. return &v.sizeCache
  3166. case 2:
  3167. return &v.unknownFields
  3168. default:
  3169. return nil
  3170. }
  3171. }
  3172. file_organization_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3173. switch v := v.(*WorkingNf); i {
  3174. case 0:
  3175. return &v.state
  3176. case 1:
  3177. return &v.sizeCache
  3178. case 2:
  3179. return &v.unknownFields
  3180. default:
  3181. return nil
  3182. }
  3183. }
  3184. file_organization_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3185. switch v := v.(*WorkingRo); i {
  3186. case 0:
  3187. return &v.state
  3188. case 1:
  3189. return &v.sizeCache
  3190. case 2:
  3191. return &v.unknownFields
  3192. default:
  3193. return nil
  3194. }
  3195. }
  3196. file_organization_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3197. switch v := v.(*WorkingChest); i {
  3198. case 0:
  3199. return &v.state
  3200. case 1:
  3201. return &v.sizeCache
  3202. case 2:
  3203. return &v.unknownFields
  3204. default:
  3205. return nil
  3206. }
  3207. }
  3208. file_organization_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3209. switch v := v.(*WorkingPump); i {
  3210. case 0:
  3211. return &v.state
  3212. case 1:
  3213. return &v.sizeCache
  3214. case 2:
  3215. return &v.unknownFields
  3216. default:
  3217. return nil
  3218. }
  3219. }
  3220. file_organization_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3221. switch v := v.(*WorkingValve); i {
  3222. case 0:
  3223. return &v.state
  3224. case 1:
  3225. return &v.sizeCache
  3226. case 2:
  3227. return &v.unknownFields
  3228. default:
  3229. return nil
  3230. }
  3231. }
  3232. file_organization_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3233. switch v := v.(*ItemHistoryData); i {
  3234. case 0:
  3235. return &v.state
  3236. case 1:
  3237. return &v.sizeCache
  3238. case 2:
  3239. return &v.unknownFields
  3240. default:
  3241. return nil
  3242. }
  3243. }
  3244. file_organization_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3245. switch v := v.(*MultiAddItemHistoryDataReq); i {
  3246. case 0:
  3247. return &v.state
  3248. case 1:
  3249. return &v.sizeCache
  3250. case 2:
  3251. return &v.unknownFields
  3252. default:
  3253. return nil
  3254. }
  3255. }
  3256. file_organization_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3257. switch v := v.(*MultiAddItemHistoryDataResp); i {
  3258. case 0:
  3259. return &v.state
  3260. case 1:
  3261. return &v.sizeCache
  3262. case 2:
  3263. return &v.unknownFields
  3264. default:
  3265. return nil
  3266. }
  3267. }
  3268. file_organization_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3269. switch v := v.(*ItemHistoryDataListReq); i {
  3270. case 0:
  3271. return &v.state
  3272. case 1:
  3273. return &v.sizeCache
  3274. case 2:
  3275. return &v.unknownFields
  3276. default:
  3277. return nil
  3278. }
  3279. }
  3280. file_organization_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3281. switch v := v.(*ItemHistoryDataByTimeReq); i {
  3282. case 0:
  3283. return &v.state
  3284. case 1:
  3285. return &v.sizeCache
  3286. case 2:
  3287. return &v.unknownFields
  3288. default:
  3289. return nil
  3290. }
  3291. }
  3292. file_organization_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3293. switch v := v.(*ItemHistoryDataMaxMinResp); i {
  3294. case 0:
  3295. return &v.state
  3296. case 1:
  3297. return &v.sizeCache
  3298. case 2:
  3299. return &v.unknownFields
  3300. default:
  3301. return nil
  3302. }
  3303. }
  3304. file_organization_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3305. switch v := v.(*ItemHistoryDataList); i {
  3306. case 0:
  3307. return &v.state
  3308. case 1:
  3309. return &v.sizeCache
  3310. case 2:
  3311. return &v.unknownFields
  3312. default:
  3313. return nil
  3314. }
  3315. }
  3316. file_organization_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3317. switch v := v.(*ItemHistoryDataListResp); i {
  3318. case 0:
  3319. return &v.state
  3320. case 1:
  3321. return &v.sizeCache
  3322. case 2:
  3323. return &v.unknownFields
  3324. default:
  3325. return nil
  3326. }
  3327. }
  3328. file_organization_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3329. switch v := v.(*GetWorkingUfByCodeResp); i {
  3330. case 0:
  3331. return &v.state
  3332. case 1:
  3333. return &v.sizeCache
  3334. case 2:
  3335. return &v.unknownFields
  3336. default:
  3337. return nil
  3338. }
  3339. }
  3340. file_organization_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3341. switch v := v.(*GetWorkingRoByCodeResp); i {
  3342. case 0:
  3343. return &v.state
  3344. case 1:
  3345. return &v.sizeCache
  3346. case 2:
  3347. return &v.unknownFields
  3348. default:
  3349. return nil
  3350. }
  3351. }
  3352. file_organization_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3353. switch v := v.(*GetWorkingNfByCodeResp); i {
  3354. case 0:
  3355. return &v.state
  3356. case 1:
  3357. return &v.sizeCache
  3358. case 2:
  3359. return &v.unknownFields
  3360. default:
  3361. return nil
  3362. }
  3363. }
  3364. file_organization_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3365. switch v := v.(*GetWorkingMfByCodeResp); i {
  3366. case 0:
  3367. return &v.state
  3368. case 1:
  3369. return &v.sizeCache
  3370. case 2:
  3371. return &v.unknownFields
  3372. default:
  3373. return nil
  3374. }
  3375. }
  3376. file_organization_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3377. switch v := v.(*GetWorkingPumpByCodeResp); i {
  3378. case 0:
  3379. return &v.state
  3380. case 1:
  3381. return &v.sizeCache
  3382. case 2:
  3383. return &v.unknownFields
  3384. default:
  3385. return nil
  3386. }
  3387. }
  3388. file_organization_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3389. switch v := v.(*GetWorkingValveByCodeResp); i {
  3390. case 0:
  3391. return &v.state
  3392. case 1:
  3393. return &v.sizeCache
  3394. case 2:
  3395. return &v.unknownFields
  3396. default:
  3397. return nil
  3398. }
  3399. }
  3400. file_organization_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3401. switch v := v.(*GetWorkingChestByCodeResp); i {
  3402. case 0:
  3403. return &v.state
  3404. case 1:
  3405. return &v.sizeCache
  3406. case 2:
  3407. return &v.unknownFields
  3408. default:
  3409. return nil
  3410. }
  3411. }
  3412. }
  3413. type x struct{}
  3414. out := protoimpl.TypeBuilder{
  3415. File: protoimpl.DescBuilder{
  3416. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3417. RawDescriptor: file_organization_proto_rawDesc,
  3418. NumEnums: 0,
  3419. NumMessages: 23,
  3420. NumExtensions: 0,
  3421. NumServices: 1,
  3422. },
  3423. GoTypes: file_organization_proto_goTypes,
  3424. DependencyIndexes: file_organization_proto_depIdxs,
  3425. MessageInfos: file_organization_proto_msgTypes,
  3426. }.Build()
  3427. File_organization_proto = out.File
  3428. file_organization_proto_rawDesc = nil
  3429. file_organization_proto_goTypes = nil
  3430. file_organization_proto_depIdxs = nil
  3431. }