statistic.pb.go 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.21.9
  5. // source: backend/operation/statistic.proto
  6. package operationPb
  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. // SearchFormulaEstimateRequest 配方评估
  20. type SearchFormulaEstimateRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  25. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  26. SearchType int32 `protobuf:"varint,3,opt,name=search_type,json=searchType,proto3" json:"search_type,omitempty"` // 查询方式 0 安照配方 1 按照栏舍
  27. ApiName string `protobuf:"bytes,4,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  28. PastureId int32 `protobuf:"varint,5,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  29. TemplateId int32 `protobuf:"varint,6,opt,name=template_id,json=templateId,proto3" json:"template_id,omitempty"` // 配方模板id
  30. BarnId int32 `protobuf:"varint,7,opt,name=barn_id,json=barnId,proto3" json:"barn_id,omitempty"` // 栏舍id
  31. Pagination *PaginationModel `protobuf:"bytes,8,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  32. }
  33. func (x *SearchFormulaEstimateRequest) Reset() {
  34. *x = SearchFormulaEstimateRequest{}
  35. if protoimpl.UnsafeEnabled {
  36. mi := &file_backend_operation_statistic_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. }
  41. func (x *SearchFormulaEstimateRequest) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*SearchFormulaEstimateRequest) ProtoMessage() {}
  45. func (x *SearchFormulaEstimateRequest) ProtoReflect() protoreflect.Message {
  46. mi := &file_backend_operation_statistic_proto_msgTypes[0]
  47. if protoimpl.UnsafeEnabled && x != nil {
  48. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  49. if ms.LoadMessageInfo() == nil {
  50. ms.StoreMessageInfo(mi)
  51. }
  52. return ms
  53. }
  54. return mi.MessageOf(x)
  55. }
  56. // Deprecated: Use SearchFormulaEstimateRequest.ProtoReflect.Descriptor instead.
  57. func (*SearchFormulaEstimateRequest) Descriptor() ([]byte, []int) {
  58. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *SearchFormulaEstimateRequest) GetStartTime() string {
  61. if x != nil {
  62. return x.StartTime
  63. }
  64. return ""
  65. }
  66. func (x *SearchFormulaEstimateRequest) GetEndTime() string {
  67. if x != nil {
  68. return x.EndTime
  69. }
  70. return ""
  71. }
  72. func (x *SearchFormulaEstimateRequest) GetSearchType() int32 {
  73. if x != nil {
  74. return x.SearchType
  75. }
  76. return 0
  77. }
  78. func (x *SearchFormulaEstimateRequest) GetApiName() string {
  79. if x != nil {
  80. return x.ApiName
  81. }
  82. return ""
  83. }
  84. func (x *SearchFormulaEstimateRequest) GetPastureId() int32 {
  85. if x != nil {
  86. return x.PastureId
  87. }
  88. return 0
  89. }
  90. func (x *SearchFormulaEstimateRequest) GetTemplateId() int32 {
  91. if x != nil {
  92. return x.TemplateId
  93. }
  94. return 0
  95. }
  96. func (x *SearchFormulaEstimateRequest) GetBarnId() int32 {
  97. if x != nil {
  98. return x.BarnId
  99. }
  100. return 0
  101. }
  102. func (x *SearchFormulaEstimateRequest) GetPagination() *PaginationModel {
  103. if x != nil {
  104. return x.Pagination
  105. }
  106. return nil
  107. }
  108. // SearchInventoryStatisticsRequest 库存管理-库存统计
  109. type SearchInventoryStatisticsRequest struct {
  110. state protoimpl.MessageState
  111. sizeCache protoimpl.SizeCache
  112. unknownFields protoimpl.UnknownFields
  113. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  114. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  115. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  116. FeedName string `protobuf:"bytes,4,opt,name=feed_name,json=feedName,proto3" json:"feed_name,omitempty"` // 饲料名称
  117. PastureId int32 `protobuf:"varint,5,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  118. Pagination *PaginationModel `protobuf:"bytes,6,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  119. }
  120. func (x *SearchInventoryStatisticsRequest) Reset() {
  121. *x = SearchInventoryStatisticsRequest{}
  122. if protoimpl.UnsafeEnabled {
  123. mi := &file_backend_operation_statistic_proto_msgTypes[1]
  124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  125. ms.StoreMessageInfo(mi)
  126. }
  127. }
  128. func (x *SearchInventoryStatisticsRequest) String() string {
  129. return protoimpl.X.MessageStringOf(x)
  130. }
  131. func (*SearchInventoryStatisticsRequest) ProtoMessage() {}
  132. func (x *SearchInventoryStatisticsRequest) ProtoReflect() protoreflect.Message {
  133. mi := &file_backend_operation_statistic_proto_msgTypes[1]
  134. if protoimpl.UnsafeEnabled && x != nil {
  135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  136. if ms.LoadMessageInfo() == nil {
  137. ms.StoreMessageInfo(mi)
  138. }
  139. return ms
  140. }
  141. return mi.MessageOf(x)
  142. }
  143. // Deprecated: Use SearchInventoryStatisticsRequest.ProtoReflect.Descriptor instead.
  144. func (*SearchInventoryStatisticsRequest) Descriptor() ([]byte, []int) {
  145. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{1}
  146. }
  147. func (x *SearchInventoryStatisticsRequest) GetStartTime() string {
  148. if x != nil {
  149. return x.StartTime
  150. }
  151. return ""
  152. }
  153. func (x *SearchInventoryStatisticsRequest) GetEndTime() string {
  154. if x != nil {
  155. return x.EndTime
  156. }
  157. return ""
  158. }
  159. func (x *SearchInventoryStatisticsRequest) GetApiName() string {
  160. if x != nil {
  161. return x.ApiName
  162. }
  163. return ""
  164. }
  165. func (x *SearchInventoryStatisticsRequest) GetFeedName() string {
  166. if x != nil {
  167. return x.FeedName
  168. }
  169. return ""
  170. }
  171. func (x *SearchInventoryStatisticsRequest) GetPastureId() int32 {
  172. if x != nil {
  173. return x.PastureId
  174. }
  175. return 0
  176. }
  177. func (x *SearchInventoryStatisticsRequest) GetPagination() *PaginationModel {
  178. if x != nil {
  179. return x.Pagination
  180. }
  181. return nil
  182. }
  183. // SearchUserMaterialsStatisticsRequest 库存管理-用料分析
  184. type SearchUserMaterialsStatisticsRequest struct {
  185. state protoimpl.MessageState
  186. sizeCache protoimpl.SizeCache
  187. unknownFields protoimpl.UnknownFields
  188. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  189. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  190. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  191. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  192. ErrorCheck int32 `protobuf:"varint,5,opt,name=error_check,json=errorCheck,proto3" json:"error_check,omitempty"` // 误差是否选中 0 未选中 1 选中
  193. TypeCheck int32 `protobuf:"varint,6,opt,name=type_check,json=typeCheck,proto3" json:"type_check,omitempty"` // 返回实际或理论 1 理论 2 实际
  194. FeedName string `protobuf:"bytes,7,opt,name=feed_name,json=feedName,proto3" json:"feed_name,omitempty"` // 名称
  195. Pagination *PaginationModel `protobuf:"bytes,8,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  196. }
  197. func (x *SearchUserMaterialsStatisticsRequest) Reset() {
  198. *x = SearchUserMaterialsStatisticsRequest{}
  199. if protoimpl.UnsafeEnabled {
  200. mi := &file_backend_operation_statistic_proto_msgTypes[2]
  201. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  202. ms.StoreMessageInfo(mi)
  203. }
  204. }
  205. func (x *SearchUserMaterialsStatisticsRequest) String() string {
  206. return protoimpl.X.MessageStringOf(x)
  207. }
  208. func (*SearchUserMaterialsStatisticsRequest) ProtoMessage() {}
  209. func (x *SearchUserMaterialsStatisticsRequest) ProtoReflect() protoreflect.Message {
  210. mi := &file_backend_operation_statistic_proto_msgTypes[2]
  211. if protoimpl.UnsafeEnabled && x != nil {
  212. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  213. if ms.LoadMessageInfo() == nil {
  214. ms.StoreMessageInfo(mi)
  215. }
  216. return ms
  217. }
  218. return mi.MessageOf(x)
  219. }
  220. // Deprecated: Use SearchUserMaterialsStatisticsRequest.ProtoReflect.Descriptor instead.
  221. func (*SearchUserMaterialsStatisticsRequest) Descriptor() ([]byte, []int) {
  222. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{2}
  223. }
  224. func (x *SearchUserMaterialsStatisticsRequest) GetStartTime() string {
  225. if x != nil {
  226. return x.StartTime
  227. }
  228. return ""
  229. }
  230. func (x *SearchUserMaterialsStatisticsRequest) GetEndTime() string {
  231. if x != nil {
  232. return x.EndTime
  233. }
  234. return ""
  235. }
  236. func (x *SearchUserMaterialsStatisticsRequest) GetApiName() string {
  237. if x != nil {
  238. return x.ApiName
  239. }
  240. return ""
  241. }
  242. func (x *SearchUserMaterialsStatisticsRequest) GetPastureId() int32 {
  243. if x != nil {
  244. return x.PastureId
  245. }
  246. return 0
  247. }
  248. func (x *SearchUserMaterialsStatisticsRequest) GetErrorCheck() int32 {
  249. if x != nil {
  250. return x.ErrorCheck
  251. }
  252. return 0
  253. }
  254. func (x *SearchUserMaterialsStatisticsRequest) GetTypeCheck() int32 {
  255. if x != nil {
  256. return x.TypeCheck
  257. }
  258. return 0
  259. }
  260. func (x *SearchUserMaterialsStatisticsRequest) GetFeedName() string {
  261. if x != nil {
  262. return x.FeedName
  263. }
  264. return ""
  265. }
  266. func (x *SearchUserMaterialsStatisticsRequest) GetPagination() *PaginationModel {
  267. if x != nil {
  268. return x.Pagination
  269. }
  270. return nil
  271. }
  272. // SearchPriceStatisticsRequest 库存管理-价格分析
  273. type SearchPriceStatisticsRequest struct {
  274. state protoimpl.MessageState
  275. sizeCache protoimpl.SizeCache
  276. unknownFields protoimpl.UnknownFields
  277. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  278. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  279. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  280. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  281. FeedName string `protobuf:"bytes,5,opt,name=feed_name,json=feedName,proto3" json:"feed_name,omitempty"` // 名称
  282. Pagination *PaginationModel `protobuf:"bytes,6,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  283. }
  284. func (x *SearchPriceStatisticsRequest) Reset() {
  285. *x = SearchPriceStatisticsRequest{}
  286. if protoimpl.UnsafeEnabled {
  287. mi := &file_backend_operation_statistic_proto_msgTypes[3]
  288. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  289. ms.StoreMessageInfo(mi)
  290. }
  291. }
  292. func (x *SearchPriceStatisticsRequest) String() string {
  293. return protoimpl.X.MessageStringOf(x)
  294. }
  295. func (*SearchPriceStatisticsRequest) ProtoMessage() {}
  296. func (x *SearchPriceStatisticsRequest) ProtoReflect() protoreflect.Message {
  297. mi := &file_backend_operation_statistic_proto_msgTypes[3]
  298. if protoimpl.UnsafeEnabled && x != nil {
  299. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  300. if ms.LoadMessageInfo() == nil {
  301. ms.StoreMessageInfo(mi)
  302. }
  303. return ms
  304. }
  305. return mi.MessageOf(x)
  306. }
  307. // Deprecated: Use SearchPriceStatisticsRequest.ProtoReflect.Descriptor instead.
  308. func (*SearchPriceStatisticsRequest) Descriptor() ([]byte, []int) {
  309. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{3}
  310. }
  311. func (x *SearchPriceStatisticsRequest) GetStartTime() string {
  312. if x != nil {
  313. return x.StartTime
  314. }
  315. return ""
  316. }
  317. func (x *SearchPriceStatisticsRequest) GetEndTime() string {
  318. if x != nil {
  319. return x.EndTime
  320. }
  321. return ""
  322. }
  323. func (x *SearchPriceStatisticsRequest) GetApiName() string {
  324. if x != nil {
  325. return x.ApiName
  326. }
  327. return ""
  328. }
  329. func (x *SearchPriceStatisticsRequest) GetPastureId() int32 {
  330. if x != nil {
  331. return x.PastureId
  332. }
  333. return 0
  334. }
  335. func (x *SearchPriceStatisticsRequest) GetFeedName() string {
  336. if x != nil {
  337. return x.FeedName
  338. }
  339. return ""
  340. }
  341. func (x *SearchPriceStatisticsRequest) GetPagination() *PaginationModel {
  342. if x != nil {
  343. return x.Pagination
  344. }
  345. return nil
  346. }
  347. // SearchFeedStatisticsRequest 饲喂效率-效率统计
  348. type SearchFeedStatisticsRequest struct {
  349. state protoimpl.MessageState
  350. sizeCache protoimpl.SizeCache
  351. unknownFields protoimpl.UnknownFields
  352. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  353. ApiName string `protobuf:"bytes,2,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  354. PastureId int32 `protobuf:"varint,3,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  355. FormulaTemplate string `protobuf:"bytes,4,opt,name=formula_template,json=formulaTemplate,proto3" json:"formula_template,omitempty"` // 配方模板名称
  356. BarnName string `protobuf:"bytes,5,opt,name=barn_name,json=barnName,proto3" json:"barn_name,omitempty"` // 栏舍名称
  357. CattleCategoryName string `protobuf:"bytes,6,opt,name=cattle_category_name,json=cattleCategoryName,proto3" json:"cattle_category_name,omitempty"` // 畜牧类别名称
  358. ClassNumber int32 `protobuf:"varint,7,opt,name=class_number,json=classNumber,proto3" json:"class_number,omitempty"` // 班次
  359. Pagination *PaginationModel `protobuf:"bytes,8,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  360. }
  361. func (x *SearchFeedStatisticsRequest) Reset() {
  362. *x = SearchFeedStatisticsRequest{}
  363. if protoimpl.UnsafeEnabled {
  364. mi := &file_backend_operation_statistic_proto_msgTypes[4]
  365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  366. ms.StoreMessageInfo(mi)
  367. }
  368. }
  369. func (x *SearchFeedStatisticsRequest) String() string {
  370. return protoimpl.X.MessageStringOf(x)
  371. }
  372. func (*SearchFeedStatisticsRequest) ProtoMessage() {}
  373. func (x *SearchFeedStatisticsRequest) ProtoReflect() protoreflect.Message {
  374. mi := &file_backend_operation_statistic_proto_msgTypes[4]
  375. if protoimpl.UnsafeEnabled && x != nil {
  376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  377. if ms.LoadMessageInfo() == nil {
  378. ms.StoreMessageInfo(mi)
  379. }
  380. return ms
  381. }
  382. return mi.MessageOf(x)
  383. }
  384. // Deprecated: Use SearchFeedStatisticsRequest.ProtoReflect.Descriptor instead.
  385. func (*SearchFeedStatisticsRequest) Descriptor() ([]byte, []int) {
  386. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{4}
  387. }
  388. func (x *SearchFeedStatisticsRequest) GetStartTime() string {
  389. if x != nil {
  390. return x.StartTime
  391. }
  392. return ""
  393. }
  394. func (x *SearchFeedStatisticsRequest) GetApiName() string {
  395. if x != nil {
  396. return x.ApiName
  397. }
  398. return ""
  399. }
  400. func (x *SearchFeedStatisticsRequest) GetPastureId() int32 {
  401. if x != nil {
  402. return x.PastureId
  403. }
  404. return 0
  405. }
  406. func (x *SearchFeedStatisticsRequest) GetFormulaTemplate() string {
  407. if x != nil {
  408. return x.FormulaTemplate
  409. }
  410. return ""
  411. }
  412. func (x *SearchFeedStatisticsRequest) GetBarnName() string {
  413. if x != nil {
  414. return x.BarnName
  415. }
  416. return ""
  417. }
  418. func (x *SearchFeedStatisticsRequest) GetCattleCategoryName() string {
  419. if x != nil {
  420. return x.CattleCategoryName
  421. }
  422. return ""
  423. }
  424. func (x *SearchFeedStatisticsRequest) GetClassNumber() int32 {
  425. if x != nil {
  426. return x.ClassNumber
  427. }
  428. return 0
  429. }
  430. func (x *SearchFeedStatisticsRequest) GetPagination() *PaginationModel {
  431. if x != nil {
  432. return x.Pagination
  433. }
  434. return nil
  435. }
  436. // FeedChartStatisticsRequest 饲喂效率chart图表
  437. type FeedChartStatisticsRequest struct {
  438. state protoimpl.MessageState
  439. sizeCache protoimpl.SizeCache
  440. unknownFields protoimpl.UnknownFields
  441. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  442. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  443. PastureId int32 `protobuf:"varint,3,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  444. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
  445. ApiType string `protobuf:"bytes,5,opt,name=api_type,json=apiType,proto3" json:"api_type,omitempty"` // mr 泌乳牛干物质采食量 sl 牛栏剩料率 hl 混料时间统计 zh 转化率 cbft 成本分析
  446. }
  447. func (x *FeedChartStatisticsRequest) Reset() {
  448. *x = FeedChartStatisticsRequest{}
  449. if protoimpl.UnsafeEnabled {
  450. mi := &file_backend_operation_statistic_proto_msgTypes[5]
  451. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  452. ms.StoreMessageInfo(mi)
  453. }
  454. }
  455. func (x *FeedChartStatisticsRequest) String() string {
  456. return protoimpl.X.MessageStringOf(x)
  457. }
  458. func (*FeedChartStatisticsRequest) ProtoMessage() {}
  459. func (x *FeedChartStatisticsRequest) ProtoReflect() protoreflect.Message {
  460. mi := &file_backend_operation_statistic_proto_msgTypes[5]
  461. if protoimpl.UnsafeEnabled && x != nil {
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. if ms.LoadMessageInfo() == nil {
  464. ms.StoreMessageInfo(mi)
  465. }
  466. return ms
  467. }
  468. return mi.MessageOf(x)
  469. }
  470. // Deprecated: Use FeedChartStatisticsRequest.ProtoReflect.Descriptor instead.
  471. func (*FeedChartStatisticsRequest) Descriptor() ([]byte, []int) {
  472. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{5}
  473. }
  474. func (x *FeedChartStatisticsRequest) GetStartTime() string {
  475. if x != nil {
  476. return x.StartTime
  477. }
  478. return ""
  479. }
  480. func (x *FeedChartStatisticsRequest) GetEndTime() string {
  481. if x != nil {
  482. return x.EndTime
  483. }
  484. return ""
  485. }
  486. func (x *FeedChartStatisticsRequest) GetPastureId() int32 {
  487. if x != nil {
  488. return x.PastureId
  489. }
  490. return 0
  491. }
  492. func (x *FeedChartStatisticsRequest) GetStatus() int32 {
  493. if x != nil {
  494. return x.Status
  495. }
  496. return 0
  497. }
  498. func (x *FeedChartStatisticsRequest) GetApiType() string {
  499. if x != nil {
  500. return x.ApiType
  501. }
  502. return ""
  503. }
  504. // CowsAnalysisRequest 饲喂效率-牛群评估
  505. type CowsAnalysisRequest struct {
  506. state protoimpl.MessageState
  507. sizeCache protoimpl.SizeCache
  508. unknownFields protoimpl.UnknownFields
  509. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  510. ApiName string `protobuf:"bytes,2,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  511. PastureId int32 `protobuf:"varint,3,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  512. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  513. }
  514. func (x *CowsAnalysisRequest) Reset() {
  515. *x = CowsAnalysisRequest{}
  516. if protoimpl.UnsafeEnabled {
  517. mi := &file_backend_operation_statistic_proto_msgTypes[6]
  518. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  519. ms.StoreMessageInfo(mi)
  520. }
  521. }
  522. func (x *CowsAnalysisRequest) String() string {
  523. return protoimpl.X.MessageStringOf(x)
  524. }
  525. func (*CowsAnalysisRequest) ProtoMessage() {}
  526. func (x *CowsAnalysisRequest) ProtoReflect() protoreflect.Message {
  527. mi := &file_backend_operation_statistic_proto_msgTypes[6]
  528. if protoimpl.UnsafeEnabled && x != nil {
  529. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  530. if ms.LoadMessageInfo() == nil {
  531. ms.StoreMessageInfo(mi)
  532. }
  533. return ms
  534. }
  535. return mi.MessageOf(x)
  536. }
  537. // Deprecated: Use CowsAnalysisRequest.ProtoReflect.Descriptor instead.
  538. func (*CowsAnalysisRequest) Descriptor() ([]byte, []int) {
  539. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{6}
  540. }
  541. func (x *CowsAnalysisRequest) GetStartTime() string {
  542. if x != nil {
  543. return x.StartTime
  544. }
  545. return ""
  546. }
  547. func (x *CowsAnalysisRequest) GetApiName() string {
  548. if x != nil {
  549. return x.ApiName
  550. }
  551. return ""
  552. }
  553. func (x *CowsAnalysisRequest) GetPastureId() int32 {
  554. if x != nil {
  555. return x.PastureId
  556. }
  557. return 0
  558. }
  559. func (x *CowsAnalysisRequest) GetPagination() *PaginationModel {
  560. if x != nil {
  561. return x.Pagination
  562. }
  563. return nil
  564. }
  565. // AccuracyAggStatisticsRequest 准确性分析-汇总统计
  566. type AccuracyAggStatisticsRequest struct {
  567. state protoimpl.MessageState
  568. sizeCache protoimpl.SizeCache
  569. unknownFields protoimpl.UnknownFields
  570. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  571. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  572. PastureId int32 `protobuf:"varint,3,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  573. Fname string `protobuf:"bytes,4,opt,name=fname,proto3" json:"fname,omitempty"` // 查询名称
  574. Sort string `protobuf:"bytes,5,opt,name=sort,proto3" json:"sort,omitempty"`
  575. Status string `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
  576. Genre int32 `protobuf:"varint,7,opt,name=genre,proto3" json:"genre,omitempty"`
  577. Isdate int32 `protobuf:"varint,8,opt,name=isdate,proto3" json:"isdate,omitempty"`
  578. Hlwc1 int32 `protobuf:"varint,9,opt,name=hlwc1,proto3" json:"hlwc1,omitempty"`
  579. Hlwc2 int32 `protobuf:"varint,10,opt,name=hlwc2,proto3" json:"hlwc2,omitempty"`
  580. Hlzq1 int32 `protobuf:"varint,11,opt,name=hlzq1,proto3" json:"hlzq1,omitempty"`
  581. Hlzq2 int32 `protobuf:"varint,12,opt,name=hlzq2,proto3" json:"hlzq2,omitempty"`
  582. Hlzql1 int32 `protobuf:"varint,13,opt,name=hlzql1,proto3" json:"hlzql1,omitempty"`
  583. Hlzql2 int32 `protobuf:"varint,14,opt,name=hlzql2,proto3" json:"hlzql2,omitempty"`
  584. Slwc1 int32 `protobuf:"varint,15,opt,name=slwc1,proto3" json:"slwc1,omitempty"`
  585. Slwc2 int32 `protobuf:"varint,16,opt,name=slwc2,proto3" json:"slwc2,omitempty"`
  586. Slzq1 int32 `protobuf:"varint,17,opt,name=slzq1,proto3" json:"slzq1,omitempty"`
  587. Slzq2 int32 `protobuf:"varint,18,opt,name=slzq2,proto3" json:"slzq2,omitempty"`
  588. Slzql1 int32 `protobuf:"varint,19,opt,name=slzql1,proto3" json:"slzql1,omitempty"`
  589. Slzql2 int32 `protobuf:"varint,20,opt,name=slzql2,proto3" json:"slzql2,omitempty"`
  590. Projname string `protobuf:"bytes,21,opt,name=projname,proto3" json:"projname,omitempty"`
  591. Times string `protobuf:"bytes,22,opt,name=Times,proto3" json:"Times,omitempty"`
  592. IsError bool `protobuf:"varint,23,opt,name=is_error,json=isError,proto3" json:"is_error,omitempty"`
  593. }
  594. func (x *AccuracyAggStatisticsRequest) Reset() {
  595. *x = AccuracyAggStatisticsRequest{}
  596. if protoimpl.UnsafeEnabled {
  597. mi := &file_backend_operation_statistic_proto_msgTypes[7]
  598. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  599. ms.StoreMessageInfo(mi)
  600. }
  601. }
  602. func (x *AccuracyAggStatisticsRequest) String() string {
  603. return protoimpl.X.MessageStringOf(x)
  604. }
  605. func (*AccuracyAggStatisticsRequest) ProtoMessage() {}
  606. func (x *AccuracyAggStatisticsRequest) ProtoReflect() protoreflect.Message {
  607. mi := &file_backend_operation_statistic_proto_msgTypes[7]
  608. if protoimpl.UnsafeEnabled && x != nil {
  609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  610. if ms.LoadMessageInfo() == nil {
  611. ms.StoreMessageInfo(mi)
  612. }
  613. return ms
  614. }
  615. return mi.MessageOf(x)
  616. }
  617. // Deprecated: Use AccuracyAggStatisticsRequest.ProtoReflect.Descriptor instead.
  618. func (*AccuracyAggStatisticsRequest) Descriptor() ([]byte, []int) {
  619. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{7}
  620. }
  621. func (x *AccuracyAggStatisticsRequest) GetStartTime() string {
  622. if x != nil {
  623. return x.StartTime
  624. }
  625. return ""
  626. }
  627. func (x *AccuracyAggStatisticsRequest) GetEndTime() string {
  628. if x != nil {
  629. return x.EndTime
  630. }
  631. return ""
  632. }
  633. func (x *AccuracyAggStatisticsRequest) GetPastureId() int32 {
  634. if x != nil {
  635. return x.PastureId
  636. }
  637. return 0
  638. }
  639. func (x *AccuracyAggStatisticsRequest) GetFname() string {
  640. if x != nil {
  641. return x.Fname
  642. }
  643. return ""
  644. }
  645. func (x *AccuracyAggStatisticsRequest) GetSort() string {
  646. if x != nil {
  647. return x.Sort
  648. }
  649. return ""
  650. }
  651. func (x *AccuracyAggStatisticsRequest) GetStatus() string {
  652. if x != nil {
  653. return x.Status
  654. }
  655. return ""
  656. }
  657. func (x *AccuracyAggStatisticsRequest) GetGenre() int32 {
  658. if x != nil {
  659. return x.Genre
  660. }
  661. return 0
  662. }
  663. func (x *AccuracyAggStatisticsRequest) GetIsdate() int32 {
  664. if x != nil {
  665. return x.Isdate
  666. }
  667. return 0
  668. }
  669. func (x *AccuracyAggStatisticsRequest) GetHlwc1() int32 {
  670. if x != nil {
  671. return x.Hlwc1
  672. }
  673. return 0
  674. }
  675. func (x *AccuracyAggStatisticsRequest) GetHlwc2() int32 {
  676. if x != nil {
  677. return x.Hlwc2
  678. }
  679. return 0
  680. }
  681. func (x *AccuracyAggStatisticsRequest) GetHlzq1() int32 {
  682. if x != nil {
  683. return x.Hlzq1
  684. }
  685. return 0
  686. }
  687. func (x *AccuracyAggStatisticsRequest) GetHlzq2() int32 {
  688. if x != nil {
  689. return x.Hlzq2
  690. }
  691. return 0
  692. }
  693. func (x *AccuracyAggStatisticsRequest) GetHlzql1() int32 {
  694. if x != nil {
  695. return x.Hlzql1
  696. }
  697. return 0
  698. }
  699. func (x *AccuracyAggStatisticsRequest) GetHlzql2() int32 {
  700. if x != nil {
  701. return x.Hlzql2
  702. }
  703. return 0
  704. }
  705. func (x *AccuracyAggStatisticsRequest) GetSlwc1() int32 {
  706. if x != nil {
  707. return x.Slwc1
  708. }
  709. return 0
  710. }
  711. func (x *AccuracyAggStatisticsRequest) GetSlwc2() int32 {
  712. if x != nil {
  713. return x.Slwc2
  714. }
  715. return 0
  716. }
  717. func (x *AccuracyAggStatisticsRequest) GetSlzq1() int32 {
  718. if x != nil {
  719. return x.Slzq1
  720. }
  721. return 0
  722. }
  723. func (x *AccuracyAggStatisticsRequest) GetSlzq2() int32 {
  724. if x != nil {
  725. return x.Slzq2
  726. }
  727. return 0
  728. }
  729. func (x *AccuracyAggStatisticsRequest) GetSlzql1() int32 {
  730. if x != nil {
  731. return x.Slzql1
  732. }
  733. return 0
  734. }
  735. func (x *AccuracyAggStatisticsRequest) GetSlzql2() int32 {
  736. if x != nil {
  737. return x.Slzql2
  738. }
  739. return 0
  740. }
  741. func (x *AccuracyAggStatisticsRequest) GetProjname() string {
  742. if x != nil {
  743. return x.Projname
  744. }
  745. return ""
  746. }
  747. func (x *AccuracyAggStatisticsRequest) GetTimes() string {
  748. if x != nil {
  749. return x.Times
  750. }
  751. return ""
  752. }
  753. func (x *AccuracyAggStatisticsRequest) GetIsError() bool {
  754. if x != nil {
  755. return x.IsError
  756. }
  757. return false
  758. }
  759. // MixFeedStatisticsRequest 准确性分析-混料统计
  760. type MixFeedStatisticsRequest struct {
  761. state protoimpl.MessageState
  762. sizeCache protoimpl.SizeCache
  763. unknownFields protoimpl.UnknownFields
  764. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  765. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  766. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  767. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  768. EquipmentName string `protobuf:"bytes,5,opt,name=equipment_name,json=equipmentName,proto3" json:"equipment_name,omitempty"` // 设备名称
  769. TrainNumber string `protobuf:"bytes,6,opt,name=train_number,json=trainNumber,proto3" json:"train_number,omitempty"` // 车次
  770. ClassNumber int32 `protobuf:"varint,7,opt,name=class_number,json=classNumber,proto3" json:"class_number,omitempty"` // 班次
  771. FormulationName string `protobuf:"bytes,8,opt,name=formulation_name,json=formulationName,proto3" json:"formulation_name,omitempty"` // 配方名称
  772. JumpType int32 `protobuf:"varint,9,opt,name=jump_type,json=jumpType,proto3" json:"jump_type,omitempty"` // 跳转方式 0 手动跳转 1 自动跳转
  773. Hlwc1 int32 `protobuf:"varint,10,opt,name=hlwc1,proto3" json:"hlwc1,omitempty"` // 混料误差值1
  774. Hlwc2 int32 `protobuf:"varint,11,opt,name=hlwc2,proto3" json:"hlwc2,omitempty"` // 混料误差值2
  775. Hlzq1 int32 `protobuf:"varint,12,opt,name=hlzq1,proto3" json:"hlzq1,omitempty"` // 混料准确率1
  776. Hlzq2 int32 `protobuf:"varint,13,opt,name=hlzq2,proto3" json:"hlzq2,omitempty"` // 混料准确率2
  777. Hlzql1 int32 `protobuf:"varint,14,opt,name=hlzql1,proto3" json:"hlzql1,omitempty"` // 混料正确率1
  778. Hlzql2 int32 `protobuf:"varint,15,opt,name=hlzql2,proto3" json:"hlzql2,omitempty"` // 混料正确率2
  779. IsError bool `protobuf:"varint,16,opt,name=is_error,json=isError,proto3" json:"is_error,omitempty"` // 只看超出预设值数据
  780. ButtonType string `protobuf:"bytes,17,opt,name=button_type,json=buttonType,proto3" json:"button_type,omitempty"`
  781. IsUse string `protobuf:"bytes,18,opt,name=is_use,json=isUse,proto3" json:"is_use,omitempty"`
  782. Pagination *PaginationModel `protobuf:"bytes,19,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  783. }
  784. func (x *MixFeedStatisticsRequest) Reset() {
  785. *x = MixFeedStatisticsRequest{}
  786. if protoimpl.UnsafeEnabled {
  787. mi := &file_backend_operation_statistic_proto_msgTypes[8]
  788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  789. ms.StoreMessageInfo(mi)
  790. }
  791. }
  792. func (x *MixFeedStatisticsRequest) String() string {
  793. return protoimpl.X.MessageStringOf(x)
  794. }
  795. func (*MixFeedStatisticsRequest) ProtoMessage() {}
  796. func (x *MixFeedStatisticsRequest) ProtoReflect() protoreflect.Message {
  797. mi := &file_backend_operation_statistic_proto_msgTypes[8]
  798. if protoimpl.UnsafeEnabled && x != nil {
  799. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  800. if ms.LoadMessageInfo() == nil {
  801. ms.StoreMessageInfo(mi)
  802. }
  803. return ms
  804. }
  805. return mi.MessageOf(x)
  806. }
  807. // Deprecated: Use MixFeedStatisticsRequest.ProtoReflect.Descriptor instead.
  808. func (*MixFeedStatisticsRequest) Descriptor() ([]byte, []int) {
  809. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{8}
  810. }
  811. func (x *MixFeedStatisticsRequest) GetStartTime() string {
  812. if x != nil {
  813. return x.StartTime
  814. }
  815. return ""
  816. }
  817. func (x *MixFeedStatisticsRequest) GetEndTime() string {
  818. if x != nil {
  819. return x.EndTime
  820. }
  821. return ""
  822. }
  823. func (x *MixFeedStatisticsRequest) GetApiName() string {
  824. if x != nil {
  825. return x.ApiName
  826. }
  827. return ""
  828. }
  829. func (x *MixFeedStatisticsRequest) GetPastureId() int32 {
  830. if x != nil {
  831. return x.PastureId
  832. }
  833. return 0
  834. }
  835. func (x *MixFeedStatisticsRequest) GetEquipmentName() string {
  836. if x != nil {
  837. return x.EquipmentName
  838. }
  839. return ""
  840. }
  841. func (x *MixFeedStatisticsRequest) GetTrainNumber() string {
  842. if x != nil {
  843. return x.TrainNumber
  844. }
  845. return ""
  846. }
  847. func (x *MixFeedStatisticsRequest) GetClassNumber() int32 {
  848. if x != nil {
  849. return x.ClassNumber
  850. }
  851. return 0
  852. }
  853. func (x *MixFeedStatisticsRequest) GetFormulationName() string {
  854. if x != nil {
  855. return x.FormulationName
  856. }
  857. return ""
  858. }
  859. func (x *MixFeedStatisticsRequest) GetJumpType() int32 {
  860. if x != nil {
  861. return x.JumpType
  862. }
  863. return 0
  864. }
  865. func (x *MixFeedStatisticsRequest) GetHlwc1() int32 {
  866. if x != nil {
  867. return x.Hlwc1
  868. }
  869. return 0
  870. }
  871. func (x *MixFeedStatisticsRequest) GetHlwc2() int32 {
  872. if x != nil {
  873. return x.Hlwc2
  874. }
  875. return 0
  876. }
  877. func (x *MixFeedStatisticsRequest) GetHlzq1() int32 {
  878. if x != nil {
  879. return x.Hlzq1
  880. }
  881. return 0
  882. }
  883. func (x *MixFeedStatisticsRequest) GetHlzq2() int32 {
  884. if x != nil {
  885. return x.Hlzq2
  886. }
  887. return 0
  888. }
  889. func (x *MixFeedStatisticsRequest) GetHlzql1() int32 {
  890. if x != nil {
  891. return x.Hlzql1
  892. }
  893. return 0
  894. }
  895. func (x *MixFeedStatisticsRequest) GetHlzql2() int32 {
  896. if x != nil {
  897. return x.Hlzql2
  898. }
  899. return 0
  900. }
  901. func (x *MixFeedStatisticsRequest) GetIsError() bool {
  902. if x != nil {
  903. return x.IsError
  904. }
  905. return false
  906. }
  907. func (x *MixFeedStatisticsRequest) GetButtonType() string {
  908. if x != nil {
  909. return x.ButtonType
  910. }
  911. return ""
  912. }
  913. func (x *MixFeedStatisticsRequest) GetIsUse() string {
  914. if x != nil {
  915. return x.IsUse
  916. }
  917. return ""
  918. }
  919. func (x *MixFeedStatisticsRequest) GetPagination() *PaginationModel {
  920. if x != nil {
  921. return x.Pagination
  922. }
  923. return nil
  924. }
  925. // SprinkleStatisticsRequest 准确性分析-撒料统计
  926. type SprinkleStatisticsRequest struct {
  927. state protoimpl.MessageState
  928. sizeCache protoimpl.SizeCache
  929. unknownFields protoimpl.UnknownFields
  930. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  931. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  932. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  933. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  934. EquipmentName string `protobuf:"bytes,5,opt,name=equipment_name,json=equipmentName,proto3" json:"equipment_name,omitempty"` // tmr设备名称
  935. TrainNumber string `protobuf:"bytes,6,opt,name=train_number,json=trainNumber,proto3" json:"train_number,omitempty"` // 车次
  936. ClassNumber int32 `protobuf:"varint,7,opt,name=class_number,json=classNumber,proto3" json:"class_number,omitempty"` // 班次
  937. FormulationName string `protobuf:"bytes,8,opt,name=formulation_name,json=formulationName,proto3" json:"formulation_name,omitempty"` // 配方名称
  938. BarnName string `protobuf:"bytes,9,opt,name=barn_name,json=barnName,proto3" json:"barn_name,omitempty"` // 栏舍名称
  939. JumpType int32 `protobuf:"varint,10,opt,name=jump_type,json=jumpType,proto3" json:"jump_type,omitempty"` // 跳转方式 0 手动跳转 1 自动跳转
  940. Slwc1 int32 `protobuf:"varint,11,opt,name=slwc1,proto3" json:"slwc1,omitempty"` // 撒料误差值1
  941. Slwc2 int32 `protobuf:"varint,12,opt,name=slwc2,proto3" json:"slwc2,omitempty"` // 撒料误差值2
  942. Slzq1 int32 `protobuf:"varint,13,opt,name=slzq1,proto3" json:"slzq1,omitempty"` // 撒料准确率1
  943. Slzq2 int32 `protobuf:"varint,14,opt,name=slzq2,proto3" json:"slzq2,omitempty"` // 撒料准确率2
  944. Slzql1 int32 `protobuf:"varint,15,opt,name=slzql1,proto3" json:"slzql1,omitempty"` // 撒料正确率1
  945. Slzql2 int32 `protobuf:"varint,16,opt,name=slzql2,proto3" json:"slzql2,omitempty"` // 撒料正确率2
  946. IsError bool `protobuf:"varint,17,opt,name=is_error,json=isError,proto3" json:"is_error,omitempty"` // 只看超出预设值数据
  947. ButtonType string `protobuf:"bytes,18,opt,name=button_type,json=buttonType,proto3" json:"button_type,omitempty"`
  948. IsUse string `protobuf:"bytes,19,opt,name=is_use,json=isUse,proto3" json:"is_use,omitempty"`
  949. Pagination *PaginationModel `protobuf:"bytes,20,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  950. }
  951. func (x *SprinkleStatisticsRequest) Reset() {
  952. *x = SprinkleStatisticsRequest{}
  953. if protoimpl.UnsafeEnabled {
  954. mi := &file_backend_operation_statistic_proto_msgTypes[9]
  955. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  956. ms.StoreMessageInfo(mi)
  957. }
  958. }
  959. func (x *SprinkleStatisticsRequest) String() string {
  960. return protoimpl.X.MessageStringOf(x)
  961. }
  962. func (*SprinkleStatisticsRequest) ProtoMessage() {}
  963. func (x *SprinkleStatisticsRequest) ProtoReflect() protoreflect.Message {
  964. mi := &file_backend_operation_statistic_proto_msgTypes[9]
  965. if protoimpl.UnsafeEnabled && x != nil {
  966. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  967. if ms.LoadMessageInfo() == nil {
  968. ms.StoreMessageInfo(mi)
  969. }
  970. return ms
  971. }
  972. return mi.MessageOf(x)
  973. }
  974. // Deprecated: Use SprinkleStatisticsRequest.ProtoReflect.Descriptor instead.
  975. func (*SprinkleStatisticsRequest) Descriptor() ([]byte, []int) {
  976. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{9}
  977. }
  978. func (x *SprinkleStatisticsRequest) GetStartTime() string {
  979. if x != nil {
  980. return x.StartTime
  981. }
  982. return ""
  983. }
  984. func (x *SprinkleStatisticsRequest) GetEndTime() string {
  985. if x != nil {
  986. return x.EndTime
  987. }
  988. return ""
  989. }
  990. func (x *SprinkleStatisticsRequest) GetApiName() string {
  991. if x != nil {
  992. return x.ApiName
  993. }
  994. return ""
  995. }
  996. func (x *SprinkleStatisticsRequest) GetPastureId() int32 {
  997. if x != nil {
  998. return x.PastureId
  999. }
  1000. return 0
  1001. }
  1002. func (x *SprinkleStatisticsRequest) GetEquipmentName() string {
  1003. if x != nil {
  1004. return x.EquipmentName
  1005. }
  1006. return ""
  1007. }
  1008. func (x *SprinkleStatisticsRequest) GetTrainNumber() string {
  1009. if x != nil {
  1010. return x.TrainNumber
  1011. }
  1012. return ""
  1013. }
  1014. func (x *SprinkleStatisticsRequest) GetClassNumber() int32 {
  1015. if x != nil {
  1016. return x.ClassNumber
  1017. }
  1018. return 0
  1019. }
  1020. func (x *SprinkleStatisticsRequest) GetFormulationName() string {
  1021. if x != nil {
  1022. return x.FormulationName
  1023. }
  1024. return ""
  1025. }
  1026. func (x *SprinkleStatisticsRequest) GetBarnName() string {
  1027. if x != nil {
  1028. return x.BarnName
  1029. }
  1030. return ""
  1031. }
  1032. func (x *SprinkleStatisticsRequest) GetJumpType() int32 {
  1033. if x != nil {
  1034. return x.JumpType
  1035. }
  1036. return 0
  1037. }
  1038. func (x *SprinkleStatisticsRequest) GetSlwc1() int32 {
  1039. if x != nil {
  1040. return x.Slwc1
  1041. }
  1042. return 0
  1043. }
  1044. func (x *SprinkleStatisticsRequest) GetSlwc2() int32 {
  1045. if x != nil {
  1046. return x.Slwc2
  1047. }
  1048. return 0
  1049. }
  1050. func (x *SprinkleStatisticsRequest) GetSlzq1() int32 {
  1051. if x != nil {
  1052. return x.Slzq1
  1053. }
  1054. return 0
  1055. }
  1056. func (x *SprinkleStatisticsRequest) GetSlzq2() int32 {
  1057. if x != nil {
  1058. return x.Slzq2
  1059. }
  1060. return 0
  1061. }
  1062. func (x *SprinkleStatisticsRequest) GetSlzql1() int32 {
  1063. if x != nil {
  1064. return x.Slzql1
  1065. }
  1066. return 0
  1067. }
  1068. func (x *SprinkleStatisticsRequest) GetSlzql2() int32 {
  1069. if x != nil {
  1070. return x.Slzql2
  1071. }
  1072. return 0
  1073. }
  1074. func (x *SprinkleStatisticsRequest) GetIsError() bool {
  1075. if x != nil {
  1076. return x.IsError
  1077. }
  1078. return false
  1079. }
  1080. func (x *SprinkleStatisticsRequest) GetButtonType() string {
  1081. if x != nil {
  1082. return x.ButtonType
  1083. }
  1084. return ""
  1085. }
  1086. func (x *SprinkleStatisticsRequest) GetIsUse() string {
  1087. if x != nil {
  1088. return x.IsUse
  1089. }
  1090. return ""
  1091. }
  1092. func (x *SprinkleStatisticsRequest) GetPagination() *PaginationModel {
  1093. if x != nil {
  1094. return x.Pagination
  1095. }
  1096. return nil
  1097. }
  1098. // GetDataByNameRequest
  1099. type GetDataByNameRequest struct {
  1100. state protoimpl.MessageState
  1101. sizeCache protoimpl.SizeCache
  1102. unknownFields protoimpl.UnknownFields
  1103. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  1104. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  1105. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1106. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1107. }
  1108. func (x *GetDataByNameRequest) Reset() {
  1109. *x = GetDataByNameRequest{}
  1110. if protoimpl.UnsafeEnabled {
  1111. mi := &file_backend_operation_statistic_proto_msgTypes[10]
  1112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1113. ms.StoreMessageInfo(mi)
  1114. }
  1115. }
  1116. func (x *GetDataByNameRequest) String() string {
  1117. return protoimpl.X.MessageStringOf(x)
  1118. }
  1119. func (*GetDataByNameRequest) ProtoMessage() {}
  1120. func (x *GetDataByNameRequest) ProtoReflect() protoreflect.Message {
  1121. mi := &file_backend_operation_statistic_proto_msgTypes[10]
  1122. if protoimpl.UnsafeEnabled && x != nil {
  1123. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1124. if ms.LoadMessageInfo() == nil {
  1125. ms.StoreMessageInfo(mi)
  1126. }
  1127. return ms
  1128. }
  1129. return mi.MessageOf(x)
  1130. }
  1131. // Deprecated: Use GetDataByNameRequest.ProtoReflect.Descriptor instead.
  1132. func (*GetDataByNameRequest) Descriptor() ([]byte, []int) {
  1133. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{10}
  1134. }
  1135. func (x *GetDataByNameRequest) GetStartTime() string {
  1136. if x != nil {
  1137. return x.StartTime
  1138. }
  1139. return ""
  1140. }
  1141. func (x *GetDataByNameRequest) GetEndTime() string {
  1142. if x != nil {
  1143. return x.EndTime
  1144. }
  1145. return ""
  1146. }
  1147. func (x *GetDataByNameRequest) GetApiName() string {
  1148. if x != nil {
  1149. return x.ApiName
  1150. }
  1151. return ""
  1152. }
  1153. func (x *GetDataByNameRequest) GetPastureId() int32 {
  1154. if x != nil {
  1155. return x.PastureId
  1156. }
  1157. return 0
  1158. }
  1159. // ProcessAnalysisRequest 过程分析
  1160. type ProcessAnalysisRequest struct {
  1161. state protoimpl.MessageState
  1162. sizeCache protoimpl.SizeCache
  1163. unknownFields protoimpl.UnknownFields
  1164. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  1165. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  1166. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1167. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1168. PlanType int32 `protobuf:"varint,5,opt,name=plan_type,json=planType,proto3" json:"plan_type,omitempty"` // 计划类型
  1169. TmrName []string `protobuf:"bytes,6,rep,name=tmr_name,json=tmrName,proto3" json:"tmr_name,omitempty"` // TMR名称
  1170. ErrorRange string `protobuf:"bytes,7,opt,name=error_range,json=errorRange,proto3" json:"error_range,omitempty"` // 误差筛选范围
  1171. WorkStatus string `protobuf:"bytes,8,opt,name=work_status,json=workStatus,proto3" json:"work_status,omitempty"` // 工作状态
  1172. MixFeedType string `protobuf:"bytes,9,opt,name=mix_feed_type,json=mixFeedType,proto3" json:"mix_feed_type,omitempty"` // 混料类别
  1173. Hlwc1 int32 `protobuf:"varint,10,opt,name=hlwc1,proto3" json:"hlwc1,omitempty"` // 混料误差值1
  1174. Hlwc2 int32 `protobuf:"varint,11,opt,name=hlwc2,proto3" json:"hlwc2,omitempty"` // 混料误差值2
  1175. Hlzq1 int32 `protobuf:"varint,12,opt,name=hlzq1,proto3" json:"hlzq1,omitempty"` // 混料准确率1
  1176. Hlzq2 int32 `protobuf:"varint,13,opt,name=hlzq2,proto3" json:"hlzq2,omitempty"` // 混料准确率2
  1177. Slwc1 int32 `protobuf:"varint,14,opt,name=slwc1,proto3" json:"slwc1,omitempty"` // 撒料误差值1
  1178. Slwc2 int32 `protobuf:"varint,15,opt,name=slwc2,proto3" json:"slwc2,omitempty"` // 撒料误差值2
  1179. Slzq1 int32 `protobuf:"varint,16,opt,name=slzq1,proto3" json:"slzq1,omitempty"` // 撒料准确率1
  1180. Slzq2 int32 `protobuf:"varint,17,opt,name=slzq2,proto3" json:"slzq2,omitempty"` // 撒料准确率2
  1181. Pagination *PaginationModel `protobuf:"bytes,18,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1182. }
  1183. func (x *ProcessAnalysisRequest) Reset() {
  1184. *x = ProcessAnalysisRequest{}
  1185. if protoimpl.UnsafeEnabled {
  1186. mi := &file_backend_operation_statistic_proto_msgTypes[11]
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. ms.StoreMessageInfo(mi)
  1189. }
  1190. }
  1191. func (x *ProcessAnalysisRequest) String() string {
  1192. return protoimpl.X.MessageStringOf(x)
  1193. }
  1194. func (*ProcessAnalysisRequest) ProtoMessage() {}
  1195. func (x *ProcessAnalysisRequest) ProtoReflect() protoreflect.Message {
  1196. mi := &file_backend_operation_statistic_proto_msgTypes[11]
  1197. if protoimpl.UnsafeEnabled && x != nil {
  1198. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1199. if ms.LoadMessageInfo() == nil {
  1200. ms.StoreMessageInfo(mi)
  1201. }
  1202. return ms
  1203. }
  1204. return mi.MessageOf(x)
  1205. }
  1206. // Deprecated: Use ProcessAnalysisRequest.ProtoReflect.Descriptor instead.
  1207. func (*ProcessAnalysisRequest) Descriptor() ([]byte, []int) {
  1208. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{11}
  1209. }
  1210. func (x *ProcessAnalysisRequest) GetStartTime() string {
  1211. if x != nil {
  1212. return x.StartTime
  1213. }
  1214. return ""
  1215. }
  1216. func (x *ProcessAnalysisRequest) GetEndTime() string {
  1217. if x != nil {
  1218. return x.EndTime
  1219. }
  1220. return ""
  1221. }
  1222. func (x *ProcessAnalysisRequest) GetApiName() string {
  1223. if x != nil {
  1224. return x.ApiName
  1225. }
  1226. return ""
  1227. }
  1228. func (x *ProcessAnalysisRequest) GetPastureId() int32 {
  1229. if x != nil {
  1230. return x.PastureId
  1231. }
  1232. return 0
  1233. }
  1234. func (x *ProcessAnalysisRequest) GetPlanType() int32 {
  1235. if x != nil {
  1236. return x.PlanType
  1237. }
  1238. return 0
  1239. }
  1240. func (x *ProcessAnalysisRequest) GetTmrName() []string {
  1241. if x != nil {
  1242. return x.TmrName
  1243. }
  1244. return nil
  1245. }
  1246. func (x *ProcessAnalysisRequest) GetErrorRange() string {
  1247. if x != nil {
  1248. return x.ErrorRange
  1249. }
  1250. return ""
  1251. }
  1252. func (x *ProcessAnalysisRequest) GetWorkStatus() string {
  1253. if x != nil {
  1254. return x.WorkStatus
  1255. }
  1256. return ""
  1257. }
  1258. func (x *ProcessAnalysisRequest) GetMixFeedType() string {
  1259. if x != nil {
  1260. return x.MixFeedType
  1261. }
  1262. return ""
  1263. }
  1264. func (x *ProcessAnalysisRequest) GetHlwc1() int32 {
  1265. if x != nil {
  1266. return x.Hlwc1
  1267. }
  1268. return 0
  1269. }
  1270. func (x *ProcessAnalysisRequest) GetHlwc2() int32 {
  1271. if x != nil {
  1272. return x.Hlwc2
  1273. }
  1274. return 0
  1275. }
  1276. func (x *ProcessAnalysisRequest) GetHlzq1() int32 {
  1277. if x != nil {
  1278. return x.Hlzq1
  1279. }
  1280. return 0
  1281. }
  1282. func (x *ProcessAnalysisRequest) GetHlzq2() int32 {
  1283. if x != nil {
  1284. return x.Hlzq2
  1285. }
  1286. return 0
  1287. }
  1288. func (x *ProcessAnalysisRequest) GetSlwc1() int32 {
  1289. if x != nil {
  1290. return x.Slwc1
  1291. }
  1292. return 0
  1293. }
  1294. func (x *ProcessAnalysisRequest) GetSlwc2() int32 {
  1295. if x != nil {
  1296. return x.Slwc2
  1297. }
  1298. return 0
  1299. }
  1300. func (x *ProcessAnalysisRequest) GetSlzq1() int32 {
  1301. if x != nil {
  1302. return x.Slzq1
  1303. }
  1304. return 0
  1305. }
  1306. func (x *ProcessAnalysisRequest) GetSlzq2() int32 {
  1307. if x != nil {
  1308. return x.Slzq2
  1309. }
  1310. return 0
  1311. }
  1312. func (x *ProcessAnalysisRequest) GetPagination() *PaginationModel {
  1313. if x != nil {
  1314. return x.Pagination
  1315. }
  1316. return nil
  1317. }
  1318. type TrainNumberRequest struct {
  1319. state protoimpl.MessageState
  1320. sizeCache protoimpl.SizeCache
  1321. unknownFields protoimpl.UnknownFields
  1322. ApiName string `protobuf:"bytes,1,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1323. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1324. InfoName string `protobuf:"bytes,3,opt,name=info_name,json=infoName,proto3" json:"info_name,omitempty"`
  1325. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1326. }
  1327. func (x *TrainNumberRequest) Reset() {
  1328. *x = TrainNumberRequest{}
  1329. if protoimpl.UnsafeEnabled {
  1330. mi := &file_backend_operation_statistic_proto_msgTypes[12]
  1331. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1332. ms.StoreMessageInfo(mi)
  1333. }
  1334. }
  1335. func (x *TrainNumberRequest) String() string {
  1336. return protoimpl.X.MessageStringOf(x)
  1337. }
  1338. func (*TrainNumberRequest) ProtoMessage() {}
  1339. func (x *TrainNumberRequest) ProtoReflect() protoreflect.Message {
  1340. mi := &file_backend_operation_statistic_proto_msgTypes[12]
  1341. if protoimpl.UnsafeEnabled && x != nil {
  1342. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1343. if ms.LoadMessageInfo() == nil {
  1344. ms.StoreMessageInfo(mi)
  1345. }
  1346. return ms
  1347. }
  1348. return mi.MessageOf(x)
  1349. }
  1350. // Deprecated: Use TrainNumberRequest.ProtoReflect.Descriptor instead.
  1351. func (*TrainNumberRequest) Descriptor() ([]byte, []int) {
  1352. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{12}
  1353. }
  1354. func (x *TrainNumberRequest) GetApiName() string {
  1355. if x != nil {
  1356. return x.ApiName
  1357. }
  1358. return ""
  1359. }
  1360. func (x *TrainNumberRequest) GetPastureId() int32 {
  1361. if x != nil {
  1362. return x.PastureId
  1363. }
  1364. return 0
  1365. }
  1366. func (x *TrainNumberRequest) GetInfoName() string {
  1367. if x != nil {
  1368. return x.InfoName
  1369. }
  1370. return ""
  1371. }
  1372. func (x *TrainNumberRequest) GetPagination() *PaginationModel {
  1373. if x != nil {
  1374. return x.Pagination
  1375. }
  1376. return nil
  1377. }
  1378. type TrainNumberResponse struct {
  1379. state protoimpl.MessageState
  1380. sizeCache protoimpl.SizeCache
  1381. unknownFields protoimpl.UnknownFields
  1382. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1383. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1384. Data *TrainNumberData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1385. }
  1386. func (x *TrainNumberResponse) Reset() {
  1387. *x = TrainNumberResponse{}
  1388. if protoimpl.UnsafeEnabled {
  1389. mi := &file_backend_operation_statistic_proto_msgTypes[13]
  1390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1391. ms.StoreMessageInfo(mi)
  1392. }
  1393. }
  1394. func (x *TrainNumberResponse) String() string {
  1395. return protoimpl.X.MessageStringOf(x)
  1396. }
  1397. func (*TrainNumberResponse) ProtoMessage() {}
  1398. func (x *TrainNumberResponse) ProtoReflect() protoreflect.Message {
  1399. mi := &file_backend_operation_statistic_proto_msgTypes[13]
  1400. if protoimpl.UnsafeEnabled && x != nil {
  1401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1402. if ms.LoadMessageInfo() == nil {
  1403. ms.StoreMessageInfo(mi)
  1404. }
  1405. return ms
  1406. }
  1407. return mi.MessageOf(x)
  1408. }
  1409. // Deprecated: Use TrainNumberResponse.ProtoReflect.Descriptor instead.
  1410. func (*TrainNumberResponse) Descriptor() ([]byte, []int) {
  1411. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{13}
  1412. }
  1413. func (x *TrainNumberResponse) GetCode() int32 {
  1414. if x != nil {
  1415. return x.Code
  1416. }
  1417. return 0
  1418. }
  1419. func (x *TrainNumberResponse) GetMsg() string {
  1420. if x != nil {
  1421. return x.Msg
  1422. }
  1423. return ""
  1424. }
  1425. func (x *TrainNumberResponse) GetData() *TrainNumberData {
  1426. if x != nil {
  1427. return x.Data
  1428. }
  1429. return nil
  1430. }
  1431. type TrainNumberData struct {
  1432. state protoimpl.MessageState
  1433. sizeCache protoimpl.SizeCache
  1434. unknownFields protoimpl.UnknownFields
  1435. List []*FormulaOptionEnum `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1436. }
  1437. func (x *TrainNumberData) Reset() {
  1438. *x = TrainNumberData{}
  1439. if protoimpl.UnsafeEnabled {
  1440. mi := &file_backend_operation_statistic_proto_msgTypes[14]
  1441. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1442. ms.StoreMessageInfo(mi)
  1443. }
  1444. }
  1445. func (x *TrainNumberData) String() string {
  1446. return protoimpl.X.MessageStringOf(x)
  1447. }
  1448. func (*TrainNumberData) ProtoMessage() {}
  1449. func (x *TrainNumberData) ProtoReflect() protoreflect.Message {
  1450. mi := &file_backend_operation_statistic_proto_msgTypes[14]
  1451. if protoimpl.UnsafeEnabled && x != nil {
  1452. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1453. if ms.LoadMessageInfo() == nil {
  1454. ms.StoreMessageInfo(mi)
  1455. }
  1456. return ms
  1457. }
  1458. return mi.MessageOf(x)
  1459. }
  1460. // Deprecated: Use TrainNumberData.ProtoReflect.Descriptor instead.
  1461. func (*TrainNumberData) Descriptor() ([]byte, []int) {
  1462. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{14}
  1463. }
  1464. func (x *TrainNumberData) GetList() []*FormulaOptionEnum {
  1465. if x != nil {
  1466. return x.List
  1467. }
  1468. return nil
  1469. }
  1470. // 首页 dashboard 准确性分析
  1471. type SearchAnalysisAccuracyRequest struct {
  1472. state protoimpl.MessageState
  1473. sizeCache protoimpl.SizeCache
  1474. unknownFields protoimpl.UnknownFields
  1475. CattleParentCategoryId CattleCategoryParent_Kind `protobuf:"varint,1,opt,name=cattle_parent_category_id,json=cattleParentCategoryId,proto3,enum=backend.operation.CattleCategoryParent_Kind" json:"cattle_parent_category_id,omitempty"` // 牧畜分类id 泌乳牛
  1476. FeedFormulaId int32 `protobuf:"varint,2,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  1477. StartDate string `protobuf:"bytes,3,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` // 开始时间
  1478. EndDate string `protobuf:"bytes,4,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"` // 结束时间
  1479. PastureIds []int32 `protobuf:"varint,5,rep,packed,name=pasture_ids,json=pastureIds,proto3" json:"pasture_ids,omitempty"` //牧场ids
  1480. }
  1481. func (x *SearchAnalysisAccuracyRequest) Reset() {
  1482. *x = SearchAnalysisAccuracyRequest{}
  1483. if protoimpl.UnsafeEnabled {
  1484. mi := &file_backend_operation_statistic_proto_msgTypes[15]
  1485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1486. ms.StoreMessageInfo(mi)
  1487. }
  1488. }
  1489. func (x *SearchAnalysisAccuracyRequest) String() string {
  1490. return protoimpl.X.MessageStringOf(x)
  1491. }
  1492. func (*SearchAnalysisAccuracyRequest) ProtoMessage() {}
  1493. func (x *SearchAnalysisAccuracyRequest) ProtoReflect() protoreflect.Message {
  1494. mi := &file_backend_operation_statistic_proto_msgTypes[15]
  1495. if protoimpl.UnsafeEnabled && x != nil {
  1496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1497. if ms.LoadMessageInfo() == nil {
  1498. ms.StoreMessageInfo(mi)
  1499. }
  1500. return ms
  1501. }
  1502. return mi.MessageOf(x)
  1503. }
  1504. // Deprecated: Use SearchAnalysisAccuracyRequest.ProtoReflect.Descriptor instead.
  1505. func (*SearchAnalysisAccuracyRequest) Descriptor() ([]byte, []int) {
  1506. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{15}
  1507. }
  1508. func (x *SearchAnalysisAccuracyRequest) GetCattleParentCategoryId() CattleCategoryParent_Kind {
  1509. if x != nil {
  1510. return x.CattleParentCategoryId
  1511. }
  1512. return CattleCategoryParent_INVALID
  1513. }
  1514. func (x *SearchAnalysisAccuracyRequest) GetFeedFormulaId() int32 {
  1515. if x != nil {
  1516. return x.FeedFormulaId
  1517. }
  1518. return 0
  1519. }
  1520. func (x *SearchAnalysisAccuracyRequest) GetStartDate() string {
  1521. if x != nil {
  1522. return x.StartDate
  1523. }
  1524. return ""
  1525. }
  1526. func (x *SearchAnalysisAccuracyRequest) GetEndDate() string {
  1527. if x != nil {
  1528. return x.EndDate
  1529. }
  1530. return ""
  1531. }
  1532. func (x *SearchAnalysisAccuracyRequest) GetPastureIds() []int32 {
  1533. if x != nil {
  1534. return x.PastureIds
  1535. }
  1536. return nil
  1537. }
  1538. type SearchAnalysisAccuracyResponse struct {
  1539. state protoimpl.MessageState
  1540. sizeCache protoimpl.SizeCache
  1541. unknownFields protoimpl.UnknownFields
  1542. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1543. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1544. Data *AnalysisAccuracy `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1545. }
  1546. func (x *SearchAnalysisAccuracyResponse) Reset() {
  1547. *x = SearchAnalysisAccuracyResponse{}
  1548. if protoimpl.UnsafeEnabled {
  1549. mi := &file_backend_operation_statistic_proto_msgTypes[16]
  1550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1551. ms.StoreMessageInfo(mi)
  1552. }
  1553. }
  1554. func (x *SearchAnalysisAccuracyResponse) String() string {
  1555. return protoimpl.X.MessageStringOf(x)
  1556. }
  1557. func (*SearchAnalysisAccuracyResponse) ProtoMessage() {}
  1558. func (x *SearchAnalysisAccuracyResponse) ProtoReflect() protoreflect.Message {
  1559. mi := &file_backend_operation_statistic_proto_msgTypes[16]
  1560. if protoimpl.UnsafeEnabled && x != nil {
  1561. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1562. if ms.LoadMessageInfo() == nil {
  1563. ms.StoreMessageInfo(mi)
  1564. }
  1565. return ms
  1566. }
  1567. return mi.MessageOf(x)
  1568. }
  1569. // Deprecated: Use SearchAnalysisAccuracyResponse.ProtoReflect.Descriptor instead.
  1570. func (*SearchAnalysisAccuracyResponse) Descriptor() ([]byte, []int) {
  1571. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{16}
  1572. }
  1573. func (x *SearchAnalysisAccuracyResponse) GetCode() int32 {
  1574. if x != nil {
  1575. return x.Code
  1576. }
  1577. return 0
  1578. }
  1579. func (x *SearchAnalysisAccuracyResponse) GetMsg() string {
  1580. if x != nil {
  1581. return x.Msg
  1582. }
  1583. return ""
  1584. }
  1585. func (x *SearchAnalysisAccuracyResponse) GetData() *AnalysisAccuracy {
  1586. if x != nil {
  1587. return x.Data
  1588. }
  1589. return nil
  1590. }
  1591. type AnalysisAccuracy struct {
  1592. state protoimpl.MessageState
  1593. sizeCache protoimpl.SizeCache
  1594. unknownFields protoimpl.UnknownFields
  1595. Chart *Chart `protobuf:"bytes,1,opt,name=chart,proto3" json:"chart,omitempty"`
  1596. Table *Table `protobuf:"bytes,2,opt,name=table,proto3" json:"table,omitempty"`
  1597. }
  1598. func (x *AnalysisAccuracy) Reset() {
  1599. *x = AnalysisAccuracy{}
  1600. if protoimpl.UnsafeEnabled {
  1601. mi := &file_backend_operation_statistic_proto_msgTypes[17]
  1602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1603. ms.StoreMessageInfo(mi)
  1604. }
  1605. }
  1606. func (x *AnalysisAccuracy) String() string {
  1607. return protoimpl.X.MessageStringOf(x)
  1608. }
  1609. func (*AnalysisAccuracy) ProtoMessage() {}
  1610. func (x *AnalysisAccuracy) ProtoReflect() protoreflect.Message {
  1611. mi := &file_backend_operation_statistic_proto_msgTypes[17]
  1612. if protoimpl.UnsafeEnabled && x != nil {
  1613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1614. if ms.LoadMessageInfo() == nil {
  1615. ms.StoreMessageInfo(mi)
  1616. }
  1617. return ms
  1618. }
  1619. return mi.MessageOf(x)
  1620. }
  1621. // Deprecated: Use AnalysisAccuracy.ProtoReflect.Descriptor instead.
  1622. func (*AnalysisAccuracy) Descriptor() ([]byte, []int) {
  1623. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{17}
  1624. }
  1625. func (x *AnalysisAccuracy) GetChart() *Chart {
  1626. if x != nil {
  1627. return x.Chart
  1628. }
  1629. return nil
  1630. }
  1631. func (x *AnalysisAccuracy) GetTable() *Table {
  1632. if x != nil {
  1633. return x.Table
  1634. }
  1635. return nil
  1636. }
  1637. type Chart struct {
  1638. state protoimpl.MessageState
  1639. sizeCache protoimpl.SizeCache
  1640. unknownFields protoimpl.UnknownFields
  1641. MixedFodderAccurateRatio *CommonValueRatio `protobuf:"bytes,4,opt,name=mixed_fodder_accurate_ratio,json=mixedFodderAccurateRatio,proto3" json:"mixed_fodder_accurate_ratio,omitempty"` // 混料准确率
  1642. MixedFodderCorrectRatio *CommonValueRatio `protobuf:"bytes,5,opt,name=mixed_fodder_correct_ratio,json=mixedFodderCorrectRatio,proto3" json:"mixed_fodder_correct_ratio,omitempty"` // 混料正确率
  1643. SprinkleFodderAccurateRatio *CommonValueRatio `protobuf:"bytes,6,opt,name=sprinkle_fodder_accurate_ratio,json=sprinkleFodderAccurateRatio,proto3" json:"sprinkle_fodder_accurate_ratio,omitempty"` // 撒料准确率
  1644. SprinkleFodderCorrectRatio *CommonValueRatio `protobuf:"bytes,7,opt,name=sprinkle_fodder_correct_ratio,json=sprinkleFodderCorrectRatio,proto3" json:"sprinkle_fodder_correct_ratio,omitempty"` // 撒料正确率
  1645. }
  1646. func (x *Chart) Reset() {
  1647. *x = Chart{}
  1648. if protoimpl.UnsafeEnabled {
  1649. mi := &file_backend_operation_statistic_proto_msgTypes[18]
  1650. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1651. ms.StoreMessageInfo(mi)
  1652. }
  1653. }
  1654. func (x *Chart) String() string {
  1655. return protoimpl.X.MessageStringOf(x)
  1656. }
  1657. func (*Chart) ProtoMessage() {}
  1658. func (x *Chart) ProtoReflect() protoreflect.Message {
  1659. mi := &file_backend_operation_statistic_proto_msgTypes[18]
  1660. if protoimpl.UnsafeEnabled && x != nil {
  1661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1662. if ms.LoadMessageInfo() == nil {
  1663. ms.StoreMessageInfo(mi)
  1664. }
  1665. return ms
  1666. }
  1667. return mi.MessageOf(x)
  1668. }
  1669. // Deprecated: Use Chart.ProtoReflect.Descriptor instead.
  1670. func (*Chart) Descriptor() ([]byte, []int) {
  1671. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{18}
  1672. }
  1673. func (x *Chart) GetMixedFodderAccurateRatio() *CommonValueRatio {
  1674. if x != nil {
  1675. return x.MixedFodderAccurateRatio
  1676. }
  1677. return nil
  1678. }
  1679. func (x *Chart) GetMixedFodderCorrectRatio() *CommonValueRatio {
  1680. if x != nil {
  1681. return x.MixedFodderCorrectRatio
  1682. }
  1683. return nil
  1684. }
  1685. func (x *Chart) GetSprinkleFodderAccurateRatio() *CommonValueRatio {
  1686. if x != nil {
  1687. return x.SprinkleFodderAccurateRatio
  1688. }
  1689. return nil
  1690. }
  1691. func (x *Chart) GetSprinkleFodderCorrectRatio() *CommonValueRatio {
  1692. if x != nil {
  1693. return x.SprinkleFodderCorrectRatio
  1694. }
  1695. return nil
  1696. }
  1697. type Table struct {
  1698. state protoimpl.MessageState
  1699. sizeCache protoimpl.SizeCache
  1700. unknownFields protoimpl.UnknownFields
  1701. TableList []*Table_TableList `protobuf:"bytes,1,rep,name=table_list,json=tableList,proto3" json:"table_list,omitempty"`
  1702. }
  1703. func (x *Table) Reset() {
  1704. *x = Table{}
  1705. if protoimpl.UnsafeEnabled {
  1706. mi := &file_backend_operation_statistic_proto_msgTypes[19]
  1707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1708. ms.StoreMessageInfo(mi)
  1709. }
  1710. }
  1711. func (x *Table) String() string {
  1712. return protoimpl.X.MessageStringOf(x)
  1713. }
  1714. func (*Table) ProtoMessage() {}
  1715. func (x *Table) ProtoReflect() protoreflect.Message {
  1716. mi := &file_backend_operation_statistic_proto_msgTypes[19]
  1717. if protoimpl.UnsafeEnabled && x != nil {
  1718. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1719. if ms.LoadMessageInfo() == nil {
  1720. ms.StoreMessageInfo(mi)
  1721. }
  1722. return ms
  1723. }
  1724. return mi.MessageOf(x)
  1725. }
  1726. // Deprecated: Use Table.ProtoReflect.Descriptor instead.
  1727. func (*Table) Descriptor() ([]byte, []int) {
  1728. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{19}
  1729. }
  1730. func (x *Table) GetTableList() []*Table_TableList {
  1731. if x != nil {
  1732. return x.TableList
  1733. }
  1734. return nil
  1735. }
  1736. type CommonValueRatio struct {
  1737. state protoimpl.MessageState
  1738. sizeCache protoimpl.SizeCache
  1739. unknownFields protoimpl.UnknownFields
  1740. MaxValue string `protobuf:"bytes,1,opt,name=max_value,json=maxValue,proto3" json:"max_value,omitempty"` // 最高值
  1741. MiddleValue string `protobuf:"bytes,2,opt,name=middle_value,json=middleValue,proto3" json:"middle_value,omitempty"` // 中位值
  1742. MinValue string `protobuf:"bytes,3,opt,name=min_value,json=minValue,proto3" json:"min_value,omitempty"` // 最低值
  1743. DataList []*ValueRatio `protobuf:"bytes,4,rep,name=data_list,json=dataList,proto3" json:"data_list,omitempty"` // 数据集合
  1744. PastureName []string `protobuf:"bytes,5,rep,name=pasture_name,json=pastureName,proto3" json:"pasture_name,omitempty"` // 牧场名称集合
  1745. DateDay []string `protobuf:"bytes,6,rep,name=date_day,json=dateDay,proto3" json:"date_day,omitempty"` // 日期集合
  1746. }
  1747. func (x *CommonValueRatio) Reset() {
  1748. *x = CommonValueRatio{}
  1749. if protoimpl.UnsafeEnabled {
  1750. mi := &file_backend_operation_statistic_proto_msgTypes[20]
  1751. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1752. ms.StoreMessageInfo(mi)
  1753. }
  1754. }
  1755. func (x *CommonValueRatio) String() string {
  1756. return protoimpl.X.MessageStringOf(x)
  1757. }
  1758. func (*CommonValueRatio) ProtoMessage() {}
  1759. func (x *CommonValueRatio) ProtoReflect() protoreflect.Message {
  1760. mi := &file_backend_operation_statistic_proto_msgTypes[20]
  1761. if protoimpl.UnsafeEnabled && x != nil {
  1762. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1763. if ms.LoadMessageInfo() == nil {
  1764. ms.StoreMessageInfo(mi)
  1765. }
  1766. return ms
  1767. }
  1768. return mi.MessageOf(x)
  1769. }
  1770. // Deprecated: Use CommonValueRatio.ProtoReflect.Descriptor instead.
  1771. func (*CommonValueRatio) Descriptor() ([]byte, []int) {
  1772. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{20}
  1773. }
  1774. func (x *CommonValueRatio) GetMaxValue() string {
  1775. if x != nil {
  1776. return x.MaxValue
  1777. }
  1778. return ""
  1779. }
  1780. func (x *CommonValueRatio) GetMiddleValue() string {
  1781. if x != nil {
  1782. return x.MiddleValue
  1783. }
  1784. return ""
  1785. }
  1786. func (x *CommonValueRatio) GetMinValue() string {
  1787. if x != nil {
  1788. return x.MinValue
  1789. }
  1790. return ""
  1791. }
  1792. func (x *CommonValueRatio) GetDataList() []*ValueRatio {
  1793. if x != nil {
  1794. return x.DataList
  1795. }
  1796. return nil
  1797. }
  1798. func (x *CommonValueRatio) GetPastureName() []string {
  1799. if x != nil {
  1800. return x.PastureName
  1801. }
  1802. return nil
  1803. }
  1804. func (x *CommonValueRatio) GetDateDay() []string {
  1805. if x != nil {
  1806. return x.DateDay
  1807. }
  1808. return nil
  1809. }
  1810. type ValueRatio struct {
  1811. state protoimpl.MessageState
  1812. sizeCache protoimpl.SizeCache
  1813. unknownFields protoimpl.UnknownFields
  1814. ValueRatio []string `protobuf:"bytes,1,rep,name=value_ratio,json=valueRatio,proto3" json:"value_ratio,omitempty"`
  1815. }
  1816. func (x *ValueRatio) Reset() {
  1817. *x = ValueRatio{}
  1818. if protoimpl.UnsafeEnabled {
  1819. mi := &file_backend_operation_statistic_proto_msgTypes[21]
  1820. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1821. ms.StoreMessageInfo(mi)
  1822. }
  1823. }
  1824. func (x *ValueRatio) String() string {
  1825. return protoimpl.X.MessageStringOf(x)
  1826. }
  1827. func (*ValueRatio) ProtoMessage() {}
  1828. func (x *ValueRatio) ProtoReflect() protoreflect.Message {
  1829. mi := &file_backend_operation_statistic_proto_msgTypes[21]
  1830. if protoimpl.UnsafeEnabled && x != nil {
  1831. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1832. if ms.LoadMessageInfo() == nil {
  1833. ms.StoreMessageInfo(mi)
  1834. }
  1835. return ms
  1836. }
  1837. return mi.MessageOf(x)
  1838. }
  1839. // Deprecated: Use ValueRatio.ProtoReflect.Descriptor instead.
  1840. func (*ValueRatio) Descriptor() ([]byte, []int) {
  1841. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{21}
  1842. }
  1843. func (x *ValueRatio) GetValueRatio() []string {
  1844. if x != nil {
  1845. return x.ValueRatio
  1846. }
  1847. return nil
  1848. }
  1849. type Table_TableList struct {
  1850. state protoimpl.MessageState
  1851. sizeCache protoimpl.SizeCache
  1852. unknownFields protoimpl.UnknownFields
  1853. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1854. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1855. }
  1856. func (x *Table_TableList) Reset() {
  1857. *x = Table_TableList{}
  1858. if protoimpl.UnsafeEnabled {
  1859. mi := &file_backend_operation_statistic_proto_msgTypes[22]
  1860. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1861. ms.StoreMessageInfo(mi)
  1862. }
  1863. }
  1864. func (x *Table_TableList) String() string {
  1865. return protoimpl.X.MessageStringOf(x)
  1866. }
  1867. func (*Table_TableList) ProtoMessage() {}
  1868. func (x *Table_TableList) ProtoReflect() protoreflect.Message {
  1869. mi := &file_backend_operation_statistic_proto_msgTypes[22]
  1870. if protoimpl.UnsafeEnabled && x != nil {
  1871. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1872. if ms.LoadMessageInfo() == nil {
  1873. ms.StoreMessageInfo(mi)
  1874. }
  1875. return ms
  1876. }
  1877. return mi.MessageOf(x)
  1878. }
  1879. // Deprecated: Use Table_TableList.ProtoReflect.Descriptor instead.
  1880. func (*Table_TableList) Descriptor() ([]byte, []int) {
  1881. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{19, 0}
  1882. }
  1883. func (x *Table_TableList) GetId() int32 {
  1884. if x != nil {
  1885. return x.Id
  1886. }
  1887. return 0
  1888. }
  1889. func (x *Table_TableList) GetName() string {
  1890. if x != nil {
  1891. return x.Name
  1892. }
  1893. return ""
  1894. }
  1895. var File_backend_operation_statistic_proto protoreflect.FileDescriptor
  1896. var file_backend_operation_statistic_proto_rawDesc = []byte{
  1897. 0x0a, 0x21, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  1898. 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x2e, 0x70, 0x72,
  1899. 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  1900. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x22, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f,
  1901. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  1902. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x62, 0x61, 0x63, 0x6b,
  1903. 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e,
  1904. 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  1905. 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x73, 0x74,
  1906. 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb1, 0x02, 0x0a, 0x1c, 0x53, 0x65,
  1907. 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x45, 0x73, 0x74, 0x69, 0x6d,
  1908. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74,
  1909. 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1910. 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64,
  1911. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64,
  1912. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74,
  1913. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63,
  1914. 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d,
  1915. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65,
  1916. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05,
  1917. 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12,
  1918. 0x1f, 0x0a, 0x0b, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06,
  1919. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64,
  1920. 0x12, 0x17, 0x0a, 0x07, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28,
  1921. 0x05, 0x52, 0x06, 0x62, 0x61, 0x72, 0x6e, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67,
  1922. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  1923. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  1924. 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65,
  1925. 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf7, 0x01,
  1926. 0x0a, 0x20, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
  1927. 0x79, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  1928. 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  1929. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  1930. 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1931. 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  1932. 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  1933. 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f,
  1934. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  1935. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f,
  1936. 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  1937. 0x65, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  1938. 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  1939. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69,
  1940. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67,
  1941. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbb, 0x02, 0x0a, 0x24, 0x53, 0x65, 0x61, 0x72,
  1942. 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x53,
  1943. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1944. 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01,
  1945. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12,
  1946. 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1947. 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
  1948. 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  1949. 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  1950. 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75,
  1951. 0x72, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x68,
  1952. 0x65, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72,
  1953. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x63, 0x68,
  1954. 0x65, 0x63, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x74, 0x79, 0x70, 0x65, 0x43,
  1955. 0x68, 0x65, 0x63, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6e, 0x61, 0x6d,
  1956. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x4e, 0x61, 0x6d,
  1957. 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  1958. 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  1959. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  1960. 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  1961. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf3, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
  1962. 0x50, 0x72, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52,
  1963. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
  1964. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72,
  1965. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  1966. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  1967. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  1968. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  1969. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52,
  1970. 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65,
  1971. 0x65, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66,
  1972. 0x65, 0x65, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  1973. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  1974. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  1975. 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52,
  1976. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd7, 0x02, 0x0a, 0x1b,
  1977. 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73,
  1978. 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73,
  1979. 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1980. 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
  1981. 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  1982. 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  1983. 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75,
  1984. 0x72, 0x65, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f,
  1985. 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  1986. 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x12,
  1987. 0x1b, 0x0a, 0x09, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  1988. 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x72, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x30, 0x0a, 0x14,
  1989. 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  1990. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x61, 0x74, 0x74,
  1991. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21,
  1992. 0x0a, 0x0c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x07,
  1993. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65,
  1994. 0x72, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  1995. 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  1996. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  1997. 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  1998. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa8, 0x01, 0x0a, 0x1a, 0x46, 0x65, 0x65, 0x64, 0x43, 0x68,
  1999. 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71,
  2000. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69,
  2001. 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54,
  2002. 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  2003. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1d,
  2004. 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
  2005. 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a,
  2006. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  2007. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x74, 0x79, 0x70,
  2008. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x54, 0x79, 0x70, 0x65,
  2009. 0x22, 0xb2, 0x01, 0x0a, 0x13, 0x43, 0x6f, 0x77, 0x73, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69,
  2010. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72,
  2011. 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74,
  2012. 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e,
  2013. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61,
  2014. 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64,
  2015. 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49,
  2016. 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  2017. 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2018. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2019. 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  2020. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc4, 0x04, 0x0a, 0x1c, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61,
  2021. 0x63, 0x79, 0x41, 0x67, 0x67, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52,
  2022. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
  2023. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72,
  2024. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  2025. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  2026. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03,
  2027. 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12,
  2028. 0x14, 0x0a, 0x05, 0x66, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2029. 0x66, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20,
  2030. 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
  2031. 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  2032. 0x73, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x65, 0x6e, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
  2033. 0x52, 0x05, 0x67, 0x65, 0x6e, 0x72, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x64, 0x61, 0x74,
  2034. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x69, 0x73, 0x64, 0x61, 0x74, 0x65, 0x12,
  2035. 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
  2036. 0x68, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0a,
  2037. 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68,
  2038. 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71,
  2039. 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05,
  2040. 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c,
  2041. 0x31, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12,
  2042. 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52,
  2043. 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31,
  2044. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a,
  2045. 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c,
  2046. 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x11, 0x20, 0x01,
  2047. 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a,
  2048. 0x71, 0x32, 0x18, 0x12, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12,
  2049. 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52,
  2050. 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c,
  2051. 0x32, 0x18, 0x14, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12,
  2052. 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28,
  2053. 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x54,
  2054. 0x69, 0x6d, 0x65, 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x54, 0x69, 0x6d, 0x65,
  2055. 0x73, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x17, 0x20,
  2056. 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xe2, 0x04, 0x0a,
  2057. 0x18, 0x4d, 0x69, 0x78, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2058. 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61,
  2059. 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  2060. 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f,
  2061. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54,
  2062. 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2063. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d,
  2064. 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01,
  2065. 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a,
  2066. 0x0e, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2067. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74,
  2068. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x6e, 0x75,
  2069. 0x6d, 0x62, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x69,
  2070. 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x61, 0x73, 0x73,
  2071. 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63,
  2072. 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f,
  2073. 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08,
  2074. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  2075. 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x74, 0x79,
  2076. 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6a, 0x75, 0x6d, 0x70, 0x54, 0x79,
  2077. 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0a, 0x20, 0x01, 0x28,
  2078. 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63,
  2079. 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14,
  2080. 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68,
  2081. 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x0d, 0x20,
  2082. 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c,
  2083. 0x7a, 0x71, 0x6c, 0x31, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71,
  2084. 0x6c, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x0f, 0x20, 0x01,
  2085. 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73,
  2086. 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73,
  2087. 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f,
  2088. 0x74, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x74, 0x74,
  2089. 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x69, 0x73, 0x5f, 0x75, 0x73, 0x65,
  2090. 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x69, 0x73, 0x55, 0x73, 0x65, 0x12, 0x42, 0x0a,
  2091. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x13, 0x20, 0x01, 0x28,
  2092. 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2093. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2094. 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  2095. 0x6e, 0x22, 0x80, 0x05, 0x0a, 0x19, 0x53, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x53, 0x74,
  2096. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2097. 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20,
  2098. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19,
  2099. 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2100. 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69,
  2101. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69,
  2102. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f,
  2103. 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  2104. 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74,
  2105. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x71, 0x75,
  2106. 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x72,
  2107. 0x61, 0x69, 0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  2108. 0x52, 0x0b, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x21, 0x0a,
  2109. 0x0c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x07, 0x20,
  2110. 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2111. 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
  2112. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x72, 0x6d,
  2113. 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x62,
  2114. 0x61, 0x72, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2115. 0x62, 0x61, 0x72, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70,
  2116. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6a, 0x75, 0x6d,
  2117. 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0b,
  2118. 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73,
  2119. 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63,
  2120. 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05,
  2121. 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32,
  2122. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a,
  2123. 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73,
  2124. 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18,
  2125. 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12, 0x19, 0x0a,
  2126. 0x08, 0x69, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52,
  2127. 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x74, 0x74,
  2128. 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62,
  2129. 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x69, 0x73, 0x5f,
  2130. 0x75, 0x73, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x69, 0x73, 0x55, 0x73, 0x65,
  2131. 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14,
  2132. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2133. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
  2134. 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2135. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8a, 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x44, 0x61, 0x74, 0x61,
  2136. 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
  2137. 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2138. 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  2139. 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2140. 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e,
  2141. 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61,
  2142. 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64,
  2143. 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49,
  2144. 0x64, 0x22, 0x9e, 0x04, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x41, 0x6e, 0x61,
  2145. 0x6c, 0x79, 0x73, 0x69, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a,
  2146. 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2147. 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65,
  2148. 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65,
  2149. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61,
  2150. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d,
  2151. 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18,
  2152. 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64,
  2153. 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20,
  2154. 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a,
  2155. 0x08, 0x74, 0x6d, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52,
  2156. 0x07, 0x74, 0x6d, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x72, 0x72, 0x6f,
  2157. 0x72, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65,
  2158. 0x72, 0x72, 0x6f, 0x72, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x77, 0x6f, 0x72,
  2159. 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2160. 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x6d, 0x69,
  2161. 0x78, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  2162. 0x09, 0x52, 0x0b, 0x6d, 0x69, 0x78, 0x46, 0x65, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14,
  2163. 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68,
  2164. 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0b, 0x20,
  2165. 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c,
  2166. 0x7a, 0x71, 0x31, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31,
  2167. 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52,
  2168. 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18,
  2169. 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05,
  2170. 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77,
  2171. 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x10, 0x20, 0x01, 0x28,
  2172. 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71,
  2173. 0x32, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x42,
  2174. 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x12, 0x20, 0x01,
  2175. 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2176. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  2177. 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
  2178. 0x6f, 0x6e, 0x22, 0xaf, 0x01, 0x0a, 0x12, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62,
  2179. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69,
  2180. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69,
  2181. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f,
  2182. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  2183. 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  2184. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65,
  2185. 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04,
  2186. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2187. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
  2188. 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2189. 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x73, 0x0a, 0x13, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d,
  2190. 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  2191. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  2192. 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73,
  2193. 0x67, 0x12, 0x36, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2194. 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2195. 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x44,
  2196. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4b, 0x0a, 0x0f, 0x54, 0x72, 0x61,
  2197. 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 0x38, 0x0a, 0x04,
  2198. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63,
  2199. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46,
  2200. 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
  2201. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x8b, 0x02, 0x0a, 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63,
  2202. 0x68, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63,
  2203. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x67, 0x0a, 0x19, 0x63, 0x61, 0x74, 0x74,
  2204. 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  2205. 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61,
  2206. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2207. 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61,
  2208. 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x16, 0x63, 0x61, 0x74, 0x74, 0x6c,
  2209. 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49,
  2210. 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  2211. 0x61, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64,
  2212. 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61,
  2213. 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  2214. 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f,
  2215. 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x44,
  2216. 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69,
  2217. 0x64, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  2218. 0x65, 0x49, 0x64, 0x73, 0x22, 0x7f, 0x0a, 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6e,
  2219. 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52, 0x65,
  2220. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  2221. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73,
  2222. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x37, 0x0a, 0x04,
  2223. 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63,
  2224. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41,
  2225. 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52,
  2226. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x72, 0x0a, 0x10, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69,
  2227. 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x12, 0x2e, 0x0a, 0x05, 0x63, 0x68, 0x61,
  2228. 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  2229. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  2230. 0x72, 0x74, 0x52, 0x05, 0x63, 0x68, 0x61, 0x72, 0x74, 0x12, 0x2e, 0x0a, 0x05, 0x74, 0x61, 0x62,
  2231. 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  2232. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x62,
  2233. 0x6c, 0x65, 0x52, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x9f, 0x03, 0x0a, 0x05, 0x43, 0x68,
  2234. 0x61, 0x72, 0x74, 0x12, 0x62, 0x0a, 0x1b, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64,
  2235. 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x74,
  2236. 0x69, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  2237. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d,
  2238. 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x18, 0x6d,
  2239. 0x69, 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61,
  2240. 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x60, 0x0a, 0x1a, 0x6d, 0x69, 0x78, 0x65, 0x64,
  2241. 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f,
  2242. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61,
  2243. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2244. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f,
  2245. 0x52, 0x17, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72,
  2246. 0x72, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x68, 0x0a, 0x1e, 0x73, 0x70, 0x72,
  2247. 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63,
  2248. 0x75, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28,
  2249. 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2250. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75,
  2251. 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x1b, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65,
  2252. 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61,
  2253. 0x74, 0x69, 0x6f, 0x12, 0x66, 0x0a, 0x1d, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f,
  2254. 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x72,
  2255. 0x61, 0x74, 0x69, 0x6f, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63,
  2256. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43,
  2257. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52,
  2258. 0x1a, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43,
  2259. 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x7b, 0x0a, 0x05, 0x54,
  2260. 0x61, 0x62, 0x6c, 0x65, 0x12, 0x41, 0x0a, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x69,
  2261. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  2262. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x62,
  2263. 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x09, 0x74, 0x61,
  2264. 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x2f, 0x0a, 0x09, 0x54, 0x61, 0x62, 0x6c, 0x65,
  2265. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  2266. 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  2267. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xe9, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6d,
  2268. 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x1b, 0x0a,
  2269. 0x09, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2270. 0x52, 0x08, 0x6d, 0x61, 0x78, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x69,
  2271. 0x64, 0x64, 0x6c, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2272. 0x52, 0x0b, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1b, 0x0a,
  2273. 0x09, 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  2274. 0x52, 0x08, 0x6d, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3a, 0x0a, 0x09, 0x64, 0x61,
  2275. 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e,
  2276. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2277. 0x6e, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x08, 0x64, 0x61,
  2278. 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  2279. 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x61,
  2280. 0x73, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x61, 0x74,
  2281. 0x65, 0x5f, 0x64, 0x61, 0x79, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x64, 0x61, 0x74,
  2282. 0x65, 0x44, 0x61, 0x79, 0x22, 0x2d, 0x0a, 0x0a, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74,
  2283. 0x69, 0x6f, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69,
  2284. 0x6f, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61,
  2285. 0x74, 0x69, 0x6f, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2286. 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2287. }
  2288. var (
  2289. file_backend_operation_statistic_proto_rawDescOnce sync.Once
  2290. file_backend_operation_statistic_proto_rawDescData = file_backend_operation_statistic_proto_rawDesc
  2291. )
  2292. func file_backend_operation_statistic_proto_rawDescGZIP() []byte {
  2293. file_backend_operation_statistic_proto_rawDescOnce.Do(func() {
  2294. file_backend_operation_statistic_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_statistic_proto_rawDescData)
  2295. })
  2296. return file_backend_operation_statistic_proto_rawDescData
  2297. }
  2298. var file_backend_operation_statistic_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
  2299. var file_backend_operation_statistic_proto_goTypes = []interface{}{
  2300. (*SearchFormulaEstimateRequest)(nil), // 0: backend.operation.SearchFormulaEstimateRequest
  2301. (*SearchInventoryStatisticsRequest)(nil), // 1: backend.operation.SearchInventoryStatisticsRequest
  2302. (*SearchUserMaterialsStatisticsRequest)(nil), // 2: backend.operation.SearchUserMaterialsStatisticsRequest
  2303. (*SearchPriceStatisticsRequest)(nil), // 3: backend.operation.SearchPriceStatisticsRequest
  2304. (*SearchFeedStatisticsRequest)(nil), // 4: backend.operation.SearchFeedStatisticsRequest
  2305. (*FeedChartStatisticsRequest)(nil), // 5: backend.operation.FeedChartStatisticsRequest
  2306. (*CowsAnalysisRequest)(nil), // 6: backend.operation.CowsAnalysisRequest
  2307. (*AccuracyAggStatisticsRequest)(nil), // 7: backend.operation.AccuracyAggStatisticsRequest
  2308. (*MixFeedStatisticsRequest)(nil), // 8: backend.operation.MixFeedStatisticsRequest
  2309. (*SprinkleStatisticsRequest)(nil), // 9: backend.operation.SprinkleStatisticsRequest
  2310. (*GetDataByNameRequest)(nil), // 10: backend.operation.GetDataByNameRequest
  2311. (*ProcessAnalysisRequest)(nil), // 11: backend.operation.ProcessAnalysisRequest
  2312. (*TrainNumberRequest)(nil), // 12: backend.operation.TrainNumberRequest
  2313. (*TrainNumberResponse)(nil), // 13: backend.operation.TrainNumberResponse
  2314. (*TrainNumberData)(nil), // 14: backend.operation.TrainNumberData
  2315. (*SearchAnalysisAccuracyRequest)(nil), // 15: backend.operation.SearchAnalysisAccuracyRequest
  2316. (*SearchAnalysisAccuracyResponse)(nil), // 16: backend.operation.SearchAnalysisAccuracyResponse
  2317. (*AnalysisAccuracy)(nil), // 17: backend.operation.AnalysisAccuracy
  2318. (*Chart)(nil), // 18: backend.operation.Chart
  2319. (*Table)(nil), // 19: backend.operation.Table
  2320. (*CommonValueRatio)(nil), // 20: backend.operation.CommonValueRatio
  2321. (*ValueRatio)(nil), // 21: backend.operation.ValueRatio
  2322. (*Table_TableList)(nil), // 22: backend.operation.Table.TableList
  2323. (*PaginationModel)(nil), // 23: backend.operation.PaginationModel
  2324. (*FormulaOptionEnum)(nil), // 24: backend.operation.FormulaOptionEnum
  2325. (CattleCategoryParent_Kind)(0), // 25: backend.operation.CattleCategoryParent.Kind
  2326. }
  2327. var file_backend_operation_statistic_proto_depIdxs = []int32{
  2328. 23, // 0: backend.operation.SearchFormulaEstimateRequest.pagination:type_name -> backend.operation.PaginationModel
  2329. 23, // 1: backend.operation.SearchInventoryStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2330. 23, // 2: backend.operation.SearchUserMaterialsStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2331. 23, // 3: backend.operation.SearchPriceStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2332. 23, // 4: backend.operation.SearchFeedStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2333. 23, // 5: backend.operation.CowsAnalysisRequest.pagination:type_name -> backend.operation.PaginationModel
  2334. 23, // 6: backend.operation.MixFeedStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2335. 23, // 7: backend.operation.SprinkleStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2336. 23, // 8: backend.operation.ProcessAnalysisRequest.pagination:type_name -> backend.operation.PaginationModel
  2337. 23, // 9: backend.operation.TrainNumberRequest.pagination:type_name -> backend.operation.PaginationModel
  2338. 14, // 10: backend.operation.TrainNumberResponse.data:type_name -> backend.operation.TrainNumberData
  2339. 24, // 11: backend.operation.TrainNumberData.list:type_name -> backend.operation.FormulaOptionEnum
  2340. 25, // 12: backend.operation.SearchAnalysisAccuracyRequest.cattle_parent_category_id:type_name -> backend.operation.CattleCategoryParent.Kind
  2341. 17, // 13: backend.operation.SearchAnalysisAccuracyResponse.data:type_name -> backend.operation.AnalysisAccuracy
  2342. 18, // 14: backend.operation.AnalysisAccuracy.chart:type_name -> backend.operation.Chart
  2343. 19, // 15: backend.operation.AnalysisAccuracy.table:type_name -> backend.operation.Table
  2344. 20, // 16: backend.operation.Chart.mixed_fodder_accurate_ratio:type_name -> backend.operation.CommonValueRatio
  2345. 20, // 17: backend.operation.Chart.mixed_fodder_correct_ratio:type_name -> backend.operation.CommonValueRatio
  2346. 20, // 18: backend.operation.Chart.sprinkle_fodder_accurate_ratio:type_name -> backend.operation.CommonValueRatio
  2347. 20, // 19: backend.operation.Chart.sprinkle_fodder_correct_ratio:type_name -> backend.operation.CommonValueRatio
  2348. 22, // 20: backend.operation.Table.table_list:type_name -> backend.operation.Table.TableList
  2349. 21, // 21: backend.operation.CommonValueRatio.data_list:type_name -> backend.operation.ValueRatio
  2350. 22, // [22:22] is the sub-list for method output_type
  2351. 22, // [22:22] is the sub-list for method input_type
  2352. 22, // [22:22] is the sub-list for extension type_name
  2353. 22, // [22:22] is the sub-list for extension extendee
  2354. 0, // [0:22] is the sub-list for field type_name
  2355. }
  2356. func init() { file_backend_operation_statistic_proto_init() }
  2357. func file_backend_operation_statistic_proto_init() {
  2358. if File_backend_operation_statistic_proto != nil {
  2359. return
  2360. }
  2361. file_backend_operation_pagination_proto_init()
  2362. file_backend_operation_enum_proto_init()
  2363. file_backend_operation_pasture_proto_init()
  2364. if !protoimpl.UnsafeEnabled {
  2365. file_backend_operation_statistic_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2366. switch v := v.(*SearchFormulaEstimateRequest); i {
  2367. case 0:
  2368. return &v.state
  2369. case 1:
  2370. return &v.sizeCache
  2371. case 2:
  2372. return &v.unknownFields
  2373. default:
  2374. return nil
  2375. }
  2376. }
  2377. file_backend_operation_statistic_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2378. switch v := v.(*SearchInventoryStatisticsRequest); i {
  2379. case 0:
  2380. return &v.state
  2381. case 1:
  2382. return &v.sizeCache
  2383. case 2:
  2384. return &v.unknownFields
  2385. default:
  2386. return nil
  2387. }
  2388. }
  2389. file_backend_operation_statistic_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2390. switch v := v.(*SearchUserMaterialsStatisticsRequest); i {
  2391. case 0:
  2392. return &v.state
  2393. case 1:
  2394. return &v.sizeCache
  2395. case 2:
  2396. return &v.unknownFields
  2397. default:
  2398. return nil
  2399. }
  2400. }
  2401. file_backend_operation_statistic_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2402. switch v := v.(*SearchPriceStatisticsRequest); i {
  2403. case 0:
  2404. return &v.state
  2405. case 1:
  2406. return &v.sizeCache
  2407. case 2:
  2408. return &v.unknownFields
  2409. default:
  2410. return nil
  2411. }
  2412. }
  2413. file_backend_operation_statistic_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2414. switch v := v.(*SearchFeedStatisticsRequest); i {
  2415. case 0:
  2416. return &v.state
  2417. case 1:
  2418. return &v.sizeCache
  2419. case 2:
  2420. return &v.unknownFields
  2421. default:
  2422. return nil
  2423. }
  2424. }
  2425. file_backend_operation_statistic_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2426. switch v := v.(*FeedChartStatisticsRequest); i {
  2427. case 0:
  2428. return &v.state
  2429. case 1:
  2430. return &v.sizeCache
  2431. case 2:
  2432. return &v.unknownFields
  2433. default:
  2434. return nil
  2435. }
  2436. }
  2437. file_backend_operation_statistic_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2438. switch v := v.(*CowsAnalysisRequest); i {
  2439. case 0:
  2440. return &v.state
  2441. case 1:
  2442. return &v.sizeCache
  2443. case 2:
  2444. return &v.unknownFields
  2445. default:
  2446. return nil
  2447. }
  2448. }
  2449. file_backend_operation_statistic_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2450. switch v := v.(*AccuracyAggStatisticsRequest); i {
  2451. case 0:
  2452. return &v.state
  2453. case 1:
  2454. return &v.sizeCache
  2455. case 2:
  2456. return &v.unknownFields
  2457. default:
  2458. return nil
  2459. }
  2460. }
  2461. file_backend_operation_statistic_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2462. switch v := v.(*MixFeedStatisticsRequest); i {
  2463. case 0:
  2464. return &v.state
  2465. case 1:
  2466. return &v.sizeCache
  2467. case 2:
  2468. return &v.unknownFields
  2469. default:
  2470. return nil
  2471. }
  2472. }
  2473. file_backend_operation_statistic_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2474. switch v := v.(*SprinkleStatisticsRequest); i {
  2475. case 0:
  2476. return &v.state
  2477. case 1:
  2478. return &v.sizeCache
  2479. case 2:
  2480. return &v.unknownFields
  2481. default:
  2482. return nil
  2483. }
  2484. }
  2485. file_backend_operation_statistic_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2486. switch v := v.(*GetDataByNameRequest); i {
  2487. case 0:
  2488. return &v.state
  2489. case 1:
  2490. return &v.sizeCache
  2491. case 2:
  2492. return &v.unknownFields
  2493. default:
  2494. return nil
  2495. }
  2496. }
  2497. file_backend_operation_statistic_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2498. switch v := v.(*ProcessAnalysisRequest); i {
  2499. case 0:
  2500. return &v.state
  2501. case 1:
  2502. return &v.sizeCache
  2503. case 2:
  2504. return &v.unknownFields
  2505. default:
  2506. return nil
  2507. }
  2508. }
  2509. file_backend_operation_statistic_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2510. switch v := v.(*TrainNumberRequest); i {
  2511. case 0:
  2512. return &v.state
  2513. case 1:
  2514. return &v.sizeCache
  2515. case 2:
  2516. return &v.unknownFields
  2517. default:
  2518. return nil
  2519. }
  2520. }
  2521. file_backend_operation_statistic_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2522. switch v := v.(*TrainNumberResponse); i {
  2523. case 0:
  2524. return &v.state
  2525. case 1:
  2526. return &v.sizeCache
  2527. case 2:
  2528. return &v.unknownFields
  2529. default:
  2530. return nil
  2531. }
  2532. }
  2533. file_backend_operation_statistic_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2534. switch v := v.(*TrainNumberData); i {
  2535. case 0:
  2536. return &v.state
  2537. case 1:
  2538. return &v.sizeCache
  2539. case 2:
  2540. return &v.unknownFields
  2541. default:
  2542. return nil
  2543. }
  2544. }
  2545. file_backend_operation_statistic_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2546. switch v := v.(*SearchAnalysisAccuracyRequest); i {
  2547. case 0:
  2548. return &v.state
  2549. case 1:
  2550. return &v.sizeCache
  2551. case 2:
  2552. return &v.unknownFields
  2553. default:
  2554. return nil
  2555. }
  2556. }
  2557. file_backend_operation_statistic_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2558. switch v := v.(*SearchAnalysisAccuracyResponse); i {
  2559. case 0:
  2560. return &v.state
  2561. case 1:
  2562. return &v.sizeCache
  2563. case 2:
  2564. return &v.unknownFields
  2565. default:
  2566. return nil
  2567. }
  2568. }
  2569. file_backend_operation_statistic_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2570. switch v := v.(*AnalysisAccuracy); i {
  2571. case 0:
  2572. return &v.state
  2573. case 1:
  2574. return &v.sizeCache
  2575. case 2:
  2576. return &v.unknownFields
  2577. default:
  2578. return nil
  2579. }
  2580. }
  2581. file_backend_operation_statistic_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2582. switch v := v.(*Chart); i {
  2583. case 0:
  2584. return &v.state
  2585. case 1:
  2586. return &v.sizeCache
  2587. case 2:
  2588. return &v.unknownFields
  2589. default:
  2590. return nil
  2591. }
  2592. }
  2593. file_backend_operation_statistic_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2594. switch v := v.(*Table); i {
  2595. case 0:
  2596. return &v.state
  2597. case 1:
  2598. return &v.sizeCache
  2599. case 2:
  2600. return &v.unknownFields
  2601. default:
  2602. return nil
  2603. }
  2604. }
  2605. file_backend_operation_statistic_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2606. switch v := v.(*CommonValueRatio); i {
  2607. case 0:
  2608. return &v.state
  2609. case 1:
  2610. return &v.sizeCache
  2611. case 2:
  2612. return &v.unknownFields
  2613. default:
  2614. return nil
  2615. }
  2616. }
  2617. file_backend_operation_statistic_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2618. switch v := v.(*ValueRatio); i {
  2619. case 0:
  2620. return &v.state
  2621. case 1:
  2622. return &v.sizeCache
  2623. case 2:
  2624. return &v.unknownFields
  2625. default:
  2626. return nil
  2627. }
  2628. }
  2629. file_backend_operation_statistic_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2630. switch v := v.(*Table_TableList); i {
  2631. case 0:
  2632. return &v.state
  2633. case 1:
  2634. return &v.sizeCache
  2635. case 2:
  2636. return &v.unknownFields
  2637. default:
  2638. return nil
  2639. }
  2640. }
  2641. }
  2642. type x struct{}
  2643. out := protoimpl.TypeBuilder{
  2644. File: protoimpl.DescBuilder{
  2645. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2646. RawDescriptor: file_backend_operation_statistic_proto_rawDesc,
  2647. NumEnums: 0,
  2648. NumMessages: 23,
  2649. NumExtensions: 0,
  2650. NumServices: 0,
  2651. },
  2652. GoTypes: file_backend_operation_statistic_proto_goTypes,
  2653. DependencyIndexes: file_backend_operation_statistic_proto_depIdxs,
  2654. MessageInfos: file_backend_operation_statistic_proto_msgTypes,
  2655. }.Build()
  2656. File_backend_operation_statistic_proto = out.File
  2657. file_backend_operation_statistic_proto_rawDesc = nil
  2658. file_backend_operation_statistic_proto_goTypes = nil
  2659. file_backend_operation_statistic_proto_depIdxs = nil
  2660. }