organization.pb.go 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  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. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  986. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  987. // @gotags: valid:"val"
  988. Val float64 `protobuf:"fixed64,3,opt,name=val,proto3" json:"val,omitempty"`
  989. HTime string `protobuf:"bytes,4,opt,name=h_time,json=hTime,proto3" json:"h_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) GetProjectId() int64 {
  1019. if x != nil {
  1020. return x.ProjectId
  1021. }
  1022. return 0
  1023. }
  1024. func (x *ItemHistoryData) GetItemName() string {
  1025. if x != nil {
  1026. return x.ItemName
  1027. }
  1028. return ""
  1029. }
  1030. func (x *ItemHistoryData) GetVal() float64 {
  1031. if x != nil {
  1032. return x.Val
  1033. }
  1034. return 0
  1035. }
  1036. func (x *ItemHistoryData) GetHTime() string {
  1037. if x != nil {
  1038. return x.HTime
  1039. }
  1040. return ""
  1041. }
  1042. type MultiAddItemHistoryDataReq struct {
  1043. state protoimpl.MessageState
  1044. sizeCache protoimpl.SizeCache
  1045. unknownFields protoimpl.UnknownFields
  1046. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1047. // @gotags: valid:"list"
  1048. List []*ItemHistoryData `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
  1049. }
  1050. func (x *MultiAddItemHistoryDataReq) Reset() {
  1051. *x = MultiAddItemHistoryDataReq{}
  1052. if protoimpl.UnsafeEnabled {
  1053. mi := &file_organization_proto_msgTypes[7]
  1054. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1055. ms.StoreMessageInfo(mi)
  1056. }
  1057. }
  1058. func (x *MultiAddItemHistoryDataReq) String() string {
  1059. return protoimpl.X.MessageStringOf(x)
  1060. }
  1061. func (*MultiAddItemHistoryDataReq) ProtoMessage() {}
  1062. func (x *MultiAddItemHistoryDataReq) ProtoReflect() protoreflect.Message {
  1063. mi := &file_organization_proto_msgTypes[7]
  1064. if protoimpl.UnsafeEnabled && x != nil {
  1065. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1066. if ms.LoadMessageInfo() == nil {
  1067. ms.StoreMessageInfo(mi)
  1068. }
  1069. return ms
  1070. }
  1071. return mi.MessageOf(x)
  1072. }
  1073. // Deprecated: Use MultiAddItemHistoryDataReq.ProtoReflect.Descriptor instead.
  1074. func (*MultiAddItemHistoryDataReq) Descriptor() ([]byte, []int) {
  1075. return file_organization_proto_rawDescGZIP(), []int{7}
  1076. }
  1077. func (x *MultiAddItemHistoryDataReq) GetProjectId() int64 {
  1078. if x != nil {
  1079. return x.ProjectId
  1080. }
  1081. return 0
  1082. }
  1083. func (x *MultiAddItemHistoryDataReq) GetList() []*ItemHistoryData {
  1084. if x != nil {
  1085. return x.List
  1086. }
  1087. return nil
  1088. }
  1089. type MultiAddItemHistoryDataResp struct {
  1090. state protoimpl.MessageState
  1091. sizeCache protoimpl.SizeCache
  1092. unknownFields protoimpl.UnknownFields
  1093. }
  1094. func (x *MultiAddItemHistoryDataResp) Reset() {
  1095. *x = MultiAddItemHistoryDataResp{}
  1096. if protoimpl.UnsafeEnabled {
  1097. mi := &file_organization_proto_msgTypes[8]
  1098. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1099. ms.StoreMessageInfo(mi)
  1100. }
  1101. }
  1102. func (x *MultiAddItemHistoryDataResp) String() string {
  1103. return protoimpl.X.MessageStringOf(x)
  1104. }
  1105. func (*MultiAddItemHistoryDataResp) ProtoMessage() {}
  1106. func (x *MultiAddItemHistoryDataResp) ProtoReflect() protoreflect.Message {
  1107. mi := &file_organization_proto_msgTypes[8]
  1108. if protoimpl.UnsafeEnabled && x != nil {
  1109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1110. if ms.LoadMessageInfo() == nil {
  1111. ms.StoreMessageInfo(mi)
  1112. }
  1113. return ms
  1114. }
  1115. return mi.MessageOf(x)
  1116. }
  1117. // Deprecated: Use MultiAddItemHistoryDataResp.ProtoReflect.Descriptor instead.
  1118. func (*MultiAddItemHistoryDataResp) Descriptor() ([]byte, []int) {
  1119. return file_organization_proto_rawDescGZIP(), []int{8}
  1120. }
  1121. type ItemHistoryDataListReq struct {
  1122. state protoimpl.MessageState
  1123. sizeCache protoimpl.SizeCache
  1124. unknownFields protoimpl.UnknownFields
  1125. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1126. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  1127. Interval string `protobuf:"bytes,3,opt,name=interval,proto3" json:"interval,omitempty"` //时间单位 s,minute,h,day
  1128. Aggregator string `protobuf:"bytes,4,opt,name=aggregator,proto3" json:"aggregator,omitempty"` //聚合方式 min,max,avg,sum,realtime, new
  1129. Stime string `protobuf:"bytes,5,opt,name=stime,proto3" json:"stime,omitempty"`
  1130. Etime string `protobuf:"bytes,6,opt,name=etime,proto3" json:"etime,omitempty"`
  1131. Size int64 `protobuf:"varint,7,opt,name=size,proto3" json:"size,omitempty"`
  1132. }
  1133. func (x *ItemHistoryDataListReq) Reset() {
  1134. *x = ItemHistoryDataListReq{}
  1135. if protoimpl.UnsafeEnabled {
  1136. mi := &file_organization_proto_msgTypes[9]
  1137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1138. ms.StoreMessageInfo(mi)
  1139. }
  1140. }
  1141. func (x *ItemHistoryDataListReq) String() string {
  1142. return protoimpl.X.MessageStringOf(x)
  1143. }
  1144. func (*ItemHistoryDataListReq) ProtoMessage() {}
  1145. func (x *ItemHistoryDataListReq) ProtoReflect() protoreflect.Message {
  1146. mi := &file_organization_proto_msgTypes[9]
  1147. if protoimpl.UnsafeEnabled && x != nil {
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. if ms.LoadMessageInfo() == nil {
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. return ms
  1153. }
  1154. return mi.MessageOf(x)
  1155. }
  1156. // Deprecated: Use ItemHistoryDataListReq.ProtoReflect.Descriptor instead.
  1157. func (*ItemHistoryDataListReq) Descriptor() ([]byte, []int) {
  1158. return file_organization_proto_rawDescGZIP(), []int{9}
  1159. }
  1160. func (x *ItemHistoryDataListReq) GetProjectId() int64 {
  1161. if x != nil {
  1162. return x.ProjectId
  1163. }
  1164. return 0
  1165. }
  1166. func (x *ItemHistoryDataListReq) GetItemName() string {
  1167. if x != nil {
  1168. return x.ItemName
  1169. }
  1170. return ""
  1171. }
  1172. func (x *ItemHistoryDataListReq) GetInterval() string {
  1173. if x != nil {
  1174. return x.Interval
  1175. }
  1176. return ""
  1177. }
  1178. func (x *ItemHistoryDataListReq) GetAggregator() string {
  1179. if x != nil {
  1180. return x.Aggregator
  1181. }
  1182. return ""
  1183. }
  1184. func (x *ItemHistoryDataListReq) GetStime() string {
  1185. if x != nil {
  1186. return x.Stime
  1187. }
  1188. return ""
  1189. }
  1190. func (x *ItemHistoryDataListReq) GetEtime() string {
  1191. if x != nil {
  1192. return x.Etime
  1193. }
  1194. return ""
  1195. }
  1196. func (x *ItemHistoryDataListReq) GetSize() int64 {
  1197. if x != nil {
  1198. return x.Size
  1199. }
  1200. return 0
  1201. }
  1202. type ItemHistoryDataByTimeReq struct {
  1203. state protoimpl.MessageState
  1204. sizeCache protoimpl.SizeCache
  1205. unknownFields protoimpl.UnknownFields
  1206. ProjectId int64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  1207. ItemName string `protobuf:"bytes,2,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  1208. Stime string `protobuf:"bytes,3,opt,name=stime,proto3" json:"stime,omitempty"`
  1209. Etime string `protobuf:"bytes,4,opt,name=etime,proto3" json:"etime,omitempty"`
  1210. }
  1211. func (x *ItemHistoryDataByTimeReq) Reset() {
  1212. *x = ItemHistoryDataByTimeReq{}
  1213. if protoimpl.UnsafeEnabled {
  1214. mi := &file_organization_proto_msgTypes[10]
  1215. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1216. ms.StoreMessageInfo(mi)
  1217. }
  1218. }
  1219. func (x *ItemHistoryDataByTimeReq) String() string {
  1220. return protoimpl.X.MessageStringOf(x)
  1221. }
  1222. func (*ItemHistoryDataByTimeReq) ProtoMessage() {}
  1223. func (x *ItemHistoryDataByTimeReq) ProtoReflect() protoreflect.Message {
  1224. mi := &file_organization_proto_msgTypes[10]
  1225. if protoimpl.UnsafeEnabled && x != nil {
  1226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1227. if ms.LoadMessageInfo() == nil {
  1228. ms.StoreMessageInfo(mi)
  1229. }
  1230. return ms
  1231. }
  1232. return mi.MessageOf(x)
  1233. }
  1234. // Deprecated: Use ItemHistoryDataByTimeReq.ProtoReflect.Descriptor instead.
  1235. func (*ItemHistoryDataByTimeReq) Descriptor() ([]byte, []int) {
  1236. return file_organization_proto_rawDescGZIP(), []int{10}
  1237. }
  1238. func (x *ItemHistoryDataByTimeReq) GetProjectId() int64 {
  1239. if x != nil {
  1240. return x.ProjectId
  1241. }
  1242. return 0
  1243. }
  1244. func (x *ItemHistoryDataByTimeReq) GetItemName() string {
  1245. if x != nil {
  1246. return x.ItemName
  1247. }
  1248. return ""
  1249. }
  1250. func (x *ItemHistoryDataByTimeReq) GetStime() string {
  1251. if x != nil {
  1252. return x.Stime
  1253. }
  1254. return ""
  1255. }
  1256. func (x *ItemHistoryDataByTimeReq) GetEtime() string {
  1257. if x != nil {
  1258. return x.Etime
  1259. }
  1260. return ""
  1261. }
  1262. type ItemHistoryDataMaxMinResp struct {
  1263. state protoimpl.MessageState
  1264. sizeCache protoimpl.SizeCache
  1265. unknownFields protoimpl.UnknownFields
  1266. // @gotags: json:"max_val"
  1267. MaxVal float64 `protobuf:"fixed64,1,opt,name=max_val,json=maxVal,proto3" json:"max_val"`
  1268. // @gotags: json:"min_val"
  1269. MinVal float64 `protobuf:"fixed64,2,opt,name=min_val,json=minVal,proto3" json:"min_val"`
  1270. }
  1271. func (x *ItemHistoryDataMaxMinResp) Reset() {
  1272. *x = ItemHistoryDataMaxMinResp{}
  1273. if protoimpl.UnsafeEnabled {
  1274. mi := &file_organization_proto_msgTypes[11]
  1275. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1276. ms.StoreMessageInfo(mi)
  1277. }
  1278. }
  1279. func (x *ItemHistoryDataMaxMinResp) String() string {
  1280. return protoimpl.X.MessageStringOf(x)
  1281. }
  1282. func (*ItemHistoryDataMaxMinResp) ProtoMessage() {}
  1283. func (x *ItemHistoryDataMaxMinResp) ProtoReflect() protoreflect.Message {
  1284. mi := &file_organization_proto_msgTypes[11]
  1285. if protoimpl.UnsafeEnabled && x != nil {
  1286. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1287. if ms.LoadMessageInfo() == nil {
  1288. ms.StoreMessageInfo(mi)
  1289. }
  1290. return ms
  1291. }
  1292. return mi.MessageOf(x)
  1293. }
  1294. // Deprecated: Use ItemHistoryDataMaxMinResp.ProtoReflect.Descriptor instead.
  1295. func (*ItemHistoryDataMaxMinResp) Descriptor() ([]byte, []int) {
  1296. return file_organization_proto_rawDescGZIP(), []int{11}
  1297. }
  1298. func (x *ItemHistoryDataMaxMinResp) GetMaxVal() float64 {
  1299. if x != nil {
  1300. return x.MaxVal
  1301. }
  1302. return 0
  1303. }
  1304. func (x *ItemHistoryDataMaxMinResp) GetMinVal() float64 {
  1305. if x != nil {
  1306. return x.MinVal
  1307. }
  1308. return 0
  1309. }
  1310. type ItemHistoryDataList struct {
  1311. state protoimpl.MessageState
  1312. sizeCache protoimpl.SizeCache
  1313. unknownFields protoimpl.UnknownFields
  1314. ItemName string `protobuf:"bytes,1,opt,name=item_name,json=itemName,proto3" json:"item_name,omitempty"`
  1315. // @gotags: json:"val"
  1316. Val float64 `protobuf:"fixed64,2,opt,name=val,proto3" json:"val"`
  1317. HTime string `protobuf:"bytes,3,opt,name=h_time,json=hTime,proto3" json:"h_time,omitempty"`
  1318. }
  1319. func (x *ItemHistoryDataList) Reset() {
  1320. *x = ItemHistoryDataList{}
  1321. if protoimpl.UnsafeEnabled {
  1322. mi := &file_organization_proto_msgTypes[12]
  1323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1324. ms.StoreMessageInfo(mi)
  1325. }
  1326. }
  1327. func (x *ItemHistoryDataList) String() string {
  1328. return protoimpl.X.MessageStringOf(x)
  1329. }
  1330. func (*ItemHistoryDataList) ProtoMessage() {}
  1331. func (x *ItemHistoryDataList) ProtoReflect() protoreflect.Message {
  1332. mi := &file_organization_proto_msgTypes[12]
  1333. if protoimpl.UnsafeEnabled && x != nil {
  1334. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1335. if ms.LoadMessageInfo() == nil {
  1336. ms.StoreMessageInfo(mi)
  1337. }
  1338. return ms
  1339. }
  1340. return mi.MessageOf(x)
  1341. }
  1342. // Deprecated: Use ItemHistoryDataList.ProtoReflect.Descriptor instead.
  1343. func (*ItemHistoryDataList) Descriptor() ([]byte, []int) {
  1344. return file_organization_proto_rawDescGZIP(), []int{12}
  1345. }
  1346. func (x *ItemHistoryDataList) GetItemName() string {
  1347. if x != nil {
  1348. return x.ItemName
  1349. }
  1350. return ""
  1351. }
  1352. func (x *ItemHistoryDataList) GetVal() float64 {
  1353. if x != nil {
  1354. return x.Val
  1355. }
  1356. return 0
  1357. }
  1358. func (x *ItemHistoryDataList) GetHTime() string {
  1359. if x != nil {
  1360. return x.HTime
  1361. }
  1362. return ""
  1363. }
  1364. type ItemHistoryDataListResp struct {
  1365. state protoimpl.MessageState
  1366. sizeCache protoimpl.SizeCache
  1367. unknownFields protoimpl.UnknownFields
  1368. // @gotags: valid:"list"
  1369. List []*ItemHistoryDataList `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1370. }
  1371. func (x *ItemHistoryDataListResp) Reset() {
  1372. *x = ItemHistoryDataListResp{}
  1373. if protoimpl.UnsafeEnabled {
  1374. mi := &file_organization_proto_msgTypes[13]
  1375. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1376. ms.StoreMessageInfo(mi)
  1377. }
  1378. }
  1379. func (x *ItemHistoryDataListResp) String() string {
  1380. return protoimpl.X.MessageStringOf(x)
  1381. }
  1382. func (*ItemHistoryDataListResp) ProtoMessage() {}
  1383. func (x *ItemHistoryDataListResp) ProtoReflect() protoreflect.Message {
  1384. mi := &file_organization_proto_msgTypes[13]
  1385. if protoimpl.UnsafeEnabled && x != nil {
  1386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1387. if ms.LoadMessageInfo() == nil {
  1388. ms.StoreMessageInfo(mi)
  1389. }
  1390. return ms
  1391. }
  1392. return mi.MessageOf(x)
  1393. }
  1394. // Deprecated: Use ItemHistoryDataListResp.ProtoReflect.Descriptor instead.
  1395. func (*ItemHistoryDataListResp) Descriptor() ([]byte, []int) {
  1396. return file_organization_proto_rawDescGZIP(), []int{13}
  1397. }
  1398. func (x *ItemHistoryDataListResp) GetList() []*ItemHistoryDataList {
  1399. if x != nil {
  1400. return x.List
  1401. }
  1402. return nil
  1403. }
  1404. var File_organization_proto protoreflect.FileDescriptor
  1405. var file_organization_proto_rawDesc = []byte{
  1406. 0x0a, 0x12, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
  1407. 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0x4e, 0x0a, 0x0c, 0x44, 0x63, 0x57, 0x6f,
  1408. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
  1409. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72,
  1410. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63,
  1411. 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65,
  1412. 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x22, 0xa9, 0x07, 0x0a, 0x09, 0x57, 0x6f, 0x72,
  1413. 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  1414. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  1415. 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a,
  1416. 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f,
  1417. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69,
  1418. 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f,
  1419. 0x74, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  1420. 0x01, 0x52, 0x10, 0x77, 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74,
  1421. 0x75, 0x72, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77,
  1422. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77,
  1423. 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01,
  1424. 0x28, 0x01, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x21, 0x0a, 0x0c, 0x70,
  1425. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28,
  1426. 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x12, 0x23,
  1427. 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18,
  1428. 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73,
  1429. 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73,
  1430. 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x50, 0x72,
  1431. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  1432. 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01,
  1433. 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72,
  1434. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x6d, 0x70, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03,
  1435. 0x74, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x18, 0x0c, 0x20, 0x01, 0x28,
  1436. 0x01, 0x52, 0x04, 0x66, 0x6c, 0x75, 0x78, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f,
  1437. 0x77, 0x71, 0x5f, 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01,
  1438. 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64,
  1439. 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70,
  1440. 0x68, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50,
  1441. 0x68, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f,
  1442. 0x70, 0x68, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
  1443. 0x74, 0x57, 0x71, 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  1444. 0x5f, 0x61, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57,
  1445. 0x71, 0x41, 0x6c, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77,
  1446. 0x71, 0x5f, 0x61, 0x6c, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64,
  1447. 0x75, 0x63, 0x74, 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f,
  1448. 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65,
  1449. 0x64, 0x57, 0x71, 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1450. 0x5f, 0x77, 0x71, 0x5f, 0x66, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72,
  1451. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65,
  1452. 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66,
  1453. 0x65, 0x65, 0x64, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75,
  1454. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b,
  1455. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66,
  1456. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28,
  1457. 0x01, 0x52, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a,
  1458. 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32,
  1459. 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57,
  1460. 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71,
  1461. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64,
  1462. 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1463. 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70,
  1464. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66,
  1465. 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07,
  1466. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75,
  1467. 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70,
  1468. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65,
  1469. 0x70, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a,
  1470. 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63,
  1471. 0x54, 0x69, 0x6d, 0x65, 0x22, 0xba, 0x0d, 0x0a, 0x09, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
  1472. 0x52, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1473. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  1474. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  1475. 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1476. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  1477. 0x64, 0x65, 0x12, 0x2b, 0x0a, 0x11, 0x77, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x6d, 0x70,
  1478. 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x77,
  1479. 0x61, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x65, 0x72, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12,
  1480. 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74,
  1481. 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77,
  1482. 0x31, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f,
  1483. 0x31, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c,
  1484. 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1485. 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52,
  1486. 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x31, 0x73, 0x74, 0x12,
  1487. 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  1488. 0x5f, 0x31, 0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64,
  1489. 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x63,
  1490. 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18,
  1491. 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  1492. 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1493. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0a, 0x20,
  1494. 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73,
  1495. 0x73, 0x75, 0x72, 0x65, 0x31, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x31,
  1496. 0x73, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x31, 0x73, 0x74,
  1497. 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x31, 0x73, 0x74, 0x18, 0x0c, 0x20, 0x01,
  1498. 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x31, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x70,
  1499. 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x31, 0x73, 0x74, 0x18,
  1500. 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c,
  1501. 0x69, 0x74, 0x79, 0x31, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66,
  1502. 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66,
  1503. 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f,
  1504. 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01,
  1505. 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10,
  1506. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x32, 0x6e, 0x64,
  1507. 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46,
  1508. 0x6c, 0x6f, 0x77, 0x32, 0x6e, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70,
  1509. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28,
  1510. 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32,
  1511. 0x6e, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75,
  1512. 0x72, 0x65, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f,
  1513. 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x30, 0x0a, 0x14,
  1514. 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  1515. 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64,
  1516. 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x32, 0x6e, 0x64, 0x12, 0x17,
  1517. 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52,
  1518. 0x06, 0x74, 0x6d, 0x70, 0x32, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f,
  1519. 0x32, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x32,
  1520. 0x6e, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69,
  1521. 0x74, 0x79, 0x5f, 0x32, 0x6e, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65,
  1522. 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x32, 0x6e, 0x64, 0x12, 0x22, 0x0a,
  1523. 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x17,
  1524. 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74,
  1525. 0x68, 0x12, 0x20, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x5f, 0x66, 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74,
  1526. 0x68, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x46, 0x6c, 0x6f, 0x77,
  1527. 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66,
  1528. 0x6c, 0x6f, 0x77, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x70,
  1529. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6c, 0x6f, 0x77, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a,
  1530. 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33,
  1531. 0x74, 0x68, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72,
  1532. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x28, 0x0a, 0x10, 0x63, 0x6f, 0x6e,
  1533. 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1b, 0x20,
  1534. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65,
  1535. 0x33, 0x74, 0x68, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x70,
  1536. 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1c, 0x20, 0x01, 0x28,
  1537. 0x01, 0x52, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75,
  1538. 0x72, 0x65, 0x33, 0x74, 0x68, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x6d, 0x70, 0x5f, 0x33, 0x74, 0x68,
  1539. 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x74, 0x6d, 0x70, 0x33, 0x74, 0x68, 0x12, 0x19,
  1540. 0x0a, 0x08, 0x66, 0x6c, 0x75, 0x78, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01,
  1541. 0x52, 0x07, 0x66, 0x6c, 0x75, 0x78, 0x33, 0x74, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x70, 0x65, 0x72,
  1542. 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x33, 0x74, 0x68, 0x18, 0x1f, 0x20,
  1543. 0x01, 0x28, 0x01, 0x52, 0x0f, 0x70, 0x65, 0x72, 0x6d, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  1544. 0x79, 0x33, 0x74, 0x68, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  1545. 0x74, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52,
  1546. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x54, 0x75, 0x72, 0x62, 0x69, 0x64, 0x69, 0x74, 0x79,
  1547. 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18, 0x21,
  1548. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x50, 0x68, 0x12, 0x22,
  1549. 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x68, 0x18,
  1550. 0x22, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71,
  1551. 0x50, 0x68, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x61, 0x6c,
  1552. 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x41, 0x6c,
  1553. 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x61,
  1554. 0x6c, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
  1555. 0x57, 0x71, 0x41, 0x6c, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f,
  1556. 0x66, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71,
  1557. 0x46, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  1558. 0x5f, 0x66, 0x65, 0x18, 0x26, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75,
  1559. 0x63, 0x74, 0x57, 0x71, 0x46, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77,
  1560. 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  1561. 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  1562. 0x77, 0x71, 0x5f, 0x6d, 0x6e, 0x18, 0x28, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x70, 0x72, 0x6f,
  1563. 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x4d, 0x6e, 0x12, 0x20, 0x0a, 0x0c, 0x66, 0x65, 0x65, 0x64,
  1564. 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
  1565. 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x53, 0x69, 0x6f, 0x32, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72,
  1566. 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71, 0x5f, 0x73, 0x69, 0x6f, 0x32, 0x18, 0x2a, 0x20,
  1567. 0x01, 0x28, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x57, 0x71, 0x53, 0x69,
  1568. 0x6f, 0x32, 0x12, 0x1e, 0x0a, 0x0b, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x77, 0x71, 0x5f, 0x63, 0x6f,
  1569. 0x64, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x57, 0x71, 0x43,
  1570. 0x6f, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x77, 0x71,
  1571. 0x5f, 0x63, 0x6f, 0x64, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64,
  1572. 0x75, 0x63, 0x74, 0x57, 0x71, 0x43, 0x6f, 0x64, 0x12, 0x1a, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64,
  1573. 0x5f, 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x66, 0x65, 0x65,
  1574. 0x64, 0x57, 0x71, 0x50, 0x12, 0x20, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
  1575. 0x77, 0x71, 0x5f, 0x70, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x64,
  1576. 0x75, 0x63, 0x74, 0x57, 0x71, 0x50, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x2f,
  1577. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  1578. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x30, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  1579. 0x65, 0x22, 0xad, 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65,
  1580. 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1581. 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
  1582. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
  1583. 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1584. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  1585. 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x18, 0x04, 0x20, 0x01,
  1586. 0x28, 0x03, 0x52, 0x06, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65,
  1587. 0x76, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c,
  1588. 0x12, 0x27, 0x0a, 0x0f, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x73, 0x74, 0x61,
  1589. 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x67, 0x69, 0x74, 0x61,
  1590. 0x74, 0x6f, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x61, 0x67, 0x69,
  1591. 0x74, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07,
  1592. 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x44, 0x75,
  1593. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x15, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74,
  1594. 0x6f, 0x72, 0x5f, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  1595. 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x61, 0x67, 0x69, 0x74, 0x61, 0x74, 0x6f, 0x72, 0x46,
  1596. 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f,
  1597. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d,
  1598. 0x65, 0x22, 0x86, 0x03, 0x0a, 0x0b, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d,
  1599. 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
  1600. 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
  1601. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64,
  1602. 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  1603. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64,
  1604. 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x73, 0x75,
  1605. 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x66, 0x65, 0x65, 0x64, 0x50, 0x72,
  1606. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x75, 0x74, 0x5f, 0x70, 0x72,
  1607. 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x6f, 0x75,
  1608. 0x74, 0x50, 0x72, 0x65, 0x73, 0x73, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72,
  1609. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x75, 0x72,
  1610. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
  1611. 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12,
  1612. 0x1c, 0x0a, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x08, 0x20, 0x01,
  1613. 0x28, 0x01, 0x52, 0x09, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x12, 0x0a,
  1614. 0x04, 0x6c, 0x69, 0x66, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x04, 0x6c, 0x69, 0x66,
  1615. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63, 0x79, 0x18,
  1616. 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x65, 0x66, 0x66, 0x69, 0x63, 0x69, 0x65, 0x6e, 0x63,
  1617. 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x75, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  1618. 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x72, 0x75, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1619. 0x12, 0x21, 0x0a, 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1620. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61,
  1621. 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20,
  1622. 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xfa, 0x01, 0x0a, 0x0c, 0x57,
  1623. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x76, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1624. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  1625. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1626. 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x65,
  1627. 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1628. 0x0a, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61,
  1629. 0x64, 0x6a, 0x75, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x61, 0x64, 0x6a,
  1630. 0x75, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x05,
  1631. 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x6f, 0x70, 0x65, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x16, 0x0a,
  1632. 0x06, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  1633. 0x6c, 0x6f, 0x73, 0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x18,
  1634. 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x65, 0x64, 0x12, 0x21, 0x0a,
  1635. 0x0c, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20,
  1636. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1637. 0x12, 0x15, 0x0a, 0x06, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  1638. 0x52, 0x05, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x76, 0x0a, 0x0f, 0x49, 0x74, 0x65, 0x6d, 0x48,
  1639. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72,
  1640. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1641. 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65,
  1642. 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74,
  1643. 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20,
  1644. 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61, 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69,
  1645. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22,
  1646. 0x64, 0x0a, 0x1a, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48,
  1647. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a,
  1648. 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1649. 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x04,
  1650. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x62, 0x2e,
  1651. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52,
  1652. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x0a, 0x1b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64,
  1653. 0x64, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  1654. 0x52, 0x65, 0x73, 0x70, 0x22, 0xd0, 0x01, 0x0a, 0x16, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  1655. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12,
  1656. 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
  1657. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b,
  1658. 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1659. 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69,
  1660. 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69,
  1661. 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x67, 0x67, 0x72, 0x65,
  1662. 0x67, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x67, 0x67,
  1663. 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65,
  1664. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a,
  1665. 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74,
  1666. 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
  1667. 0x03, 0x52, 0x04, 0x73, 0x69, 0x7a, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x18, 0x49, 0x74, 0x65, 0x6d,
  1668. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d,
  1669. 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
  1670. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  1671. 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  1672. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65,
  1673. 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1674. 0x05, 0x73, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18,
  1675. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x22, 0x4d, 0x0a, 0x19,
  1676. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d,
  1677. 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x78,
  1678. 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x61, 0x78, 0x56,
  1679. 0x61, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20,
  1680. 0x01, 0x28, 0x01, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x22, 0x5b, 0x0a, 0x13, 0x49,
  1681. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69,
  1682. 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1683. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  1684. 0x10, 0x0a, 0x03, 0x76, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x03, 0x76, 0x61,
  1685. 0x6c, 0x12, 0x15, 0x0a, 0x06, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1686. 0x09, 0x52, 0x05, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x46, 0x0a, 0x17, 0x49, 0x74, 0x65, 0x6d,
  1687. 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1688. 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  1689. 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f,
  1690. 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1691. 0x32, 0x8d, 0x05, 0x0a, 0x0c, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  1692. 0x6e, 0x12, 0x35, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55,
  1693. 0x66, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57,
  1694. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57,
  1695. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x55, 0x66, 0x12, 0x35, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x57,
  1696. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10,
  1697. 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71,
  1698. 0x1a, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x6f, 0x12,
  1699. 0x3b, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65,
  1700. 0x73, 0x74, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63,
  1701. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x70, 0x62, 0x2e,
  1702. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x14,
  1703. 0x47, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x42, 0x79,
  1704. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b,
  1705. 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b,
  1706. 0x69, 0x6e, 0x67, 0x50, 0x75, 0x6d, 0x70, 0x12, 0x3b, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x57, 0x6f,
  1707. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x64, 0x65,
  1708. 0x12, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x63, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x52,
  1709. 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x56,
  1710. 0x61, 0x6c, 0x76, 0x65, 0x12, 0x5a, 0x0a, 0x17, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64,
  1711. 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12,
  1712. 0x1e, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65,
  1713. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a,
  1714. 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x64, 0x64, 0x49, 0x74, 0x65,
  1715. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70,
  1716. 0x12, 0x4e, 0x0a, 0x13, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44,
  1717. 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65,
  1718. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74,
  1719. 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  1720. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70,
  1721. 0x12, 0x52, 0x0a, 0x15, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44,
  1722. 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49,
  1723. 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79,
  1724. 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1b, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65,
  1725. 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74,
  1726. 0x52, 0x65, 0x73, 0x70, 0x12, 0x5a, 0x0a, 0x1b, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74,
  1727. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x42, 0x79, 0x54,
  1728. 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73,
  1729. 0x74, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65,
  1730. 0x71, 0x1a, 0x1d, 0x2e, 0x70, 0x62, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x48, 0x69, 0x73, 0x74, 0x6f,
  1731. 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x61, 0x78, 0x4d, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70,
  1732. 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1733. }
  1734. var (
  1735. file_organization_proto_rawDescOnce sync.Once
  1736. file_organization_proto_rawDescData = file_organization_proto_rawDesc
  1737. )
  1738. func file_organization_proto_rawDescGZIP() []byte {
  1739. file_organization_proto_rawDescOnce.Do(func() {
  1740. file_organization_proto_rawDescData = protoimpl.X.CompressGZIP(file_organization_proto_rawDescData)
  1741. })
  1742. return file_organization_proto_rawDescData
  1743. }
  1744. var file_organization_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
  1745. var file_organization_proto_goTypes = []interface{}{
  1746. (*DcWorkingReq)(nil), // 0: pb.DcWorkingReq
  1747. (*WorkingUf)(nil), // 1: pb.WorkingUf
  1748. (*WorkingRo)(nil), // 2: pb.WorkingRo
  1749. (*WorkingChest)(nil), // 3: pb.WorkingChest
  1750. (*WorkingPump)(nil), // 4: pb.WorkingPump
  1751. (*WorkingValve)(nil), // 5: pb.WorkingValve
  1752. (*ItemHistoryData)(nil), // 6: pb.ItemHistoryData
  1753. (*MultiAddItemHistoryDataReq)(nil), // 7: pb.MultiAddItemHistoryDataReq
  1754. (*MultiAddItemHistoryDataResp)(nil), // 8: pb.MultiAddItemHistoryDataResp
  1755. (*ItemHistoryDataListReq)(nil), // 9: pb.ItemHistoryDataListReq
  1756. (*ItemHistoryDataByTimeReq)(nil), // 10: pb.ItemHistoryDataByTimeReq
  1757. (*ItemHistoryDataMaxMinResp)(nil), // 11: pb.ItemHistoryDataMaxMinResp
  1758. (*ItemHistoryDataList)(nil), // 12: pb.ItemHistoryDataList
  1759. (*ItemHistoryDataListResp)(nil), // 13: pb.ItemHistoryDataListResp
  1760. }
  1761. var file_organization_proto_depIdxs = []int32{
  1762. 6, // 0: pb.MultiAddItemHistoryDataReq.list:type_name -> pb.ItemHistoryData
  1763. 12, // 1: pb.ItemHistoryDataListResp.list:type_name -> pb.ItemHistoryDataList
  1764. 0, // 2: pb.Organization.GetWorkingUfByCode:input_type -> pb.DcWorkingReq
  1765. 0, // 3: pb.Organization.GetWorkingRoByCode:input_type -> pb.DcWorkingReq
  1766. 0, // 4: pb.Organization.GetWorkingChestByCode:input_type -> pb.DcWorkingReq
  1767. 0, // 5: pb.Organization.GetWorkingPumpByCode:input_type -> pb.DcWorkingReq
  1768. 0, // 6: pb.Organization.GetWorkingValueByCode:input_type -> pb.DcWorkingReq
  1769. 7, // 7: pb.Organization.MultiAddItemHistoryData:input_type -> pb.MultiAddItemHistoryDataReq
  1770. 9, // 8: pb.Organization.ItemHistoryDataList:input_type -> pb.ItemHistoryDataListReq
  1771. 10, // 9: pb.Organization.ItemHistoryDataByTime:input_type -> pb.ItemHistoryDataByTimeReq
  1772. 10, // 10: pb.Organization.ItemHistoryDataMaxMinByTime:input_type -> pb.ItemHistoryDataByTimeReq
  1773. 1, // 11: pb.Organization.GetWorkingUfByCode:output_type -> pb.WorkingUf
  1774. 2, // 12: pb.Organization.GetWorkingRoByCode:output_type -> pb.WorkingRo
  1775. 3, // 13: pb.Organization.GetWorkingChestByCode:output_type -> pb.WorkingChest
  1776. 4, // 14: pb.Organization.GetWorkingPumpByCode:output_type -> pb.WorkingPump
  1777. 5, // 15: pb.Organization.GetWorkingValueByCode:output_type -> pb.WorkingValve
  1778. 8, // 16: pb.Organization.MultiAddItemHistoryData:output_type -> pb.MultiAddItemHistoryDataResp
  1779. 13, // 17: pb.Organization.ItemHistoryDataList:output_type -> pb.ItemHistoryDataListResp
  1780. 13, // 18: pb.Organization.ItemHistoryDataByTime:output_type -> pb.ItemHistoryDataListResp
  1781. 11, // 19: pb.Organization.ItemHistoryDataMaxMinByTime:output_type -> pb.ItemHistoryDataMaxMinResp
  1782. 11, // [11:20] is the sub-list for method output_type
  1783. 2, // [2:11] is the sub-list for method input_type
  1784. 2, // [2:2] is the sub-list for extension type_name
  1785. 2, // [2:2] is the sub-list for extension extendee
  1786. 0, // [0:2] is the sub-list for field type_name
  1787. }
  1788. func init() { file_organization_proto_init() }
  1789. func file_organization_proto_init() {
  1790. if File_organization_proto != nil {
  1791. return
  1792. }
  1793. if !protoimpl.UnsafeEnabled {
  1794. file_organization_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1795. switch v := v.(*DcWorkingReq); i {
  1796. case 0:
  1797. return &v.state
  1798. case 1:
  1799. return &v.sizeCache
  1800. case 2:
  1801. return &v.unknownFields
  1802. default:
  1803. return nil
  1804. }
  1805. }
  1806. file_organization_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1807. switch v := v.(*WorkingUf); i {
  1808. case 0:
  1809. return &v.state
  1810. case 1:
  1811. return &v.sizeCache
  1812. case 2:
  1813. return &v.unknownFields
  1814. default:
  1815. return nil
  1816. }
  1817. }
  1818. file_organization_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1819. switch v := v.(*WorkingRo); i {
  1820. case 0:
  1821. return &v.state
  1822. case 1:
  1823. return &v.sizeCache
  1824. case 2:
  1825. return &v.unknownFields
  1826. default:
  1827. return nil
  1828. }
  1829. }
  1830. file_organization_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1831. switch v := v.(*WorkingChest); i {
  1832. case 0:
  1833. return &v.state
  1834. case 1:
  1835. return &v.sizeCache
  1836. case 2:
  1837. return &v.unknownFields
  1838. default:
  1839. return nil
  1840. }
  1841. }
  1842. file_organization_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1843. switch v := v.(*WorkingPump); i {
  1844. case 0:
  1845. return &v.state
  1846. case 1:
  1847. return &v.sizeCache
  1848. case 2:
  1849. return &v.unknownFields
  1850. default:
  1851. return nil
  1852. }
  1853. }
  1854. file_organization_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1855. switch v := v.(*WorkingValve); i {
  1856. case 0:
  1857. return &v.state
  1858. case 1:
  1859. return &v.sizeCache
  1860. case 2:
  1861. return &v.unknownFields
  1862. default:
  1863. return nil
  1864. }
  1865. }
  1866. file_organization_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1867. switch v := v.(*ItemHistoryData); i {
  1868. case 0:
  1869. return &v.state
  1870. case 1:
  1871. return &v.sizeCache
  1872. case 2:
  1873. return &v.unknownFields
  1874. default:
  1875. return nil
  1876. }
  1877. }
  1878. file_organization_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1879. switch v := v.(*MultiAddItemHistoryDataReq); i {
  1880. case 0:
  1881. return &v.state
  1882. case 1:
  1883. return &v.sizeCache
  1884. case 2:
  1885. return &v.unknownFields
  1886. default:
  1887. return nil
  1888. }
  1889. }
  1890. file_organization_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1891. switch v := v.(*MultiAddItemHistoryDataResp); i {
  1892. case 0:
  1893. return &v.state
  1894. case 1:
  1895. return &v.sizeCache
  1896. case 2:
  1897. return &v.unknownFields
  1898. default:
  1899. return nil
  1900. }
  1901. }
  1902. file_organization_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1903. switch v := v.(*ItemHistoryDataListReq); i {
  1904. case 0:
  1905. return &v.state
  1906. case 1:
  1907. return &v.sizeCache
  1908. case 2:
  1909. return &v.unknownFields
  1910. default:
  1911. return nil
  1912. }
  1913. }
  1914. file_organization_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1915. switch v := v.(*ItemHistoryDataByTimeReq); i {
  1916. case 0:
  1917. return &v.state
  1918. case 1:
  1919. return &v.sizeCache
  1920. case 2:
  1921. return &v.unknownFields
  1922. default:
  1923. return nil
  1924. }
  1925. }
  1926. file_organization_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1927. switch v := v.(*ItemHistoryDataMaxMinResp); i {
  1928. case 0:
  1929. return &v.state
  1930. case 1:
  1931. return &v.sizeCache
  1932. case 2:
  1933. return &v.unknownFields
  1934. default:
  1935. return nil
  1936. }
  1937. }
  1938. file_organization_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1939. switch v := v.(*ItemHistoryDataList); i {
  1940. case 0:
  1941. return &v.state
  1942. case 1:
  1943. return &v.sizeCache
  1944. case 2:
  1945. return &v.unknownFields
  1946. default:
  1947. return nil
  1948. }
  1949. }
  1950. file_organization_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1951. switch v := v.(*ItemHistoryDataListResp); i {
  1952. case 0:
  1953. return &v.state
  1954. case 1:
  1955. return &v.sizeCache
  1956. case 2:
  1957. return &v.unknownFields
  1958. default:
  1959. return nil
  1960. }
  1961. }
  1962. }
  1963. type x struct{}
  1964. out := protoimpl.TypeBuilder{
  1965. File: protoimpl.DescBuilder{
  1966. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1967. RawDescriptor: file_organization_proto_rawDesc,
  1968. NumEnums: 0,
  1969. NumMessages: 14,
  1970. NumExtensions: 0,
  1971. NumServices: 1,
  1972. },
  1973. GoTypes: file_organization_proto_goTypes,
  1974. DependencyIndexes: file_organization_proto_depIdxs,
  1975. MessageInfos: file_organization_proto_msgTypes,
  1976. }.Build()
  1977. File_organization_proto = out.File
  1978. file_organization_proto_rawDesc = nil
  1979. file_organization_proto_goTypes = nil
  1980. file_organization_proto_depIdxs = nil
  1981. }