statistic.pb.go 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363
  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,rep,packed,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. CattleCategoryId int32 `protobuf:"varint,7,opt,name=cattle_category_id,json=cattleCategoryId,proto3" json:"cattle_category_id,omitempty"` // 畜牧类别id
  359. ClassNumber int32 `protobuf:"varint,8,opt,name=class_number,json=classNumber,proto3" json:"class_number,omitempty"` // 班次
  360. Pagination *PaginationModel `protobuf:"bytes,9,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  361. EndTime string `protobuf:"bytes,10,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  362. }
  363. func (x *SearchFeedStatisticsRequest) Reset() {
  364. *x = SearchFeedStatisticsRequest{}
  365. if protoimpl.UnsafeEnabled {
  366. mi := &file_backend_operation_statistic_proto_msgTypes[4]
  367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  368. ms.StoreMessageInfo(mi)
  369. }
  370. }
  371. func (x *SearchFeedStatisticsRequest) String() string {
  372. return protoimpl.X.MessageStringOf(x)
  373. }
  374. func (*SearchFeedStatisticsRequest) ProtoMessage() {}
  375. func (x *SearchFeedStatisticsRequest) ProtoReflect() protoreflect.Message {
  376. mi := &file_backend_operation_statistic_proto_msgTypes[4]
  377. if protoimpl.UnsafeEnabled && x != nil {
  378. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  379. if ms.LoadMessageInfo() == nil {
  380. ms.StoreMessageInfo(mi)
  381. }
  382. return ms
  383. }
  384. return mi.MessageOf(x)
  385. }
  386. // Deprecated: Use SearchFeedStatisticsRequest.ProtoReflect.Descriptor instead.
  387. func (*SearchFeedStatisticsRequest) Descriptor() ([]byte, []int) {
  388. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{4}
  389. }
  390. func (x *SearchFeedStatisticsRequest) GetStartTime() string {
  391. if x != nil {
  392. return x.StartTime
  393. }
  394. return ""
  395. }
  396. func (x *SearchFeedStatisticsRequest) GetApiName() string {
  397. if x != nil {
  398. return x.ApiName
  399. }
  400. return ""
  401. }
  402. func (x *SearchFeedStatisticsRequest) GetPastureId() []int32 {
  403. if x != nil {
  404. return x.PastureId
  405. }
  406. return nil
  407. }
  408. func (x *SearchFeedStatisticsRequest) GetFormulaTemplate() string {
  409. if x != nil {
  410. return x.FormulaTemplate
  411. }
  412. return ""
  413. }
  414. func (x *SearchFeedStatisticsRequest) GetBarnName() string {
  415. if x != nil {
  416. return x.BarnName
  417. }
  418. return ""
  419. }
  420. func (x *SearchFeedStatisticsRequest) GetCattleCategoryName() string {
  421. if x != nil {
  422. return x.CattleCategoryName
  423. }
  424. return ""
  425. }
  426. func (x *SearchFeedStatisticsRequest) GetCattleCategoryId() int32 {
  427. if x != nil {
  428. return x.CattleCategoryId
  429. }
  430. return 0
  431. }
  432. func (x *SearchFeedStatisticsRequest) GetClassNumber() int32 {
  433. if x != nil {
  434. return x.ClassNumber
  435. }
  436. return 0
  437. }
  438. func (x *SearchFeedStatisticsRequest) GetPagination() *PaginationModel {
  439. if x != nil {
  440. return x.Pagination
  441. }
  442. return nil
  443. }
  444. func (x *SearchFeedStatisticsRequest) GetEndTime() string {
  445. if x != nil {
  446. return x.EndTime
  447. }
  448. return ""
  449. }
  450. // FeedChartStatisticsRequest 饲喂效率chart图表
  451. type FeedChartStatisticsRequest struct {
  452. state protoimpl.MessageState
  453. sizeCache protoimpl.SizeCache
  454. unknownFields protoimpl.UnknownFields
  455. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  456. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  457. PastureId int32 `protobuf:"varint,3,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  458. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
  459. ApiType string `protobuf:"bytes,5,opt,name=api_type,json=apiType,proto3" json:"api_type,omitempty"` // mr 泌乳牛干物质采食量 sl 牛栏剩料率 hl 混料时间统计 zh 转化率 cbft 成本分析
  460. }
  461. func (x *FeedChartStatisticsRequest) Reset() {
  462. *x = FeedChartStatisticsRequest{}
  463. if protoimpl.UnsafeEnabled {
  464. mi := &file_backend_operation_statistic_proto_msgTypes[5]
  465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  466. ms.StoreMessageInfo(mi)
  467. }
  468. }
  469. func (x *FeedChartStatisticsRequest) String() string {
  470. return protoimpl.X.MessageStringOf(x)
  471. }
  472. func (*FeedChartStatisticsRequest) ProtoMessage() {}
  473. func (x *FeedChartStatisticsRequest) ProtoReflect() protoreflect.Message {
  474. mi := &file_backend_operation_statistic_proto_msgTypes[5]
  475. if protoimpl.UnsafeEnabled && x != nil {
  476. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  477. if ms.LoadMessageInfo() == nil {
  478. ms.StoreMessageInfo(mi)
  479. }
  480. return ms
  481. }
  482. return mi.MessageOf(x)
  483. }
  484. // Deprecated: Use FeedChartStatisticsRequest.ProtoReflect.Descriptor instead.
  485. func (*FeedChartStatisticsRequest) Descriptor() ([]byte, []int) {
  486. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{5}
  487. }
  488. func (x *FeedChartStatisticsRequest) GetStartTime() string {
  489. if x != nil {
  490. return x.StartTime
  491. }
  492. return ""
  493. }
  494. func (x *FeedChartStatisticsRequest) GetEndTime() string {
  495. if x != nil {
  496. return x.EndTime
  497. }
  498. return ""
  499. }
  500. func (x *FeedChartStatisticsRequest) GetPastureId() int32 {
  501. if x != nil {
  502. return x.PastureId
  503. }
  504. return 0
  505. }
  506. func (x *FeedChartStatisticsRequest) GetStatus() int32 {
  507. if x != nil {
  508. return x.Status
  509. }
  510. return 0
  511. }
  512. func (x *FeedChartStatisticsRequest) GetApiType() string {
  513. if x != nil {
  514. return x.ApiType
  515. }
  516. return ""
  517. }
  518. // CowsAnalysisRequest 饲喂效率-牛群评估
  519. type CowsAnalysisRequest struct {
  520. state protoimpl.MessageState
  521. sizeCache protoimpl.SizeCache
  522. unknownFields protoimpl.UnknownFields
  523. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  524. ApiName string `protobuf:"bytes,2,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  525. PastureId int32 `protobuf:"varint,3,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  526. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  527. }
  528. func (x *CowsAnalysisRequest) Reset() {
  529. *x = CowsAnalysisRequest{}
  530. if protoimpl.UnsafeEnabled {
  531. mi := &file_backend_operation_statistic_proto_msgTypes[6]
  532. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  533. ms.StoreMessageInfo(mi)
  534. }
  535. }
  536. func (x *CowsAnalysisRequest) String() string {
  537. return protoimpl.X.MessageStringOf(x)
  538. }
  539. func (*CowsAnalysisRequest) ProtoMessage() {}
  540. func (x *CowsAnalysisRequest) ProtoReflect() protoreflect.Message {
  541. mi := &file_backend_operation_statistic_proto_msgTypes[6]
  542. if protoimpl.UnsafeEnabled && x != nil {
  543. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  544. if ms.LoadMessageInfo() == nil {
  545. ms.StoreMessageInfo(mi)
  546. }
  547. return ms
  548. }
  549. return mi.MessageOf(x)
  550. }
  551. // Deprecated: Use CowsAnalysisRequest.ProtoReflect.Descriptor instead.
  552. func (*CowsAnalysisRequest) Descriptor() ([]byte, []int) {
  553. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{6}
  554. }
  555. func (x *CowsAnalysisRequest) GetStartTime() string {
  556. if x != nil {
  557. return x.StartTime
  558. }
  559. return ""
  560. }
  561. func (x *CowsAnalysisRequest) GetApiName() string {
  562. if x != nil {
  563. return x.ApiName
  564. }
  565. return ""
  566. }
  567. func (x *CowsAnalysisRequest) GetPastureId() int32 {
  568. if x != nil {
  569. return x.PastureId
  570. }
  571. return 0
  572. }
  573. func (x *CowsAnalysisRequest) GetPagination() *PaginationModel {
  574. if x != nil {
  575. return x.Pagination
  576. }
  577. return nil
  578. }
  579. // AccuracyAggStatisticsRequest 准确性分析-汇总统计
  580. type AccuracyAggStatisticsRequest struct {
  581. state protoimpl.MessageState
  582. sizeCache protoimpl.SizeCache
  583. unknownFields protoimpl.UnknownFields
  584. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  585. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  586. PastureId int32 `protobuf:"varint,3,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  587. Fname string `protobuf:"bytes,4,opt,name=fname,proto3" json:"fname,omitempty"` // 查询名称
  588. Sort string `protobuf:"bytes,5,opt,name=sort,proto3" json:"sort,omitempty"`
  589. Status string `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
  590. Genre int32 `protobuf:"varint,7,opt,name=genre,proto3" json:"genre,omitempty"`
  591. Isdate int32 `protobuf:"varint,8,opt,name=isdate,proto3" json:"isdate,omitempty"`
  592. Hlwc1 int32 `protobuf:"varint,9,opt,name=hlwc1,proto3" json:"hlwc1,omitempty"`
  593. Hlwc2 int32 `protobuf:"varint,10,opt,name=hlwc2,proto3" json:"hlwc2,omitempty"`
  594. Hlzq1 int32 `protobuf:"varint,11,opt,name=hlzq1,proto3" json:"hlzq1,omitempty"`
  595. Hlzq2 int32 `protobuf:"varint,12,opt,name=hlzq2,proto3" json:"hlzq2,omitempty"`
  596. Hlzql1 int32 `protobuf:"varint,13,opt,name=hlzql1,proto3" json:"hlzql1,omitempty"`
  597. Hlzql2 int32 `protobuf:"varint,14,opt,name=hlzql2,proto3" json:"hlzql2,omitempty"`
  598. Slwc1 int32 `protobuf:"varint,15,opt,name=slwc1,proto3" json:"slwc1,omitempty"`
  599. Slwc2 int32 `protobuf:"varint,16,opt,name=slwc2,proto3" json:"slwc2,omitempty"`
  600. Slzq1 int32 `protobuf:"varint,17,opt,name=slzq1,proto3" json:"slzq1,omitempty"`
  601. Slzq2 int32 `protobuf:"varint,18,opt,name=slzq2,proto3" json:"slzq2,omitempty"`
  602. Slzql1 int32 `protobuf:"varint,19,opt,name=slzql1,proto3" json:"slzql1,omitempty"`
  603. Slzql2 int32 `protobuf:"varint,20,opt,name=slzql2,proto3" json:"slzql2,omitempty"`
  604. Projname string `protobuf:"bytes,21,opt,name=projname,proto3" json:"projname,omitempty"`
  605. Times string `protobuf:"bytes,22,opt,name=Times,proto3" json:"Times,omitempty"`
  606. IsError bool `protobuf:"varint,23,opt,name=is_error,json=isError,proto3" json:"is_error,omitempty"`
  607. }
  608. func (x *AccuracyAggStatisticsRequest) Reset() {
  609. *x = AccuracyAggStatisticsRequest{}
  610. if protoimpl.UnsafeEnabled {
  611. mi := &file_backend_operation_statistic_proto_msgTypes[7]
  612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  613. ms.StoreMessageInfo(mi)
  614. }
  615. }
  616. func (x *AccuracyAggStatisticsRequest) String() string {
  617. return protoimpl.X.MessageStringOf(x)
  618. }
  619. func (*AccuracyAggStatisticsRequest) ProtoMessage() {}
  620. func (x *AccuracyAggStatisticsRequest) ProtoReflect() protoreflect.Message {
  621. mi := &file_backend_operation_statistic_proto_msgTypes[7]
  622. if protoimpl.UnsafeEnabled && x != nil {
  623. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  624. if ms.LoadMessageInfo() == nil {
  625. ms.StoreMessageInfo(mi)
  626. }
  627. return ms
  628. }
  629. return mi.MessageOf(x)
  630. }
  631. // Deprecated: Use AccuracyAggStatisticsRequest.ProtoReflect.Descriptor instead.
  632. func (*AccuracyAggStatisticsRequest) Descriptor() ([]byte, []int) {
  633. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{7}
  634. }
  635. func (x *AccuracyAggStatisticsRequest) GetStartTime() string {
  636. if x != nil {
  637. return x.StartTime
  638. }
  639. return ""
  640. }
  641. func (x *AccuracyAggStatisticsRequest) GetEndTime() string {
  642. if x != nil {
  643. return x.EndTime
  644. }
  645. return ""
  646. }
  647. func (x *AccuracyAggStatisticsRequest) GetPastureId() int32 {
  648. if x != nil {
  649. return x.PastureId
  650. }
  651. return 0
  652. }
  653. func (x *AccuracyAggStatisticsRequest) GetFname() string {
  654. if x != nil {
  655. return x.Fname
  656. }
  657. return ""
  658. }
  659. func (x *AccuracyAggStatisticsRequest) GetSort() string {
  660. if x != nil {
  661. return x.Sort
  662. }
  663. return ""
  664. }
  665. func (x *AccuracyAggStatisticsRequest) GetStatus() string {
  666. if x != nil {
  667. return x.Status
  668. }
  669. return ""
  670. }
  671. func (x *AccuracyAggStatisticsRequest) GetGenre() int32 {
  672. if x != nil {
  673. return x.Genre
  674. }
  675. return 0
  676. }
  677. func (x *AccuracyAggStatisticsRequest) GetIsdate() int32 {
  678. if x != nil {
  679. return x.Isdate
  680. }
  681. return 0
  682. }
  683. func (x *AccuracyAggStatisticsRequest) GetHlwc1() int32 {
  684. if x != nil {
  685. return x.Hlwc1
  686. }
  687. return 0
  688. }
  689. func (x *AccuracyAggStatisticsRequest) GetHlwc2() int32 {
  690. if x != nil {
  691. return x.Hlwc2
  692. }
  693. return 0
  694. }
  695. func (x *AccuracyAggStatisticsRequest) GetHlzq1() int32 {
  696. if x != nil {
  697. return x.Hlzq1
  698. }
  699. return 0
  700. }
  701. func (x *AccuracyAggStatisticsRequest) GetHlzq2() int32 {
  702. if x != nil {
  703. return x.Hlzq2
  704. }
  705. return 0
  706. }
  707. func (x *AccuracyAggStatisticsRequest) GetHlzql1() int32 {
  708. if x != nil {
  709. return x.Hlzql1
  710. }
  711. return 0
  712. }
  713. func (x *AccuracyAggStatisticsRequest) GetHlzql2() int32 {
  714. if x != nil {
  715. return x.Hlzql2
  716. }
  717. return 0
  718. }
  719. func (x *AccuracyAggStatisticsRequest) GetSlwc1() int32 {
  720. if x != nil {
  721. return x.Slwc1
  722. }
  723. return 0
  724. }
  725. func (x *AccuracyAggStatisticsRequest) GetSlwc2() int32 {
  726. if x != nil {
  727. return x.Slwc2
  728. }
  729. return 0
  730. }
  731. func (x *AccuracyAggStatisticsRequest) GetSlzq1() int32 {
  732. if x != nil {
  733. return x.Slzq1
  734. }
  735. return 0
  736. }
  737. func (x *AccuracyAggStatisticsRequest) GetSlzq2() int32 {
  738. if x != nil {
  739. return x.Slzq2
  740. }
  741. return 0
  742. }
  743. func (x *AccuracyAggStatisticsRequest) GetSlzql1() int32 {
  744. if x != nil {
  745. return x.Slzql1
  746. }
  747. return 0
  748. }
  749. func (x *AccuracyAggStatisticsRequest) GetSlzql2() int32 {
  750. if x != nil {
  751. return x.Slzql2
  752. }
  753. return 0
  754. }
  755. func (x *AccuracyAggStatisticsRequest) GetProjname() string {
  756. if x != nil {
  757. return x.Projname
  758. }
  759. return ""
  760. }
  761. func (x *AccuracyAggStatisticsRequest) GetTimes() string {
  762. if x != nil {
  763. return x.Times
  764. }
  765. return ""
  766. }
  767. func (x *AccuracyAggStatisticsRequest) GetIsError() bool {
  768. if x != nil {
  769. return x.IsError
  770. }
  771. return false
  772. }
  773. // MixFeedStatisticsRequest 准确性分析-混料统计
  774. type MixFeedStatisticsRequest struct {
  775. state protoimpl.MessageState
  776. sizeCache protoimpl.SizeCache
  777. unknownFields protoimpl.UnknownFields
  778. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  779. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  780. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  781. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  782. EquipmentName string `protobuf:"bytes,5,opt,name=equipment_name,json=equipmentName,proto3" json:"equipment_name,omitempty"` // 设备名称
  783. TrainNumber string `protobuf:"bytes,6,opt,name=train_number,json=trainNumber,proto3" json:"train_number,omitempty"` // 车次
  784. ClassNumber int32 `protobuf:"varint,7,opt,name=class_number,json=classNumber,proto3" json:"class_number,omitempty"` // 班次
  785. FormulationName string `protobuf:"bytes,8,opt,name=formulation_name,json=formulationName,proto3" json:"formulation_name,omitempty"` // 配方名称
  786. JumpType int32 `protobuf:"varint,9,opt,name=jump_type,json=jumpType,proto3" json:"jump_type,omitempty"` // 跳转方式 0 手动跳转 1 自动跳转
  787. Hlwc1 int32 `protobuf:"varint,10,opt,name=hlwc1,proto3" json:"hlwc1,omitempty"` // 混料误差值1
  788. Hlwc2 int32 `protobuf:"varint,11,opt,name=hlwc2,proto3" json:"hlwc2,omitempty"` // 混料误差值2
  789. Hlzq1 int32 `protobuf:"varint,12,opt,name=hlzq1,proto3" json:"hlzq1,omitempty"` // 混料准确率1
  790. Hlzq2 int32 `protobuf:"varint,13,opt,name=hlzq2,proto3" json:"hlzq2,omitempty"` // 混料准确率2
  791. Hlzql1 int32 `protobuf:"varint,14,opt,name=hlzql1,proto3" json:"hlzql1,omitempty"` // 混料正确率1
  792. Hlzql2 int32 `protobuf:"varint,15,opt,name=hlzql2,proto3" json:"hlzql2,omitempty"` // 混料正确率2
  793. IsError bool `protobuf:"varint,16,opt,name=is_error,json=isError,proto3" json:"is_error,omitempty"` // 只看超出预设值数据
  794. ButtonType string `protobuf:"bytes,17,opt,name=button_type,json=buttonType,proto3" json:"button_type,omitempty"`
  795. IsUse string `protobuf:"bytes,18,opt,name=is_use,json=isUse,proto3" json:"is_use,omitempty"`
  796. Pagination *PaginationModel `protobuf:"bytes,19,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  797. }
  798. func (x *MixFeedStatisticsRequest) Reset() {
  799. *x = MixFeedStatisticsRequest{}
  800. if protoimpl.UnsafeEnabled {
  801. mi := &file_backend_operation_statistic_proto_msgTypes[8]
  802. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  803. ms.StoreMessageInfo(mi)
  804. }
  805. }
  806. func (x *MixFeedStatisticsRequest) String() string {
  807. return protoimpl.X.MessageStringOf(x)
  808. }
  809. func (*MixFeedStatisticsRequest) ProtoMessage() {}
  810. func (x *MixFeedStatisticsRequest) ProtoReflect() protoreflect.Message {
  811. mi := &file_backend_operation_statistic_proto_msgTypes[8]
  812. if protoimpl.UnsafeEnabled && x != nil {
  813. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  814. if ms.LoadMessageInfo() == nil {
  815. ms.StoreMessageInfo(mi)
  816. }
  817. return ms
  818. }
  819. return mi.MessageOf(x)
  820. }
  821. // Deprecated: Use MixFeedStatisticsRequest.ProtoReflect.Descriptor instead.
  822. func (*MixFeedStatisticsRequest) Descriptor() ([]byte, []int) {
  823. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{8}
  824. }
  825. func (x *MixFeedStatisticsRequest) GetStartTime() string {
  826. if x != nil {
  827. return x.StartTime
  828. }
  829. return ""
  830. }
  831. func (x *MixFeedStatisticsRequest) GetEndTime() string {
  832. if x != nil {
  833. return x.EndTime
  834. }
  835. return ""
  836. }
  837. func (x *MixFeedStatisticsRequest) GetApiName() string {
  838. if x != nil {
  839. return x.ApiName
  840. }
  841. return ""
  842. }
  843. func (x *MixFeedStatisticsRequest) GetPastureId() int32 {
  844. if x != nil {
  845. return x.PastureId
  846. }
  847. return 0
  848. }
  849. func (x *MixFeedStatisticsRequest) GetEquipmentName() string {
  850. if x != nil {
  851. return x.EquipmentName
  852. }
  853. return ""
  854. }
  855. func (x *MixFeedStatisticsRequest) GetTrainNumber() string {
  856. if x != nil {
  857. return x.TrainNumber
  858. }
  859. return ""
  860. }
  861. func (x *MixFeedStatisticsRequest) GetClassNumber() int32 {
  862. if x != nil {
  863. return x.ClassNumber
  864. }
  865. return 0
  866. }
  867. func (x *MixFeedStatisticsRequest) GetFormulationName() string {
  868. if x != nil {
  869. return x.FormulationName
  870. }
  871. return ""
  872. }
  873. func (x *MixFeedStatisticsRequest) GetJumpType() int32 {
  874. if x != nil {
  875. return x.JumpType
  876. }
  877. return 0
  878. }
  879. func (x *MixFeedStatisticsRequest) GetHlwc1() int32 {
  880. if x != nil {
  881. return x.Hlwc1
  882. }
  883. return 0
  884. }
  885. func (x *MixFeedStatisticsRequest) GetHlwc2() int32 {
  886. if x != nil {
  887. return x.Hlwc2
  888. }
  889. return 0
  890. }
  891. func (x *MixFeedStatisticsRequest) GetHlzq1() int32 {
  892. if x != nil {
  893. return x.Hlzq1
  894. }
  895. return 0
  896. }
  897. func (x *MixFeedStatisticsRequest) GetHlzq2() int32 {
  898. if x != nil {
  899. return x.Hlzq2
  900. }
  901. return 0
  902. }
  903. func (x *MixFeedStatisticsRequest) GetHlzql1() int32 {
  904. if x != nil {
  905. return x.Hlzql1
  906. }
  907. return 0
  908. }
  909. func (x *MixFeedStatisticsRequest) GetHlzql2() int32 {
  910. if x != nil {
  911. return x.Hlzql2
  912. }
  913. return 0
  914. }
  915. func (x *MixFeedStatisticsRequest) GetIsError() bool {
  916. if x != nil {
  917. return x.IsError
  918. }
  919. return false
  920. }
  921. func (x *MixFeedStatisticsRequest) GetButtonType() string {
  922. if x != nil {
  923. return x.ButtonType
  924. }
  925. return ""
  926. }
  927. func (x *MixFeedStatisticsRequest) GetIsUse() string {
  928. if x != nil {
  929. return x.IsUse
  930. }
  931. return ""
  932. }
  933. func (x *MixFeedStatisticsRequest) GetPagination() *PaginationModel {
  934. if x != nil {
  935. return x.Pagination
  936. }
  937. return nil
  938. }
  939. // SprinkleStatisticsRequest 准确性分析-撒料统计
  940. type SprinkleStatisticsRequest struct {
  941. state protoimpl.MessageState
  942. sizeCache protoimpl.SizeCache
  943. unknownFields protoimpl.UnknownFields
  944. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  945. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  946. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  947. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  948. EquipmentName string `protobuf:"bytes,5,opt,name=equipment_name,json=equipmentName,proto3" json:"equipment_name,omitempty"` // tmr设备名称
  949. TrainNumber string `protobuf:"bytes,6,opt,name=train_number,json=trainNumber,proto3" json:"train_number,omitempty"` // 车次
  950. ClassNumber int32 `protobuf:"varint,7,opt,name=class_number,json=classNumber,proto3" json:"class_number,omitempty"` // 班次
  951. FormulationName string `protobuf:"bytes,8,opt,name=formulation_name,json=formulationName,proto3" json:"formulation_name,omitempty"` // 配方名称
  952. BarnName string `protobuf:"bytes,9,opt,name=barn_name,json=barnName,proto3" json:"barn_name,omitempty"` // 栏舍名称
  953. JumpType int32 `protobuf:"varint,10,opt,name=jump_type,json=jumpType,proto3" json:"jump_type,omitempty"` // 跳转方式 0 手动跳转 1 自动跳转
  954. Slwc1 int32 `protobuf:"varint,11,opt,name=slwc1,proto3" json:"slwc1,omitempty"` // 撒料误差值1
  955. Slwc2 int32 `protobuf:"varint,12,opt,name=slwc2,proto3" json:"slwc2,omitempty"` // 撒料误差值2
  956. Slzq1 int32 `protobuf:"varint,13,opt,name=slzq1,proto3" json:"slzq1,omitempty"` // 撒料准确率1
  957. Slzq2 int32 `protobuf:"varint,14,opt,name=slzq2,proto3" json:"slzq2,omitempty"` // 撒料准确率2
  958. Slzql1 int32 `protobuf:"varint,15,opt,name=slzql1,proto3" json:"slzql1,omitempty"` // 撒料正确率1
  959. Slzql2 int32 `protobuf:"varint,16,opt,name=slzql2,proto3" json:"slzql2,omitempty"` // 撒料正确率2
  960. IsError bool `protobuf:"varint,17,opt,name=is_error,json=isError,proto3" json:"is_error,omitempty"` // 只看超出预设值数据
  961. ButtonType string `protobuf:"bytes,18,opt,name=button_type,json=buttonType,proto3" json:"button_type,omitempty"`
  962. IsUse string `protobuf:"bytes,19,opt,name=is_use,json=isUse,proto3" json:"is_use,omitempty"`
  963. Pagination *PaginationModel `protobuf:"bytes,20,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  964. }
  965. func (x *SprinkleStatisticsRequest) Reset() {
  966. *x = SprinkleStatisticsRequest{}
  967. if protoimpl.UnsafeEnabled {
  968. mi := &file_backend_operation_statistic_proto_msgTypes[9]
  969. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  970. ms.StoreMessageInfo(mi)
  971. }
  972. }
  973. func (x *SprinkleStatisticsRequest) String() string {
  974. return protoimpl.X.MessageStringOf(x)
  975. }
  976. func (*SprinkleStatisticsRequest) ProtoMessage() {}
  977. func (x *SprinkleStatisticsRequest) ProtoReflect() protoreflect.Message {
  978. mi := &file_backend_operation_statistic_proto_msgTypes[9]
  979. if protoimpl.UnsafeEnabled && x != nil {
  980. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  981. if ms.LoadMessageInfo() == nil {
  982. ms.StoreMessageInfo(mi)
  983. }
  984. return ms
  985. }
  986. return mi.MessageOf(x)
  987. }
  988. // Deprecated: Use SprinkleStatisticsRequest.ProtoReflect.Descriptor instead.
  989. func (*SprinkleStatisticsRequest) Descriptor() ([]byte, []int) {
  990. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{9}
  991. }
  992. func (x *SprinkleStatisticsRequest) GetStartTime() string {
  993. if x != nil {
  994. return x.StartTime
  995. }
  996. return ""
  997. }
  998. func (x *SprinkleStatisticsRequest) GetEndTime() string {
  999. if x != nil {
  1000. return x.EndTime
  1001. }
  1002. return ""
  1003. }
  1004. func (x *SprinkleStatisticsRequest) GetApiName() string {
  1005. if x != nil {
  1006. return x.ApiName
  1007. }
  1008. return ""
  1009. }
  1010. func (x *SprinkleStatisticsRequest) GetPastureId() int32 {
  1011. if x != nil {
  1012. return x.PastureId
  1013. }
  1014. return 0
  1015. }
  1016. func (x *SprinkleStatisticsRequest) GetEquipmentName() string {
  1017. if x != nil {
  1018. return x.EquipmentName
  1019. }
  1020. return ""
  1021. }
  1022. func (x *SprinkleStatisticsRequest) GetTrainNumber() string {
  1023. if x != nil {
  1024. return x.TrainNumber
  1025. }
  1026. return ""
  1027. }
  1028. func (x *SprinkleStatisticsRequest) GetClassNumber() int32 {
  1029. if x != nil {
  1030. return x.ClassNumber
  1031. }
  1032. return 0
  1033. }
  1034. func (x *SprinkleStatisticsRequest) GetFormulationName() string {
  1035. if x != nil {
  1036. return x.FormulationName
  1037. }
  1038. return ""
  1039. }
  1040. func (x *SprinkleStatisticsRequest) GetBarnName() string {
  1041. if x != nil {
  1042. return x.BarnName
  1043. }
  1044. return ""
  1045. }
  1046. func (x *SprinkleStatisticsRequest) GetJumpType() int32 {
  1047. if x != nil {
  1048. return x.JumpType
  1049. }
  1050. return 0
  1051. }
  1052. func (x *SprinkleStatisticsRequest) GetSlwc1() int32 {
  1053. if x != nil {
  1054. return x.Slwc1
  1055. }
  1056. return 0
  1057. }
  1058. func (x *SprinkleStatisticsRequest) GetSlwc2() int32 {
  1059. if x != nil {
  1060. return x.Slwc2
  1061. }
  1062. return 0
  1063. }
  1064. func (x *SprinkleStatisticsRequest) GetSlzq1() int32 {
  1065. if x != nil {
  1066. return x.Slzq1
  1067. }
  1068. return 0
  1069. }
  1070. func (x *SprinkleStatisticsRequest) GetSlzq2() int32 {
  1071. if x != nil {
  1072. return x.Slzq2
  1073. }
  1074. return 0
  1075. }
  1076. func (x *SprinkleStatisticsRequest) GetSlzql1() int32 {
  1077. if x != nil {
  1078. return x.Slzql1
  1079. }
  1080. return 0
  1081. }
  1082. func (x *SprinkleStatisticsRequest) GetSlzql2() int32 {
  1083. if x != nil {
  1084. return x.Slzql2
  1085. }
  1086. return 0
  1087. }
  1088. func (x *SprinkleStatisticsRequest) GetIsError() bool {
  1089. if x != nil {
  1090. return x.IsError
  1091. }
  1092. return false
  1093. }
  1094. func (x *SprinkleStatisticsRequest) GetButtonType() string {
  1095. if x != nil {
  1096. return x.ButtonType
  1097. }
  1098. return ""
  1099. }
  1100. func (x *SprinkleStatisticsRequest) GetIsUse() string {
  1101. if x != nil {
  1102. return x.IsUse
  1103. }
  1104. return ""
  1105. }
  1106. func (x *SprinkleStatisticsRequest) GetPagination() *PaginationModel {
  1107. if x != nil {
  1108. return x.Pagination
  1109. }
  1110. return nil
  1111. }
  1112. // GetDataByNameRequest
  1113. type GetDataByNameRequest struct {
  1114. state protoimpl.MessageState
  1115. sizeCache protoimpl.SizeCache
  1116. unknownFields protoimpl.UnknownFields
  1117. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  1118. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  1119. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1120. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1121. }
  1122. func (x *GetDataByNameRequest) Reset() {
  1123. *x = GetDataByNameRequest{}
  1124. if protoimpl.UnsafeEnabled {
  1125. mi := &file_backend_operation_statistic_proto_msgTypes[10]
  1126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1127. ms.StoreMessageInfo(mi)
  1128. }
  1129. }
  1130. func (x *GetDataByNameRequest) String() string {
  1131. return protoimpl.X.MessageStringOf(x)
  1132. }
  1133. func (*GetDataByNameRequest) ProtoMessage() {}
  1134. func (x *GetDataByNameRequest) ProtoReflect() protoreflect.Message {
  1135. mi := &file_backend_operation_statistic_proto_msgTypes[10]
  1136. if protoimpl.UnsafeEnabled && x != nil {
  1137. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1138. if ms.LoadMessageInfo() == nil {
  1139. ms.StoreMessageInfo(mi)
  1140. }
  1141. return ms
  1142. }
  1143. return mi.MessageOf(x)
  1144. }
  1145. // Deprecated: Use GetDataByNameRequest.ProtoReflect.Descriptor instead.
  1146. func (*GetDataByNameRequest) Descriptor() ([]byte, []int) {
  1147. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{10}
  1148. }
  1149. func (x *GetDataByNameRequest) GetStartTime() string {
  1150. if x != nil {
  1151. return x.StartTime
  1152. }
  1153. return ""
  1154. }
  1155. func (x *GetDataByNameRequest) GetEndTime() string {
  1156. if x != nil {
  1157. return x.EndTime
  1158. }
  1159. return ""
  1160. }
  1161. func (x *GetDataByNameRequest) GetApiName() string {
  1162. if x != nil {
  1163. return x.ApiName
  1164. }
  1165. return ""
  1166. }
  1167. func (x *GetDataByNameRequest) GetPastureId() int32 {
  1168. if x != nil {
  1169. return x.PastureId
  1170. }
  1171. return 0
  1172. }
  1173. // ProcessAnalysisRequest 过程分析
  1174. type ProcessAnalysisRequest struct {
  1175. state protoimpl.MessageState
  1176. sizeCache protoimpl.SizeCache
  1177. unknownFields protoimpl.UnknownFields
  1178. StartTime string `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  1179. EndTime string `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  1180. ApiName string `protobuf:"bytes,3,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1181. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1182. PlanType int32 `protobuf:"varint,5,opt,name=plan_type,json=planType,proto3" json:"plan_type,omitempty"` // 计划类型
  1183. TmrName []string `protobuf:"bytes,6,rep,name=tmr_name,json=tmrName,proto3" json:"tmr_name,omitempty"` // TMR名称
  1184. ErrorRange string `protobuf:"bytes,7,opt,name=error_range,json=errorRange,proto3" json:"error_range,omitempty"` // 误差筛选范围
  1185. WorkStatus string `protobuf:"bytes,8,opt,name=work_status,json=workStatus,proto3" json:"work_status,omitempty"` // 工作状态
  1186. MixFeedType string `protobuf:"bytes,9,opt,name=mix_feed_type,json=mixFeedType,proto3" json:"mix_feed_type,omitempty"` // 混料类别
  1187. Hlwc1 int32 `protobuf:"varint,10,opt,name=hlwc1,proto3" json:"hlwc1,omitempty"` // 混料误差值1
  1188. Hlwc2 int32 `protobuf:"varint,11,opt,name=hlwc2,proto3" json:"hlwc2,omitempty"` // 混料误差值2
  1189. Hlzq1 int32 `protobuf:"varint,12,opt,name=hlzq1,proto3" json:"hlzq1,omitempty"` // 混料准确率1
  1190. Hlzq2 int32 `protobuf:"varint,13,opt,name=hlzq2,proto3" json:"hlzq2,omitempty"` // 混料准确率2
  1191. Slwc1 int32 `protobuf:"varint,14,opt,name=slwc1,proto3" json:"slwc1,omitempty"` // 撒料误差值1
  1192. Slwc2 int32 `protobuf:"varint,15,opt,name=slwc2,proto3" json:"slwc2,omitempty"` // 撒料误差值2
  1193. Slzq1 int32 `protobuf:"varint,16,opt,name=slzq1,proto3" json:"slzq1,omitempty"` // 撒料准确率1
  1194. Slzq2 int32 `protobuf:"varint,17,opt,name=slzq2,proto3" json:"slzq2,omitempty"` // 撒料准确率2
  1195. Pagination *PaginationModel `protobuf:"bytes,18,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1196. }
  1197. func (x *ProcessAnalysisRequest) Reset() {
  1198. *x = ProcessAnalysisRequest{}
  1199. if protoimpl.UnsafeEnabled {
  1200. mi := &file_backend_operation_statistic_proto_msgTypes[11]
  1201. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1202. ms.StoreMessageInfo(mi)
  1203. }
  1204. }
  1205. func (x *ProcessAnalysisRequest) String() string {
  1206. return protoimpl.X.MessageStringOf(x)
  1207. }
  1208. func (*ProcessAnalysisRequest) ProtoMessage() {}
  1209. func (x *ProcessAnalysisRequest) ProtoReflect() protoreflect.Message {
  1210. mi := &file_backend_operation_statistic_proto_msgTypes[11]
  1211. if protoimpl.UnsafeEnabled && x != nil {
  1212. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1213. if ms.LoadMessageInfo() == nil {
  1214. ms.StoreMessageInfo(mi)
  1215. }
  1216. return ms
  1217. }
  1218. return mi.MessageOf(x)
  1219. }
  1220. // Deprecated: Use ProcessAnalysisRequest.ProtoReflect.Descriptor instead.
  1221. func (*ProcessAnalysisRequest) Descriptor() ([]byte, []int) {
  1222. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{11}
  1223. }
  1224. func (x *ProcessAnalysisRequest) GetStartTime() string {
  1225. if x != nil {
  1226. return x.StartTime
  1227. }
  1228. return ""
  1229. }
  1230. func (x *ProcessAnalysisRequest) GetEndTime() string {
  1231. if x != nil {
  1232. return x.EndTime
  1233. }
  1234. return ""
  1235. }
  1236. func (x *ProcessAnalysisRequest) GetApiName() string {
  1237. if x != nil {
  1238. return x.ApiName
  1239. }
  1240. return ""
  1241. }
  1242. func (x *ProcessAnalysisRequest) GetPastureId() int32 {
  1243. if x != nil {
  1244. return x.PastureId
  1245. }
  1246. return 0
  1247. }
  1248. func (x *ProcessAnalysisRequest) GetPlanType() int32 {
  1249. if x != nil {
  1250. return x.PlanType
  1251. }
  1252. return 0
  1253. }
  1254. func (x *ProcessAnalysisRequest) GetTmrName() []string {
  1255. if x != nil {
  1256. return x.TmrName
  1257. }
  1258. return nil
  1259. }
  1260. func (x *ProcessAnalysisRequest) GetErrorRange() string {
  1261. if x != nil {
  1262. return x.ErrorRange
  1263. }
  1264. return ""
  1265. }
  1266. func (x *ProcessAnalysisRequest) GetWorkStatus() string {
  1267. if x != nil {
  1268. return x.WorkStatus
  1269. }
  1270. return ""
  1271. }
  1272. func (x *ProcessAnalysisRequest) GetMixFeedType() string {
  1273. if x != nil {
  1274. return x.MixFeedType
  1275. }
  1276. return ""
  1277. }
  1278. func (x *ProcessAnalysisRequest) GetHlwc1() int32 {
  1279. if x != nil {
  1280. return x.Hlwc1
  1281. }
  1282. return 0
  1283. }
  1284. func (x *ProcessAnalysisRequest) GetHlwc2() int32 {
  1285. if x != nil {
  1286. return x.Hlwc2
  1287. }
  1288. return 0
  1289. }
  1290. func (x *ProcessAnalysisRequest) GetHlzq1() int32 {
  1291. if x != nil {
  1292. return x.Hlzq1
  1293. }
  1294. return 0
  1295. }
  1296. func (x *ProcessAnalysisRequest) GetHlzq2() int32 {
  1297. if x != nil {
  1298. return x.Hlzq2
  1299. }
  1300. return 0
  1301. }
  1302. func (x *ProcessAnalysisRequest) GetSlwc1() int32 {
  1303. if x != nil {
  1304. return x.Slwc1
  1305. }
  1306. return 0
  1307. }
  1308. func (x *ProcessAnalysisRequest) GetSlwc2() int32 {
  1309. if x != nil {
  1310. return x.Slwc2
  1311. }
  1312. return 0
  1313. }
  1314. func (x *ProcessAnalysisRequest) GetSlzq1() int32 {
  1315. if x != nil {
  1316. return x.Slzq1
  1317. }
  1318. return 0
  1319. }
  1320. func (x *ProcessAnalysisRequest) GetSlzq2() int32 {
  1321. if x != nil {
  1322. return x.Slzq2
  1323. }
  1324. return 0
  1325. }
  1326. func (x *ProcessAnalysisRequest) GetPagination() *PaginationModel {
  1327. if x != nil {
  1328. return x.Pagination
  1329. }
  1330. return nil
  1331. }
  1332. // ProcessMixedSprinkleDetailRequest
  1333. type ProcessMixedSprinkleDetailRequest struct {
  1334. state protoimpl.MessageState
  1335. sizeCache protoimpl.SizeCache
  1336. unknownFields protoimpl.UnknownFields
  1337. ApiName string `protobuf:"bytes,1,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"`
  1338. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"`
  1339. Pid string `protobuf:"bytes,3,opt,name=pid,proto3" json:"pid,omitempty"`
  1340. FclassId string `protobuf:"bytes,4,opt,name=fclass_id,json=fclassId,proto3" json:"fclass_id,omitempty"`
  1341. Id string `protobuf:"bytes,5,opt,name=id,proto3" json:"id,omitempty"`
  1342. Pagination *PaginationModel `protobuf:"bytes,6,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1343. }
  1344. func (x *ProcessMixedSprinkleDetailRequest) Reset() {
  1345. *x = ProcessMixedSprinkleDetailRequest{}
  1346. if protoimpl.UnsafeEnabled {
  1347. mi := &file_backend_operation_statistic_proto_msgTypes[12]
  1348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1349. ms.StoreMessageInfo(mi)
  1350. }
  1351. }
  1352. func (x *ProcessMixedSprinkleDetailRequest) String() string {
  1353. return protoimpl.X.MessageStringOf(x)
  1354. }
  1355. func (*ProcessMixedSprinkleDetailRequest) ProtoMessage() {}
  1356. func (x *ProcessMixedSprinkleDetailRequest) ProtoReflect() protoreflect.Message {
  1357. mi := &file_backend_operation_statistic_proto_msgTypes[12]
  1358. if protoimpl.UnsafeEnabled && x != nil {
  1359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1360. if ms.LoadMessageInfo() == nil {
  1361. ms.StoreMessageInfo(mi)
  1362. }
  1363. return ms
  1364. }
  1365. return mi.MessageOf(x)
  1366. }
  1367. // Deprecated: Use ProcessMixedSprinkleDetailRequest.ProtoReflect.Descriptor instead.
  1368. func (*ProcessMixedSprinkleDetailRequest) Descriptor() ([]byte, []int) {
  1369. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{12}
  1370. }
  1371. func (x *ProcessMixedSprinkleDetailRequest) GetApiName() string {
  1372. if x != nil {
  1373. return x.ApiName
  1374. }
  1375. return ""
  1376. }
  1377. func (x *ProcessMixedSprinkleDetailRequest) GetPastureId() int32 {
  1378. if x != nil {
  1379. return x.PastureId
  1380. }
  1381. return 0
  1382. }
  1383. func (x *ProcessMixedSprinkleDetailRequest) GetPid() string {
  1384. if x != nil {
  1385. return x.Pid
  1386. }
  1387. return ""
  1388. }
  1389. func (x *ProcessMixedSprinkleDetailRequest) GetFclassId() string {
  1390. if x != nil {
  1391. return x.FclassId
  1392. }
  1393. return ""
  1394. }
  1395. func (x *ProcessMixedSprinkleDetailRequest) GetId() string {
  1396. if x != nil {
  1397. return x.Id
  1398. }
  1399. return ""
  1400. }
  1401. func (x *ProcessMixedSprinkleDetailRequest) GetPagination() *PaginationModel {
  1402. if x != nil {
  1403. return x.Pagination
  1404. }
  1405. return nil
  1406. }
  1407. type TrainNumberRequest struct {
  1408. state protoimpl.MessageState
  1409. sizeCache protoimpl.SizeCache
  1410. unknownFields protoimpl.UnknownFields
  1411. ApiName string `protobuf:"bytes,1,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1412. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1413. InfoName string `protobuf:"bytes,3,opt,name=info_name,json=infoName,proto3" json:"info_name,omitempty"`
  1414. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1415. }
  1416. func (x *TrainNumberRequest) Reset() {
  1417. *x = TrainNumberRequest{}
  1418. if protoimpl.UnsafeEnabled {
  1419. mi := &file_backend_operation_statistic_proto_msgTypes[13]
  1420. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1421. ms.StoreMessageInfo(mi)
  1422. }
  1423. }
  1424. func (x *TrainNumberRequest) String() string {
  1425. return protoimpl.X.MessageStringOf(x)
  1426. }
  1427. func (*TrainNumberRequest) ProtoMessage() {}
  1428. func (x *TrainNumberRequest) ProtoReflect() protoreflect.Message {
  1429. mi := &file_backend_operation_statistic_proto_msgTypes[13]
  1430. if protoimpl.UnsafeEnabled && x != nil {
  1431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1432. if ms.LoadMessageInfo() == nil {
  1433. ms.StoreMessageInfo(mi)
  1434. }
  1435. return ms
  1436. }
  1437. return mi.MessageOf(x)
  1438. }
  1439. // Deprecated: Use TrainNumberRequest.ProtoReflect.Descriptor instead.
  1440. func (*TrainNumberRequest) Descriptor() ([]byte, []int) {
  1441. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{13}
  1442. }
  1443. func (x *TrainNumberRequest) GetApiName() string {
  1444. if x != nil {
  1445. return x.ApiName
  1446. }
  1447. return ""
  1448. }
  1449. func (x *TrainNumberRequest) GetPastureId() int32 {
  1450. if x != nil {
  1451. return x.PastureId
  1452. }
  1453. return 0
  1454. }
  1455. func (x *TrainNumberRequest) GetInfoName() string {
  1456. if x != nil {
  1457. return x.InfoName
  1458. }
  1459. return ""
  1460. }
  1461. func (x *TrainNumberRequest) GetPagination() *PaginationModel {
  1462. if x != nil {
  1463. return x.Pagination
  1464. }
  1465. return nil
  1466. }
  1467. type TrainNumberResponse struct {
  1468. state protoimpl.MessageState
  1469. sizeCache protoimpl.SizeCache
  1470. unknownFields protoimpl.UnknownFields
  1471. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1472. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1473. Data *TrainNumberData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1474. }
  1475. func (x *TrainNumberResponse) Reset() {
  1476. *x = TrainNumberResponse{}
  1477. if protoimpl.UnsafeEnabled {
  1478. mi := &file_backend_operation_statistic_proto_msgTypes[14]
  1479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1480. ms.StoreMessageInfo(mi)
  1481. }
  1482. }
  1483. func (x *TrainNumberResponse) String() string {
  1484. return protoimpl.X.MessageStringOf(x)
  1485. }
  1486. func (*TrainNumberResponse) ProtoMessage() {}
  1487. func (x *TrainNumberResponse) ProtoReflect() protoreflect.Message {
  1488. mi := &file_backend_operation_statistic_proto_msgTypes[14]
  1489. if protoimpl.UnsafeEnabled && x != nil {
  1490. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1491. if ms.LoadMessageInfo() == nil {
  1492. ms.StoreMessageInfo(mi)
  1493. }
  1494. return ms
  1495. }
  1496. return mi.MessageOf(x)
  1497. }
  1498. // Deprecated: Use TrainNumberResponse.ProtoReflect.Descriptor instead.
  1499. func (*TrainNumberResponse) Descriptor() ([]byte, []int) {
  1500. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{14}
  1501. }
  1502. func (x *TrainNumberResponse) GetCode() int32 {
  1503. if x != nil {
  1504. return x.Code
  1505. }
  1506. return 0
  1507. }
  1508. func (x *TrainNumberResponse) GetMsg() string {
  1509. if x != nil {
  1510. return x.Msg
  1511. }
  1512. return ""
  1513. }
  1514. func (x *TrainNumberResponse) GetData() *TrainNumberData {
  1515. if x != nil {
  1516. return x.Data
  1517. }
  1518. return nil
  1519. }
  1520. type TrainNumberData struct {
  1521. state protoimpl.MessageState
  1522. sizeCache protoimpl.SizeCache
  1523. unknownFields protoimpl.UnknownFields
  1524. List []*FormulaOptionEnum `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1525. }
  1526. func (x *TrainNumberData) Reset() {
  1527. *x = TrainNumberData{}
  1528. if protoimpl.UnsafeEnabled {
  1529. mi := &file_backend_operation_statistic_proto_msgTypes[15]
  1530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1531. ms.StoreMessageInfo(mi)
  1532. }
  1533. }
  1534. func (x *TrainNumberData) String() string {
  1535. return protoimpl.X.MessageStringOf(x)
  1536. }
  1537. func (*TrainNumberData) ProtoMessage() {}
  1538. func (x *TrainNumberData) ProtoReflect() protoreflect.Message {
  1539. mi := &file_backend_operation_statistic_proto_msgTypes[15]
  1540. if protoimpl.UnsafeEnabled && x != nil {
  1541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1542. if ms.LoadMessageInfo() == nil {
  1543. ms.StoreMessageInfo(mi)
  1544. }
  1545. return ms
  1546. }
  1547. return mi.MessageOf(x)
  1548. }
  1549. // Deprecated: Use TrainNumberData.ProtoReflect.Descriptor instead.
  1550. func (*TrainNumberData) Descriptor() ([]byte, []int) {
  1551. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{15}
  1552. }
  1553. func (x *TrainNumberData) GetList() []*FormulaOptionEnum {
  1554. if x != nil {
  1555. return x.List
  1556. }
  1557. return nil
  1558. }
  1559. // 首页 dashboard 准确性分析
  1560. type SearchAnalysisAccuracyRequest struct {
  1561. state protoimpl.MessageState
  1562. sizeCache protoimpl.SizeCache
  1563. unknownFields protoimpl.UnknownFields
  1564. 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 泌乳牛
  1565. FeedFormulaId int32 `protobuf:"varint,2,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  1566. StartDate string `protobuf:"bytes,3,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` // 开始时间
  1567. EndDate string `protobuf:"bytes,4,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"` // 结束时间
  1568. PastureIds []int32 `protobuf:"varint,5,rep,packed,name=pasture_ids,json=pastureIds,proto3" json:"pasture_ids,omitempty"` //牧场ids
  1569. TopRandStart float32 `protobuf:"fixed32,6,opt,name=top_rand_start,json=topRandStart,proto3" json:"top_rand_start,omitempty"` // 排名区间开始位
  1570. TopRandEnd float32 `protobuf:"fixed32,7,opt,name=top_rand_end,json=topRandEnd,proto3" json:"top_rand_end,omitempty"` // 排名区间结束位
  1571. DashboardTopType DashboardTopType_Kind `protobuf:"varint,8,opt,name=dashboard_top_type,json=dashboardTopType,proto3,enum=backend.operation.DashboardTopType_Kind" json:"dashboard_top_type,omitempty"` // 排序区间标识
  1572. }
  1573. func (x *SearchAnalysisAccuracyRequest) Reset() {
  1574. *x = SearchAnalysisAccuracyRequest{}
  1575. if protoimpl.UnsafeEnabled {
  1576. mi := &file_backend_operation_statistic_proto_msgTypes[16]
  1577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1578. ms.StoreMessageInfo(mi)
  1579. }
  1580. }
  1581. func (x *SearchAnalysisAccuracyRequest) String() string {
  1582. return protoimpl.X.MessageStringOf(x)
  1583. }
  1584. func (*SearchAnalysisAccuracyRequest) ProtoMessage() {}
  1585. func (x *SearchAnalysisAccuracyRequest) ProtoReflect() protoreflect.Message {
  1586. mi := &file_backend_operation_statistic_proto_msgTypes[16]
  1587. if protoimpl.UnsafeEnabled && x != nil {
  1588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1589. if ms.LoadMessageInfo() == nil {
  1590. ms.StoreMessageInfo(mi)
  1591. }
  1592. return ms
  1593. }
  1594. return mi.MessageOf(x)
  1595. }
  1596. // Deprecated: Use SearchAnalysisAccuracyRequest.ProtoReflect.Descriptor instead.
  1597. func (*SearchAnalysisAccuracyRequest) Descriptor() ([]byte, []int) {
  1598. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{16}
  1599. }
  1600. func (x *SearchAnalysisAccuracyRequest) GetCattleParentCategoryId() CattleCategoryParent_Kind {
  1601. if x != nil {
  1602. return x.CattleParentCategoryId
  1603. }
  1604. return CattleCategoryParent_INVALID
  1605. }
  1606. func (x *SearchAnalysisAccuracyRequest) GetFeedFormulaId() int32 {
  1607. if x != nil {
  1608. return x.FeedFormulaId
  1609. }
  1610. return 0
  1611. }
  1612. func (x *SearchAnalysisAccuracyRequest) GetStartDate() string {
  1613. if x != nil {
  1614. return x.StartDate
  1615. }
  1616. return ""
  1617. }
  1618. func (x *SearchAnalysisAccuracyRequest) GetEndDate() string {
  1619. if x != nil {
  1620. return x.EndDate
  1621. }
  1622. return ""
  1623. }
  1624. func (x *SearchAnalysisAccuracyRequest) GetPastureIds() []int32 {
  1625. if x != nil {
  1626. return x.PastureIds
  1627. }
  1628. return nil
  1629. }
  1630. func (x *SearchAnalysisAccuracyRequest) GetTopRandStart() float32 {
  1631. if x != nil {
  1632. return x.TopRandStart
  1633. }
  1634. return 0
  1635. }
  1636. func (x *SearchAnalysisAccuracyRequest) GetTopRandEnd() float32 {
  1637. if x != nil {
  1638. return x.TopRandEnd
  1639. }
  1640. return 0
  1641. }
  1642. func (x *SearchAnalysisAccuracyRequest) GetDashboardTopType() DashboardTopType_Kind {
  1643. if x != nil {
  1644. return x.DashboardTopType
  1645. }
  1646. return DashboardTopType_INVALID
  1647. }
  1648. type SearchAnalysisAccuracyResponse struct {
  1649. state protoimpl.MessageState
  1650. sizeCache protoimpl.SizeCache
  1651. unknownFields protoimpl.UnknownFields
  1652. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1653. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1654. Data *AnalysisAccuracy `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1655. }
  1656. func (x *SearchAnalysisAccuracyResponse) Reset() {
  1657. *x = SearchAnalysisAccuracyResponse{}
  1658. if protoimpl.UnsafeEnabled {
  1659. mi := &file_backend_operation_statistic_proto_msgTypes[17]
  1660. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1661. ms.StoreMessageInfo(mi)
  1662. }
  1663. }
  1664. func (x *SearchAnalysisAccuracyResponse) String() string {
  1665. return protoimpl.X.MessageStringOf(x)
  1666. }
  1667. func (*SearchAnalysisAccuracyResponse) ProtoMessage() {}
  1668. func (x *SearchAnalysisAccuracyResponse) ProtoReflect() protoreflect.Message {
  1669. mi := &file_backend_operation_statistic_proto_msgTypes[17]
  1670. if protoimpl.UnsafeEnabled && x != nil {
  1671. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1672. if ms.LoadMessageInfo() == nil {
  1673. ms.StoreMessageInfo(mi)
  1674. }
  1675. return ms
  1676. }
  1677. return mi.MessageOf(x)
  1678. }
  1679. // Deprecated: Use SearchAnalysisAccuracyResponse.ProtoReflect.Descriptor instead.
  1680. func (*SearchAnalysisAccuracyResponse) Descriptor() ([]byte, []int) {
  1681. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{17}
  1682. }
  1683. func (x *SearchAnalysisAccuracyResponse) GetCode() int32 {
  1684. if x != nil {
  1685. return x.Code
  1686. }
  1687. return 0
  1688. }
  1689. func (x *SearchAnalysisAccuracyResponse) GetMsg() string {
  1690. if x != nil {
  1691. return x.Msg
  1692. }
  1693. return ""
  1694. }
  1695. func (x *SearchAnalysisAccuracyResponse) GetData() *AnalysisAccuracy {
  1696. if x != nil {
  1697. return x.Data
  1698. }
  1699. return nil
  1700. }
  1701. type AnalysisAccuracy struct {
  1702. state protoimpl.MessageState
  1703. sizeCache protoimpl.SizeCache
  1704. unknownFields protoimpl.UnknownFields
  1705. Chart *Chart `protobuf:"bytes,1,opt,name=chart,proto3" json:"chart,omitempty"`
  1706. Table *Table `protobuf:"bytes,2,opt,name=table,proto3" json:"table,omitempty"`
  1707. }
  1708. func (x *AnalysisAccuracy) Reset() {
  1709. *x = AnalysisAccuracy{}
  1710. if protoimpl.UnsafeEnabled {
  1711. mi := &file_backend_operation_statistic_proto_msgTypes[18]
  1712. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1713. ms.StoreMessageInfo(mi)
  1714. }
  1715. }
  1716. func (x *AnalysisAccuracy) String() string {
  1717. return protoimpl.X.MessageStringOf(x)
  1718. }
  1719. func (*AnalysisAccuracy) ProtoMessage() {}
  1720. func (x *AnalysisAccuracy) ProtoReflect() protoreflect.Message {
  1721. mi := &file_backend_operation_statistic_proto_msgTypes[18]
  1722. if protoimpl.UnsafeEnabled && x != nil {
  1723. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1724. if ms.LoadMessageInfo() == nil {
  1725. ms.StoreMessageInfo(mi)
  1726. }
  1727. return ms
  1728. }
  1729. return mi.MessageOf(x)
  1730. }
  1731. // Deprecated: Use AnalysisAccuracy.ProtoReflect.Descriptor instead.
  1732. func (*AnalysisAccuracy) Descriptor() ([]byte, []int) {
  1733. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{18}
  1734. }
  1735. func (x *AnalysisAccuracy) GetChart() *Chart {
  1736. if x != nil {
  1737. return x.Chart
  1738. }
  1739. return nil
  1740. }
  1741. func (x *AnalysisAccuracy) GetTable() *Table {
  1742. if x != nil {
  1743. return x.Table
  1744. }
  1745. return nil
  1746. }
  1747. type Chart struct {
  1748. state protoimpl.MessageState
  1749. sizeCache protoimpl.SizeCache
  1750. unknownFields protoimpl.UnknownFields
  1751. MixedFodderAccurateRatio *CommonValueRatio `protobuf:"bytes,4,opt,name=mixed_fodder_accurate_ratio,json=mixedFodderAccurateRatio,proto3" json:"mixed_fodder_accurate_ratio,omitempty"` // 混料准确率
  1752. MixedFodderCorrectRatio *CommonValueRatio `protobuf:"bytes,5,opt,name=mixed_fodder_correct_ratio,json=mixedFodderCorrectRatio,proto3" json:"mixed_fodder_correct_ratio,omitempty"` // 混料正确率
  1753. SprinkleFodderAccurateRatio *CommonValueRatio `protobuf:"bytes,6,opt,name=sprinkle_fodder_accurate_ratio,json=sprinkleFodderAccurateRatio,proto3" json:"sprinkle_fodder_accurate_ratio,omitempty"` // 撒料准确率
  1754. SprinkleFodderCorrectRatio *CommonValueRatio `protobuf:"bytes,7,opt,name=sprinkle_fodder_correct_ratio,json=sprinkleFodderCorrectRatio,proto3" json:"sprinkle_fodder_correct_ratio,omitempty"` // 撒料正确率
  1755. }
  1756. func (x *Chart) Reset() {
  1757. *x = Chart{}
  1758. if protoimpl.UnsafeEnabled {
  1759. mi := &file_backend_operation_statistic_proto_msgTypes[19]
  1760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1761. ms.StoreMessageInfo(mi)
  1762. }
  1763. }
  1764. func (x *Chart) String() string {
  1765. return protoimpl.X.MessageStringOf(x)
  1766. }
  1767. func (*Chart) ProtoMessage() {}
  1768. func (x *Chart) ProtoReflect() protoreflect.Message {
  1769. mi := &file_backend_operation_statistic_proto_msgTypes[19]
  1770. if protoimpl.UnsafeEnabled && x != nil {
  1771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1772. if ms.LoadMessageInfo() == nil {
  1773. ms.StoreMessageInfo(mi)
  1774. }
  1775. return ms
  1776. }
  1777. return mi.MessageOf(x)
  1778. }
  1779. // Deprecated: Use Chart.ProtoReflect.Descriptor instead.
  1780. func (*Chart) Descriptor() ([]byte, []int) {
  1781. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{19}
  1782. }
  1783. func (x *Chart) GetMixedFodderAccurateRatio() *CommonValueRatio {
  1784. if x != nil {
  1785. return x.MixedFodderAccurateRatio
  1786. }
  1787. return nil
  1788. }
  1789. func (x *Chart) GetMixedFodderCorrectRatio() *CommonValueRatio {
  1790. if x != nil {
  1791. return x.MixedFodderCorrectRatio
  1792. }
  1793. return nil
  1794. }
  1795. func (x *Chart) GetSprinkleFodderAccurateRatio() *CommonValueRatio {
  1796. if x != nil {
  1797. return x.SprinkleFodderAccurateRatio
  1798. }
  1799. return nil
  1800. }
  1801. func (x *Chart) GetSprinkleFodderCorrectRatio() *CommonValueRatio {
  1802. if x != nil {
  1803. return x.SprinkleFodderCorrectRatio
  1804. }
  1805. return nil
  1806. }
  1807. type Table struct {
  1808. state protoimpl.MessageState
  1809. sizeCache protoimpl.SizeCache
  1810. unknownFields protoimpl.UnknownFields
  1811. TableList []*Table_TableList `protobuf:"bytes,1,rep,name=table_list,json=tableList,proto3" json:"table_list,omitempty"`
  1812. }
  1813. func (x *Table) Reset() {
  1814. *x = Table{}
  1815. if protoimpl.UnsafeEnabled {
  1816. mi := &file_backend_operation_statistic_proto_msgTypes[20]
  1817. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1818. ms.StoreMessageInfo(mi)
  1819. }
  1820. }
  1821. func (x *Table) String() string {
  1822. return protoimpl.X.MessageStringOf(x)
  1823. }
  1824. func (*Table) ProtoMessage() {}
  1825. func (x *Table) ProtoReflect() protoreflect.Message {
  1826. mi := &file_backend_operation_statistic_proto_msgTypes[20]
  1827. if protoimpl.UnsafeEnabled && x != nil {
  1828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1829. if ms.LoadMessageInfo() == nil {
  1830. ms.StoreMessageInfo(mi)
  1831. }
  1832. return ms
  1833. }
  1834. return mi.MessageOf(x)
  1835. }
  1836. // Deprecated: Use Table.ProtoReflect.Descriptor instead.
  1837. func (*Table) Descriptor() ([]byte, []int) {
  1838. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{20}
  1839. }
  1840. func (x *Table) GetTableList() []*Table_TableList {
  1841. if x != nil {
  1842. return x.TableList
  1843. }
  1844. return nil
  1845. }
  1846. type CommonValueRatio struct {
  1847. state protoimpl.MessageState
  1848. sizeCache protoimpl.SizeCache
  1849. unknownFields protoimpl.UnknownFields
  1850. MaxValue string `protobuf:"bytes,1,opt,name=max_value,json=maxValue,proto3" json:"max_value,omitempty"` // 最高值
  1851. MiddleValue string `protobuf:"bytes,2,opt,name=middle_value,json=middleValue,proto3" json:"middle_value,omitempty"` // 中位值
  1852. MinValue string `protobuf:"bytes,3,opt,name=min_value,json=minValue,proto3" json:"min_value,omitempty"` // 最低值
  1853. DataList []*ValueRatio `protobuf:"bytes,4,rep,name=data_list,json=dataList,proto3" json:"data_list,omitempty"` // 数据集合
  1854. PastureName []string `protobuf:"bytes,5,rep,name=pasture_name,json=pastureName,proto3" json:"pasture_name,omitempty"` // 牧场名称集合
  1855. DateDay []string `protobuf:"bytes,6,rep,name=date_day,json=dateDay,proto3" json:"date_day,omitempty"` // 日期集合
  1856. }
  1857. func (x *CommonValueRatio) Reset() {
  1858. *x = CommonValueRatio{}
  1859. if protoimpl.UnsafeEnabled {
  1860. mi := &file_backend_operation_statistic_proto_msgTypes[21]
  1861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1862. ms.StoreMessageInfo(mi)
  1863. }
  1864. }
  1865. func (x *CommonValueRatio) String() string {
  1866. return protoimpl.X.MessageStringOf(x)
  1867. }
  1868. func (*CommonValueRatio) ProtoMessage() {}
  1869. func (x *CommonValueRatio) ProtoReflect() protoreflect.Message {
  1870. mi := &file_backend_operation_statistic_proto_msgTypes[21]
  1871. if protoimpl.UnsafeEnabled && x != nil {
  1872. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1873. if ms.LoadMessageInfo() == nil {
  1874. ms.StoreMessageInfo(mi)
  1875. }
  1876. return ms
  1877. }
  1878. return mi.MessageOf(x)
  1879. }
  1880. // Deprecated: Use CommonValueRatio.ProtoReflect.Descriptor instead.
  1881. func (*CommonValueRatio) Descriptor() ([]byte, []int) {
  1882. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{21}
  1883. }
  1884. func (x *CommonValueRatio) GetMaxValue() string {
  1885. if x != nil {
  1886. return x.MaxValue
  1887. }
  1888. return ""
  1889. }
  1890. func (x *CommonValueRatio) GetMiddleValue() string {
  1891. if x != nil {
  1892. return x.MiddleValue
  1893. }
  1894. return ""
  1895. }
  1896. func (x *CommonValueRatio) GetMinValue() string {
  1897. if x != nil {
  1898. return x.MinValue
  1899. }
  1900. return ""
  1901. }
  1902. func (x *CommonValueRatio) GetDataList() []*ValueRatio {
  1903. if x != nil {
  1904. return x.DataList
  1905. }
  1906. return nil
  1907. }
  1908. func (x *CommonValueRatio) GetPastureName() []string {
  1909. if x != nil {
  1910. return x.PastureName
  1911. }
  1912. return nil
  1913. }
  1914. func (x *CommonValueRatio) GetDateDay() []string {
  1915. if x != nil {
  1916. return x.DateDay
  1917. }
  1918. return nil
  1919. }
  1920. type ValueRatio struct {
  1921. state protoimpl.MessageState
  1922. sizeCache protoimpl.SizeCache
  1923. unknownFields protoimpl.UnknownFields
  1924. ValueRatio []string `protobuf:"bytes,1,rep,name=value_ratio,json=valueRatio,proto3" json:"value_ratio,omitempty"`
  1925. }
  1926. func (x *ValueRatio) Reset() {
  1927. *x = ValueRatio{}
  1928. if protoimpl.UnsafeEnabled {
  1929. mi := &file_backend_operation_statistic_proto_msgTypes[22]
  1930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1931. ms.StoreMessageInfo(mi)
  1932. }
  1933. }
  1934. func (x *ValueRatio) String() string {
  1935. return protoimpl.X.MessageStringOf(x)
  1936. }
  1937. func (*ValueRatio) ProtoMessage() {}
  1938. func (x *ValueRatio) ProtoReflect() protoreflect.Message {
  1939. mi := &file_backend_operation_statistic_proto_msgTypes[22]
  1940. if protoimpl.UnsafeEnabled && x != nil {
  1941. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1942. if ms.LoadMessageInfo() == nil {
  1943. ms.StoreMessageInfo(mi)
  1944. }
  1945. return ms
  1946. }
  1947. return mi.MessageOf(x)
  1948. }
  1949. // Deprecated: Use ValueRatio.ProtoReflect.Descriptor instead.
  1950. func (*ValueRatio) Descriptor() ([]byte, []int) {
  1951. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{22}
  1952. }
  1953. func (x *ValueRatio) GetValueRatio() []string {
  1954. if x != nil {
  1955. return x.ValueRatio
  1956. }
  1957. return nil
  1958. }
  1959. // 首页 dashboard 撒料时间统计分析
  1960. type SprinkleFeedTimeRequest struct {
  1961. state protoimpl.MessageState
  1962. sizeCache protoimpl.SizeCache
  1963. unknownFields protoimpl.UnknownFields
  1964. FeedFormulaId int32 `protobuf:"varint,1,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  1965. StartDate string `protobuf:"bytes,2,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` // 开始时间
  1966. EndDate string `protobuf:"bytes,3,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"` // 结束时间
  1967. PastureIds []int32 `protobuf:"varint,4,rep,packed,name=pasture_ids,json=pastureIds,proto3" json:"pasture_ids,omitempty"` //牧场ids
  1968. DataType int32 `protobuf:"varint,5,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"` // 过滤的数据类型 0 不过滤 1 正常 2 异常
  1969. }
  1970. func (x *SprinkleFeedTimeRequest) Reset() {
  1971. *x = SprinkleFeedTimeRequest{}
  1972. if protoimpl.UnsafeEnabled {
  1973. mi := &file_backend_operation_statistic_proto_msgTypes[23]
  1974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1975. ms.StoreMessageInfo(mi)
  1976. }
  1977. }
  1978. func (x *SprinkleFeedTimeRequest) String() string {
  1979. return protoimpl.X.MessageStringOf(x)
  1980. }
  1981. func (*SprinkleFeedTimeRequest) ProtoMessage() {}
  1982. func (x *SprinkleFeedTimeRequest) ProtoReflect() protoreflect.Message {
  1983. mi := &file_backend_operation_statistic_proto_msgTypes[23]
  1984. if protoimpl.UnsafeEnabled && x != nil {
  1985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1986. if ms.LoadMessageInfo() == nil {
  1987. ms.StoreMessageInfo(mi)
  1988. }
  1989. return ms
  1990. }
  1991. return mi.MessageOf(x)
  1992. }
  1993. // Deprecated: Use SprinkleFeedTimeRequest.ProtoReflect.Descriptor instead.
  1994. func (*SprinkleFeedTimeRequest) Descriptor() ([]byte, []int) {
  1995. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{23}
  1996. }
  1997. func (x *SprinkleFeedTimeRequest) GetFeedFormulaId() int32 {
  1998. if x != nil {
  1999. return x.FeedFormulaId
  2000. }
  2001. return 0
  2002. }
  2003. func (x *SprinkleFeedTimeRequest) GetStartDate() string {
  2004. if x != nil {
  2005. return x.StartDate
  2006. }
  2007. return ""
  2008. }
  2009. func (x *SprinkleFeedTimeRequest) GetEndDate() string {
  2010. if x != nil {
  2011. return x.EndDate
  2012. }
  2013. return ""
  2014. }
  2015. func (x *SprinkleFeedTimeRequest) GetPastureIds() []int32 {
  2016. if x != nil {
  2017. return x.PastureIds
  2018. }
  2019. return nil
  2020. }
  2021. func (x *SprinkleFeedTimeRequest) GetDataType() int32 {
  2022. if x != nil {
  2023. return x.DataType
  2024. }
  2025. return 0
  2026. }
  2027. // MixedCategoryTmrName tmr名称和混料类别
  2028. type MixedCategoryTmrName struct {
  2029. state protoimpl.MessageState
  2030. sizeCache protoimpl.SizeCache
  2031. unknownFields protoimpl.UnknownFields
  2032. ApiName string `protobuf:"bytes,1,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"`
  2033. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"`
  2034. StartTime string `protobuf:"bytes,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  2035. EndTime string `protobuf:"bytes,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  2036. }
  2037. func (x *MixedCategoryTmrName) Reset() {
  2038. *x = MixedCategoryTmrName{}
  2039. if protoimpl.UnsafeEnabled {
  2040. mi := &file_backend_operation_statistic_proto_msgTypes[24]
  2041. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2042. ms.StoreMessageInfo(mi)
  2043. }
  2044. }
  2045. func (x *MixedCategoryTmrName) String() string {
  2046. return protoimpl.X.MessageStringOf(x)
  2047. }
  2048. func (*MixedCategoryTmrName) ProtoMessage() {}
  2049. func (x *MixedCategoryTmrName) ProtoReflect() protoreflect.Message {
  2050. mi := &file_backend_operation_statistic_proto_msgTypes[24]
  2051. if protoimpl.UnsafeEnabled && x != nil {
  2052. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2053. if ms.LoadMessageInfo() == nil {
  2054. ms.StoreMessageInfo(mi)
  2055. }
  2056. return ms
  2057. }
  2058. return mi.MessageOf(x)
  2059. }
  2060. // Deprecated: Use MixedCategoryTmrName.ProtoReflect.Descriptor instead.
  2061. func (*MixedCategoryTmrName) Descriptor() ([]byte, []int) {
  2062. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{24}
  2063. }
  2064. func (x *MixedCategoryTmrName) GetApiName() string {
  2065. if x != nil {
  2066. return x.ApiName
  2067. }
  2068. return ""
  2069. }
  2070. func (x *MixedCategoryTmrName) GetPastureId() int32 {
  2071. if x != nil {
  2072. return x.PastureId
  2073. }
  2074. return 0
  2075. }
  2076. func (x *MixedCategoryTmrName) GetStartTime() string {
  2077. if x != nil {
  2078. return x.StartTime
  2079. }
  2080. return ""
  2081. }
  2082. func (x *MixedCategoryTmrName) GetEndTime() string {
  2083. if x != nil {
  2084. return x.EndTime
  2085. }
  2086. return ""
  2087. }
  2088. type Table_TableList struct {
  2089. state protoimpl.MessageState
  2090. sizeCache protoimpl.SizeCache
  2091. unknownFields protoimpl.UnknownFields
  2092. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  2093. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  2094. }
  2095. func (x *Table_TableList) Reset() {
  2096. *x = Table_TableList{}
  2097. if protoimpl.UnsafeEnabled {
  2098. mi := &file_backend_operation_statistic_proto_msgTypes[25]
  2099. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2100. ms.StoreMessageInfo(mi)
  2101. }
  2102. }
  2103. func (x *Table_TableList) String() string {
  2104. return protoimpl.X.MessageStringOf(x)
  2105. }
  2106. func (*Table_TableList) ProtoMessage() {}
  2107. func (x *Table_TableList) ProtoReflect() protoreflect.Message {
  2108. mi := &file_backend_operation_statistic_proto_msgTypes[25]
  2109. if protoimpl.UnsafeEnabled && x != nil {
  2110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2111. if ms.LoadMessageInfo() == nil {
  2112. ms.StoreMessageInfo(mi)
  2113. }
  2114. return ms
  2115. }
  2116. return mi.MessageOf(x)
  2117. }
  2118. // Deprecated: Use Table_TableList.ProtoReflect.Descriptor instead.
  2119. func (*Table_TableList) Descriptor() ([]byte, []int) {
  2120. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{20, 0}
  2121. }
  2122. func (x *Table_TableList) GetId() int32 {
  2123. if x != nil {
  2124. return x.Id
  2125. }
  2126. return 0
  2127. }
  2128. func (x *Table_TableList) GetName() string {
  2129. if x != nil {
  2130. return x.Name
  2131. }
  2132. return ""
  2133. }
  2134. var File_backend_operation_statistic_proto protoreflect.FileDescriptor
  2135. var file_backend_operation_statistic_proto_rawDesc = []byte{
  2136. 0x0a, 0x21, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2137. 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x2e, 0x70, 0x72,
  2138. 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2139. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x22, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f,
  2140. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2141. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x62, 0x61, 0x63, 0x6b,
  2142. 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e,
  2143. 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2144. 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x73, 0x74,
  2145. 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb1, 0x02, 0x0a, 0x1c, 0x53, 0x65,
  2146. 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x45, 0x73, 0x74, 0x69, 0x6d,
  2147. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74,
  2148. 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2149. 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64,
  2150. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64,
  2151. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74,
  2152. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63,
  2153. 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d,
  2154. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65,
  2155. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05,
  2156. 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12,
  2157. 0x1f, 0x0a, 0x0b, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06,
  2158. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64,
  2159. 0x12, 0x17, 0x0a, 0x07, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28,
  2160. 0x05, 0x52, 0x06, 0x62, 0x61, 0x72, 0x6e, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67,
  2161. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  2162. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2163. 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65,
  2164. 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf7, 0x01,
  2165. 0x0a, 0x20, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
  2166. 0x79, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  2167. 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  2168. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  2169. 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20,
  2170. 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  2171. 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2172. 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2173. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  2174. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f,
  2175. 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  2176. 0x65, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  2177. 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2178. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69,
  2179. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67,
  2180. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbb, 0x02, 0x0a, 0x24, 0x53, 0x65, 0x61, 0x72,
  2181. 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x53,
  2182. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2183. 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01,
  2184. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12,
  2185. 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2186. 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
  2187. 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  2188. 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  2189. 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75,
  2190. 0x72, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x68,
  2191. 0x65, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72,
  2192. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x63, 0x68,
  2193. 0x65, 0x63, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x74, 0x79, 0x70, 0x65, 0x43,
  2194. 0x68, 0x65, 0x63, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6e, 0x61, 0x6d,
  2195. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x4e, 0x61, 0x6d,
  2196. 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  2197. 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2198. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2199. 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  2200. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf3, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
  2201. 0x50, 0x72, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52,
  2202. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
  2203. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72,
  2204. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  2205. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  2206. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2207. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  2208. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52,
  2209. 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65,
  2210. 0x65, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66,
  2211. 0x65, 0x65, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  2212. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  2213. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2214. 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52,
  2215. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa0, 0x03, 0x0a, 0x1b,
  2216. 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73,
  2217. 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73,
  2218. 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2219. 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
  2220. 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  2221. 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  2222. 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75,
  2223. 0x72, 0x65, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f,
  2224. 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  2225. 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x12,
  2226. 0x1b, 0x0a, 0x09, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  2227. 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x72, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x30, 0x0a, 0x14,
  2228. 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  2229. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x61, 0x74, 0x74,
  2230. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2c,
  2231. 0x0a, 0x12, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2232. 0x79, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x63, 0x61, 0x74, 0x74,
  2233. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c,
  2234. 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01,
  2235. 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12,
  2236. 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20,
  2237. 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2238. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
  2239. 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
  2240. 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  2241. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xa8,
  2242. 0x01, 0x0a, 0x1a, 0x46, 0x65, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x74,
  2243. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
  2244. 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2245. 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  2246. 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2247. 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75,
  2248. 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73,
  2249. 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  2250. 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x19,
  2251. 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  2252. 0x52, 0x07, 0x61, 0x70, 0x69, 0x54, 0x79, 0x70, 0x65, 0x22, 0xb2, 0x01, 0x0a, 0x13, 0x43, 0x6f,
  2253. 0x77, 0x73, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2254. 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  2255. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65,
  2256. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  2257. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  2258. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
  2259. 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61,
  2260. 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22,
  2261. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2262. 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64,
  2263. 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc4,
  2264. 0x04, 0x0a, 0x1c, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x41, 0x67, 0x67, 0x53, 0x74,
  2265. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2266. 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20,
  2267. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19,
  2268. 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2269. 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73,
  2270. 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70,
  2271. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6e, 0x61, 0x6d,
  2272. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12,
  2273. 0x0a, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6f,
  2274. 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01,
  2275. 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x65,
  2276. 0x6e, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x67, 0x65, 0x6e, 0x72, 0x65,
  2277. 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05,
  2278. 0x52, 0x06, 0x69, 0x73, 0x64, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63,
  2279. 0x31, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14,
  2280. 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68,
  2281. 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x0b, 0x20,
  2282. 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c,
  2283. 0x7a, 0x71, 0x32, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32,
  2284. 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05,
  2285. 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71,
  2286. 0x6c, 0x32, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x32,
  2287. 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52,
  2288. 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18,
  2289. 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05,
  2290. 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a,
  2291. 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x12, 0x20, 0x01, 0x28,
  2292. 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71,
  2293. 0x6c, 0x31, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31,
  2294. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x14, 0x20, 0x01, 0x28, 0x05,
  2295. 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x6a,
  2296. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x6a,
  2297. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x16, 0x20,
  2298. 0x01, 0x28, 0x09, 0x52, 0x05, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73,
  2299. 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x17, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73,
  2300. 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xe2, 0x04, 0x0a, 0x18, 0x4d, 0x69, 0x78, 0x46, 0x65, 0x65,
  2301. 0x64, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  2302. 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  2303. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  2304. 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20,
  2305. 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  2306. 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2307. 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75,
  2308. 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73,
  2309. 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d,
  2310. 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  2311. 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a,
  2312. 0x0c, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x06, 0x20,
  2313. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2314. 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2315. 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d,
  2316. 0x62, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69,
  2317. 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66,
  2318. 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b,
  2319. 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  2320. 0x05, 0x52, 0x08, 0x6a, 0x75, 0x6d, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x68,
  2321. 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63,
  2322. 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05,
  2323. 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31,
  2324. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a,
  2325. 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c,
  2326. 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x18, 0x0e, 0x20,
  2327. 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x68,
  2328. 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a,
  2329. 0x71, 0x6c, 0x32, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
  2330. 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x1f,
  2331. 0x0a, 0x0b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20,
  2332. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
  2333. 0x15, 0x0a, 0x06, 0x69, 0x73, 0x5f, 0x75, 0x73, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52,
  2334. 0x05, 0x69, 0x73, 0x55, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2335. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63,
  2336. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50,
  2337. 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a,
  2338. 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x80, 0x05, 0x0a, 0x19, 0x53,
  2339. 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  2340. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72,
  2341. 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74,
  2342. 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74,
  2343. 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69,
  2344. 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03,
  2345. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a,
  2346. 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  2347. 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e,
  2348. 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05,
  2349. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x4e,
  2350. 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x6e, 0x75, 0x6d,
  2351. 0x62, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x69, 0x6e,
  2352. 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f,
  2353. 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c,
  2354. 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72,
  2355. 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20,
  2356. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2357. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x6e, 0x61, 0x6d,
  2358. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x72, 0x6e, 0x4e, 0x61, 0x6d,
  2359. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a,
  2360. 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6a, 0x75, 0x6d, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14,
  2361. 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73,
  2362. 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0c, 0x20,
  2363. 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c,
  2364. 0x7a, 0x71, 0x31, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31,
  2365. 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52,
  2366. 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31,
  2367. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16,
  2368. 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
  2369. 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x65, 0x72, 0x72,
  2370. 0x6f, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f,
  2371. 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
  2372. 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x79,
  2373. 0x70, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x69, 0x73, 0x5f, 0x75, 0x73, 0x65, 0x18, 0x13, 0x20, 0x01,
  2374. 0x28, 0x09, 0x52, 0x05, 0x69, 0x73, 0x55, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67,
  2375. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  2376. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2377. 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65,
  2378. 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8a, 0x01,
  2379. 0x0a, 0x14, 0x47, 0x65, 0x74, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x52,
  2380. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
  2381. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72,
  2382. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  2383. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  2384. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2385. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  2386. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52,
  2387. 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x22, 0x9e, 0x04, 0x0a, 0x16, 0x50,
  2388. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x52, 0x65,
  2389. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74,
  2390. 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74,
  2391. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  2392. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12,
  2393. 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2394. 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61,
  2395. 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
  2396. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x6c, 0x61,
  2397. 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x6c,
  2398. 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x6d, 0x72, 0x5f, 0x6e, 0x61,
  2399. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x74, 0x6d, 0x72, 0x4e, 0x61, 0x6d,
  2400. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65,
  2401. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x61, 0x6e,
  2402. 0x67, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  2403. 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61,
  2404. 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x6d, 0x69, 0x78, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2405. 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x69, 0x78, 0x46,
  2406. 0x65, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31,
  2407. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a,
  2408. 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c,
  2409. 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x0c, 0x20, 0x01,
  2410. 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a,
  2411. 0x71, 0x32, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x12,
  2412. 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
  2413. 0x73, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0f,
  2414. 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73,
  2415. 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71,
  2416. 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05,
  2417. 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  2418. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  2419. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2420. 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52,
  2421. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xe0, 0x01, 0x0a, 0x21,
  2422. 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x4d, 0x69, 0x78, 0x65, 0x64, 0x53, 0x70, 0x72, 0x69,
  2423. 0x6e, 0x6b, 0x6c, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2424. 0x74, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  2425. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
  2426. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  2427. 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x70,
  2428. 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x1b, 0x0a,
  2429. 0x09, 0x66, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2430. 0x52, 0x08, 0x66, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  2431. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61,
  2432. 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22,
  2433. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2434. 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64,
  2435. 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xaf,
  2436. 0x01, 0x0a, 0x12, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65,
  2437. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d,
  2438. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65,
  2439. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02,
  2440. 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12,
  2441. 0x1b, 0x0a, 0x09, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2442. 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a,
  2443. 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
  2444. 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2445. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d,
  2446. 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2447. 0x22, 0x73, 0x0a, 0x13, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52,
  2448. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18,
  2449. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d,
  2450. 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x36, 0x0a,
  2451. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  2452. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2453. 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52,
  2454. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x4b, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75,
  2455. 0x6d, 0x62, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 0x38, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2456. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2457. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75,
  2458. 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x04, 0x6c, 0x69,
  2459. 0x73, 0x74, 0x22, 0xab, 0x03, 0x0a, 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6e, 0x61,
  2460. 0x6c, 0x79, 0x73, 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52, 0x65, 0x71,
  2461. 0x75, 0x65, 0x73, 0x74, 0x12, 0x67, 0x0a, 0x19, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x70,
  2462. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69,
  2463. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2464. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x74,
  2465. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2466. 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x16, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72,
  2467. 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a,
  2468. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64,
  2469. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d,
  2470. 0x75, 0x6c, 0x61, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64,
  2471. 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74,
  2472. 0x44, 0x61, 0x74, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65,
  2473. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12,
  2474. 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x05,
  2475. 0x20, 0x03, 0x28, 0x05, 0x52, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x73,
  2476. 0x12, 0x24, 0x0a, 0x0e, 0x74, 0x6f, 0x70, 0x5f, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x61,
  2477. 0x72, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0c, 0x74, 0x6f, 0x70, 0x52, 0x61, 0x6e,
  2478. 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x74, 0x6f, 0x70, 0x5f, 0x72, 0x61,
  2479. 0x6e, 0x64, 0x5f, 0x65, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0a, 0x74, 0x6f,
  2480. 0x70, 0x52, 0x61, 0x6e, 0x64, 0x45, 0x6e, 0x64, 0x12, 0x56, 0x0a, 0x12, 0x64, 0x61, 0x73, 0x68,
  2481. 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08,
  2482. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2483. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61,
  2484. 0x72, 0x64, 0x54, 0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x10,
  2485. 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x54, 0x6f, 0x70, 0x54, 0x79, 0x70, 0x65,
  2486. 0x22, 0x7f, 0x0a, 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73,
  2487. 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  2488. 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  2489. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  2490. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x37, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  2491. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2492. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x6e, 0x61, 0x6c, 0x79,
  2493. 0x73, 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74,
  2494. 0x61, 0x22, 0x72, 0x0a, 0x10, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x41, 0x63, 0x63,
  2495. 0x75, 0x72, 0x61, 0x63, 0x79, 0x12, 0x2e, 0x0a, 0x05, 0x63, 0x68, 0x61, 0x72, 0x74, 0x18, 0x01,
  2496. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2497. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x05,
  2498. 0x63, 0x68, 0x61, 0x72, 0x74, 0x12, 0x2e, 0x0a, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02,
  2499. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2500. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x05,
  2501. 0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x9f, 0x03, 0x0a, 0x05, 0x43, 0x68, 0x61, 0x72, 0x74, 0x12,
  2502. 0x62, 0x0a, 0x1b, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f,
  2503. 0x61, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x04,
  2504. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2505. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56,
  2506. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x18, 0x6d, 0x69, 0x78, 0x65, 0x64,
  2507. 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61,
  2508. 0x74, 0x69, 0x6f, 0x12, 0x60, 0x0a, 0x1a, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64,
  2509. 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69,
  2510. 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2511. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
  2512. 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x17, 0x6d, 0x69,
  2513. 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74,
  2514. 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x68, 0x0a, 0x1e, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c,
  2515. 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74,
  2516. 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e,
  2517. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2518. 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74,
  2519. 0x69, 0x6f, 0x52, 0x1b, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64,
  2520. 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12,
  2521. 0x66, 0x0a, 0x1d, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64,
  2522. 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2523. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2524. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
  2525. 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x1a, 0x73, 0x70, 0x72,
  2526. 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72, 0x72, 0x65,
  2527. 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0x7b, 0x0a, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65,
  2528. 0x12, 0x41, 0x0a, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  2529. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2530. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x54,
  2531. 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4c,
  2532. 0x69, 0x73, 0x74, 0x1a, 0x2f, 0x0a, 0x09, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74,
  2533. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64,
  2534. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2535. 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xe9, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56,
  2536. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x78,
  2537. 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61,
  2538. 0x78, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65,
  2539. 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x69,
  2540. 0x64, 0x64, 0x6c, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x69, 0x6e,
  2541. 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x69,
  2542. 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3a, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c,
  2543. 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  2544. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x56, 0x61,
  2545. 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69,
  2546. 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x6e, 0x61,
  2547. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  2548. 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x64, 0x61,
  2549. 0x79, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x79,
  2550. 0x22, 0x2d, 0x0a, 0x0a, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x1f,
  2551. 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20,
  2552. 0x03, 0x28, 0x09, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22,
  2553. 0xb9, 0x01, 0x0a, 0x17, 0x53, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x65, 0x65, 0x64,
  2554. 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x66,
  2555. 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x01,
  2556. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  2557. 0x61, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74,
  2558. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61,
  2559. 0x74, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03,
  2560. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a,
  2561. 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x04, 0x20, 0x03,
  2562. 0x28, 0x05, 0x52, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x73, 0x12, 0x1b,
  2563. 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  2564. 0x05, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x22, 0x8a, 0x01, 0x0a, 0x14,
  2565. 0x4d, 0x69, 0x78, 0x65, 0x64, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x54, 0x6d, 0x72,
  2566. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  2567. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  2568. 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  2569. 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1d,
  2570. 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2571. 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a,
  2572. 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  2573. 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x3b, 0x6f, 0x70,
  2574. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2575. 0x33,
  2576. }
  2577. var (
  2578. file_backend_operation_statistic_proto_rawDescOnce sync.Once
  2579. file_backend_operation_statistic_proto_rawDescData = file_backend_operation_statistic_proto_rawDesc
  2580. )
  2581. func file_backend_operation_statistic_proto_rawDescGZIP() []byte {
  2582. file_backend_operation_statistic_proto_rawDescOnce.Do(func() {
  2583. file_backend_operation_statistic_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_statistic_proto_rawDescData)
  2584. })
  2585. return file_backend_operation_statistic_proto_rawDescData
  2586. }
  2587. var file_backend_operation_statistic_proto_msgTypes = make([]protoimpl.MessageInfo, 26)
  2588. var file_backend_operation_statistic_proto_goTypes = []interface{}{
  2589. (*SearchFormulaEstimateRequest)(nil), // 0: backend.operation.SearchFormulaEstimateRequest
  2590. (*SearchInventoryStatisticsRequest)(nil), // 1: backend.operation.SearchInventoryStatisticsRequest
  2591. (*SearchUserMaterialsStatisticsRequest)(nil), // 2: backend.operation.SearchUserMaterialsStatisticsRequest
  2592. (*SearchPriceStatisticsRequest)(nil), // 3: backend.operation.SearchPriceStatisticsRequest
  2593. (*SearchFeedStatisticsRequest)(nil), // 4: backend.operation.SearchFeedStatisticsRequest
  2594. (*FeedChartStatisticsRequest)(nil), // 5: backend.operation.FeedChartStatisticsRequest
  2595. (*CowsAnalysisRequest)(nil), // 6: backend.operation.CowsAnalysisRequest
  2596. (*AccuracyAggStatisticsRequest)(nil), // 7: backend.operation.AccuracyAggStatisticsRequest
  2597. (*MixFeedStatisticsRequest)(nil), // 8: backend.operation.MixFeedStatisticsRequest
  2598. (*SprinkleStatisticsRequest)(nil), // 9: backend.operation.SprinkleStatisticsRequest
  2599. (*GetDataByNameRequest)(nil), // 10: backend.operation.GetDataByNameRequest
  2600. (*ProcessAnalysisRequest)(nil), // 11: backend.operation.ProcessAnalysisRequest
  2601. (*ProcessMixedSprinkleDetailRequest)(nil), // 12: backend.operation.ProcessMixedSprinkleDetailRequest
  2602. (*TrainNumberRequest)(nil), // 13: backend.operation.TrainNumberRequest
  2603. (*TrainNumberResponse)(nil), // 14: backend.operation.TrainNumberResponse
  2604. (*TrainNumberData)(nil), // 15: backend.operation.TrainNumberData
  2605. (*SearchAnalysisAccuracyRequest)(nil), // 16: backend.operation.SearchAnalysisAccuracyRequest
  2606. (*SearchAnalysisAccuracyResponse)(nil), // 17: backend.operation.SearchAnalysisAccuracyResponse
  2607. (*AnalysisAccuracy)(nil), // 18: backend.operation.AnalysisAccuracy
  2608. (*Chart)(nil), // 19: backend.operation.Chart
  2609. (*Table)(nil), // 20: backend.operation.Table
  2610. (*CommonValueRatio)(nil), // 21: backend.operation.CommonValueRatio
  2611. (*ValueRatio)(nil), // 22: backend.operation.ValueRatio
  2612. (*SprinkleFeedTimeRequest)(nil), // 23: backend.operation.SprinkleFeedTimeRequest
  2613. (*MixedCategoryTmrName)(nil), // 24: backend.operation.MixedCategoryTmrName
  2614. (*Table_TableList)(nil), // 25: backend.operation.Table.TableList
  2615. (*PaginationModel)(nil), // 26: backend.operation.PaginationModel
  2616. (*FormulaOptionEnum)(nil), // 27: backend.operation.FormulaOptionEnum
  2617. (CattleCategoryParent_Kind)(0), // 28: backend.operation.CattleCategoryParent.Kind
  2618. (DashboardTopType_Kind)(0), // 29: backend.operation.DashboardTopType.Kind
  2619. }
  2620. var file_backend_operation_statistic_proto_depIdxs = []int32{
  2621. 26, // 0: backend.operation.SearchFormulaEstimateRequest.pagination:type_name -> backend.operation.PaginationModel
  2622. 26, // 1: backend.operation.SearchInventoryStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2623. 26, // 2: backend.operation.SearchUserMaterialsStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2624. 26, // 3: backend.operation.SearchPriceStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2625. 26, // 4: backend.operation.SearchFeedStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2626. 26, // 5: backend.operation.CowsAnalysisRequest.pagination:type_name -> backend.operation.PaginationModel
  2627. 26, // 6: backend.operation.MixFeedStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2628. 26, // 7: backend.operation.SprinkleStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2629. 26, // 8: backend.operation.ProcessAnalysisRequest.pagination:type_name -> backend.operation.PaginationModel
  2630. 26, // 9: backend.operation.ProcessMixedSprinkleDetailRequest.pagination:type_name -> backend.operation.PaginationModel
  2631. 26, // 10: backend.operation.TrainNumberRequest.pagination:type_name -> backend.operation.PaginationModel
  2632. 15, // 11: backend.operation.TrainNumberResponse.data:type_name -> backend.operation.TrainNumberData
  2633. 27, // 12: backend.operation.TrainNumberData.list:type_name -> backend.operation.FormulaOptionEnum
  2634. 28, // 13: backend.operation.SearchAnalysisAccuracyRequest.cattle_parent_category_id:type_name -> backend.operation.CattleCategoryParent.Kind
  2635. 29, // 14: backend.operation.SearchAnalysisAccuracyRequest.dashboard_top_type:type_name -> backend.operation.DashboardTopType.Kind
  2636. 18, // 15: backend.operation.SearchAnalysisAccuracyResponse.data:type_name -> backend.operation.AnalysisAccuracy
  2637. 19, // 16: backend.operation.AnalysisAccuracy.chart:type_name -> backend.operation.Chart
  2638. 20, // 17: backend.operation.AnalysisAccuracy.table:type_name -> backend.operation.Table
  2639. 21, // 18: backend.operation.Chart.mixed_fodder_accurate_ratio:type_name -> backend.operation.CommonValueRatio
  2640. 21, // 19: backend.operation.Chart.mixed_fodder_correct_ratio:type_name -> backend.operation.CommonValueRatio
  2641. 21, // 20: backend.operation.Chart.sprinkle_fodder_accurate_ratio:type_name -> backend.operation.CommonValueRatio
  2642. 21, // 21: backend.operation.Chart.sprinkle_fodder_correct_ratio:type_name -> backend.operation.CommonValueRatio
  2643. 25, // 22: backend.operation.Table.table_list:type_name -> backend.operation.Table.TableList
  2644. 22, // 23: backend.operation.CommonValueRatio.data_list:type_name -> backend.operation.ValueRatio
  2645. 24, // [24:24] is the sub-list for method output_type
  2646. 24, // [24:24] is the sub-list for method input_type
  2647. 24, // [24:24] is the sub-list for extension type_name
  2648. 24, // [24:24] is the sub-list for extension extendee
  2649. 0, // [0:24] is the sub-list for field type_name
  2650. }
  2651. func init() { file_backend_operation_statistic_proto_init() }
  2652. func file_backend_operation_statistic_proto_init() {
  2653. if File_backend_operation_statistic_proto != nil {
  2654. return
  2655. }
  2656. file_backend_operation_pagination_proto_init()
  2657. file_backend_operation_enum_proto_init()
  2658. file_backend_operation_pasture_proto_init()
  2659. if !protoimpl.UnsafeEnabled {
  2660. file_backend_operation_statistic_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2661. switch v := v.(*SearchFormulaEstimateRequest); i {
  2662. case 0:
  2663. return &v.state
  2664. case 1:
  2665. return &v.sizeCache
  2666. case 2:
  2667. return &v.unknownFields
  2668. default:
  2669. return nil
  2670. }
  2671. }
  2672. file_backend_operation_statistic_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2673. switch v := v.(*SearchInventoryStatisticsRequest); i {
  2674. case 0:
  2675. return &v.state
  2676. case 1:
  2677. return &v.sizeCache
  2678. case 2:
  2679. return &v.unknownFields
  2680. default:
  2681. return nil
  2682. }
  2683. }
  2684. file_backend_operation_statistic_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2685. switch v := v.(*SearchUserMaterialsStatisticsRequest); i {
  2686. case 0:
  2687. return &v.state
  2688. case 1:
  2689. return &v.sizeCache
  2690. case 2:
  2691. return &v.unknownFields
  2692. default:
  2693. return nil
  2694. }
  2695. }
  2696. file_backend_operation_statistic_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2697. switch v := v.(*SearchPriceStatisticsRequest); i {
  2698. case 0:
  2699. return &v.state
  2700. case 1:
  2701. return &v.sizeCache
  2702. case 2:
  2703. return &v.unknownFields
  2704. default:
  2705. return nil
  2706. }
  2707. }
  2708. file_backend_operation_statistic_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2709. switch v := v.(*SearchFeedStatisticsRequest); i {
  2710. case 0:
  2711. return &v.state
  2712. case 1:
  2713. return &v.sizeCache
  2714. case 2:
  2715. return &v.unknownFields
  2716. default:
  2717. return nil
  2718. }
  2719. }
  2720. file_backend_operation_statistic_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2721. switch v := v.(*FeedChartStatisticsRequest); i {
  2722. case 0:
  2723. return &v.state
  2724. case 1:
  2725. return &v.sizeCache
  2726. case 2:
  2727. return &v.unknownFields
  2728. default:
  2729. return nil
  2730. }
  2731. }
  2732. file_backend_operation_statistic_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2733. switch v := v.(*CowsAnalysisRequest); i {
  2734. case 0:
  2735. return &v.state
  2736. case 1:
  2737. return &v.sizeCache
  2738. case 2:
  2739. return &v.unknownFields
  2740. default:
  2741. return nil
  2742. }
  2743. }
  2744. file_backend_operation_statistic_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2745. switch v := v.(*AccuracyAggStatisticsRequest); i {
  2746. case 0:
  2747. return &v.state
  2748. case 1:
  2749. return &v.sizeCache
  2750. case 2:
  2751. return &v.unknownFields
  2752. default:
  2753. return nil
  2754. }
  2755. }
  2756. file_backend_operation_statistic_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2757. switch v := v.(*MixFeedStatisticsRequest); i {
  2758. case 0:
  2759. return &v.state
  2760. case 1:
  2761. return &v.sizeCache
  2762. case 2:
  2763. return &v.unknownFields
  2764. default:
  2765. return nil
  2766. }
  2767. }
  2768. file_backend_operation_statistic_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2769. switch v := v.(*SprinkleStatisticsRequest); i {
  2770. case 0:
  2771. return &v.state
  2772. case 1:
  2773. return &v.sizeCache
  2774. case 2:
  2775. return &v.unknownFields
  2776. default:
  2777. return nil
  2778. }
  2779. }
  2780. file_backend_operation_statistic_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2781. switch v := v.(*GetDataByNameRequest); i {
  2782. case 0:
  2783. return &v.state
  2784. case 1:
  2785. return &v.sizeCache
  2786. case 2:
  2787. return &v.unknownFields
  2788. default:
  2789. return nil
  2790. }
  2791. }
  2792. file_backend_operation_statistic_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2793. switch v := v.(*ProcessAnalysisRequest); i {
  2794. case 0:
  2795. return &v.state
  2796. case 1:
  2797. return &v.sizeCache
  2798. case 2:
  2799. return &v.unknownFields
  2800. default:
  2801. return nil
  2802. }
  2803. }
  2804. file_backend_operation_statistic_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2805. switch v := v.(*ProcessMixedSprinkleDetailRequest); i {
  2806. case 0:
  2807. return &v.state
  2808. case 1:
  2809. return &v.sizeCache
  2810. case 2:
  2811. return &v.unknownFields
  2812. default:
  2813. return nil
  2814. }
  2815. }
  2816. file_backend_operation_statistic_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2817. switch v := v.(*TrainNumberRequest); i {
  2818. case 0:
  2819. return &v.state
  2820. case 1:
  2821. return &v.sizeCache
  2822. case 2:
  2823. return &v.unknownFields
  2824. default:
  2825. return nil
  2826. }
  2827. }
  2828. file_backend_operation_statistic_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2829. switch v := v.(*TrainNumberResponse); i {
  2830. case 0:
  2831. return &v.state
  2832. case 1:
  2833. return &v.sizeCache
  2834. case 2:
  2835. return &v.unknownFields
  2836. default:
  2837. return nil
  2838. }
  2839. }
  2840. file_backend_operation_statistic_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2841. switch v := v.(*TrainNumberData); i {
  2842. case 0:
  2843. return &v.state
  2844. case 1:
  2845. return &v.sizeCache
  2846. case 2:
  2847. return &v.unknownFields
  2848. default:
  2849. return nil
  2850. }
  2851. }
  2852. file_backend_operation_statistic_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2853. switch v := v.(*SearchAnalysisAccuracyRequest); i {
  2854. case 0:
  2855. return &v.state
  2856. case 1:
  2857. return &v.sizeCache
  2858. case 2:
  2859. return &v.unknownFields
  2860. default:
  2861. return nil
  2862. }
  2863. }
  2864. file_backend_operation_statistic_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2865. switch v := v.(*SearchAnalysisAccuracyResponse); i {
  2866. case 0:
  2867. return &v.state
  2868. case 1:
  2869. return &v.sizeCache
  2870. case 2:
  2871. return &v.unknownFields
  2872. default:
  2873. return nil
  2874. }
  2875. }
  2876. file_backend_operation_statistic_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2877. switch v := v.(*AnalysisAccuracy); i {
  2878. case 0:
  2879. return &v.state
  2880. case 1:
  2881. return &v.sizeCache
  2882. case 2:
  2883. return &v.unknownFields
  2884. default:
  2885. return nil
  2886. }
  2887. }
  2888. file_backend_operation_statistic_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2889. switch v := v.(*Chart); i {
  2890. case 0:
  2891. return &v.state
  2892. case 1:
  2893. return &v.sizeCache
  2894. case 2:
  2895. return &v.unknownFields
  2896. default:
  2897. return nil
  2898. }
  2899. }
  2900. file_backend_operation_statistic_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2901. switch v := v.(*Table); i {
  2902. case 0:
  2903. return &v.state
  2904. case 1:
  2905. return &v.sizeCache
  2906. case 2:
  2907. return &v.unknownFields
  2908. default:
  2909. return nil
  2910. }
  2911. }
  2912. file_backend_operation_statistic_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2913. switch v := v.(*CommonValueRatio); i {
  2914. case 0:
  2915. return &v.state
  2916. case 1:
  2917. return &v.sizeCache
  2918. case 2:
  2919. return &v.unknownFields
  2920. default:
  2921. return nil
  2922. }
  2923. }
  2924. file_backend_operation_statistic_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2925. switch v := v.(*ValueRatio); i {
  2926. case 0:
  2927. return &v.state
  2928. case 1:
  2929. return &v.sizeCache
  2930. case 2:
  2931. return &v.unknownFields
  2932. default:
  2933. return nil
  2934. }
  2935. }
  2936. file_backend_operation_statistic_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2937. switch v := v.(*SprinkleFeedTimeRequest); i {
  2938. case 0:
  2939. return &v.state
  2940. case 1:
  2941. return &v.sizeCache
  2942. case 2:
  2943. return &v.unknownFields
  2944. default:
  2945. return nil
  2946. }
  2947. }
  2948. file_backend_operation_statistic_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2949. switch v := v.(*MixedCategoryTmrName); i {
  2950. case 0:
  2951. return &v.state
  2952. case 1:
  2953. return &v.sizeCache
  2954. case 2:
  2955. return &v.unknownFields
  2956. default:
  2957. return nil
  2958. }
  2959. }
  2960. file_backend_operation_statistic_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2961. switch v := v.(*Table_TableList); i {
  2962. case 0:
  2963. return &v.state
  2964. case 1:
  2965. return &v.sizeCache
  2966. case 2:
  2967. return &v.unknownFields
  2968. default:
  2969. return nil
  2970. }
  2971. }
  2972. }
  2973. type x struct{}
  2974. out := protoimpl.TypeBuilder{
  2975. File: protoimpl.DescBuilder{
  2976. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2977. RawDescriptor: file_backend_operation_statistic_proto_rawDesc,
  2978. NumEnums: 0,
  2979. NumMessages: 26,
  2980. NumExtensions: 0,
  2981. NumServices: 0,
  2982. },
  2983. GoTypes: file_backend_operation_statistic_proto_goTypes,
  2984. DependencyIndexes: file_backend_operation_statistic_proto_depIdxs,
  2985. MessageInfos: file_backend_operation_statistic_proto_msgTypes,
  2986. }.Build()
  2987. File_backend_operation_statistic_proto = out.File
  2988. file_backend_operation_statistic_proto_rawDesc = nil
  2989. file_backend_operation_statistic_proto_goTypes = nil
  2990. file_backend_operation_statistic_proto_depIdxs = nil
  2991. }