organization.pb.go 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.30.0
  4. // protoc v3.21.12
  5. // source: organization.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type DcWorkingReq struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  24. DeviceCode string `protobuf:"bytes,2,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  25. }
  26. func (x *DcWorkingReq) Reset() {
  27. *x = DcWorkingReq{}
  28. if protoimpl.UnsafeEnabled {
  29. mi := &file_organization_proto_msgTypes[0]
  30. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  31. ms.StoreMessageInfo(mi)
  32. }
  33. }
  34. func (x *DcWorkingReq) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*DcWorkingReq) ProtoMessage() {}
  38. func (x *DcWorkingReq) ProtoReflect() protoreflect.Message {
  39. mi := &file_organization_proto_msgTypes[0]
  40. if protoimpl.UnsafeEnabled && x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use DcWorkingReq.ProtoReflect.Descriptor instead.
  50. func (*DcWorkingReq) Descriptor() ([]byte, []int) {
  51. return file_organization_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *DcWorkingReq) GetProjectId() int64 {
  54. if x != nil {
  55. return x.ProjectId
  56. }
  57. return 0
  58. }
  59. func (x *DcWorkingReq) GetDeviceCode() string {
  60. if x != nil {
  61. return x.DeviceCode
  62. }
  63. return ""
  64. }
  65. type WorkingUf struct {
  66. state protoimpl.MessageState
  67. sizeCache protoimpl.SizeCache
  68. unknownFields protoimpl.UnknownFields
  69. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  70. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  71. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  72. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  73. FeedFlow float64 `protobuf:"fixed64,5,opt,name=feed_flow,json=feedFlow,proto3" json:"feed_flow,omitempty"` // 进水流量
  74. ConFlow float64 `protobuf:"fixed64,6,opt,name=con_flow,json=conFlow,proto3" json:"con_flow,omitempty"` // 浓水流量
  75. ProductFlow float64 `protobuf:"fixed64,7,opt,name=product_flow,json=productFlow,proto3" json:"product_flow,omitempty"` // 产水流量
  76. FeedPressure float64 `protobuf:"fixed64,8,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure,omitempty"` // 进水压力
  77. ConPressure float64 `protobuf:"fixed64,9,opt,name=con_pressure,json=conPressure,proto3" json:"con_pressure,omitempty"` // 浓水压力
  78. ProductPressure float64 `protobuf:"fixed64,10,opt,name=product_pressure,json=productPressure,proto3" json:"product_pressure,omitempty"` // 产水压力
  79. Tmp float64 `protobuf:"fixed64,11,opt,name=tmp,proto3" json:"tmp,omitempty"` // 跨膜压差
  80. Flux float64 `protobuf:"fixed64,12,opt,name=flux,proto3" json:"flux,omitempty"` // 膜通量
  81. FeedWqTurbidity float64 `protobuf:"fixed64,13,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  82. FeedWqPh int64 `protobuf:"varint,14,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  83. ProductWqPh int64 `protobuf:"varint,15,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  84. FeedWqAl float64 `protobuf:"fixed64,16,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  85. ProductWqAl float64 `protobuf:"fixed64,17,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  86. FeedWqFe float64 `protobuf:"fixed64,18,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  87. ProductWqFe float64 `protobuf:"fixed64,19,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  88. FeedWqMn float64 `protobuf:"fixed64,20,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  89. ProductWqMn float64 `protobuf:"fixed64,21,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  90. FeedWqSio2 float64 `protobuf:"fixed64,22,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  91. ProductWqSio2 float64 `protobuf:"fixed64,23,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  92. FeedWqCod float64 `protobuf:"fixed64,24,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  93. ProductWqCod float64 `protobuf:"fixed64,25,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  94. FeedWqP float64 `protobuf:"fixed64,26,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  95. ProductWqP float64 `protobuf:"fixed64,27,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  96. Step int64 `protobuf:"varint,28,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  97. CTime string `protobuf:"bytes,29,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  98. }
  99. func (x *WorkingUf) Reset() {
  100. *x = WorkingUf{}
  101. if protoimpl.UnsafeEnabled {
  102. mi := &file_organization_proto_msgTypes[1]
  103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  104. ms.StoreMessageInfo(mi)
  105. }
  106. }
  107. func (x *WorkingUf) String() string {
  108. return protoimpl.X.MessageStringOf(x)
  109. }
  110. func (*WorkingUf) ProtoMessage() {}
  111. func (x *WorkingUf) ProtoReflect() protoreflect.Message {
  112. mi := &file_organization_proto_msgTypes[1]
  113. if protoimpl.UnsafeEnabled && x != nil {
  114. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  115. if ms.LoadMessageInfo() == nil {
  116. ms.StoreMessageInfo(mi)
  117. }
  118. return ms
  119. }
  120. return mi.MessageOf(x)
  121. }
  122. // Deprecated: Use WorkingUf.ProtoReflect.Descriptor instead.
  123. func (*WorkingUf) Descriptor() ([]byte, []int) {
  124. return file_organization_proto_rawDescGZIP(), []int{1}
  125. }
  126. func (x *WorkingUf) GetId() int64 {
  127. if x != nil {
  128. return x.Id
  129. }
  130. return 0
  131. }
  132. func (x *WorkingUf) GetProjectId() int64 {
  133. if x != nil {
  134. return x.ProjectId
  135. }
  136. return 0
  137. }
  138. func (x *WorkingUf) GetDeviceCode() string {
  139. if x != nil {
  140. return x.DeviceCode
  141. }
  142. return ""
  143. }
  144. func (x *WorkingUf) GetWaterTemperature() float64 {
  145. if x != nil {
  146. return x.WaterTemperature
  147. }
  148. return 0
  149. }
  150. func (x *WorkingUf) GetFeedFlow() float64 {
  151. if x != nil {
  152. return x.FeedFlow
  153. }
  154. return 0
  155. }
  156. func (x *WorkingUf) GetConFlow() float64 {
  157. if x != nil {
  158. return x.ConFlow
  159. }
  160. return 0
  161. }
  162. func (x *WorkingUf) GetProductFlow() float64 {
  163. if x != nil {
  164. return x.ProductFlow
  165. }
  166. return 0
  167. }
  168. func (x *WorkingUf) GetFeedPressure() float64 {
  169. if x != nil {
  170. return x.FeedPressure
  171. }
  172. return 0
  173. }
  174. func (x *WorkingUf) GetConPressure() float64 {
  175. if x != nil {
  176. return x.ConPressure
  177. }
  178. return 0
  179. }
  180. func (x *WorkingUf) GetProductPressure() float64 {
  181. if x != nil {
  182. return x.ProductPressure
  183. }
  184. return 0
  185. }
  186. func (x *WorkingUf) GetTmp() float64 {
  187. if x != nil {
  188. return x.Tmp
  189. }
  190. return 0
  191. }
  192. func (x *WorkingUf) GetFlux() float64 {
  193. if x != nil {
  194. return x.Flux
  195. }
  196. return 0
  197. }
  198. func (x *WorkingUf) GetFeedWqTurbidity() float64 {
  199. if x != nil {
  200. return x.FeedWqTurbidity
  201. }
  202. return 0
  203. }
  204. func (x *WorkingUf) GetFeedWqPh() int64 {
  205. if x != nil {
  206. return x.FeedWqPh
  207. }
  208. return 0
  209. }
  210. func (x *WorkingUf) GetProductWqPh() int64 {
  211. if x != nil {
  212. return x.ProductWqPh
  213. }
  214. return 0
  215. }
  216. func (x *WorkingUf) GetFeedWqAl() float64 {
  217. if x != nil {
  218. return x.FeedWqAl
  219. }
  220. return 0
  221. }
  222. func (x *WorkingUf) GetProductWqAl() float64 {
  223. if x != nil {
  224. return x.ProductWqAl
  225. }
  226. return 0
  227. }
  228. func (x *WorkingUf) GetFeedWqFe() float64 {
  229. if x != nil {
  230. return x.FeedWqFe
  231. }
  232. return 0
  233. }
  234. func (x *WorkingUf) GetProductWqFe() float64 {
  235. if x != nil {
  236. return x.ProductWqFe
  237. }
  238. return 0
  239. }
  240. func (x *WorkingUf) GetFeedWqMn() float64 {
  241. if x != nil {
  242. return x.FeedWqMn
  243. }
  244. return 0
  245. }
  246. func (x *WorkingUf) GetProductWqMn() float64 {
  247. if x != nil {
  248. return x.ProductWqMn
  249. }
  250. return 0
  251. }
  252. func (x *WorkingUf) GetFeedWqSio2() float64 {
  253. if x != nil {
  254. return x.FeedWqSio2
  255. }
  256. return 0
  257. }
  258. func (x *WorkingUf) GetProductWqSio2() float64 {
  259. if x != nil {
  260. return x.ProductWqSio2
  261. }
  262. return 0
  263. }
  264. func (x *WorkingUf) GetFeedWqCod() float64 {
  265. if x != nil {
  266. return x.FeedWqCod
  267. }
  268. return 0
  269. }
  270. func (x *WorkingUf) GetProductWqCod() float64 {
  271. if x != nil {
  272. return x.ProductWqCod
  273. }
  274. return 0
  275. }
  276. func (x *WorkingUf) GetFeedWqP() float64 {
  277. if x != nil {
  278. return x.FeedWqP
  279. }
  280. return 0
  281. }
  282. func (x *WorkingUf) GetProductWqP() float64 {
  283. if x != nil {
  284. return x.ProductWqP
  285. }
  286. return 0
  287. }
  288. func (x *WorkingUf) GetStep() int64 {
  289. if x != nil {
  290. return x.Step
  291. }
  292. return 0
  293. }
  294. func (x *WorkingUf) GetCTime() string {
  295. if x != nil {
  296. return x.CTime
  297. }
  298. return ""
  299. }
  300. type WorkingRo struct {
  301. state protoimpl.MessageState
  302. sizeCache protoimpl.SizeCache
  303. unknownFields protoimpl.UnknownFields
  304. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  305. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  306. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  307. WaterTemperature float64 `protobuf:"fixed64,4,opt,name=water_temperature,json=waterTemperature,proto3" json:"water_temperature,omitempty"` // 水温 摄氏度
  308. FeedFlow_1St float64 `protobuf:"fixed64,5,opt,name=feed_flow_1st,json=feedFlow1st,proto3" json:"feed_flow_1st,omitempty"` // 一段进水流量
  309. ConFlow_1St float64 `protobuf:"fixed64,6,opt,name=con_flow_1st,json=conFlow1st,proto3" json:"con_flow_1st,omitempty"` // 一段浓水流量
  310. ProductFlow_1St float64 `protobuf:"fixed64,7,opt,name=product_flow_1st,json=productFlow1st,proto3" json:"product_flow_1st,omitempty"` // 一段产水流量
  311. FeedPressure_1St float64 `protobuf:"fixed64,8,opt,name=feed_pressure_1st,json=feedPressure1st,proto3" json:"feed_pressure_1st,omitempty"` // 一段进水压力
  312. ConPressure_1St float64 `protobuf:"fixed64,9,opt,name=con_pressure_1st,json=conPressure1st,proto3" json:"con_pressure_1st,omitempty"` // 一段浓水压力
  313. ProductPressure_1St float64 `protobuf:"fixed64,10,opt,name=product_pressure_1st,json=productPressure1st,proto3" json:"product_pressure_1st,omitempty"` // 一段产水压力
  314. Tmp_1St float64 `protobuf:"fixed64,11,opt,name=tmp_1st,json=tmp1st,proto3" json:"tmp_1st,omitempty"` // 一段跨膜压差
  315. Flux_1St float64 `protobuf:"fixed64,12,opt,name=flux_1st,json=flux1st,proto3" json:"flux_1st,omitempty"` // 一段膜通量
  316. Permeability_1St float64 `protobuf:"fixed64,13,opt,name=permeability_1st,json=permeability1st,proto3" json:"permeability_1st,omitempty"` // 一段渗透率
  317. FeedFlow_2Nd float64 `protobuf:"fixed64,14,opt,name=feed_flow_2nd,json=feedFlow2nd,proto3" json:"feed_flow_2nd,omitempty"` // 二段进水流量
  318. ConFlow_2Nd float64 `protobuf:"fixed64,15,opt,name=con_flow_2nd,json=conFlow2nd,proto3" json:"con_flow_2nd,omitempty"` // 二段浓水流量
  319. ProductFlow_2Nd float64 `protobuf:"fixed64,16,opt,name=product_flow_2nd,json=productFlow2nd,proto3" json:"product_flow_2nd,omitempty"` // 二段产水流量
  320. FeedPressure_2Nd float64 `protobuf:"fixed64,17,opt,name=feed_pressure_2nd,json=feedPressure2nd,proto3" json:"feed_pressure_2nd,omitempty"` // 二段进水压力
  321. ConPressure_2Nd float64 `protobuf:"fixed64,18,opt,name=con_pressure_2nd,json=conPressure2nd,proto3" json:"con_pressure_2nd,omitempty"` // 二段浓水压力
  322. ProductPressure_2Nd float64 `protobuf:"fixed64,19,opt,name=product_pressure_2nd,json=productPressure2nd,proto3" json:"product_pressure_2nd,omitempty"` // 二段产水压力
  323. Tmp_2Nd float64 `protobuf:"fixed64,20,opt,name=tmp_2nd,json=tmp2nd,proto3" json:"tmp_2nd,omitempty"` // 二段压差
  324. Flux_2Nd float64 `protobuf:"fixed64,21,opt,name=flux_2nd,json=flux2nd,proto3" json:"flux_2nd,omitempty"` // 二段通量
  325. Permeability_2Nd float64 `protobuf:"fixed64,22,opt,name=permeability_2nd,json=permeability2nd,proto3" json:"permeability_2nd,omitempty"` // 二段渗透率
  326. FeedFlow_3Th float64 `protobuf:"fixed64,23,opt,name=feed_flow_3th,json=feedFlow3th,proto3" json:"feed_flow_3th,omitempty"` // 三段进水流量
  327. ConFlow_3Th float64 `protobuf:"fixed64,24,opt,name=con_flow_3th,json=conFlow3th,proto3" json:"con_flow_3th,omitempty"` // 三段浓水流量
  328. ProductFlow_3Th float64 `protobuf:"fixed64,25,opt,name=product_flow_3th,json=productFlow3th,proto3" json:"product_flow_3th,omitempty"` // 三段产水流量
  329. FeedPressure_3Th float64 `protobuf:"fixed64,26,opt,name=feed_pressure_3th,json=feedPressure3th,proto3" json:"feed_pressure_3th,omitempty"` // 三段进水压力
  330. ConPressure_3Th float64 `protobuf:"fixed64,27,opt,name=con_pressure_3th,json=conPressure3th,proto3" json:"con_pressure_3th,omitempty"` // 三段浓水压力
  331. ProductPressure_3Th float64 `protobuf:"fixed64,28,opt,name=product_pressure_3th,json=productPressure3th,proto3" json:"product_pressure_3th,omitempty"` // 三段产水压力
  332. Tmp_3Th float64 `protobuf:"fixed64,29,opt,name=tmp_3th,json=tmp3th,proto3" json:"tmp_3th,omitempty"` // 三段压差
  333. Flux_3Th float64 `protobuf:"fixed64,30,opt,name=flux_3th,json=flux3th,proto3" json:"flux_3th,omitempty"` // 三段通量
  334. Permeability_3Th float64 `protobuf:"fixed64,31,opt,name=permeability_3th,json=permeability3th,proto3" json:"permeability_3th,omitempty"` // 三段渗透率
  335. FeedWqTurbidity float64 `protobuf:"fixed64,32,opt,name=feed_wq_turbidity,json=feedWqTurbidity,proto3" json:"feed_wq_turbidity,omitempty"` // 进水浊度
  336. FeedWqPh int64 `protobuf:"varint,33,opt,name=feed_wq_ph,json=feedWqPh,proto3" json:"feed_wq_ph,omitempty"` // 进水 PH 值
  337. ProductWqPh int64 `protobuf:"varint,34,opt,name=product_wq_ph,json=productWqPh,proto3" json:"product_wq_ph,omitempty"` // 产水 PH 值
  338. FeedWqAl float64 `protobuf:"fixed64,35,opt,name=feed_wq_al,json=feedWqAl,proto3" json:"feed_wq_al,omitempty"` // 进水水质:铝
  339. ProductWqAl float64 `protobuf:"fixed64,36,opt,name=product_wq_al,json=productWqAl,proto3" json:"product_wq_al,omitempty"` // 产水水质:铝
  340. FeedWqFe float64 `protobuf:"fixed64,37,opt,name=feed_wq_fe,json=feedWqFe,proto3" json:"feed_wq_fe,omitempty"` // 进水水质:铁
  341. ProductWqFe float64 `protobuf:"fixed64,38,opt,name=product_wq_fe,json=productWqFe,proto3" json:"product_wq_fe,omitempty"` // 产水水质:铁
  342. FeedWqMn float64 `protobuf:"fixed64,39,opt,name=feed_wq_mn,json=feedWqMn,proto3" json:"feed_wq_mn,omitempty"` // 进水水质:锰
  343. ProductWqMn float64 `protobuf:"fixed64,40,opt,name=product_wq_mn,json=productWqMn,proto3" json:"product_wq_mn,omitempty"` // 产水水质:锰
  344. FeedWqSio2 float64 `protobuf:"fixed64,41,opt,name=feed_wq_sio2,json=feedWqSio2,proto3" json:"feed_wq_sio2,omitempty"` // 进水水质:二氧化硅
  345. ProductWqSio2 float64 `protobuf:"fixed64,42,opt,name=product_wq_sio2,json=productWqSio2,proto3" json:"product_wq_sio2,omitempty"` // 产水水质:二氧化硅
  346. FeedWqCod float64 `protobuf:"fixed64,43,opt,name=feed_wq_cod,json=feedWqCod,proto3" json:"feed_wq_cod,omitempty"` // 进水水质:COD
  347. ProductWqCod float64 `protobuf:"fixed64,44,opt,name=product_wq_cod,json=productWqCod,proto3" json:"product_wq_cod,omitempty"` // 产水水质:COD
  348. FeedWqP float64 `protobuf:"fixed64,45,opt,name=feed_wq_p,json=feedWqP,proto3" json:"feed_wq_p,omitempty"` // 进水水质:磷
  349. ProductWqP float64 `protobuf:"fixed64,46,opt,name=product_wq_p,json=productWqP,proto3" json:"product_wq_p,omitempty"` // 产水水质:磷
  350. Step int64 `protobuf:"varint,47,opt,name=step,proto3" json:"step,omitempty"` // 设备当前步序值
  351. CTime string `protobuf:"bytes,48,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  352. }
  353. func (x *WorkingRo) Reset() {
  354. *x = WorkingRo{}
  355. if protoimpl.UnsafeEnabled {
  356. mi := &file_organization_proto_msgTypes[2]
  357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  358. ms.StoreMessageInfo(mi)
  359. }
  360. }
  361. func (x *WorkingRo) String() string {
  362. return protoimpl.X.MessageStringOf(x)
  363. }
  364. func (*WorkingRo) ProtoMessage() {}
  365. func (x *WorkingRo) ProtoReflect() protoreflect.Message {
  366. mi := &file_organization_proto_msgTypes[2]
  367. if protoimpl.UnsafeEnabled && x != nil {
  368. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  369. if ms.LoadMessageInfo() == nil {
  370. ms.StoreMessageInfo(mi)
  371. }
  372. return ms
  373. }
  374. return mi.MessageOf(x)
  375. }
  376. // Deprecated: Use WorkingRo.ProtoReflect.Descriptor instead.
  377. func (*WorkingRo) Descriptor() ([]byte, []int) {
  378. return file_organization_proto_rawDescGZIP(), []int{2}
  379. }
  380. func (x *WorkingRo) GetId() int64 {
  381. if x != nil {
  382. return x.Id
  383. }
  384. return 0
  385. }
  386. func (x *WorkingRo) GetProjectId() int64 {
  387. if x != nil {
  388. return x.ProjectId
  389. }
  390. return 0
  391. }
  392. func (x *WorkingRo) GetDeviceCode() string {
  393. if x != nil {
  394. return x.DeviceCode
  395. }
  396. return ""
  397. }
  398. func (x *WorkingRo) GetWaterTemperature() float64 {
  399. if x != nil {
  400. return x.WaterTemperature
  401. }
  402. return 0
  403. }
  404. func (x *WorkingRo) GetFeedFlow_1St() float64 {
  405. if x != nil {
  406. return x.FeedFlow_1St
  407. }
  408. return 0
  409. }
  410. func (x *WorkingRo) GetConFlow_1St() float64 {
  411. if x != nil {
  412. return x.ConFlow_1St
  413. }
  414. return 0
  415. }
  416. func (x *WorkingRo) GetProductFlow_1St() float64 {
  417. if x != nil {
  418. return x.ProductFlow_1St
  419. }
  420. return 0
  421. }
  422. func (x *WorkingRo) GetFeedPressure_1St() float64 {
  423. if x != nil {
  424. return x.FeedPressure_1St
  425. }
  426. return 0
  427. }
  428. func (x *WorkingRo) GetConPressure_1St() float64 {
  429. if x != nil {
  430. return x.ConPressure_1St
  431. }
  432. return 0
  433. }
  434. func (x *WorkingRo) GetProductPressure_1St() float64 {
  435. if x != nil {
  436. return x.ProductPressure_1St
  437. }
  438. return 0
  439. }
  440. func (x *WorkingRo) GetTmp_1St() float64 {
  441. if x != nil {
  442. return x.Tmp_1St
  443. }
  444. return 0
  445. }
  446. func (x *WorkingRo) GetFlux_1St() float64 {
  447. if x != nil {
  448. return x.Flux_1St
  449. }
  450. return 0
  451. }
  452. func (x *WorkingRo) GetPermeability_1St() float64 {
  453. if x != nil {
  454. return x.Permeability_1St
  455. }
  456. return 0
  457. }
  458. func (x *WorkingRo) GetFeedFlow_2Nd() float64 {
  459. if x != nil {
  460. return x.FeedFlow_2Nd
  461. }
  462. return 0
  463. }
  464. func (x *WorkingRo) GetConFlow_2Nd() float64 {
  465. if x != nil {
  466. return x.ConFlow_2Nd
  467. }
  468. return 0
  469. }
  470. func (x *WorkingRo) GetProductFlow_2Nd() float64 {
  471. if x != nil {
  472. return x.ProductFlow_2Nd
  473. }
  474. return 0
  475. }
  476. func (x *WorkingRo) GetFeedPressure_2Nd() float64 {
  477. if x != nil {
  478. return x.FeedPressure_2Nd
  479. }
  480. return 0
  481. }
  482. func (x *WorkingRo) GetConPressure_2Nd() float64 {
  483. if x != nil {
  484. return x.ConPressure_2Nd
  485. }
  486. return 0
  487. }
  488. func (x *WorkingRo) GetProductPressure_2Nd() float64 {
  489. if x != nil {
  490. return x.ProductPressure_2Nd
  491. }
  492. return 0
  493. }
  494. func (x *WorkingRo) GetTmp_2Nd() float64 {
  495. if x != nil {
  496. return x.Tmp_2Nd
  497. }
  498. return 0
  499. }
  500. func (x *WorkingRo) GetFlux_2Nd() float64 {
  501. if x != nil {
  502. return x.Flux_2Nd
  503. }
  504. return 0
  505. }
  506. func (x *WorkingRo) GetPermeability_2Nd() float64 {
  507. if x != nil {
  508. return x.Permeability_2Nd
  509. }
  510. return 0
  511. }
  512. func (x *WorkingRo) GetFeedFlow_3Th() float64 {
  513. if x != nil {
  514. return x.FeedFlow_3Th
  515. }
  516. return 0
  517. }
  518. func (x *WorkingRo) GetConFlow_3Th() float64 {
  519. if x != nil {
  520. return x.ConFlow_3Th
  521. }
  522. return 0
  523. }
  524. func (x *WorkingRo) GetProductFlow_3Th() float64 {
  525. if x != nil {
  526. return x.ProductFlow_3Th
  527. }
  528. return 0
  529. }
  530. func (x *WorkingRo) GetFeedPressure_3Th() float64 {
  531. if x != nil {
  532. return x.FeedPressure_3Th
  533. }
  534. return 0
  535. }
  536. func (x *WorkingRo) GetConPressure_3Th() float64 {
  537. if x != nil {
  538. return x.ConPressure_3Th
  539. }
  540. return 0
  541. }
  542. func (x *WorkingRo) GetProductPressure_3Th() float64 {
  543. if x != nil {
  544. return x.ProductPressure_3Th
  545. }
  546. return 0
  547. }
  548. func (x *WorkingRo) GetTmp_3Th() float64 {
  549. if x != nil {
  550. return x.Tmp_3Th
  551. }
  552. return 0
  553. }
  554. func (x *WorkingRo) GetFlux_3Th() float64 {
  555. if x != nil {
  556. return x.Flux_3Th
  557. }
  558. return 0
  559. }
  560. func (x *WorkingRo) GetPermeability_3Th() float64 {
  561. if x != nil {
  562. return x.Permeability_3Th
  563. }
  564. return 0
  565. }
  566. func (x *WorkingRo) GetFeedWqTurbidity() float64 {
  567. if x != nil {
  568. return x.FeedWqTurbidity
  569. }
  570. return 0
  571. }
  572. func (x *WorkingRo) GetFeedWqPh() int64 {
  573. if x != nil {
  574. return x.FeedWqPh
  575. }
  576. return 0
  577. }
  578. func (x *WorkingRo) GetProductWqPh() int64 {
  579. if x != nil {
  580. return x.ProductWqPh
  581. }
  582. return 0
  583. }
  584. func (x *WorkingRo) GetFeedWqAl() float64 {
  585. if x != nil {
  586. return x.FeedWqAl
  587. }
  588. return 0
  589. }
  590. func (x *WorkingRo) GetProductWqAl() float64 {
  591. if x != nil {
  592. return x.ProductWqAl
  593. }
  594. return 0
  595. }
  596. func (x *WorkingRo) GetFeedWqFe() float64 {
  597. if x != nil {
  598. return x.FeedWqFe
  599. }
  600. return 0
  601. }
  602. func (x *WorkingRo) GetProductWqFe() float64 {
  603. if x != nil {
  604. return x.ProductWqFe
  605. }
  606. return 0
  607. }
  608. func (x *WorkingRo) GetFeedWqMn() float64 {
  609. if x != nil {
  610. return x.FeedWqMn
  611. }
  612. return 0
  613. }
  614. func (x *WorkingRo) GetProductWqMn() float64 {
  615. if x != nil {
  616. return x.ProductWqMn
  617. }
  618. return 0
  619. }
  620. func (x *WorkingRo) GetFeedWqSio2() float64 {
  621. if x != nil {
  622. return x.FeedWqSio2
  623. }
  624. return 0
  625. }
  626. func (x *WorkingRo) GetProductWqSio2() float64 {
  627. if x != nil {
  628. return x.ProductWqSio2
  629. }
  630. return 0
  631. }
  632. func (x *WorkingRo) GetFeedWqCod() float64 {
  633. if x != nil {
  634. return x.FeedWqCod
  635. }
  636. return 0
  637. }
  638. func (x *WorkingRo) GetProductWqCod() float64 {
  639. if x != nil {
  640. return x.ProductWqCod
  641. }
  642. return 0
  643. }
  644. func (x *WorkingRo) GetFeedWqP() float64 {
  645. if x != nil {
  646. return x.FeedWqP
  647. }
  648. return 0
  649. }
  650. func (x *WorkingRo) GetProductWqP() float64 {
  651. if x != nil {
  652. return x.ProductWqP
  653. }
  654. return 0
  655. }
  656. func (x *WorkingRo) GetStep() int64 {
  657. if x != nil {
  658. return x.Step
  659. }
  660. return 0
  661. }
  662. func (x *WorkingRo) GetCTime() string {
  663. if x != nil {
  664. return x.CTime
  665. }
  666. return ""
  667. }
  668. type WorkingChest struct {
  669. state protoimpl.MessageState
  670. sizeCache protoimpl.SizeCache
  671. unknownFields protoimpl.UnknownFields
  672. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  673. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  674. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  675. Switch int64 `protobuf:"varint,4,opt,name=switch,proto3" json:"switch,omitempty"` // 药箱液位开关 0: 关 1: 开
  676. Level float64 `protobuf:"fixed64,5,opt,name=level,proto3" json:"level,omitempty"` // 液位高度
  677. AgitatorStatus int64 `protobuf:"varint,6,opt,name=agitator_status,json=agitatorStatus,proto3" json:"agitator_status,omitempty"` // 搅拌器运行状态 0: 未运行 1:运行中
  678. AgitatorDuration int64 `protobuf:"varint,7,opt,name=agitator_duration,json=agitatorDuration,proto3" json:"agitator_duration,omitempty"` // 搅拌器运行时长
  679. AgitatorFaultStatus int64 `protobuf:"varint,8,opt,name=agitator_fault_status,json=agitatorFaultStatus,proto3" json:"agitator_fault_status,omitempty"` // 搅拌器故障状态 0:正常 1:故障
  680. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  681. }
  682. func (x *WorkingChest) Reset() {
  683. *x = WorkingChest{}
  684. if protoimpl.UnsafeEnabled {
  685. mi := &file_organization_proto_msgTypes[3]
  686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  687. ms.StoreMessageInfo(mi)
  688. }
  689. }
  690. func (x *WorkingChest) String() string {
  691. return protoimpl.X.MessageStringOf(x)
  692. }
  693. func (*WorkingChest) ProtoMessage() {}
  694. func (x *WorkingChest) ProtoReflect() protoreflect.Message {
  695. mi := &file_organization_proto_msgTypes[3]
  696. if protoimpl.UnsafeEnabled && x != nil {
  697. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  698. if ms.LoadMessageInfo() == nil {
  699. ms.StoreMessageInfo(mi)
  700. }
  701. return ms
  702. }
  703. return mi.MessageOf(x)
  704. }
  705. // Deprecated: Use WorkingChest.ProtoReflect.Descriptor instead.
  706. func (*WorkingChest) Descriptor() ([]byte, []int) {
  707. return file_organization_proto_rawDescGZIP(), []int{3}
  708. }
  709. func (x *WorkingChest) GetId() int64 {
  710. if x != nil {
  711. return x.Id
  712. }
  713. return 0
  714. }
  715. func (x *WorkingChest) GetProjectId() int64 {
  716. if x != nil {
  717. return x.ProjectId
  718. }
  719. return 0
  720. }
  721. func (x *WorkingChest) GetDeviceCode() string {
  722. if x != nil {
  723. return x.DeviceCode
  724. }
  725. return ""
  726. }
  727. func (x *WorkingChest) GetSwitch() int64 {
  728. if x != nil {
  729. return x.Switch
  730. }
  731. return 0
  732. }
  733. func (x *WorkingChest) GetLevel() float64 {
  734. if x != nil {
  735. return x.Level
  736. }
  737. return 0
  738. }
  739. func (x *WorkingChest) GetAgitatorStatus() int64 {
  740. if x != nil {
  741. return x.AgitatorStatus
  742. }
  743. return 0
  744. }
  745. func (x *WorkingChest) GetAgitatorDuration() int64 {
  746. if x != nil {
  747. return x.AgitatorDuration
  748. }
  749. return 0
  750. }
  751. func (x *WorkingChest) GetAgitatorFaultStatus() int64 {
  752. if x != nil {
  753. return x.AgitatorFaultStatus
  754. }
  755. return 0
  756. }
  757. func (x *WorkingChest) GetCTime() string {
  758. if x != nil {
  759. return x.CTime
  760. }
  761. return ""
  762. }
  763. type WorkingPump struct {
  764. state protoimpl.MessageState
  765. sizeCache protoimpl.SizeCache
  766. unknownFields protoimpl.UnknownFields
  767. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  768. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  769. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  770. FeedPressure float64 `protobuf:"fixed64,4,opt,name=feed_pressure,json=feedPressure,proto3" json:"feed_pressure,omitempty"` // 进水压力
  771. OutPressure float64 `protobuf:"fixed64,5,opt,name=out_pressure,json=outPressure,proto3" json:"out_pressure,omitempty"` // 出水压力
  772. Duration int64 `protobuf:"varint,6,opt,name=duration,proto3" json:"duration,omitempty"` // 运行时长 单位 s
  773. Current float64 `protobuf:"fixed64,7,opt,name=current,proto3" json:"current,omitempty"` // 运行电流
  774. Frequency float64 `protobuf:"fixed64,8,opt,name=frequency,proto3" json:"frequency,omitempty"` // 运行频率
  775. Lift float64 `protobuf:"fixed64,9,opt,name=lift,proto3" json:"lift,omitempty"` // 工作扬程
  776. Efficiency float64 `protobuf:"fixed64,10,opt,name=efficiency,proto3" json:"efficiency,omitempty"` // 运行效率
  777. RunStatus int64 `protobuf:"varint,11,opt,name=run_status,json=runStatus,proto3" json:"run_status,omitempty"` // 运行状态 0: 停机 1: 运行正常
  778. FaultStatus int64 `protobuf:"varint,12,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status,omitempty"` // 故障状态 0: 正常 1: 故障
  779. CTime string `protobuf:"bytes,13,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  780. }
  781. func (x *WorkingPump) Reset() {
  782. *x = WorkingPump{}
  783. if protoimpl.UnsafeEnabled {
  784. mi := &file_organization_proto_msgTypes[4]
  785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  786. ms.StoreMessageInfo(mi)
  787. }
  788. }
  789. func (x *WorkingPump) String() string {
  790. return protoimpl.X.MessageStringOf(x)
  791. }
  792. func (*WorkingPump) ProtoMessage() {}
  793. func (x *WorkingPump) ProtoReflect() protoreflect.Message {
  794. mi := &file_organization_proto_msgTypes[4]
  795. if protoimpl.UnsafeEnabled && x != nil {
  796. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  797. if ms.LoadMessageInfo() == nil {
  798. ms.StoreMessageInfo(mi)
  799. }
  800. return ms
  801. }
  802. return mi.MessageOf(x)
  803. }
  804. // Deprecated: Use WorkingPump.ProtoReflect.Descriptor instead.
  805. func (*WorkingPump) Descriptor() ([]byte, []int) {
  806. return file_organization_proto_rawDescGZIP(), []int{4}
  807. }
  808. func (x *WorkingPump) GetId() int64 {
  809. if x != nil {
  810. return x.Id
  811. }
  812. return 0
  813. }
  814. func (x *WorkingPump) GetProjectId() int64 {
  815. if x != nil {
  816. return x.ProjectId
  817. }
  818. return 0
  819. }
  820. func (x *WorkingPump) GetDeviceCode() string {
  821. if x != nil {
  822. return x.DeviceCode
  823. }
  824. return ""
  825. }
  826. func (x *WorkingPump) GetFeedPressure() float64 {
  827. if x != nil {
  828. return x.FeedPressure
  829. }
  830. return 0
  831. }
  832. func (x *WorkingPump) GetOutPressure() float64 {
  833. if x != nil {
  834. return x.OutPressure
  835. }
  836. return 0
  837. }
  838. func (x *WorkingPump) GetDuration() int64 {
  839. if x != nil {
  840. return x.Duration
  841. }
  842. return 0
  843. }
  844. func (x *WorkingPump) GetCurrent() float64 {
  845. if x != nil {
  846. return x.Current
  847. }
  848. return 0
  849. }
  850. func (x *WorkingPump) GetFrequency() float64 {
  851. if x != nil {
  852. return x.Frequency
  853. }
  854. return 0
  855. }
  856. func (x *WorkingPump) GetLift() float64 {
  857. if x != nil {
  858. return x.Lift
  859. }
  860. return 0
  861. }
  862. func (x *WorkingPump) GetEfficiency() float64 {
  863. if x != nil {
  864. return x.Efficiency
  865. }
  866. return 0
  867. }
  868. func (x *WorkingPump) GetRunStatus() int64 {
  869. if x != nil {
  870. return x.RunStatus
  871. }
  872. return 0
  873. }
  874. func (x *WorkingPump) GetFaultStatus() int64 {
  875. if x != nil {
  876. return x.FaultStatus
  877. }
  878. return 0
  879. }
  880. func (x *WorkingPump) GetCTime() string {
  881. if x != nil {
  882. return x.CTime
  883. }
  884. return ""
  885. }
  886. type WorkingValve struct {
  887. state protoimpl.MessageState
  888. sizeCache protoimpl.SizeCache
  889. unknownFields protoimpl.UnknownFields
  890. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  891. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  892. DeviceCode string `protobuf:"bytes,3,opt,name=device_code,json=deviceCode,proto3" json:"device_code,omitempty"`
  893. Adjust int64 `protobuf:"varint,4,opt,name=adjust,proto3" json:"adjust,omitempty"` // 是否为调节阀门 0: 否 1: 是
  894. Opening float64 `protobuf:"fixed64,5,opt,name=opening,proto3" json:"opening,omitempty"` // 当前阀门的开度
  895. Closed int64 `protobuf:"varint,6,opt,name=closed,proto3" json:"closed,omitempty"` // 关到位 全关 0: 否 1: 是
  896. Opened int64 `protobuf:"varint,7,opt,name=opened,proto3" json:"opened,omitempty"` // 开到位 开到 设置的开度 0: 否 1: 是
  897. FaultStatus int64 `protobuf:"varint,8,opt,name=fault_status,json=faultStatus,proto3" json:"fault_status,omitempty"` // 是否故障 0: 否 1: 是
  898. CTime string `protobuf:"bytes,9,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  899. }
  900. func (x *WorkingValve) Reset() {
  901. *x = WorkingValve{}
  902. if protoimpl.UnsafeEnabled {
  903. mi := &file_organization_proto_msgTypes[5]
  904. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  905. ms.StoreMessageInfo(mi)
  906. }
  907. }
  908. func (x *WorkingValve) String() string {
  909. return protoimpl.X.MessageStringOf(x)
  910. }
  911. func (*WorkingValve) ProtoMessage() {}
  912. func (x *WorkingValve) ProtoReflect() protoreflect.Message {
  913. mi := &file_organization_proto_msgTypes[5]
  914. if protoimpl.UnsafeEnabled && x != nil {
  915. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  916. if ms.LoadMessageInfo() == nil {
  917. ms.StoreMessageInfo(mi)
  918. }
  919. return ms
  920. }
  921. return mi.MessageOf(x)
  922. }
  923. // Deprecated: Use WorkingValve.ProtoReflect.Descriptor instead.
  924. func (*WorkingValve) Descriptor() ([]byte, []int) {
  925. return file_organization_proto_rawDescGZIP(), []int{5}
  926. }
  927. func (x *WorkingValve) GetId() int64 {
  928. if x != nil {
  929. return x.Id
  930. }
  931. return 0
  932. }
  933. func (x *WorkingValve) GetProjectId() int64 {
  934. if x != nil {
  935. return x.ProjectId
  936. }
  937. return 0
  938. }
  939. func (x *WorkingValve) GetDeviceCode() string {
  940. if x != nil {
  941. return x.DeviceCode
  942. }
  943. return ""
  944. }
  945. func (x *WorkingValve) GetAdjust() int64 {
  946. if x != nil {
  947. return x.Adjust
  948. }
  949. return 0
  950. }
  951. func (x *WorkingValve) GetOpening() float64 {
  952. if x != nil {
  953. return x.Opening
  954. }
  955. return 0
  956. }
  957. func (x *WorkingValve) GetClosed() int64 {
  958. if x != nil {
  959. return x.Closed
  960. }
  961. return 0
  962. }
  963. func (x *WorkingValve) GetOpened() int64 {
  964. if x != nil {
  965. return x.Opened
  966. }
  967. return 0
  968. }
  969. func (x *WorkingValve) GetFaultStatus() int64 {
  970. if x != nil {
  971. return x.FaultStatus
  972. }
  973. return 0
  974. }
  975. func (x *WorkingValve) GetCTime() string {
  976. if x != nil {
  977. return x.CTime
  978. }
  979. return ""
  980. }
  981. type ItemHistoryData struct {
  982. state protoimpl.MessageState
  983. sizeCache protoimpl.SizeCache
  984. unknownFields protoimpl.UnknownFields
  985. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  986. ProjectId int64 `protobuf:"varint,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  987. ItemName string `protobuf:"bytes,3,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  988. Val float64 `protobuf:"fixed64,4,opt,name=val,proto3" json:"val,omitempty"`
  989. CTime string `protobuf:"bytes,5,opt,name=c_time,json=cTime,proto3" json:"c_time,omitempty"`
  990. }
  991. func (x *ItemHistoryData) Reset() {
  992. *x = ItemHistoryData{}
  993. if protoimpl.UnsafeEnabled {
  994. mi := &file_organization_proto_msgTypes[6]
  995. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  996. ms.StoreMessageInfo(mi)
  997. }
  998. }
  999. func (x *ItemHistoryData) String() string {
  1000. return protoimpl.X.MessageStringOf(x)
  1001. }
  1002. func (*ItemHistoryData) ProtoMessage() {}
  1003. func (x *ItemHistoryData) ProtoReflect() protoreflect.Message {
  1004. mi := &file_organization_proto_msgTypes[6]
  1005. if protoimpl.UnsafeEnabled && x != nil {
  1006. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1007. if ms.LoadMessageInfo() == nil {
  1008. ms.StoreMessageInfo(mi)
  1009. }
  1010. return ms
  1011. }
  1012. return mi.MessageOf(x)
  1013. }
  1014. // Deprecated: Use ItemHistoryData.ProtoReflect.Descriptor instead.
  1015. func (*ItemHistoryData) Descriptor() ([]byte, []int) {
  1016. return file_organization_proto_rawDescGZIP(), []int{6}
  1017. }
  1018. func (x *ItemHistoryData) GetId() int64 {
  1019. if x != nil {
  1020. return x.Id
  1021. }
  1022. return 0
  1023. }
  1024. func (x *ItemHistoryData) GetProjectId() int64 {
  1025. if x != nil {
  1026. return x.ProjectId
  1027. }
  1028. return 0
  1029. }
  1030. func (x *ItemHistoryData) GetItemName() string {
  1031. if x != nil {
  1032. return x.ItemName
  1033. }
  1034. return ""
  1035. }
  1036. func (x *ItemHistoryData) GetVal() float64 {
  1037. if x != nil {
  1038. return x.Val
  1039. }
  1040. return 0
  1041. }
  1042. func (x *ItemHistoryData) GetCTime() string {
  1043. if x != nil {
  1044. return x.CTime
  1045. }
  1046. return ""
  1047. }
  1048. type MultiAddItemHistoryDataReq struct {
  1049. state protoimpl.MessageState
  1050. sizeCache protoimpl.SizeCache
  1051. unknownFields protoimpl.UnknownFields
  1052. List []*ItemHistoryData `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1053. }
  1054. func (x *MultiAddItemHistoryDataReq) Reset() {
  1055. *x = MultiAddItemHistoryDataReq{}
  1056. if protoimpl.UnsafeEnabled {
  1057. mi := &file_organization_proto_msgTypes[7]
  1058. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1059. ms.StoreMessageInfo(mi)
  1060. }
  1061. }
  1062. func (x *MultiAddItemHistoryDataReq) String() string {
  1063. return protoimpl.X.MessageStringOf(x)
  1064. }
  1065. func (*MultiAddItemHistoryDataReq) ProtoMessage() {}
  1066. func (x *MultiAddItemHistoryDataReq) ProtoReflect() protoreflect.Message {
  1067. mi := &file_organization_proto_msgTypes[7]
  1068. if protoimpl.UnsafeEnabled && x != nil {
  1069. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1070. if ms.LoadMessageInfo() == nil {
  1071. ms.StoreMessageInfo(mi)
  1072. }
  1073. return ms
  1074. }
  1075. return mi.MessageOf(x)
  1076. }
  1077. // Deprecated: Use MultiAddItemHistoryDataReq.ProtoReflect.Descriptor instead.
  1078. func (*MultiAddItemHistoryDataReq) Descriptor() ([]byte, []int) {
  1079. return file_organization_proto_rawDescGZIP(), []int{7}
  1080. }
  1081. func (x *MultiAddItemHistoryDataReq) GetList() []*ItemHistoryData {
  1082. if x != nil {
  1083. return x.List
  1084. }
  1085. return nil
  1086. }
  1087. type MultiAddItemHistoryDataResp struct {
  1088. state protoimpl.MessageState
  1089. sizeCache protoimpl.SizeCache
  1090. unknownFields protoimpl.UnknownFields
  1091. }
  1092. func (x *MultiAddItemHistoryDataResp) Reset() {
  1093. *x = MultiAddItemHistoryDataResp{}
  1094. if protoimpl.UnsafeEnabled {
  1095. mi := &file_organization_proto_msgTypes[8]
  1096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1097. ms.StoreMessageInfo(mi)
  1098. }
  1099. }
  1100. func (x *MultiAddItemHistoryDataResp) String() string {
  1101. return protoimpl.X.MessageStringOf(x)
  1102. }
  1103. func (*MultiAddItemHistoryDataResp) ProtoMessage() {}
  1104. func (x *MultiAddItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  1105. mi := &file_organization_proto_msgTypes[8]
  1106. if protoimpl.UnsafeEnabled && x != nil {
  1107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1108. if ms.LoadMessageInfo() == nil {
  1109. ms.StoreMessageInfo(mi)
  1110. }
  1111. return ms
  1112. }
  1113. return mi.MessageOf(x)
  1114. }
  1115. // Deprecated: Use MultiAddItemHistoryDataResp.ProtoReflect.Descriptor instead.
  1116. func (*MultiAddItemHistoryDataResp) Descriptor() ([]byte, []int) {
  1117. return file_organization_proto_rawDescGZIP(), []int{8}
  1118. }
  1119. type ItemHistoryDataListReq struct {
  1120. state protoimpl.MessageState
  1121. sizeCache protoimpl.SizeCache
  1122. unknownFields protoimpl.UnknownFields
  1123. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1124. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  1125. Interval string `protobuf:"bytes,3,opt,name=interval,proto3" json:"interval,omitempty"` //时间单位 s,minute,h,day
  1126. Aggregator string `protobuf:"bytes,4,opt,name=aggregator,proto3" json:"aggregator,omitempty"` //聚合方式 min,max,avg,sum,realtime, new
  1127. Stime string `protobuf:"bytes,5,opt,name=stime,proto3" json:"stime,omitempty"`
  1128. Etime string `protobuf:"bytes,6,opt,name=etime,proto3" json:"etime,omitempty"`
  1129. Size int64 `protobuf:"varint,7,opt,name=size,proto3" json:"size,omitempty"`
  1130. }
  1131. func (x *ItemHistoryDataListReq) Reset() {
  1132. *x = ItemHistoryDataListReq{}
  1133. if protoimpl.UnsafeEnabled {
  1134. mi := &file_organization_proto_msgTypes[9]
  1135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1136. ms.StoreMessageInfo(mi)
  1137. }
  1138. }
  1139. func (x *ItemHistoryDataListReq) String() string {
  1140. return protoimpl.X.MessageStringOf(x)
  1141. }
  1142. func (*ItemHistoryDataListReq) ProtoMessage() {}
  1143. func (x *ItemHistoryDataListReq) ProtoReflect() protoreflect.Message {
  1144. mi := &file_organization_proto_msgTypes[9]
  1145. if protoimpl.UnsafeEnabled && x != nil {
  1146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1147. if ms.LoadMessageInfo() == nil {
  1148. ms.StoreMessageInfo(mi)
  1149. }
  1150. return ms
  1151. }
  1152. return mi.MessageOf(x)
  1153. }
  1154. // Deprecated: Use ItemHistoryDataListReq.ProtoReflect.Descriptor instead.
  1155. func (*ItemHistoryDataListReq) Descriptor() ([]byte, []int) {
  1156. return file_organization_proto_rawDescGZIP(), []int{9}
  1157. }
  1158. func (x *ItemHistoryDataListReq) GetProjectId() int64 {
  1159. if x != nil {
  1160. return x.ProjectId
  1161. }
  1162. return 0
  1163. }
  1164. func (x *ItemHistoryDataListReq) GetItemName() string {
  1165. if x != nil {
  1166. return x.ItemName
  1167. }
  1168. return ""
  1169. }
  1170. func (x *ItemHistoryDataListReq) GetInterval() string {
  1171. if x != nil {
  1172. return x.Interval
  1173. }
  1174. return ""
  1175. }
  1176. func (x *ItemHistoryDataListReq) GetAggregator() string {
  1177. if x != nil {
  1178. return x.Aggregator
  1179. }
  1180. return ""
  1181. }
  1182. func (x *ItemHistoryDataListReq) GetStime() string {
  1183. if x != nil {
  1184. return x.Stime
  1185. }
  1186. return ""
  1187. }
  1188. func (x *ItemHistoryDataListReq) GetEtime() string {
  1189. if x != nil {
  1190. return x.Etime
  1191. }
  1192. return ""
  1193. }
  1194. func (x *ItemHistoryDataListReq) GetSize() int64 {
  1195. if x != nil {
  1196. return x.Size
  1197. }
  1198. return 0
  1199. }
  1200. type ItemHistoryDataByTimeReq struct {
  1201. state protoimpl.MessageState
  1202. sizeCache protoimpl.SizeCache
  1203. unknownFields protoimpl.UnknownFields
  1204. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1205. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  1206. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"`
  1207. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"`
  1208. }
  1209. func (x *ItemHistoryDataByTimeReq) Reset() {
  1210. *x = ItemHistoryDataByTimeReq{}
  1211. if protoimpl.UnsafeEnabled {
  1212. mi := &file_organization_proto_msgTypes[10]
  1213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1214. ms.StoreMessageInfo(mi)
  1215. }
  1216. }
  1217. func (x *ItemHistoryDataByTimeReq) String() string {
  1218. return protoimpl.X.MessageStringOf(x)
  1219. }
  1220. func (*ItemHistoryDataByTimeReq) ProtoMessage() {}
  1221. func (x *ItemHistoryDataByTimeReq) ProtoReflect() protoreflect.Message {
  1222. mi := &file_organization_proto_msgTypes[10]
  1223. if protoimpl.UnsafeEnabled && x != nil {
  1224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1225. if ms.LoadMessageInfo() == nil {
  1226. ms.StoreMessageInfo(mi)
  1227. }
  1228. return ms
  1229. }
  1230. return mi.MessageOf(x)
  1231. }
  1232. // Deprecated: Use ItemHistoryDataByTimeReq.ProtoReflect.Descriptor instead.
  1233. func (*ItemHistoryDataByTimeReq) Descriptor() ([]byte, []int) {
  1234. return file_organization_proto_rawDescGZIP(), []int{10}
  1235. }
  1236. func (x *ItemHistoryDataByTimeReq) GetProjectId() int64 {
  1237. if x != nil {
  1238. return x.ProjectId
  1239. }
  1240. return 0
  1241. }
  1242. func (x *ItemHistoryDataByTimeReq) GetItemName() string {
  1243. if x != nil {
  1244. return x.ItemName
  1245. }
  1246. return ""
  1247. }
  1248. func (x *ItemHistoryDataByTimeReq) GetStime() string {
  1249. if x != nil {
  1250. return x.Stime
  1251. }
  1252. return ""
  1253. }
  1254. func (x *ItemHistoryDataByTimeReq) GetEtime() string {
  1255. if x != nil {
  1256. return x.Etime
  1257. }
  1258. return ""
  1259. }
  1260. var File_organization_proto protoreflect.FileDescriptor
  1261. var file_organization_proto_rawDesc = []byte{
  1262. 0x0a, 0x12, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
  1263. 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0x4e, 0x0a, 0x0c, 0x44, 0x63, 0x57, 0x6f,
  1264. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
  1265. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  1266. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63,
  1267. 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65,
  1268. 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x22, 0xa9, 0x07, 0x0a, 0x09, 0x57, 0x6f, 0x72,
  1269. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  1270. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  1271. 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
  1272. 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f,
  1273. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69,
  1274. 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f,
  1275. 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  1276. 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74,
  1277. 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  1278. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77,
  1279. 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01,
  1280. 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70,
  1281. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28,
  1282. 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23,
  1283. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18,
  1284. 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73,
  1285. 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  1286. 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72,
  1287. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  1288. 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01,
  1289. 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  1290. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03,
  1291. 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28,
  1292. 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f,
  1293. 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01,
  1294. 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64,
  1295. 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70,
  1296. 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50,
  1297. 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  1298. 0x70, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  1299. 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  1300. 0x5f, 0x61, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57,
  1301. 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  1302. 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  1303. 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  1304. 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65,
  1305. 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1306. 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72,
  1307. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65,
  1308. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66,
  1309. 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75,
  1310. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  1311. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66,
  1312. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28,
  1313. 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a,
  1314. 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32,
  1315. 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57,
  1316. 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  1317. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64,
  1318. 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1319. 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70,
  1320. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66,
  1321. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07,
  1322. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75,
  1323. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70,
  1324. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65,
  1325. 0x70, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a,
  1326. 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63,
  1327. 0x54, 0x69, 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  1328. 0x52, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1329. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  1330. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  1331. 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1332. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  1333. 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70,
  1334. 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77,
  1335. 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12,
  1336. 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74,
  1337. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77,
  1338. 0x31, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f,
  1339. 0x31, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c,
  1340. 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1341. 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52,
  1342. 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12,
  1343. 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  1344. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64,
  1345. 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x63,
  1346. 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18,
  1347. 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  1348. 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1349. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20,
  1350. 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73,
  1351. 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x31,
  1352. 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73, 0x74,
  1353. 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01,
  1354. 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x70,
  1355. 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74, 0x18,
  1356. 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c,
  1357. 0x69, 0x74, 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66,
  1358. 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66,
  1359. 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f,
  1360. 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01,
  1361. 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10,
  1362. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64,
  1363. 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46,
  1364. 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70,
  1365. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28,
  1366. 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32,
  1367. 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75,
  1368. 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f,
  1369. 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x14,
  1370. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  1371. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64,
  1372. 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x17,
  1373. 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52,
  1374. 0x06, 0x74, 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f,
  1375. 0x32, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x32,
  1376. 0x6e, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  1377. 0x74, 0x79, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65,
  1378. 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22, 0x0a,
  1379. 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x17,
  1380. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74,
  1381. 0x68, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74,
  1382. 0x68, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77,
  1383. 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66,
  1384. 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70,
  1385. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a,
  1386. 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33,
  1387. 0x74, 0x68, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72,
  1388. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e,
  1389. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b, 0x20,
  1390. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  1391. 0x33, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70,
  1392. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01, 0x28,
  1393. 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  1394. 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74, 0x68,
  1395. 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12, 0x19,
  1396. 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01,
  1397. 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72,
  1398. 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f, 0x20,
  1399. 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  1400. 0x79, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  1401. 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52,
  1402. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  1403. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x21,
  1404. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22,
  1405. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  1406. 0x22, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  1407. 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c,
  1408. 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c,
  1409. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  1410. 0x6c, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1411. 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  1412. 0x66, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  1413. 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  1414. 0x5f, 0x66, 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  1415. 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  1416. 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  1417. 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  1418. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f,
  1419. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
  1420. 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  1421. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72,
  1422. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a, 0x20,
  1423. 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69,
  1424. 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  1425. 0x64, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43,
  1426. 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  1427. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  1428. 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64,
  1429. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65,
  1430. 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  1431. 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64,
  1432. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x2f,
  1433. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  1434. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  1435. 0x65, 0x22, 0xad, 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65,
  1436. 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1437. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  1438. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  1439. 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1440. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  1441. 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0x04, 0x20, 0x01,
  1442. 0x28, 0x03, 0x52, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65,
  1443. 0x76, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c,
  1444. 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x73, 0x74, 0x61,
  1445. 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x67, 0x69, 0x74, 0x61,
  1446. 0x74, 0x6f, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x61, 0x67, 0x69,
  1447. 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07,
  1448. 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x44, 0x75,
  1449. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x15, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74,
  1450. 0x6f, 0x72, 0x5f, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  1451. 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x46,
  1452. 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  1453. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  1454. 0x65, 0x22, 0x86, 0x03, 0x0a, 0x0b, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d,
  1455. 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
  1456. 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
  1457. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
  1458. 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  1459. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64,
  1460. 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75,
  1461. 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72,
  1462. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x75, 0x74, 0x5f, 0x70, 0x72,
  1463. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x6f, 0x75,
  1464. 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72,
  1465. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x75, 0x72,
  1466. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
  1467. 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12,
  1468. 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x08, 0x20, 0x01,
  1469. 0x28, 0x01, 0x52, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x12, 0x0a,
  1470. 0x04, 0x6c, 0x69, 0x66, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6c, 0x69, 0x66,
  1471. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x18,
  1472. 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63,
  1473. 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  1474. 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1475. 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1476. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61,
  1477. 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20,
  1478. 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xfa, 0x01, 0x0a, 0x0c, 0x57,
  1479. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1480. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  1481. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1482. 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65,
  1483. 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1484. 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61,
  1485. 0x64, 0x6a, 0x75, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x61, 0x64, 0x6a,
  1486. 0x75, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x05,
  1487. 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x16, 0x0a,
  1488. 0x06, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  1489. 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x18,
  1490. 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x12, 0x21, 0x0a,
  1491. 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20,
  1492. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1493. 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  1494. 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x86, 0x01, 0x0a, 0x0f, 0x49, 0x74, 0x65, 0x6d,
  1495. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1496. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  1497. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1498. 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74,
  1499. 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69,
  1500. 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x04,
  1501. 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74,
  1502. 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65,
  1503. 0x22, 0x45, 0x0a, 0x1a, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d,
  1504. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12, 0x27,
  1505. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70,
  1506. 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  1507. 0x61, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x4d, 0x75, 0x6c, 0x74, 0x69,
  1508. 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61,
  1509. 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x22, 0xd0, 0x01, 0x0a, 0x16, 0x49, 0x74, 0x65, 0x6d, 0x48,
  1510. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1511. 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
  1512. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
  1513. 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1514. 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
  1515. 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1516. 0x08, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x67, 0x67,
  1517. 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61,
  1518. 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69,
  1519. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12,
  1520. 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  1521. 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x07, 0x20,
  1522. 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x18, 0x49, 0x74,
  1523. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54,
  1524. 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  1525. 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
  1526. 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61,
  1527. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61,
  1528. 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1529. 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d,
  1530. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x32, 0xb7,
  1531. 0x04, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
  1532. 0x35, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x42,
  1533. 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72,
  1534. 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72,
  1535. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12, 0x35, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72,
  1536. 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70,
  1537. 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x0d,
  1538. 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x12, 0x3b, 0x0a,
  1539. 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74,
  1540. 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f,
  1541. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f,
  1542. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x14, 0x47, 0x65,
  1543. 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79, 0x43, 0x6f,
  1544. 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  1545. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  1546. 0x67, 0x50, 0x75, 0x6d, 0x70, 0x12, 0x3b, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b,
  1547. 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10,
  1548. 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71,
  1549. 0x1a, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c,
  1550. 0x76, 0x65, 0x12, 0x5a, 0x0a, 0x17, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74,
  1551. 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x2e,
  1552. 0x70, 0x62, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48,
  1553. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e,
  1554. 0x70, 0x62, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48,
  1555. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x51,
  1556. 0x0a, 0x13, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  1557. 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48,
  1558. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1559. 0x71, 0x1a, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49,
  1560. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65,
  1561. 0x71, 0x12, 0x55, 0x0a, 0x15, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  1562. 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e,
  1563. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42,
  1564. 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75,
  1565. 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72,
  1566. 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62,
  1567. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1568. }
  1569. var (
  1570. file_organization_proto_rawDescOnce sync.Once
  1571. file_organization_proto_rawDescData = file_organization_proto_rawDesc
  1572. )
  1573. func file_organization_proto_rawDescGZIP() []byte {
  1574. file_organization_proto_rawDescOnce.Do(func() {
  1575. file_organization_proto_rawDescData = protoimpl.X.CompressGZIP(file_organization_proto_rawDescData)
  1576. })
  1577. return file_organization_proto_rawDescData
  1578. }
  1579. var file_organization_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
  1580. var file_organization_proto_goTypes = []interface{}{
  1581. (*DcWorkingReq)(nil), // 0: pb.DcWorkingReq
  1582. (*WorkingUf)(nil), // 1: pb.WorkingUf
  1583. (*WorkingRo)(nil), // 2: pb.WorkingRo
  1584. (*WorkingChest)(nil), // 3: pb.WorkingChest
  1585. (*WorkingPump)(nil), // 4: pb.WorkingPump
  1586. (*WorkingValve)(nil), // 5: pb.WorkingValve
  1587. (*ItemHistoryData)(nil), // 6: pb.ItemHistoryData
  1588. (*MultiAddItemHistoryDataReq)(nil), // 7: pb.MultiAddItemHistoryDataReq
  1589. (*MultiAddItemHistoryDataResp)(nil), // 8: pb.MultiAddItemHistoryDataResp
  1590. (*ItemHistoryDataListReq)(nil), // 9: pb.ItemHistoryDataListReq
  1591. (*ItemHistoryDataByTimeReq)(nil), // 10: pb.ItemHistoryDataByTimeReq
  1592. }
  1593. var file_organization_proto_depIdxs = []int32{
  1594. 6, // 0: pb.MultiAddItemHistoryDataReq.list:type_name -> pb.ItemHistoryData
  1595. 0, // 1: pb.Organization.GetWorkingUfByCode:input_type -> pb.DcWorkingReq
  1596. 0, // 2: pb.Organization.GetWorkingRoByCode:input_type -> pb.DcWorkingReq
  1597. 0, // 3: pb.Organization.GetWorkingChestByCode:input_type -> pb.DcWorkingReq
  1598. 0, // 4: pb.Organization.GetWorkingPumpByCode:input_type -> pb.DcWorkingReq
  1599. 0, // 5: pb.Organization.GetWorkingValueByCode:input_type -> pb.DcWorkingReq
  1600. 7, // 6: pb.Organization.MultiAddItemHistoryData:input_type -> pb.MultiAddItemHistoryDataReq
  1601. 9, // 7: pb.Organization.ItemHistoryDataList:input_type -> pb.ItemHistoryDataListReq
  1602. 10, // 8: pb.Organization.ItemHistoryDataByTime:input_type -> pb.ItemHistoryDataByTimeReq
  1603. 1, // 9: pb.Organization.GetWorkingUfByCode:output_type -> pb.WorkingUf
  1604. 2, // 10: pb.Organization.GetWorkingRoByCode:output_type -> pb.WorkingRo
  1605. 3, // 11: pb.Organization.GetWorkingChestByCode:output_type -> pb.WorkingChest
  1606. 4, // 12: pb.Organization.GetWorkingPumpByCode:output_type -> pb.WorkingPump
  1607. 5, // 13: pb.Organization.GetWorkingValueByCode:output_type -> pb.WorkingValve
  1608. 8, // 14: pb.Organization.MultiAddItemHistoryData:output_type -> pb.MultiAddItemHistoryDataResp
  1609. 7, // 15: pb.Organization.ItemHistoryDataList:output_type -> pb.MultiAddItemHistoryDataReq
  1610. 7, // 16: pb.Organization.ItemHistoryDataByTime:output_type -> pb.MultiAddItemHistoryDataReq
  1611. 9, // [9:17] is the sub-list for method output_type
  1612. 1, // [1:9] is the sub-list for method input_type
  1613. 1, // [1:1] is the sub-list for extension type_name
  1614. 1, // [1:1] is the sub-list for extension extendee
  1615. 0, // [0:1] is the sub-list for field type_name
  1616. }
  1617. func init() { file_organization_proto_init() }
  1618. func file_organization_proto_init() {
  1619. if File_organization_proto != nil {
  1620. return
  1621. }
  1622. if !protoimpl.UnsafeEnabled {
  1623. file_organization_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1624. switch v := v.(*DcWorkingReq); i {
  1625. case 0:
  1626. return &v.state
  1627. case 1:
  1628. return &v.sizeCache
  1629. case 2:
  1630. return &v.unknownFields
  1631. default:
  1632. return nil
  1633. }
  1634. }
  1635. file_organization_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1636. switch v := v.(*WorkingUf); i {
  1637. case 0:
  1638. return &v.state
  1639. case 1:
  1640. return &v.sizeCache
  1641. case 2:
  1642. return &v.unknownFields
  1643. default:
  1644. return nil
  1645. }
  1646. }
  1647. file_organization_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1648. switch v := v.(*WorkingRo); i {
  1649. case 0:
  1650. return &v.state
  1651. case 1:
  1652. return &v.sizeCache
  1653. case 2:
  1654. return &v.unknownFields
  1655. default:
  1656. return nil
  1657. }
  1658. }
  1659. file_organization_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1660. switch v := v.(*WorkingChest); i {
  1661. case 0:
  1662. return &v.state
  1663. case 1:
  1664. return &v.sizeCache
  1665. case 2:
  1666. return &v.unknownFields
  1667. default:
  1668. return nil
  1669. }
  1670. }
  1671. file_organization_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1672. switch v := v.(*WorkingPump); i {
  1673. case 0:
  1674. return &v.state
  1675. case 1:
  1676. return &v.sizeCache
  1677. case 2:
  1678. return &v.unknownFields
  1679. default:
  1680. return nil
  1681. }
  1682. }
  1683. file_organization_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1684. switch v := v.(*WorkingValve); i {
  1685. case 0:
  1686. return &v.state
  1687. case 1:
  1688. return &v.sizeCache
  1689. case 2:
  1690. return &v.unknownFields
  1691. default:
  1692. return nil
  1693. }
  1694. }
  1695. file_organization_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1696. switch v := v.(*ItemHistoryData); i {
  1697. case 0:
  1698. return &v.state
  1699. case 1:
  1700. return &v.sizeCache
  1701. case 2:
  1702. return &v.unknownFields
  1703. default:
  1704. return nil
  1705. }
  1706. }
  1707. file_organization_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1708. switch v := v.(*MultiAddItemHistoryDataReq); i {
  1709. case 0:
  1710. return &v.state
  1711. case 1:
  1712. return &v.sizeCache
  1713. case 2:
  1714. return &v.unknownFields
  1715. default:
  1716. return nil
  1717. }
  1718. }
  1719. file_organization_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1720. switch v := v.(*MultiAddItemHistoryDataResp); i {
  1721. case 0:
  1722. return &v.state
  1723. case 1:
  1724. return &v.sizeCache
  1725. case 2:
  1726. return &v.unknownFields
  1727. default:
  1728. return nil
  1729. }
  1730. }
  1731. file_organization_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1732. switch v := v.(*ItemHistoryDataListReq); i {
  1733. case 0:
  1734. return &v.state
  1735. case 1:
  1736. return &v.sizeCache
  1737. case 2:
  1738. return &v.unknownFields
  1739. default:
  1740. return nil
  1741. }
  1742. }
  1743. file_organization_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1744. switch v := v.(*ItemHistoryDataByTimeReq); i {
  1745. case 0:
  1746. return &v.state
  1747. case 1:
  1748. return &v.sizeCache
  1749. case 2:
  1750. return &v.unknownFields
  1751. default:
  1752. return nil
  1753. }
  1754. }
  1755. }
  1756. type x struct{}
  1757. out := protoimpl.TypeBuilder{
  1758. File: protoimpl.DescBuilder{
  1759. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1760. RawDescriptor: file_organization_proto_rawDesc,
  1761. NumEnums: 0,
  1762. NumMessages: 11,
  1763. NumExtensions: 0,
  1764. NumServices: 1,
  1765. },
  1766. GoTypes: file_organization_proto_goTypes,
  1767. DependencyIndexes: file_organization_proto_depIdxs,
  1768. MessageInfos: file_organization_proto_msgTypes,
  1769. }.Build()
  1770. File_organization_proto = out.File
  1771. file_organization_proto_rawDesc = nil
  1772. file_organization_proto_goTypes = nil
  1773. file_organization_proto_depIdxs = nil
  1774. }