organization.pb.go 69 KB

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