statistic.pb.go 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153
  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. type TrainNumberRequest struct {
  1333. state protoimpl.MessageState
  1334. sizeCache protoimpl.SizeCache
  1335. unknownFields protoimpl.UnknownFields
  1336. ApiName string `protobuf:"bytes,1,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1337. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1338. InfoName string `protobuf:"bytes,3,opt,name=info_name,json=infoName,proto3" json:"info_name,omitempty"`
  1339. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1340. }
  1341. func (x *TrainNumberRequest) Reset() {
  1342. *x = TrainNumberRequest{}
  1343. if protoimpl.UnsafeEnabled {
  1344. mi := &file_backend_operation_statistic_proto_msgTypes[12]
  1345. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1346. ms.StoreMessageInfo(mi)
  1347. }
  1348. }
  1349. func (x *TrainNumberRequest) String() string {
  1350. return protoimpl.X.MessageStringOf(x)
  1351. }
  1352. func (*TrainNumberRequest) ProtoMessage() {}
  1353. func (x *TrainNumberRequest) ProtoReflect() protoreflect.Message {
  1354. mi := &file_backend_operation_statistic_proto_msgTypes[12]
  1355. if protoimpl.UnsafeEnabled && x != nil {
  1356. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1357. if ms.LoadMessageInfo() == nil {
  1358. ms.StoreMessageInfo(mi)
  1359. }
  1360. return ms
  1361. }
  1362. return mi.MessageOf(x)
  1363. }
  1364. // Deprecated: Use TrainNumberRequest.ProtoReflect.Descriptor instead.
  1365. func (*TrainNumberRequest) Descriptor() ([]byte, []int) {
  1366. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{12}
  1367. }
  1368. func (x *TrainNumberRequest) GetApiName() string {
  1369. if x != nil {
  1370. return x.ApiName
  1371. }
  1372. return ""
  1373. }
  1374. func (x *TrainNumberRequest) GetPastureId() int32 {
  1375. if x != nil {
  1376. return x.PastureId
  1377. }
  1378. return 0
  1379. }
  1380. func (x *TrainNumberRequest) GetInfoName() string {
  1381. if x != nil {
  1382. return x.InfoName
  1383. }
  1384. return ""
  1385. }
  1386. func (x *TrainNumberRequest) GetPagination() *PaginationModel {
  1387. if x != nil {
  1388. return x.Pagination
  1389. }
  1390. return nil
  1391. }
  1392. type TrainNumberResponse struct {
  1393. state protoimpl.MessageState
  1394. sizeCache protoimpl.SizeCache
  1395. unknownFields protoimpl.UnknownFields
  1396. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1397. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1398. Data *TrainNumberData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1399. }
  1400. func (x *TrainNumberResponse) Reset() {
  1401. *x = TrainNumberResponse{}
  1402. if protoimpl.UnsafeEnabled {
  1403. mi := &file_backend_operation_statistic_proto_msgTypes[13]
  1404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1405. ms.StoreMessageInfo(mi)
  1406. }
  1407. }
  1408. func (x *TrainNumberResponse) String() string {
  1409. return protoimpl.X.MessageStringOf(x)
  1410. }
  1411. func (*TrainNumberResponse) ProtoMessage() {}
  1412. func (x *TrainNumberResponse) ProtoReflect() protoreflect.Message {
  1413. mi := &file_backend_operation_statistic_proto_msgTypes[13]
  1414. if protoimpl.UnsafeEnabled && x != nil {
  1415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1416. if ms.LoadMessageInfo() == nil {
  1417. ms.StoreMessageInfo(mi)
  1418. }
  1419. return ms
  1420. }
  1421. return mi.MessageOf(x)
  1422. }
  1423. // Deprecated: Use TrainNumberResponse.ProtoReflect.Descriptor instead.
  1424. func (*TrainNumberResponse) Descriptor() ([]byte, []int) {
  1425. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{13}
  1426. }
  1427. func (x *TrainNumberResponse) GetCode() int32 {
  1428. if x != nil {
  1429. return x.Code
  1430. }
  1431. return 0
  1432. }
  1433. func (x *TrainNumberResponse) GetMsg() string {
  1434. if x != nil {
  1435. return x.Msg
  1436. }
  1437. return ""
  1438. }
  1439. func (x *TrainNumberResponse) GetData() *TrainNumberData {
  1440. if x != nil {
  1441. return x.Data
  1442. }
  1443. return nil
  1444. }
  1445. type TrainNumberData struct {
  1446. state protoimpl.MessageState
  1447. sizeCache protoimpl.SizeCache
  1448. unknownFields protoimpl.UnknownFields
  1449. List []*FormulaOptionEnum `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1450. }
  1451. func (x *TrainNumberData) Reset() {
  1452. *x = TrainNumberData{}
  1453. if protoimpl.UnsafeEnabled {
  1454. mi := &file_backend_operation_statistic_proto_msgTypes[14]
  1455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1456. ms.StoreMessageInfo(mi)
  1457. }
  1458. }
  1459. func (x *TrainNumberData) String() string {
  1460. return protoimpl.X.MessageStringOf(x)
  1461. }
  1462. func (*TrainNumberData) ProtoMessage() {}
  1463. func (x *TrainNumberData) ProtoReflect() protoreflect.Message {
  1464. mi := &file_backend_operation_statistic_proto_msgTypes[14]
  1465. if protoimpl.UnsafeEnabled && x != nil {
  1466. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1467. if ms.LoadMessageInfo() == nil {
  1468. ms.StoreMessageInfo(mi)
  1469. }
  1470. return ms
  1471. }
  1472. return mi.MessageOf(x)
  1473. }
  1474. // Deprecated: Use TrainNumberData.ProtoReflect.Descriptor instead.
  1475. func (*TrainNumberData) Descriptor() ([]byte, []int) {
  1476. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{14}
  1477. }
  1478. func (x *TrainNumberData) GetList() []*FormulaOptionEnum {
  1479. if x != nil {
  1480. return x.List
  1481. }
  1482. return nil
  1483. }
  1484. // 首页 dashboard 准确性分析
  1485. type SearchAnalysisAccuracyRequest struct {
  1486. state protoimpl.MessageState
  1487. sizeCache protoimpl.SizeCache
  1488. unknownFields protoimpl.UnknownFields
  1489. 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 泌乳牛
  1490. FeedFormulaId int32 `protobuf:"varint,2,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  1491. StartDate string `protobuf:"bytes,3,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` // 开始时间
  1492. EndDate string `protobuf:"bytes,4,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"` // 结束时间
  1493. PastureIds []int32 `protobuf:"varint,5,rep,packed,name=pasture_ids,json=pastureIds,proto3" json:"pasture_ids,omitempty"` //牧场ids
  1494. TopRandStart float32 `protobuf:"fixed32,6,opt,name=top_rand_start,json=topRandStart,proto3" json:"top_rand_start,omitempty"` // 排名区间开始位
  1495. TopRandEnd float32 `protobuf:"fixed32,7,opt,name=top_rand_end,json=topRandEnd,proto3" json:"top_rand_end,omitempty"` // 排名区间结束位
  1496. DashboardTopType DashboardTopType_Kind `protobuf:"varint,8,opt,name=dashboard_top_type,json=dashboardTopType,proto3,enum=backend.operation.DashboardTopType_Kind" json:"dashboard_top_type,omitempty"` // 排序区间标识
  1497. }
  1498. func (x *SearchAnalysisAccuracyRequest) Reset() {
  1499. *x = SearchAnalysisAccuracyRequest{}
  1500. if protoimpl.UnsafeEnabled {
  1501. mi := &file_backend_operation_statistic_proto_msgTypes[15]
  1502. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1503. ms.StoreMessageInfo(mi)
  1504. }
  1505. }
  1506. func (x *SearchAnalysisAccuracyRequest) String() string {
  1507. return protoimpl.X.MessageStringOf(x)
  1508. }
  1509. func (*SearchAnalysisAccuracyRequest) ProtoMessage() {}
  1510. func (x *SearchAnalysisAccuracyRequest) ProtoReflect() protoreflect.Message {
  1511. mi := &file_backend_operation_statistic_proto_msgTypes[15]
  1512. if protoimpl.UnsafeEnabled && x != nil {
  1513. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1514. if ms.LoadMessageInfo() == nil {
  1515. ms.StoreMessageInfo(mi)
  1516. }
  1517. return ms
  1518. }
  1519. return mi.MessageOf(x)
  1520. }
  1521. // Deprecated: Use SearchAnalysisAccuracyRequest.ProtoReflect.Descriptor instead.
  1522. func (*SearchAnalysisAccuracyRequest) Descriptor() ([]byte, []int) {
  1523. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{15}
  1524. }
  1525. func (x *SearchAnalysisAccuracyRequest) GetCattleParentCategoryId() CattleCategoryParent_Kind {
  1526. if x != nil {
  1527. return x.CattleParentCategoryId
  1528. }
  1529. return CattleCategoryParent_INVALID
  1530. }
  1531. func (x *SearchAnalysisAccuracyRequest) GetFeedFormulaId() int32 {
  1532. if x != nil {
  1533. return x.FeedFormulaId
  1534. }
  1535. return 0
  1536. }
  1537. func (x *SearchAnalysisAccuracyRequest) GetStartDate() string {
  1538. if x != nil {
  1539. return x.StartDate
  1540. }
  1541. return ""
  1542. }
  1543. func (x *SearchAnalysisAccuracyRequest) GetEndDate() string {
  1544. if x != nil {
  1545. return x.EndDate
  1546. }
  1547. return ""
  1548. }
  1549. func (x *SearchAnalysisAccuracyRequest) GetPastureIds() []int32 {
  1550. if x != nil {
  1551. return x.PastureIds
  1552. }
  1553. return nil
  1554. }
  1555. func (x *SearchAnalysisAccuracyRequest) GetTopRandStart() float32 {
  1556. if x != nil {
  1557. return x.TopRandStart
  1558. }
  1559. return 0
  1560. }
  1561. func (x *SearchAnalysisAccuracyRequest) GetTopRandEnd() float32 {
  1562. if x != nil {
  1563. return x.TopRandEnd
  1564. }
  1565. return 0
  1566. }
  1567. func (x *SearchAnalysisAccuracyRequest) GetDashboardTopType() DashboardTopType_Kind {
  1568. if x != nil {
  1569. return x.DashboardTopType
  1570. }
  1571. return DashboardTopType_INVALID
  1572. }
  1573. type SearchAnalysisAccuracyResponse struct {
  1574. state protoimpl.MessageState
  1575. sizeCache protoimpl.SizeCache
  1576. unknownFields protoimpl.UnknownFields
  1577. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1578. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1579. Data *AnalysisAccuracy `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1580. }
  1581. func (x *SearchAnalysisAccuracyResponse) Reset() {
  1582. *x = SearchAnalysisAccuracyResponse{}
  1583. if protoimpl.UnsafeEnabled {
  1584. mi := &file_backend_operation_statistic_proto_msgTypes[16]
  1585. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1586. ms.StoreMessageInfo(mi)
  1587. }
  1588. }
  1589. func (x *SearchAnalysisAccuracyResponse) String() string {
  1590. return protoimpl.X.MessageStringOf(x)
  1591. }
  1592. func (*SearchAnalysisAccuracyResponse) ProtoMessage() {}
  1593. func (x *SearchAnalysisAccuracyResponse) ProtoReflect() protoreflect.Message {
  1594. mi := &file_backend_operation_statistic_proto_msgTypes[16]
  1595. if protoimpl.UnsafeEnabled && x != nil {
  1596. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1597. if ms.LoadMessageInfo() == nil {
  1598. ms.StoreMessageInfo(mi)
  1599. }
  1600. return ms
  1601. }
  1602. return mi.MessageOf(x)
  1603. }
  1604. // Deprecated: Use SearchAnalysisAccuracyResponse.ProtoReflect.Descriptor instead.
  1605. func (*SearchAnalysisAccuracyResponse) Descriptor() ([]byte, []int) {
  1606. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{16}
  1607. }
  1608. func (x *SearchAnalysisAccuracyResponse) GetCode() int32 {
  1609. if x != nil {
  1610. return x.Code
  1611. }
  1612. return 0
  1613. }
  1614. func (x *SearchAnalysisAccuracyResponse) GetMsg() string {
  1615. if x != nil {
  1616. return x.Msg
  1617. }
  1618. return ""
  1619. }
  1620. func (x *SearchAnalysisAccuracyResponse) GetData() *AnalysisAccuracy {
  1621. if x != nil {
  1622. return x.Data
  1623. }
  1624. return nil
  1625. }
  1626. type AnalysisAccuracy struct {
  1627. state protoimpl.MessageState
  1628. sizeCache protoimpl.SizeCache
  1629. unknownFields protoimpl.UnknownFields
  1630. Chart *Chart `protobuf:"bytes,1,opt,name=chart,proto3" json:"chart,omitempty"`
  1631. Table *Table `protobuf:"bytes,2,opt,name=table,proto3" json:"table,omitempty"`
  1632. }
  1633. func (x *AnalysisAccuracy) Reset() {
  1634. *x = AnalysisAccuracy{}
  1635. if protoimpl.UnsafeEnabled {
  1636. mi := &file_backend_operation_statistic_proto_msgTypes[17]
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. }
  1641. func (x *AnalysisAccuracy) String() string {
  1642. return protoimpl.X.MessageStringOf(x)
  1643. }
  1644. func (*AnalysisAccuracy) ProtoMessage() {}
  1645. func (x *AnalysisAccuracy) ProtoReflect() protoreflect.Message {
  1646. mi := &file_backend_operation_statistic_proto_msgTypes[17]
  1647. if protoimpl.UnsafeEnabled && x != nil {
  1648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1649. if ms.LoadMessageInfo() == nil {
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. return ms
  1653. }
  1654. return mi.MessageOf(x)
  1655. }
  1656. // Deprecated: Use AnalysisAccuracy.ProtoReflect.Descriptor instead.
  1657. func (*AnalysisAccuracy) Descriptor() ([]byte, []int) {
  1658. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{17}
  1659. }
  1660. func (x *AnalysisAccuracy) GetChart() *Chart {
  1661. if x != nil {
  1662. return x.Chart
  1663. }
  1664. return nil
  1665. }
  1666. func (x *AnalysisAccuracy) GetTable() *Table {
  1667. if x != nil {
  1668. return x.Table
  1669. }
  1670. return nil
  1671. }
  1672. type Chart struct {
  1673. state protoimpl.MessageState
  1674. sizeCache protoimpl.SizeCache
  1675. unknownFields protoimpl.UnknownFields
  1676. MixedFodderAccurateRatio *CommonValueRatio `protobuf:"bytes,4,opt,name=mixed_fodder_accurate_ratio,json=mixedFodderAccurateRatio,proto3" json:"mixed_fodder_accurate_ratio,omitempty"` // 混料准确率
  1677. MixedFodderCorrectRatio *CommonValueRatio `protobuf:"bytes,5,opt,name=mixed_fodder_correct_ratio,json=mixedFodderCorrectRatio,proto3" json:"mixed_fodder_correct_ratio,omitempty"` // 混料正确率
  1678. SprinkleFodderAccurateRatio *CommonValueRatio `protobuf:"bytes,6,opt,name=sprinkle_fodder_accurate_ratio,json=sprinkleFodderAccurateRatio,proto3" json:"sprinkle_fodder_accurate_ratio,omitempty"` // 撒料准确率
  1679. SprinkleFodderCorrectRatio *CommonValueRatio `protobuf:"bytes,7,opt,name=sprinkle_fodder_correct_ratio,json=sprinkleFodderCorrectRatio,proto3" json:"sprinkle_fodder_correct_ratio,omitempty"` // 撒料正确率
  1680. }
  1681. func (x *Chart) Reset() {
  1682. *x = Chart{}
  1683. if protoimpl.UnsafeEnabled {
  1684. mi := &file_backend_operation_statistic_proto_msgTypes[18]
  1685. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1686. ms.StoreMessageInfo(mi)
  1687. }
  1688. }
  1689. func (x *Chart) String() string {
  1690. return protoimpl.X.MessageStringOf(x)
  1691. }
  1692. func (*Chart) ProtoMessage() {}
  1693. func (x *Chart) ProtoReflect() protoreflect.Message {
  1694. mi := &file_backend_operation_statistic_proto_msgTypes[18]
  1695. if protoimpl.UnsafeEnabled && x != nil {
  1696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1697. if ms.LoadMessageInfo() == nil {
  1698. ms.StoreMessageInfo(mi)
  1699. }
  1700. return ms
  1701. }
  1702. return mi.MessageOf(x)
  1703. }
  1704. // Deprecated: Use Chart.ProtoReflect.Descriptor instead.
  1705. func (*Chart) Descriptor() ([]byte, []int) {
  1706. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{18}
  1707. }
  1708. func (x *Chart) GetMixedFodderAccurateRatio() *CommonValueRatio {
  1709. if x != nil {
  1710. return x.MixedFodderAccurateRatio
  1711. }
  1712. return nil
  1713. }
  1714. func (x *Chart) GetMixedFodderCorrectRatio() *CommonValueRatio {
  1715. if x != nil {
  1716. return x.MixedFodderCorrectRatio
  1717. }
  1718. return nil
  1719. }
  1720. func (x *Chart) GetSprinkleFodderAccurateRatio() *CommonValueRatio {
  1721. if x != nil {
  1722. return x.SprinkleFodderAccurateRatio
  1723. }
  1724. return nil
  1725. }
  1726. func (x *Chart) GetSprinkleFodderCorrectRatio() *CommonValueRatio {
  1727. if x != nil {
  1728. return x.SprinkleFodderCorrectRatio
  1729. }
  1730. return nil
  1731. }
  1732. type Table struct {
  1733. state protoimpl.MessageState
  1734. sizeCache protoimpl.SizeCache
  1735. unknownFields protoimpl.UnknownFields
  1736. TableList []*Table_TableList `protobuf:"bytes,1,rep,name=table_list,json=tableList,proto3" json:"table_list,omitempty"`
  1737. }
  1738. func (x *Table) Reset() {
  1739. *x = Table{}
  1740. if protoimpl.UnsafeEnabled {
  1741. mi := &file_backend_operation_statistic_proto_msgTypes[19]
  1742. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1743. ms.StoreMessageInfo(mi)
  1744. }
  1745. }
  1746. func (x *Table) String() string {
  1747. return protoimpl.X.MessageStringOf(x)
  1748. }
  1749. func (*Table) ProtoMessage() {}
  1750. func (x *Table) ProtoReflect() protoreflect.Message {
  1751. mi := &file_backend_operation_statistic_proto_msgTypes[19]
  1752. if protoimpl.UnsafeEnabled && x != nil {
  1753. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1754. if ms.LoadMessageInfo() == nil {
  1755. ms.StoreMessageInfo(mi)
  1756. }
  1757. return ms
  1758. }
  1759. return mi.MessageOf(x)
  1760. }
  1761. // Deprecated: Use Table.ProtoReflect.Descriptor instead.
  1762. func (*Table) Descriptor() ([]byte, []int) {
  1763. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{19}
  1764. }
  1765. func (x *Table) GetTableList() []*Table_TableList {
  1766. if x != nil {
  1767. return x.TableList
  1768. }
  1769. return nil
  1770. }
  1771. type CommonValueRatio struct {
  1772. state protoimpl.MessageState
  1773. sizeCache protoimpl.SizeCache
  1774. unknownFields protoimpl.UnknownFields
  1775. MaxValue string `protobuf:"bytes,1,opt,name=max_value,json=maxValue,proto3" json:"max_value,omitempty"` // 最高值
  1776. MiddleValue string `protobuf:"bytes,2,opt,name=middle_value,json=middleValue,proto3" json:"middle_value,omitempty"` // 中位值
  1777. MinValue string `protobuf:"bytes,3,opt,name=min_value,json=minValue,proto3" json:"min_value,omitempty"` // 最低值
  1778. DataList []*ValueRatio `protobuf:"bytes,4,rep,name=data_list,json=dataList,proto3" json:"data_list,omitempty"` // 数据集合
  1779. PastureName []string `protobuf:"bytes,5,rep,name=pasture_name,json=pastureName,proto3" json:"pasture_name,omitempty"` // 牧场名称集合
  1780. DateDay []string `protobuf:"bytes,6,rep,name=date_day,json=dateDay,proto3" json:"date_day,omitempty"` // 日期集合
  1781. }
  1782. func (x *CommonValueRatio) Reset() {
  1783. *x = CommonValueRatio{}
  1784. if protoimpl.UnsafeEnabled {
  1785. mi := &file_backend_operation_statistic_proto_msgTypes[20]
  1786. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1787. ms.StoreMessageInfo(mi)
  1788. }
  1789. }
  1790. func (x *CommonValueRatio) String() string {
  1791. return protoimpl.X.MessageStringOf(x)
  1792. }
  1793. func (*CommonValueRatio) ProtoMessage() {}
  1794. func (x *CommonValueRatio) ProtoReflect() protoreflect.Message {
  1795. mi := &file_backend_operation_statistic_proto_msgTypes[20]
  1796. if protoimpl.UnsafeEnabled && x != nil {
  1797. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1798. if ms.LoadMessageInfo() == nil {
  1799. ms.StoreMessageInfo(mi)
  1800. }
  1801. return ms
  1802. }
  1803. return mi.MessageOf(x)
  1804. }
  1805. // Deprecated: Use CommonValueRatio.ProtoReflect.Descriptor instead.
  1806. func (*CommonValueRatio) Descriptor() ([]byte, []int) {
  1807. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{20}
  1808. }
  1809. func (x *CommonValueRatio) GetMaxValue() string {
  1810. if x != nil {
  1811. return x.MaxValue
  1812. }
  1813. return ""
  1814. }
  1815. func (x *CommonValueRatio) GetMiddleValue() string {
  1816. if x != nil {
  1817. return x.MiddleValue
  1818. }
  1819. return ""
  1820. }
  1821. func (x *CommonValueRatio) GetMinValue() string {
  1822. if x != nil {
  1823. return x.MinValue
  1824. }
  1825. return ""
  1826. }
  1827. func (x *CommonValueRatio) GetDataList() []*ValueRatio {
  1828. if x != nil {
  1829. return x.DataList
  1830. }
  1831. return nil
  1832. }
  1833. func (x *CommonValueRatio) GetPastureName() []string {
  1834. if x != nil {
  1835. return x.PastureName
  1836. }
  1837. return nil
  1838. }
  1839. func (x *CommonValueRatio) GetDateDay() []string {
  1840. if x != nil {
  1841. return x.DateDay
  1842. }
  1843. return nil
  1844. }
  1845. type ValueRatio struct {
  1846. state protoimpl.MessageState
  1847. sizeCache protoimpl.SizeCache
  1848. unknownFields protoimpl.UnknownFields
  1849. ValueRatio []string `protobuf:"bytes,1,rep,name=value_ratio,json=valueRatio,proto3" json:"value_ratio,omitempty"`
  1850. }
  1851. func (x *ValueRatio) Reset() {
  1852. *x = ValueRatio{}
  1853. if protoimpl.UnsafeEnabled {
  1854. mi := &file_backend_operation_statistic_proto_msgTypes[21]
  1855. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1856. ms.StoreMessageInfo(mi)
  1857. }
  1858. }
  1859. func (x *ValueRatio) String() string {
  1860. return protoimpl.X.MessageStringOf(x)
  1861. }
  1862. func (*ValueRatio) ProtoMessage() {}
  1863. func (x *ValueRatio) ProtoReflect() protoreflect.Message {
  1864. mi := &file_backend_operation_statistic_proto_msgTypes[21]
  1865. if protoimpl.UnsafeEnabled && x != nil {
  1866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1867. if ms.LoadMessageInfo() == nil {
  1868. ms.StoreMessageInfo(mi)
  1869. }
  1870. return ms
  1871. }
  1872. return mi.MessageOf(x)
  1873. }
  1874. // Deprecated: Use ValueRatio.ProtoReflect.Descriptor instead.
  1875. func (*ValueRatio) Descriptor() ([]byte, []int) {
  1876. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{21}
  1877. }
  1878. func (x *ValueRatio) GetValueRatio() []string {
  1879. if x != nil {
  1880. return x.ValueRatio
  1881. }
  1882. return nil
  1883. }
  1884. // 首页 dashboard 撒料时间统计分析
  1885. type SprinkleFeedTimeRequest struct {
  1886. state protoimpl.MessageState
  1887. sizeCache protoimpl.SizeCache
  1888. unknownFields protoimpl.UnknownFields
  1889. FeedFormulaId int32 `protobuf:"varint,1,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  1890. StartDate string `protobuf:"bytes,2,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` // 开始时间
  1891. EndDate string `protobuf:"bytes,3,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"` // 结束时间
  1892. PastureIds []int32 `protobuf:"varint,4,rep,packed,name=pasture_ids,json=pastureIds,proto3" json:"pasture_ids,omitempty"` //牧场ids
  1893. DataType int32 `protobuf:"varint,5,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"` // 过滤的数据类型 0 不过滤 1 正常 2 异常
  1894. }
  1895. func (x *SprinkleFeedTimeRequest) Reset() {
  1896. *x = SprinkleFeedTimeRequest{}
  1897. if protoimpl.UnsafeEnabled {
  1898. mi := &file_backend_operation_statistic_proto_msgTypes[22]
  1899. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1900. ms.StoreMessageInfo(mi)
  1901. }
  1902. }
  1903. func (x *SprinkleFeedTimeRequest) String() string {
  1904. return protoimpl.X.MessageStringOf(x)
  1905. }
  1906. func (*SprinkleFeedTimeRequest) ProtoMessage() {}
  1907. func (x *SprinkleFeedTimeRequest) ProtoReflect() protoreflect.Message {
  1908. mi := &file_backend_operation_statistic_proto_msgTypes[22]
  1909. if protoimpl.UnsafeEnabled && x != nil {
  1910. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1911. if ms.LoadMessageInfo() == nil {
  1912. ms.StoreMessageInfo(mi)
  1913. }
  1914. return ms
  1915. }
  1916. return mi.MessageOf(x)
  1917. }
  1918. // Deprecated: Use SprinkleFeedTimeRequest.ProtoReflect.Descriptor instead.
  1919. func (*SprinkleFeedTimeRequest) Descriptor() ([]byte, []int) {
  1920. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{22}
  1921. }
  1922. func (x *SprinkleFeedTimeRequest) GetFeedFormulaId() int32 {
  1923. if x != nil {
  1924. return x.FeedFormulaId
  1925. }
  1926. return 0
  1927. }
  1928. func (x *SprinkleFeedTimeRequest) GetStartDate() string {
  1929. if x != nil {
  1930. return x.StartDate
  1931. }
  1932. return ""
  1933. }
  1934. func (x *SprinkleFeedTimeRequest) GetEndDate() string {
  1935. if x != nil {
  1936. return x.EndDate
  1937. }
  1938. return ""
  1939. }
  1940. func (x *SprinkleFeedTimeRequest) GetPastureIds() []int32 {
  1941. if x != nil {
  1942. return x.PastureIds
  1943. }
  1944. return nil
  1945. }
  1946. func (x *SprinkleFeedTimeRequest) GetDataType() int32 {
  1947. if x != nil {
  1948. return x.DataType
  1949. }
  1950. return 0
  1951. }
  1952. type Table_TableList struct {
  1953. state protoimpl.MessageState
  1954. sizeCache protoimpl.SizeCache
  1955. unknownFields protoimpl.UnknownFields
  1956. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1957. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1958. }
  1959. func (x *Table_TableList) Reset() {
  1960. *x = Table_TableList{}
  1961. if protoimpl.UnsafeEnabled {
  1962. mi := &file_backend_operation_statistic_proto_msgTypes[23]
  1963. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1964. ms.StoreMessageInfo(mi)
  1965. }
  1966. }
  1967. func (x *Table_TableList) String() string {
  1968. return protoimpl.X.MessageStringOf(x)
  1969. }
  1970. func (*Table_TableList) ProtoMessage() {}
  1971. func (x *Table_TableList) ProtoReflect() protoreflect.Message {
  1972. mi := &file_backend_operation_statistic_proto_msgTypes[23]
  1973. if protoimpl.UnsafeEnabled && x != nil {
  1974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1975. if ms.LoadMessageInfo() == nil {
  1976. ms.StoreMessageInfo(mi)
  1977. }
  1978. return ms
  1979. }
  1980. return mi.MessageOf(x)
  1981. }
  1982. // Deprecated: Use Table_TableList.ProtoReflect.Descriptor instead.
  1983. func (*Table_TableList) Descriptor() ([]byte, []int) {
  1984. return file_backend_operation_statistic_proto_rawDescGZIP(), []int{19, 0}
  1985. }
  1986. func (x *Table_TableList) GetId() int32 {
  1987. if x != nil {
  1988. return x.Id
  1989. }
  1990. return 0
  1991. }
  1992. func (x *Table_TableList) GetName() string {
  1993. if x != nil {
  1994. return x.Name
  1995. }
  1996. return ""
  1997. }
  1998. var File_backend_operation_statistic_proto protoreflect.FileDescriptor
  1999. var file_backend_operation_statistic_proto_rawDesc = []byte{
  2000. 0x0a, 0x21, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2001. 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x2e, 0x70, 0x72,
  2002. 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2003. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x22, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f,
  2004. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2005. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x62, 0x61, 0x63, 0x6b,
  2006. 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e,
  2007. 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2008. 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x73, 0x74,
  2009. 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb1, 0x02, 0x0a, 0x1c, 0x53, 0x65,
  2010. 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x45, 0x73, 0x74, 0x69, 0x6d,
  2011. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74,
  2012. 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2013. 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64,
  2014. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64,
  2015. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74,
  2016. 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63,
  2017. 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d,
  2018. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65,
  2019. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05,
  2020. 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12,
  2021. 0x1f, 0x0a, 0x0b, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x06,
  2022. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64,
  2023. 0x12, 0x17, 0x0a, 0x07, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28,
  2024. 0x05, 0x52, 0x06, 0x62, 0x61, 0x72, 0x6e, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67,
  2025. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  2026. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2027. 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65,
  2028. 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf7, 0x01,
  2029. 0x0a, 0x20, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
  2030. 0x79, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  2031. 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  2032. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  2033. 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20,
  2034. 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  2035. 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2036. 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2037. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64,
  2038. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f,
  2039. 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72,
  2040. 0x65, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  2041. 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2042. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69,
  2043. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67,
  2044. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbb, 0x02, 0x0a, 0x24, 0x53, 0x65, 0x61, 0x72,
  2045. 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x53,
  2046. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2047. 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01,
  2048. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12,
  2049. 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2050. 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
  2051. 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  2052. 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  2053. 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75,
  2054. 0x72, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x68,
  2055. 0x65, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72,
  2056. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x63, 0x68,
  2057. 0x65, 0x63, 0x6b, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x74, 0x79, 0x70, 0x65, 0x43,
  2058. 0x68, 0x65, 0x63, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6e, 0x61, 0x6d,
  2059. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x4e, 0x61, 0x6d,
  2060. 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  2061. 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2062. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2063. 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  2064. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf3, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
  2065. 0x50, 0x72, 0x69, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52,
  2066. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
  2067. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72,
  2068. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  2069. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  2070. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2071. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  2072. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52,
  2073. 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x65,
  2074. 0x65, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66,
  2075. 0x65, 0x65, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  2076. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  2077. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2078. 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52,
  2079. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa0, 0x03, 0x0a, 0x1b,
  2080. 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73,
  2081. 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73,
  2082. 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2083. 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
  2084. 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  2085. 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  2086. 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75,
  2087. 0x72, 0x65, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f,
  2088. 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  2089. 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x12,
  2090. 0x1b, 0x0a, 0x09, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  2091. 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x72, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x30, 0x0a, 0x14,
  2092. 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  2093. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x61, 0x74, 0x74,
  2094. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2c,
  2095. 0x0a, 0x12, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2096. 0x79, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x63, 0x61, 0x74, 0x74,
  2097. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c,
  2098. 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01,
  2099. 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12,
  2100. 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20,
  2101. 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2102. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
  2103. 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
  2104. 0x69, 0x6f, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  2105. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xa8,
  2106. 0x01, 0x0a, 0x1a, 0x46, 0x65, 0x65, 0x64, 0x43, 0x68, 0x61, 0x72, 0x74, 0x53, 0x74, 0x61, 0x74,
  2107. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a,
  2108. 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2109. 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  2110. 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2111. 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75,
  2112. 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73,
  2113. 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  2114. 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x19,
  2115. 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  2116. 0x52, 0x07, 0x61, 0x70, 0x69, 0x54, 0x79, 0x70, 0x65, 0x22, 0xb2, 0x01, 0x0a, 0x13, 0x43, 0x6f,
  2117. 0x77, 0x73, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2118. 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18,
  2119. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65,
  2120. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  2121. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  2122. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
  2123. 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61,
  2124. 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22,
  2125. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2126. 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64,
  2127. 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc4,
  2128. 0x04, 0x0a, 0x1c, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x41, 0x67, 0x67, 0x53, 0x74,
  2129. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2130. 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20,
  2131. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19,
  2132. 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2133. 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73,
  2134. 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70,
  2135. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6e, 0x61, 0x6d,
  2136. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12,
  2137. 0x0a, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6f,
  2138. 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01,
  2139. 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x65,
  2140. 0x6e, 0x72, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x67, 0x65, 0x6e, 0x72, 0x65,
  2141. 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05,
  2142. 0x52, 0x06, 0x69, 0x73, 0x64, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63,
  2143. 0x31, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14,
  2144. 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68,
  2145. 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x0b, 0x20,
  2146. 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c,
  2147. 0x7a, 0x71, 0x32, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32,
  2148. 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05,
  2149. 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71,
  2150. 0x6c, 0x32, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x32,
  2151. 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52,
  2152. 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18,
  2153. 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05,
  2154. 0x73, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a,
  2155. 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x12, 0x20, 0x01, 0x28,
  2156. 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71,
  2157. 0x6c, 0x31, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31,
  2158. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x14, 0x20, 0x01, 0x28, 0x05,
  2159. 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x6a,
  2160. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x6a,
  2161. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x16, 0x20,
  2162. 0x01, 0x28, 0x09, 0x52, 0x05, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73,
  2163. 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x17, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73,
  2164. 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0xe2, 0x04, 0x0a, 0x18, 0x4d, 0x69, 0x78, 0x46, 0x65, 0x65,
  2165. 0x64, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  2166. 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  2167. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d,
  2168. 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20,
  2169. 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,
  2170. 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2171. 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75,
  2172. 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73,
  2173. 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d,
  2174. 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  2175. 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a,
  2176. 0x0c, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x06, 0x20,
  2177. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2178. 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2179. 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d,
  2180. 0x62, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69,
  2181. 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66,
  2182. 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b,
  2183. 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
  2184. 0x05, 0x52, 0x08, 0x6a, 0x75, 0x6d, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x68,
  2185. 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63,
  2186. 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05,
  2187. 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31,
  2188. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a,
  2189. 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c,
  2190. 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x18, 0x0e, 0x20,
  2191. 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x68,
  2192. 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x6c, 0x7a,
  2193. 0x71, 0x6c, 0x32, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
  2194. 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x1f,
  2195. 0x0a, 0x0b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20,
  2196. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12,
  2197. 0x15, 0x0a, 0x06, 0x69, 0x73, 0x5f, 0x75, 0x73, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52,
  2198. 0x05, 0x69, 0x73, 0x55, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2199. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63,
  2200. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50,
  2201. 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a,
  2202. 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x80, 0x05, 0x0a, 0x19, 0x53,
  2203. 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  2204. 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72,
  2205. 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74,
  2206. 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74,
  2207. 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69,
  2208. 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03,
  2209. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a,
  2210. 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  2211. 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x25, 0x0a, 0x0e,
  2212. 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05,
  2213. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x4e,
  2214. 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x6e, 0x75, 0x6d,
  2215. 0x62, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x72, 0x61, 0x69, 0x6e,
  2216. 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f,
  2217. 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6c,
  2218. 0x61, 0x73, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f, 0x72,
  2219. 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20,
  2220. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2221. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x62, 0x61, 0x72, 0x6e, 0x5f, 0x6e, 0x61, 0x6d,
  2222. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x72, 0x6e, 0x4e, 0x61, 0x6d,
  2223. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a,
  2224. 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x6a, 0x75, 0x6d, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14,
  2225. 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73,
  2226. 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0c, 0x20,
  2227. 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c,
  2228. 0x7a, 0x71, 0x31, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x31,
  2229. 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52,
  2230. 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31,
  2231. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x31, 0x12, 0x16,
  2232. 0x0a, 0x06, 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
  2233. 0x73, 0x6c, 0x7a, 0x71, 0x6c, 0x32, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x65, 0x72, 0x72,
  2234. 0x6f, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f,
  2235. 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
  2236. 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x79,
  2237. 0x70, 0x65, 0x12, 0x15, 0x0a, 0x06, 0x69, 0x73, 0x5f, 0x75, 0x73, 0x65, 0x18, 0x13, 0x20, 0x01,
  2238. 0x28, 0x09, 0x52, 0x05, 0x69, 0x73, 0x55, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67,
  2239. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  2240. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2241. 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65,
  2242. 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8a, 0x01,
  2243. 0x0a, 0x14, 0x47, 0x65, 0x74, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x52,
  2244. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f,
  2245. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72,
  2246. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  2247. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  2248. 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2249. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70,
  2250. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52,
  2251. 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x22, 0x9e, 0x04, 0x0a, 0x16, 0x50,
  2252. 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x52, 0x65,
  2253. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74,
  2254. 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74,
  2255. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  2256. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12,
  2257. 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2258. 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61,
  2259. 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
  2260. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x6c, 0x61,
  2261. 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x6c,
  2262. 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x74, 0x6d, 0x72, 0x5f, 0x6e, 0x61,
  2263. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x74, 0x6d, 0x72, 0x4e, 0x61, 0x6d,
  2264. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65,
  2265. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x61, 0x6e,
  2266. 0x67, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
  2267. 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x74, 0x61,
  2268. 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0d, 0x6d, 0x69, 0x78, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f,
  2269. 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x69, 0x78, 0x46,
  2270. 0x65, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31,
  2271. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a,
  2272. 0x05, 0x68, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c,
  2273. 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x0c, 0x20, 0x01,
  2274. 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x68, 0x6c, 0x7a,
  2275. 0x71, 0x32, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x68, 0x6c, 0x7a, 0x71, 0x32, 0x12,
  2276. 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x31, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
  2277. 0x73, 0x6c, 0x77, 0x63, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x18, 0x0f,
  2278. 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x77, 0x63, 0x32, 0x12, 0x14, 0x0a, 0x05, 0x73,
  2279. 0x6c, 0x7a, 0x71, 0x31, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71,
  2280. 0x31, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05,
  2281. 0x52, 0x05, 0x73, 0x6c, 0x7a, 0x71, 0x32, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  2282. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  2283. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2284. 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52,
  2285. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xaf, 0x01, 0x0a, 0x12,
  2286. 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  2287. 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  2288. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a,
  2289. 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  2290. 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
  2291. 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2292. 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67,
  2293. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e,
  2294. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2295. 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65,
  2296. 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x73, 0x0a,
  2297. 0x13, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70,
  2298. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2299. 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18,
  2300. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x36, 0x0a, 0x04, 0x64, 0x61,
  2301. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  2302. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x72, 0x61,
  2303. 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61,
  2304. 0x74, 0x61, 0x22, 0x4b, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x69, 0x6e, 0x4e, 0x75, 0x6d, 0x62, 0x65,
  2305. 0x72, 0x44, 0x61, 0x74, 0x61, 0x12, 0x38, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  2306. 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2307. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f,
  2308. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  2309. 0xab, 0x03, 0x0a, 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73,
  2310. 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2311. 0x74, 0x12, 0x67, 0x0a, 0x19, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x72, 0x65,
  2312. 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01,
  2313. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2314. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43,
  2315. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69,
  2316. 0x6e, 0x64, 0x52, 0x16, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2317. 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x65,
  2318. 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  2319. 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  2320. 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65,
  2321. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74,
  2322. 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20,
  2323. 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b,
  2324. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,
  2325. 0x05, 0x52, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x73, 0x12, 0x24, 0x0a,
  2326. 0x0e, 0x74, 0x6f, 0x70, 0x5f, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18,
  2327. 0x06, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0c, 0x74, 0x6f, 0x70, 0x52, 0x61, 0x6e, 0x64, 0x53, 0x74,
  2328. 0x61, 0x72, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x74, 0x6f, 0x70, 0x5f, 0x72, 0x61, 0x6e, 0x64, 0x5f,
  2329. 0x65, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0a, 0x74, 0x6f, 0x70, 0x52, 0x61,
  2330. 0x6e, 0x64, 0x45, 0x6e, 0x64, 0x12, 0x56, 0x0a, 0x12, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61,
  2331. 0x72, 0x64, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  2332. 0x0e, 0x32, 0x28, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2333. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x54,
  2334. 0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x10, 0x64, 0x61, 0x73,
  2335. 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x54, 0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x22, 0x7f, 0x0a,
  2336. 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x41,
  2337. 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  2338. 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63,
  2339. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2340. 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x37, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  2341. 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2342. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73,
  2343. 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x72,
  2344. 0x0a, 0x10, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61,
  2345. 0x63, 0x79, 0x12, 0x2e, 0x0a, 0x05, 0x63, 0x68, 0x61, 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  2346. 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2347. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x72, 0x74, 0x52, 0x05, 0x63, 0x68, 0x61,
  2348. 0x72, 0x74, 0x12, 0x2e, 0x0a, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2349. 0x0b, 0x32, 0x18, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2350. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x05, 0x74, 0x61, 0x62,
  2351. 0x6c, 0x65, 0x22, 0x9f, 0x03, 0x0a, 0x05, 0x43, 0x68, 0x61, 0x72, 0x74, 0x12, 0x62, 0x0a, 0x1b,
  2352. 0x6d, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63,
  2353. 0x75, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28,
  2354. 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2355. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75,
  2356. 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x18, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64,
  2357. 0x64, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f,
  2358. 0x12, 0x60, 0x0a, 0x1a, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72,
  2359. 0x5f, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x05,
  2360. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2361. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56,
  2362. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x17, 0x6d, 0x69, 0x78, 0x65, 0x64,
  2363. 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74,
  2364. 0x69, 0x6f, 0x12, 0x68, 0x0a, 0x1e, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x66,
  2365. 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72,
  2366. 0x61, 0x74, 0x69, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63,
  2367. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43,
  2368. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52,
  2369. 0x1b, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x41,
  2370. 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x66, 0x0a, 0x1d,
  2371. 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f,
  2372. 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x07, 0x20,
  2373. 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2374. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61,
  2375. 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x1a, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b,
  2376. 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x52,
  2377. 0x61, 0x74, 0x69, 0x6f, 0x22, 0x7b, 0x0a, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x41, 0x0a,
  2378. 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  2379. 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2380. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x54, 0x61, 0x62, 0x6c,
  2381. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74,
  2382. 0x1a, 0x2f, 0x0a, 0x09, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a,
  2383. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a,
  2384. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  2385. 0x65, 0x22, 0xe9, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75,
  2386. 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x61, 0x78, 0x5f, 0x76, 0x61,
  2387. 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61, 0x78, 0x56, 0x61,
  2388. 0x6c, 0x75, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x5f, 0x76, 0x61,
  2389. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x69, 0x64, 0x64, 0x6c,
  2390. 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6d, 0x69, 0x6e, 0x5f, 0x76, 0x61,
  2391. 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x69, 0x6e, 0x56, 0x61,
  2392. 0x6c, 0x75, 0x65, 0x12, 0x3a, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x73, 0x74,
  2393. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2394. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65,
  2395. 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2396. 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2397. 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x61,
  2398. 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x18, 0x06,
  2399. 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x79, 0x22, 0x2d, 0x0a,
  2400. 0x0a, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x1f, 0x0a, 0x0b, 0x76,
  2401. 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  2402. 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x22, 0xb9, 0x01, 0x0a,
  2403. 0x17, 0x53, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x65, 0x65, 0x64, 0x54, 0x69, 0x6d,
  2404. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x65, 0x65, 0x64,
  2405. 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2406. 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x49, 0x64,
  2407. 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x02,
  2408. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x12,
  2409. 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2410. 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61,
  2411. 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x05, 0x52,
  2412. 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x64,
  2413. 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
  2414. 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x3b, 0x6f, 0x70,
  2415. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2416. 0x33,
  2417. }
  2418. var (
  2419. file_backend_operation_statistic_proto_rawDescOnce sync.Once
  2420. file_backend_operation_statistic_proto_rawDescData = file_backend_operation_statistic_proto_rawDesc
  2421. )
  2422. func file_backend_operation_statistic_proto_rawDescGZIP() []byte {
  2423. file_backend_operation_statistic_proto_rawDescOnce.Do(func() {
  2424. file_backend_operation_statistic_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_statistic_proto_rawDescData)
  2425. })
  2426. return file_backend_operation_statistic_proto_rawDescData
  2427. }
  2428. var file_backend_operation_statistic_proto_msgTypes = make([]protoimpl.MessageInfo, 24)
  2429. var file_backend_operation_statistic_proto_goTypes = []interface{}{
  2430. (*SearchFormulaEstimateRequest)(nil), // 0: backend.operation.SearchFormulaEstimateRequest
  2431. (*SearchInventoryStatisticsRequest)(nil), // 1: backend.operation.SearchInventoryStatisticsRequest
  2432. (*SearchUserMaterialsStatisticsRequest)(nil), // 2: backend.operation.SearchUserMaterialsStatisticsRequest
  2433. (*SearchPriceStatisticsRequest)(nil), // 3: backend.operation.SearchPriceStatisticsRequest
  2434. (*SearchFeedStatisticsRequest)(nil), // 4: backend.operation.SearchFeedStatisticsRequest
  2435. (*FeedChartStatisticsRequest)(nil), // 5: backend.operation.FeedChartStatisticsRequest
  2436. (*CowsAnalysisRequest)(nil), // 6: backend.operation.CowsAnalysisRequest
  2437. (*AccuracyAggStatisticsRequest)(nil), // 7: backend.operation.AccuracyAggStatisticsRequest
  2438. (*MixFeedStatisticsRequest)(nil), // 8: backend.operation.MixFeedStatisticsRequest
  2439. (*SprinkleStatisticsRequest)(nil), // 9: backend.operation.SprinkleStatisticsRequest
  2440. (*GetDataByNameRequest)(nil), // 10: backend.operation.GetDataByNameRequest
  2441. (*ProcessAnalysisRequest)(nil), // 11: backend.operation.ProcessAnalysisRequest
  2442. (*TrainNumberRequest)(nil), // 12: backend.operation.TrainNumberRequest
  2443. (*TrainNumberResponse)(nil), // 13: backend.operation.TrainNumberResponse
  2444. (*TrainNumberData)(nil), // 14: backend.operation.TrainNumberData
  2445. (*SearchAnalysisAccuracyRequest)(nil), // 15: backend.operation.SearchAnalysisAccuracyRequest
  2446. (*SearchAnalysisAccuracyResponse)(nil), // 16: backend.operation.SearchAnalysisAccuracyResponse
  2447. (*AnalysisAccuracy)(nil), // 17: backend.operation.AnalysisAccuracy
  2448. (*Chart)(nil), // 18: backend.operation.Chart
  2449. (*Table)(nil), // 19: backend.operation.Table
  2450. (*CommonValueRatio)(nil), // 20: backend.operation.CommonValueRatio
  2451. (*ValueRatio)(nil), // 21: backend.operation.ValueRatio
  2452. (*SprinkleFeedTimeRequest)(nil), // 22: backend.operation.SprinkleFeedTimeRequest
  2453. (*Table_TableList)(nil), // 23: backend.operation.Table.TableList
  2454. (*PaginationModel)(nil), // 24: backend.operation.PaginationModel
  2455. (*FormulaOptionEnum)(nil), // 25: backend.operation.FormulaOptionEnum
  2456. (CattleCategoryParent_Kind)(0), // 26: backend.operation.CattleCategoryParent.Kind
  2457. (DashboardTopType_Kind)(0), // 27: backend.operation.DashboardTopType.Kind
  2458. }
  2459. var file_backend_operation_statistic_proto_depIdxs = []int32{
  2460. 24, // 0: backend.operation.SearchFormulaEstimateRequest.pagination:type_name -> backend.operation.PaginationModel
  2461. 24, // 1: backend.operation.SearchInventoryStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2462. 24, // 2: backend.operation.SearchUserMaterialsStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2463. 24, // 3: backend.operation.SearchPriceStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2464. 24, // 4: backend.operation.SearchFeedStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2465. 24, // 5: backend.operation.CowsAnalysisRequest.pagination:type_name -> backend.operation.PaginationModel
  2466. 24, // 6: backend.operation.MixFeedStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2467. 24, // 7: backend.operation.SprinkleStatisticsRequest.pagination:type_name -> backend.operation.PaginationModel
  2468. 24, // 8: backend.operation.ProcessAnalysisRequest.pagination:type_name -> backend.operation.PaginationModel
  2469. 24, // 9: backend.operation.TrainNumberRequest.pagination:type_name -> backend.operation.PaginationModel
  2470. 14, // 10: backend.operation.TrainNumberResponse.data:type_name -> backend.operation.TrainNumberData
  2471. 25, // 11: backend.operation.TrainNumberData.list:type_name -> backend.operation.FormulaOptionEnum
  2472. 26, // 12: backend.operation.SearchAnalysisAccuracyRequest.cattle_parent_category_id:type_name -> backend.operation.CattleCategoryParent.Kind
  2473. 27, // 13: backend.operation.SearchAnalysisAccuracyRequest.dashboard_top_type:type_name -> backend.operation.DashboardTopType.Kind
  2474. 17, // 14: backend.operation.SearchAnalysisAccuracyResponse.data:type_name -> backend.operation.AnalysisAccuracy
  2475. 18, // 15: backend.operation.AnalysisAccuracy.chart:type_name -> backend.operation.Chart
  2476. 19, // 16: backend.operation.AnalysisAccuracy.table:type_name -> backend.operation.Table
  2477. 20, // 17: backend.operation.Chart.mixed_fodder_accurate_ratio:type_name -> backend.operation.CommonValueRatio
  2478. 20, // 18: backend.operation.Chart.mixed_fodder_correct_ratio:type_name -> backend.operation.CommonValueRatio
  2479. 20, // 19: backend.operation.Chart.sprinkle_fodder_accurate_ratio:type_name -> backend.operation.CommonValueRatio
  2480. 20, // 20: backend.operation.Chart.sprinkle_fodder_correct_ratio:type_name -> backend.operation.CommonValueRatio
  2481. 23, // 21: backend.operation.Table.table_list:type_name -> backend.operation.Table.TableList
  2482. 21, // 22: backend.operation.CommonValueRatio.data_list:type_name -> backend.operation.ValueRatio
  2483. 23, // [23:23] is the sub-list for method output_type
  2484. 23, // [23:23] is the sub-list for method input_type
  2485. 23, // [23:23] is the sub-list for extension type_name
  2486. 23, // [23:23] is the sub-list for extension extendee
  2487. 0, // [0:23] is the sub-list for field type_name
  2488. }
  2489. func init() { file_backend_operation_statistic_proto_init() }
  2490. func file_backend_operation_statistic_proto_init() {
  2491. if File_backend_operation_statistic_proto != nil {
  2492. return
  2493. }
  2494. file_backend_operation_pagination_proto_init()
  2495. file_backend_operation_enum_proto_init()
  2496. file_backend_operation_pasture_proto_init()
  2497. if !protoimpl.UnsafeEnabled {
  2498. file_backend_operation_statistic_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2499. switch v := v.(*SearchFormulaEstimateRequest); i {
  2500. case 0:
  2501. return &v.state
  2502. case 1:
  2503. return &v.sizeCache
  2504. case 2:
  2505. return &v.unknownFields
  2506. default:
  2507. return nil
  2508. }
  2509. }
  2510. file_backend_operation_statistic_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2511. switch v := v.(*SearchInventoryStatisticsRequest); i {
  2512. case 0:
  2513. return &v.state
  2514. case 1:
  2515. return &v.sizeCache
  2516. case 2:
  2517. return &v.unknownFields
  2518. default:
  2519. return nil
  2520. }
  2521. }
  2522. file_backend_operation_statistic_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2523. switch v := v.(*SearchUserMaterialsStatisticsRequest); i {
  2524. case 0:
  2525. return &v.state
  2526. case 1:
  2527. return &v.sizeCache
  2528. case 2:
  2529. return &v.unknownFields
  2530. default:
  2531. return nil
  2532. }
  2533. }
  2534. file_backend_operation_statistic_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2535. switch v := v.(*SearchPriceStatisticsRequest); i {
  2536. case 0:
  2537. return &v.state
  2538. case 1:
  2539. return &v.sizeCache
  2540. case 2:
  2541. return &v.unknownFields
  2542. default:
  2543. return nil
  2544. }
  2545. }
  2546. file_backend_operation_statistic_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2547. switch v := v.(*SearchFeedStatisticsRequest); i {
  2548. case 0:
  2549. return &v.state
  2550. case 1:
  2551. return &v.sizeCache
  2552. case 2:
  2553. return &v.unknownFields
  2554. default:
  2555. return nil
  2556. }
  2557. }
  2558. file_backend_operation_statistic_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2559. switch v := v.(*FeedChartStatisticsRequest); i {
  2560. case 0:
  2561. return &v.state
  2562. case 1:
  2563. return &v.sizeCache
  2564. case 2:
  2565. return &v.unknownFields
  2566. default:
  2567. return nil
  2568. }
  2569. }
  2570. file_backend_operation_statistic_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2571. switch v := v.(*CowsAnalysisRequest); i {
  2572. case 0:
  2573. return &v.state
  2574. case 1:
  2575. return &v.sizeCache
  2576. case 2:
  2577. return &v.unknownFields
  2578. default:
  2579. return nil
  2580. }
  2581. }
  2582. file_backend_operation_statistic_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2583. switch v := v.(*AccuracyAggStatisticsRequest); i {
  2584. case 0:
  2585. return &v.state
  2586. case 1:
  2587. return &v.sizeCache
  2588. case 2:
  2589. return &v.unknownFields
  2590. default:
  2591. return nil
  2592. }
  2593. }
  2594. file_backend_operation_statistic_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2595. switch v := v.(*MixFeedStatisticsRequest); i {
  2596. case 0:
  2597. return &v.state
  2598. case 1:
  2599. return &v.sizeCache
  2600. case 2:
  2601. return &v.unknownFields
  2602. default:
  2603. return nil
  2604. }
  2605. }
  2606. file_backend_operation_statistic_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2607. switch v := v.(*SprinkleStatisticsRequest); i {
  2608. case 0:
  2609. return &v.state
  2610. case 1:
  2611. return &v.sizeCache
  2612. case 2:
  2613. return &v.unknownFields
  2614. default:
  2615. return nil
  2616. }
  2617. }
  2618. file_backend_operation_statistic_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2619. switch v := v.(*GetDataByNameRequest); i {
  2620. case 0:
  2621. return &v.state
  2622. case 1:
  2623. return &v.sizeCache
  2624. case 2:
  2625. return &v.unknownFields
  2626. default:
  2627. return nil
  2628. }
  2629. }
  2630. file_backend_operation_statistic_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2631. switch v := v.(*ProcessAnalysisRequest); i {
  2632. case 0:
  2633. return &v.state
  2634. case 1:
  2635. return &v.sizeCache
  2636. case 2:
  2637. return &v.unknownFields
  2638. default:
  2639. return nil
  2640. }
  2641. }
  2642. file_backend_operation_statistic_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2643. switch v := v.(*TrainNumberRequest); i {
  2644. case 0:
  2645. return &v.state
  2646. case 1:
  2647. return &v.sizeCache
  2648. case 2:
  2649. return &v.unknownFields
  2650. default:
  2651. return nil
  2652. }
  2653. }
  2654. file_backend_operation_statistic_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2655. switch v := v.(*TrainNumberResponse); i {
  2656. case 0:
  2657. return &v.state
  2658. case 1:
  2659. return &v.sizeCache
  2660. case 2:
  2661. return &v.unknownFields
  2662. default:
  2663. return nil
  2664. }
  2665. }
  2666. file_backend_operation_statistic_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2667. switch v := v.(*TrainNumberData); i {
  2668. case 0:
  2669. return &v.state
  2670. case 1:
  2671. return &v.sizeCache
  2672. case 2:
  2673. return &v.unknownFields
  2674. default:
  2675. return nil
  2676. }
  2677. }
  2678. file_backend_operation_statistic_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2679. switch v := v.(*SearchAnalysisAccuracyRequest); i {
  2680. case 0:
  2681. return &v.state
  2682. case 1:
  2683. return &v.sizeCache
  2684. case 2:
  2685. return &v.unknownFields
  2686. default:
  2687. return nil
  2688. }
  2689. }
  2690. file_backend_operation_statistic_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2691. switch v := v.(*SearchAnalysisAccuracyResponse); i {
  2692. case 0:
  2693. return &v.state
  2694. case 1:
  2695. return &v.sizeCache
  2696. case 2:
  2697. return &v.unknownFields
  2698. default:
  2699. return nil
  2700. }
  2701. }
  2702. file_backend_operation_statistic_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2703. switch v := v.(*AnalysisAccuracy); i {
  2704. case 0:
  2705. return &v.state
  2706. case 1:
  2707. return &v.sizeCache
  2708. case 2:
  2709. return &v.unknownFields
  2710. default:
  2711. return nil
  2712. }
  2713. }
  2714. file_backend_operation_statistic_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2715. switch v := v.(*Chart); i {
  2716. case 0:
  2717. return &v.state
  2718. case 1:
  2719. return &v.sizeCache
  2720. case 2:
  2721. return &v.unknownFields
  2722. default:
  2723. return nil
  2724. }
  2725. }
  2726. file_backend_operation_statistic_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2727. switch v := v.(*Table); i {
  2728. case 0:
  2729. return &v.state
  2730. case 1:
  2731. return &v.sizeCache
  2732. case 2:
  2733. return &v.unknownFields
  2734. default:
  2735. return nil
  2736. }
  2737. }
  2738. file_backend_operation_statistic_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2739. switch v := v.(*CommonValueRatio); i {
  2740. case 0:
  2741. return &v.state
  2742. case 1:
  2743. return &v.sizeCache
  2744. case 2:
  2745. return &v.unknownFields
  2746. default:
  2747. return nil
  2748. }
  2749. }
  2750. file_backend_operation_statistic_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2751. switch v := v.(*ValueRatio); i {
  2752. case 0:
  2753. return &v.state
  2754. case 1:
  2755. return &v.sizeCache
  2756. case 2:
  2757. return &v.unknownFields
  2758. default:
  2759. return nil
  2760. }
  2761. }
  2762. file_backend_operation_statistic_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2763. switch v := v.(*SprinkleFeedTimeRequest); i {
  2764. case 0:
  2765. return &v.state
  2766. case 1:
  2767. return &v.sizeCache
  2768. case 2:
  2769. return &v.unknownFields
  2770. default:
  2771. return nil
  2772. }
  2773. }
  2774. file_backend_operation_statistic_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2775. switch v := v.(*Table_TableList); i {
  2776. case 0:
  2777. return &v.state
  2778. case 1:
  2779. return &v.sizeCache
  2780. case 2:
  2781. return &v.unknownFields
  2782. default:
  2783. return nil
  2784. }
  2785. }
  2786. }
  2787. type x struct{}
  2788. out := protoimpl.TypeBuilder{
  2789. File: protoimpl.DescBuilder{
  2790. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2791. RawDescriptor: file_backend_operation_statistic_proto_rawDesc,
  2792. NumEnums: 0,
  2793. NumMessages: 24,
  2794. NumExtensions: 0,
  2795. NumServices: 0,
  2796. },
  2797. GoTypes: file_backend_operation_statistic_proto_goTypes,
  2798. DependencyIndexes: file_backend_operation_statistic_proto_depIdxs,
  2799. MessageInfos: file_backend_operation_statistic_proto_msgTypes,
  2800. }.Build()
  2801. File_backend_operation_statistic_proto = out.File
  2802. file_backend_operation_statistic_proto_rawDesc = nil
  2803. file_backend_operation_statistic_proto_goTypes = nil
  2804. file_backend_operation_statistic_proto_depIdxs = nil
  2805. }