pasture.pb.go 152 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924
  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/pasture.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. type AddPastureRequest struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  24. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // 牧场名称
  25. Account string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"` // 登录账号名称
  26. ManagerUser string `protobuf:"bytes,4,opt,name=manager_user,json=managerUser,proto3" json:"manager_user,omitempty"` // 牧场负责人名称
  27. ManagerPhone string `protobuf:"bytes,5,opt,name=manager_phone,json=managerPhone,proto3" json:"manager_phone,omitempty"` // 牧场负责人手机号
  28. Address string `protobuf:"bytes,6,opt,name=address,proto3" json:"address,omitempty"` // 牧场地址
  29. IsShow IsShow_Kind `protobuf:"varint,7,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  30. CreatedAt int32 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  31. CreatedAtFormat string `protobuf:"bytes,9,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式化
  32. Domain string `protobuf:"bytes,10,opt,name=domain,proto3" json:"domain,omitempty"` // 牧场端域名或者ip
  33. PastureId int32 `protobuf:"varint,11,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场端id (兼容历史数据)
  34. }
  35. func (x *AddPastureRequest) Reset() {
  36. *x = AddPastureRequest{}
  37. if protoimpl.UnsafeEnabled {
  38. mi := &file_backend_operation_pasture_proto_msgTypes[0]
  39. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  40. ms.StoreMessageInfo(mi)
  41. }
  42. }
  43. func (x *AddPastureRequest) String() string {
  44. return protoimpl.X.MessageStringOf(x)
  45. }
  46. func (*AddPastureRequest) ProtoMessage() {}
  47. func (x *AddPastureRequest) ProtoReflect() protoreflect.Message {
  48. mi := &file_backend_operation_pasture_proto_msgTypes[0]
  49. if protoimpl.UnsafeEnabled && x != nil {
  50. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  51. if ms.LoadMessageInfo() == nil {
  52. ms.StoreMessageInfo(mi)
  53. }
  54. return ms
  55. }
  56. return mi.MessageOf(x)
  57. }
  58. // Deprecated: Use AddPastureRequest.ProtoReflect.Descriptor instead.
  59. func (*AddPastureRequest) Descriptor() ([]byte, []int) {
  60. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{0}
  61. }
  62. func (x *AddPastureRequest) GetId() int32 {
  63. if x != nil {
  64. return x.Id
  65. }
  66. return 0
  67. }
  68. func (x *AddPastureRequest) GetName() string {
  69. if x != nil {
  70. return x.Name
  71. }
  72. return ""
  73. }
  74. func (x *AddPastureRequest) GetAccount() string {
  75. if x != nil {
  76. return x.Account
  77. }
  78. return ""
  79. }
  80. func (x *AddPastureRequest) GetManagerUser() string {
  81. if x != nil {
  82. return x.ManagerUser
  83. }
  84. return ""
  85. }
  86. func (x *AddPastureRequest) GetManagerPhone() string {
  87. if x != nil {
  88. return x.ManagerPhone
  89. }
  90. return ""
  91. }
  92. func (x *AddPastureRequest) GetAddress() string {
  93. if x != nil {
  94. return x.Address
  95. }
  96. return ""
  97. }
  98. func (x *AddPastureRequest) GetIsShow() IsShow_Kind {
  99. if x != nil {
  100. return x.IsShow
  101. }
  102. return IsShow_INVALID
  103. }
  104. func (x *AddPastureRequest) GetCreatedAt() int32 {
  105. if x != nil {
  106. return x.CreatedAt
  107. }
  108. return 0
  109. }
  110. func (x *AddPastureRequest) GetCreatedAtFormat() string {
  111. if x != nil {
  112. return x.CreatedAtFormat
  113. }
  114. return ""
  115. }
  116. func (x *AddPastureRequest) GetDomain() string {
  117. if x != nil {
  118. return x.Domain
  119. }
  120. return ""
  121. }
  122. func (x *AddPastureRequest) GetPastureId() int32 {
  123. if x != nil {
  124. return x.PastureId
  125. }
  126. return 0
  127. }
  128. type SearchPastureRequest struct {
  129. state protoimpl.MessageState
  130. sizeCache protoimpl.SizeCache
  131. unknownFields protoimpl.UnknownFields
  132. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // 牧场名称
  133. ManagerUser string `protobuf:"bytes,2,opt,name=manager_user,json=managerUser,proto3" json:"manager_user,omitempty"` // 牧场负责人名称
  134. ManagerPhone string `protobuf:"bytes,3,opt,name=manager_phone,json=managerPhone,proto3" json:"manager_phone,omitempty"` // 牧场负责人手机号
  135. StartTime uint32 `protobuf:"varint,4,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  136. EndTime uint32 `protobuf:"varint,5,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  137. Pagination *PaginationModel `protobuf:"bytes,6,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  138. }
  139. func (x *SearchPastureRequest) Reset() {
  140. *x = SearchPastureRequest{}
  141. if protoimpl.UnsafeEnabled {
  142. mi := &file_backend_operation_pasture_proto_msgTypes[1]
  143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  144. ms.StoreMessageInfo(mi)
  145. }
  146. }
  147. func (x *SearchPastureRequest) String() string {
  148. return protoimpl.X.MessageStringOf(x)
  149. }
  150. func (*SearchPastureRequest) ProtoMessage() {}
  151. func (x *SearchPastureRequest) ProtoReflect() protoreflect.Message {
  152. mi := &file_backend_operation_pasture_proto_msgTypes[1]
  153. if protoimpl.UnsafeEnabled && x != nil {
  154. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  155. if ms.LoadMessageInfo() == nil {
  156. ms.StoreMessageInfo(mi)
  157. }
  158. return ms
  159. }
  160. return mi.MessageOf(x)
  161. }
  162. // Deprecated: Use SearchPastureRequest.ProtoReflect.Descriptor instead.
  163. func (*SearchPastureRequest) Descriptor() ([]byte, []int) {
  164. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{1}
  165. }
  166. func (x *SearchPastureRequest) GetName() string {
  167. if x != nil {
  168. return x.Name
  169. }
  170. return ""
  171. }
  172. func (x *SearchPastureRequest) GetManagerUser() string {
  173. if x != nil {
  174. return x.ManagerUser
  175. }
  176. return ""
  177. }
  178. func (x *SearchPastureRequest) GetManagerPhone() string {
  179. if x != nil {
  180. return x.ManagerPhone
  181. }
  182. return ""
  183. }
  184. func (x *SearchPastureRequest) GetStartTime() uint32 {
  185. if x != nil {
  186. return x.StartTime
  187. }
  188. return 0
  189. }
  190. func (x *SearchPastureRequest) GetEndTime() uint32 {
  191. if x != nil {
  192. return x.EndTime
  193. }
  194. return 0
  195. }
  196. func (x *SearchPastureRequest) GetPagination() *PaginationModel {
  197. if x != nil {
  198. return x.Pagination
  199. }
  200. return nil
  201. }
  202. type SearchPastureResponse struct {
  203. state protoimpl.MessageState
  204. sizeCache protoimpl.SizeCache
  205. unknownFields protoimpl.UnknownFields
  206. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  207. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  208. Data *SearchPastureData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  209. }
  210. func (x *SearchPastureResponse) Reset() {
  211. *x = SearchPastureResponse{}
  212. if protoimpl.UnsafeEnabled {
  213. mi := &file_backend_operation_pasture_proto_msgTypes[2]
  214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  215. ms.StoreMessageInfo(mi)
  216. }
  217. }
  218. func (x *SearchPastureResponse) String() string {
  219. return protoimpl.X.MessageStringOf(x)
  220. }
  221. func (*SearchPastureResponse) ProtoMessage() {}
  222. func (x *SearchPastureResponse) ProtoReflect() protoreflect.Message {
  223. mi := &file_backend_operation_pasture_proto_msgTypes[2]
  224. if protoimpl.UnsafeEnabled && x != nil {
  225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  226. if ms.LoadMessageInfo() == nil {
  227. ms.StoreMessageInfo(mi)
  228. }
  229. return ms
  230. }
  231. return mi.MessageOf(x)
  232. }
  233. // Deprecated: Use SearchPastureResponse.ProtoReflect.Descriptor instead.
  234. func (*SearchPastureResponse) Descriptor() ([]byte, []int) {
  235. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{2}
  236. }
  237. func (x *SearchPastureResponse) GetCode() int32 {
  238. if x != nil {
  239. return x.Code
  240. }
  241. return 0
  242. }
  243. func (x *SearchPastureResponse) GetMsg() string {
  244. if x != nil {
  245. return x.Msg
  246. }
  247. return ""
  248. }
  249. func (x *SearchPastureResponse) GetData() *SearchPastureData {
  250. if x != nil {
  251. return x.Data
  252. }
  253. return nil
  254. }
  255. type SearchPastureData struct {
  256. state protoimpl.MessageState
  257. sizeCache protoimpl.SizeCache
  258. unknownFields protoimpl.UnknownFields
  259. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  260. Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  261. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  262. List []*AddPastureRequest `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
  263. }
  264. func (x *SearchPastureData) Reset() {
  265. *x = SearchPastureData{}
  266. if protoimpl.UnsafeEnabled {
  267. mi := &file_backend_operation_pasture_proto_msgTypes[3]
  268. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  269. ms.StoreMessageInfo(mi)
  270. }
  271. }
  272. func (x *SearchPastureData) String() string {
  273. return protoimpl.X.MessageStringOf(x)
  274. }
  275. func (*SearchPastureData) ProtoMessage() {}
  276. func (x *SearchPastureData) ProtoReflect() protoreflect.Message {
  277. mi := &file_backend_operation_pasture_proto_msgTypes[3]
  278. if protoimpl.UnsafeEnabled && x != nil {
  279. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  280. if ms.LoadMessageInfo() == nil {
  281. ms.StoreMessageInfo(mi)
  282. }
  283. return ms
  284. }
  285. return mi.MessageOf(x)
  286. }
  287. // Deprecated: Use SearchPastureData.ProtoReflect.Descriptor instead.
  288. func (*SearchPastureData) Descriptor() ([]byte, []int) {
  289. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{3}
  290. }
  291. func (x *SearchPastureData) GetPage() int32 {
  292. if x != nil {
  293. return x.Page
  294. }
  295. return 0
  296. }
  297. func (x *SearchPastureData) GetTotal() int32 {
  298. if x != nil {
  299. return x.Total
  300. }
  301. return 0
  302. }
  303. func (x *SearchPastureData) GetPageSize() int32 {
  304. if x != nil {
  305. return x.PageSize
  306. }
  307. return 0
  308. }
  309. func (x *SearchPastureData) GetList() []*AddPastureRequest {
  310. if x != nil {
  311. return x.List
  312. }
  313. return nil
  314. }
  315. type UserPasture struct {
  316. state protoimpl.MessageState
  317. sizeCache protoimpl.SizeCache
  318. unknownFields protoimpl.UnknownFields
  319. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  320. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  321. }
  322. func (x *UserPasture) Reset() {
  323. *x = UserPasture{}
  324. if protoimpl.UnsafeEnabled {
  325. mi := &file_backend_operation_pasture_proto_msgTypes[4]
  326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  327. ms.StoreMessageInfo(mi)
  328. }
  329. }
  330. func (x *UserPasture) String() string {
  331. return protoimpl.X.MessageStringOf(x)
  332. }
  333. func (*UserPasture) ProtoMessage() {}
  334. func (x *UserPasture) ProtoReflect() protoreflect.Message {
  335. mi := &file_backend_operation_pasture_proto_msgTypes[4]
  336. if protoimpl.UnsafeEnabled && x != nil {
  337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  338. if ms.LoadMessageInfo() == nil {
  339. ms.StoreMessageInfo(mi)
  340. }
  341. return ms
  342. }
  343. return mi.MessageOf(x)
  344. }
  345. // Deprecated: Use UserPasture.ProtoReflect.Descriptor instead.
  346. func (*UserPasture) Descriptor() ([]byte, []int) {
  347. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{4}
  348. }
  349. func (x *UserPasture) GetId() int32 {
  350. if x != nil {
  351. return x.Id
  352. }
  353. return 0
  354. }
  355. func (x *UserPasture) GetName() string {
  356. if x != nil {
  357. return x.Name
  358. }
  359. return ""
  360. }
  361. type IsShowGroupPasture struct {
  362. state protoimpl.MessageState
  363. sizeCache protoimpl.SizeCache
  364. unknownFields protoimpl.UnknownFields
  365. PastureId int32 `protobuf:"varint,1,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  366. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否开启
  367. }
  368. func (x *IsShowGroupPasture) Reset() {
  369. *x = IsShowGroupPasture{}
  370. if protoimpl.UnsafeEnabled {
  371. mi := &file_backend_operation_pasture_proto_msgTypes[5]
  372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  373. ms.StoreMessageInfo(mi)
  374. }
  375. }
  376. func (x *IsShowGroupPasture) String() string {
  377. return protoimpl.X.MessageStringOf(x)
  378. }
  379. func (*IsShowGroupPasture) ProtoMessage() {}
  380. func (x *IsShowGroupPasture) ProtoReflect() protoreflect.Message {
  381. mi := &file_backend_operation_pasture_proto_msgTypes[5]
  382. if protoimpl.UnsafeEnabled && x != nil {
  383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  384. if ms.LoadMessageInfo() == nil {
  385. ms.StoreMessageInfo(mi)
  386. }
  387. return ms
  388. }
  389. return mi.MessageOf(x)
  390. }
  391. // Deprecated: Use IsShowGroupPasture.ProtoReflect.Descriptor instead.
  392. func (*IsShowGroupPasture) Descriptor() ([]byte, []int) {
  393. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{5}
  394. }
  395. func (x *IsShowGroupPasture) GetPastureId() int32 {
  396. if x != nil {
  397. return x.PastureId
  398. }
  399. return 0
  400. }
  401. func (x *IsShowGroupPasture) GetIsShow() IsShow_Kind {
  402. if x != nil {
  403. return x.IsShow
  404. }
  405. return IsShow_INVALID
  406. }
  407. // 添加牧畜分类
  408. type AddCattleCategoryRequest struct {
  409. state protoimpl.MessageState
  410. sizeCache protoimpl.SizeCache
  411. unknownFields protoimpl.UnknownFields
  412. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  413. ParentId CattleCategoryParent_Kind `protobuf:"varint,2,opt,name=parent_id,json=parentId,proto3,enum=backend.operation.CattleCategoryParent_Kind" json:"parent_id,omitempty"` // 父类id
  414. ParentName string `protobuf:"bytes,3,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // 父类名称
  415. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` // 牧畜分类名称
  416. Number string `protobuf:"bytes,5,opt,name=number,proto3" json:"number,omitempty"` // 畜牧类别编号
  417. IsShow IsShow_Kind `protobuf:"varint,6,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  418. CreatedAt uint32 `protobuf:"varint,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  419. CreatedAtFormat string `protobuf:"bytes,8,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式
  420. }
  421. func (x *AddCattleCategoryRequest) Reset() {
  422. *x = AddCattleCategoryRequest{}
  423. if protoimpl.UnsafeEnabled {
  424. mi := &file_backend_operation_pasture_proto_msgTypes[6]
  425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  426. ms.StoreMessageInfo(mi)
  427. }
  428. }
  429. func (x *AddCattleCategoryRequest) String() string {
  430. return protoimpl.X.MessageStringOf(x)
  431. }
  432. func (*AddCattleCategoryRequest) ProtoMessage() {}
  433. func (x *AddCattleCategoryRequest) ProtoReflect() protoreflect.Message {
  434. mi := &file_backend_operation_pasture_proto_msgTypes[6]
  435. if protoimpl.UnsafeEnabled && x != nil {
  436. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  437. if ms.LoadMessageInfo() == nil {
  438. ms.StoreMessageInfo(mi)
  439. }
  440. return ms
  441. }
  442. return mi.MessageOf(x)
  443. }
  444. // Deprecated: Use AddCattleCategoryRequest.ProtoReflect.Descriptor instead.
  445. func (*AddCattleCategoryRequest) Descriptor() ([]byte, []int) {
  446. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{6}
  447. }
  448. func (x *AddCattleCategoryRequest) GetId() uint32 {
  449. if x != nil {
  450. return x.Id
  451. }
  452. return 0
  453. }
  454. func (x *AddCattleCategoryRequest) GetParentId() CattleCategoryParent_Kind {
  455. if x != nil {
  456. return x.ParentId
  457. }
  458. return CattleCategoryParent_INVALID
  459. }
  460. func (x *AddCattleCategoryRequest) GetParentName() string {
  461. if x != nil {
  462. return x.ParentName
  463. }
  464. return ""
  465. }
  466. func (x *AddCattleCategoryRequest) GetName() string {
  467. if x != nil {
  468. return x.Name
  469. }
  470. return ""
  471. }
  472. func (x *AddCattleCategoryRequest) GetNumber() string {
  473. if x != nil {
  474. return x.Number
  475. }
  476. return ""
  477. }
  478. func (x *AddCattleCategoryRequest) GetIsShow() IsShow_Kind {
  479. if x != nil {
  480. return x.IsShow
  481. }
  482. return IsShow_INVALID
  483. }
  484. func (x *AddCattleCategoryRequest) GetCreatedAt() uint32 {
  485. if x != nil {
  486. return x.CreatedAt
  487. }
  488. return 0
  489. }
  490. func (x *AddCattleCategoryRequest) GetCreatedAtFormat() string {
  491. if x != nil {
  492. return x.CreatedAtFormat
  493. }
  494. return ""
  495. }
  496. // 是否启用
  497. type IsShowCattleCategory struct {
  498. state protoimpl.MessageState
  499. sizeCache protoimpl.SizeCache
  500. unknownFields protoimpl.UnknownFields
  501. CattleCategoryId int32 `protobuf:"varint,1,opt,name=cattle_category_id,json=cattleCategoryId,proto3" json:"cattle_category_id,omitempty"`
  502. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  503. }
  504. func (x *IsShowCattleCategory) Reset() {
  505. *x = IsShowCattleCategory{}
  506. if protoimpl.UnsafeEnabled {
  507. mi := &file_backend_operation_pasture_proto_msgTypes[7]
  508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  509. ms.StoreMessageInfo(mi)
  510. }
  511. }
  512. func (x *IsShowCattleCategory) String() string {
  513. return protoimpl.X.MessageStringOf(x)
  514. }
  515. func (*IsShowCattleCategory) ProtoMessage() {}
  516. func (x *IsShowCattleCategory) ProtoReflect() protoreflect.Message {
  517. mi := &file_backend_operation_pasture_proto_msgTypes[7]
  518. if protoimpl.UnsafeEnabled && x != nil {
  519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  520. if ms.LoadMessageInfo() == nil {
  521. ms.StoreMessageInfo(mi)
  522. }
  523. return ms
  524. }
  525. return mi.MessageOf(x)
  526. }
  527. // Deprecated: Use IsShowCattleCategory.ProtoReflect.Descriptor instead.
  528. func (*IsShowCattleCategory) Descriptor() ([]byte, []int) {
  529. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{7}
  530. }
  531. func (x *IsShowCattleCategory) GetCattleCategoryId() int32 {
  532. if x != nil {
  533. return x.CattleCategoryId
  534. }
  535. return 0
  536. }
  537. func (x *IsShowCattleCategory) GetIsShow() IsShow_Kind {
  538. if x != nil {
  539. return x.IsShow
  540. }
  541. return IsShow_INVALID
  542. }
  543. // 畜牧分类查询列表
  544. type SearchCattleCategoryRequest struct {
  545. state protoimpl.MessageState
  546. sizeCache protoimpl.SizeCache
  547. unknownFields protoimpl.UnknownFields
  548. ParentId int32 `protobuf:"varint,1,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
  549. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  550. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  551. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  552. }
  553. func (x *SearchCattleCategoryRequest) Reset() {
  554. *x = SearchCattleCategoryRequest{}
  555. if protoimpl.UnsafeEnabled {
  556. mi := &file_backend_operation_pasture_proto_msgTypes[8]
  557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  558. ms.StoreMessageInfo(mi)
  559. }
  560. }
  561. func (x *SearchCattleCategoryRequest) String() string {
  562. return protoimpl.X.MessageStringOf(x)
  563. }
  564. func (*SearchCattleCategoryRequest) ProtoMessage() {}
  565. func (x *SearchCattleCategoryRequest) ProtoReflect() protoreflect.Message {
  566. mi := &file_backend_operation_pasture_proto_msgTypes[8]
  567. if protoimpl.UnsafeEnabled && x != nil {
  568. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  569. if ms.LoadMessageInfo() == nil {
  570. ms.StoreMessageInfo(mi)
  571. }
  572. return ms
  573. }
  574. return mi.MessageOf(x)
  575. }
  576. // Deprecated: Use SearchCattleCategoryRequest.ProtoReflect.Descriptor instead.
  577. func (*SearchCattleCategoryRequest) Descriptor() ([]byte, []int) {
  578. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{8}
  579. }
  580. func (x *SearchCattleCategoryRequest) GetParentId() int32 {
  581. if x != nil {
  582. return x.ParentId
  583. }
  584. return 0
  585. }
  586. func (x *SearchCattleCategoryRequest) GetIsShow() IsShow_Kind {
  587. if x != nil {
  588. return x.IsShow
  589. }
  590. return IsShow_INVALID
  591. }
  592. func (x *SearchCattleCategoryRequest) GetName() string {
  593. if x != nil {
  594. return x.Name
  595. }
  596. return ""
  597. }
  598. func (x *SearchCattleCategoryRequest) GetPagination() *PaginationModel {
  599. if x != nil {
  600. return x.Pagination
  601. }
  602. return nil
  603. }
  604. type SearchCattleCategoryResponse struct {
  605. state protoimpl.MessageState
  606. sizeCache protoimpl.SizeCache
  607. unknownFields protoimpl.UnknownFields
  608. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  609. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  610. Data *SearchCattleCategoryData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  611. }
  612. func (x *SearchCattleCategoryResponse) Reset() {
  613. *x = SearchCattleCategoryResponse{}
  614. if protoimpl.UnsafeEnabled {
  615. mi := &file_backend_operation_pasture_proto_msgTypes[9]
  616. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  617. ms.StoreMessageInfo(mi)
  618. }
  619. }
  620. func (x *SearchCattleCategoryResponse) String() string {
  621. return protoimpl.X.MessageStringOf(x)
  622. }
  623. func (*SearchCattleCategoryResponse) ProtoMessage() {}
  624. func (x *SearchCattleCategoryResponse) ProtoReflect() protoreflect.Message {
  625. mi := &file_backend_operation_pasture_proto_msgTypes[9]
  626. if protoimpl.UnsafeEnabled && x != nil {
  627. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  628. if ms.LoadMessageInfo() == nil {
  629. ms.StoreMessageInfo(mi)
  630. }
  631. return ms
  632. }
  633. return mi.MessageOf(x)
  634. }
  635. // Deprecated: Use SearchCattleCategoryResponse.ProtoReflect.Descriptor instead.
  636. func (*SearchCattleCategoryResponse) Descriptor() ([]byte, []int) {
  637. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{9}
  638. }
  639. func (x *SearchCattleCategoryResponse) GetCode() int32 {
  640. if x != nil {
  641. return x.Code
  642. }
  643. return 0
  644. }
  645. func (x *SearchCattleCategoryResponse) GetMsg() string {
  646. if x != nil {
  647. return x.Msg
  648. }
  649. return ""
  650. }
  651. func (x *SearchCattleCategoryResponse) GetData() *SearchCattleCategoryData {
  652. if x != nil {
  653. return x.Data
  654. }
  655. return nil
  656. }
  657. type SearchCattleCategoryData struct {
  658. state protoimpl.MessageState
  659. sizeCache protoimpl.SizeCache
  660. unknownFields protoimpl.UnknownFields
  661. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  662. Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  663. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  664. List []*AddCattleCategoryRequest `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
  665. }
  666. func (x *SearchCattleCategoryData) Reset() {
  667. *x = SearchCattleCategoryData{}
  668. if protoimpl.UnsafeEnabled {
  669. mi := &file_backend_operation_pasture_proto_msgTypes[10]
  670. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  671. ms.StoreMessageInfo(mi)
  672. }
  673. }
  674. func (x *SearchCattleCategoryData) String() string {
  675. return protoimpl.X.MessageStringOf(x)
  676. }
  677. func (*SearchCattleCategoryData) ProtoMessage() {}
  678. func (x *SearchCattleCategoryData) ProtoReflect() protoreflect.Message {
  679. mi := &file_backend_operation_pasture_proto_msgTypes[10]
  680. if protoimpl.UnsafeEnabled && x != nil {
  681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  682. if ms.LoadMessageInfo() == nil {
  683. ms.StoreMessageInfo(mi)
  684. }
  685. return ms
  686. }
  687. return mi.MessageOf(x)
  688. }
  689. // Deprecated: Use SearchCattleCategoryData.ProtoReflect.Descriptor instead.
  690. func (*SearchCattleCategoryData) Descriptor() ([]byte, []int) {
  691. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{10}
  692. }
  693. func (x *SearchCattleCategoryData) GetPage() int32 {
  694. if x != nil {
  695. return x.Page
  696. }
  697. return 0
  698. }
  699. func (x *SearchCattleCategoryData) GetTotal() int32 {
  700. if x != nil {
  701. return x.Total
  702. }
  703. return 0
  704. }
  705. func (x *SearchCattleCategoryData) GetPageSize() int32 {
  706. if x != nil {
  707. return x.PageSize
  708. }
  709. return 0
  710. }
  711. func (x *SearchCattleCategoryData) GetList() []*AddCattleCategoryRequest {
  712. if x != nil {
  713. return x.List
  714. }
  715. return nil
  716. }
  717. // 添加饲料分类
  718. type AddForageCategoryRequest struct {
  719. state protoimpl.MessageState
  720. sizeCache protoimpl.SizeCache
  721. unknownFields protoimpl.UnknownFields
  722. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  723. ParentId ForageCategoryParent_Kind `protobuf:"varint,2,opt,name=parent_id,json=parentId,proto3,enum=backend.operation.ForageCategoryParent_Kind" json:"parent_id,omitempty"` // 父类id
  724. ParentName string `protobuf:"bytes,3,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // 父类名称
  725. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` // 牧畜分类名称
  726. Number string `protobuf:"bytes,5,opt,name=number,proto3" json:"number,omitempty"` // 畜牧类别编号
  727. IsShow IsShow_Kind `protobuf:"varint,6,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  728. CreatedAt uint32 `protobuf:"varint,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  729. CreatedAtFormat string `protobuf:"bytes,8,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式
  730. }
  731. func (x *AddForageCategoryRequest) Reset() {
  732. *x = AddForageCategoryRequest{}
  733. if protoimpl.UnsafeEnabled {
  734. mi := &file_backend_operation_pasture_proto_msgTypes[11]
  735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  736. ms.StoreMessageInfo(mi)
  737. }
  738. }
  739. func (x *AddForageCategoryRequest) String() string {
  740. return protoimpl.X.MessageStringOf(x)
  741. }
  742. func (*AddForageCategoryRequest) ProtoMessage() {}
  743. func (x *AddForageCategoryRequest) ProtoReflect() protoreflect.Message {
  744. mi := &file_backend_operation_pasture_proto_msgTypes[11]
  745. if protoimpl.UnsafeEnabled && x != nil {
  746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  747. if ms.LoadMessageInfo() == nil {
  748. ms.StoreMessageInfo(mi)
  749. }
  750. return ms
  751. }
  752. return mi.MessageOf(x)
  753. }
  754. // Deprecated: Use AddForageCategoryRequest.ProtoReflect.Descriptor instead.
  755. func (*AddForageCategoryRequest) Descriptor() ([]byte, []int) {
  756. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{11}
  757. }
  758. func (x *AddForageCategoryRequest) GetId() uint32 {
  759. if x != nil {
  760. return x.Id
  761. }
  762. return 0
  763. }
  764. func (x *AddForageCategoryRequest) GetParentId() ForageCategoryParent_Kind {
  765. if x != nil {
  766. return x.ParentId
  767. }
  768. return ForageCategoryParent_INVALID
  769. }
  770. func (x *AddForageCategoryRequest) GetParentName() string {
  771. if x != nil {
  772. return x.ParentName
  773. }
  774. return ""
  775. }
  776. func (x *AddForageCategoryRequest) GetName() string {
  777. if x != nil {
  778. return x.Name
  779. }
  780. return ""
  781. }
  782. func (x *AddForageCategoryRequest) GetNumber() string {
  783. if x != nil {
  784. return x.Number
  785. }
  786. return ""
  787. }
  788. func (x *AddForageCategoryRequest) GetIsShow() IsShow_Kind {
  789. if x != nil {
  790. return x.IsShow
  791. }
  792. return IsShow_INVALID
  793. }
  794. func (x *AddForageCategoryRequest) GetCreatedAt() uint32 {
  795. if x != nil {
  796. return x.CreatedAt
  797. }
  798. return 0
  799. }
  800. func (x *AddForageCategoryRequest) GetCreatedAtFormat() string {
  801. if x != nil {
  802. return x.CreatedAtFormat
  803. }
  804. return ""
  805. }
  806. // 是否启用
  807. type IsShowForageCategory struct {
  808. state protoimpl.MessageState
  809. sizeCache protoimpl.SizeCache
  810. unknownFields protoimpl.UnknownFields
  811. ForageCategoryId int32 `protobuf:"varint,1,opt,name=forage_category_id,json=forageCategoryId,proto3" json:"forage_category_id,omitempty"`
  812. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  813. }
  814. func (x *IsShowForageCategory) Reset() {
  815. *x = IsShowForageCategory{}
  816. if protoimpl.UnsafeEnabled {
  817. mi := &file_backend_operation_pasture_proto_msgTypes[12]
  818. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  819. ms.StoreMessageInfo(mi)
  820. }
  821. }
  822. func (x *IsShowForageCategory) String() string {
  823. return protoimpl.X.MessageStringOf(x)
  824. }
  825. func (*IsShowForageCategory) ProtoMessage() {}
  826. func (x *IsShowForageCategory) ProtoReflect() protoreflect.Message {
  827. mi := &file_backend_operation_pasture_proto_msgTypes[12]
  828. if protoimpl.UnsafeEnabled && x != nil {
  829. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  830. if ms.LoadMessageInfo() == nil {
  831. ms.StoreMessageInfo(mi)
  832. }
  833. return ms
  834. }
  835. return mi.MessageOf(x)
  836. }
  837. // Deprecated: Use IsShowForageCategory.ProtoReflect.Descriptor instead.
  838. func (*IsShowForageCategory) Descriptor() ([]byte, []int) {
  839. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{12}
  840. }
  841. func (x *IsShowForageCategory) GetForageCategoryId() int32 {
  842. if x != nil {
  843. return x.ForageCategoryId
  844. }
  845. return 0
  846. }
  847. func (x *IsShowForageCategory) GetIsShow() IsShow_Kind {
  848. if x != nil {
  849. return x.IsShow
  850. }
  851. return IsShow_INVALID
  852. }
  853. // 饲料分类查询列表
  854. type SearchForageCategoryRequest struct {
  855. state protoimpl.MessageState
  856. sizeCache protoimpl.SizeCache
  857. unknownFields protoimpl.UnknownFields
  858. ParentId int32 `protobuf:"varint,1,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
  859. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  860. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  861. Number string `protobuf:"bytes,4,opt,name=number,proto3" json:"number,omitempty"`
  862. Pagination *PaginationModel `protobuf:"bytes,5,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  863. }
  864. func (x *SearchForageCategoryRequest) Reset() {
  865. *x = SearchForageCategoryRequest{}
  866. if protoimpl.UnsafeEnabled {
  867. mi := &file_backend_operation_pasture_proto_msgTypes[13]
  868. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  869. ms.StoreMessageInfo(mi)
  870. }
  871. }
  872. func (x *SearchForageCategoryRequest) String() string {
  873. return protoimpl.X.MessageStringOf(x)
  874. }
  875. func (*SearchForageCategoryRequest) ProtoMessage() {}
  876. func (x *SearchForageCategoryRequest) ProtoReflect() protoreflect.Message {
  877. mi := &file_backend_operation_pasture_proto_msgTypes[13]
  878. if protoimpl.UnsafeEnabled && x != nil {
  879. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  880. if ms.LoadMessageInfo() == nil {
  881. ms.StoreMessageInfo(mi)
  882. }
  883. return ms
  884. }
  885. return mi.MessageOf(x)
  886. }
  887. // Deprecated: Use SearchForageCategoryRequest.ProtoReflect.Descriptor instead.
  888. func (*SearchForageCategoryRequest) Descriptor() ([]byte, []int) {
  889. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{13}
  890. }
  891. func (x *SearchForageCategoryRequest) GetParentId() int32 {
  892. if x != nil {
  893. return x.ParentId
  894. }
  895. return 0
  896. }
  897. func (x *SearchForageCategoryRequest) GetIsShow() IsShow_Kind {
  898. if x != nil {
  899. return x.IsShow
  900. }
  901. return IsShow_INVALID
  902. }
  903. func (x *SearchForageCategoryRequest) GetName() string {
  904. if x != nil {
  905. return x.Name
  906. }
  907. return ""
  908. }
  909. func (x *SearchForageCategoryRequest) GetNumber() string {
  910. if x != nil {
  911. return x.Number
  912. }
  913. return ""
  914. }
  915. func (x *SearchForageCategoryRequest) GetPagination() *PaginationModel {
  916. if x != nil {
  917. return x.Pagination
  918. }
  919. return nil
  920. }
  921. type SearchForageCategoryResponse struct {
  922. state protoimpl.MessageState
  923. sizeCache protoimpl.SizeCache
  924. unknownFields protoimpl.UnknownFields
  925. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  926. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  927. Data *SearchForageCategoryData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  928. }
  929. func (x *SearchForageCategoryResponse) Reset() {
  930. *x = SearchForageCategoryResponse{}
  931. if protoimpl.UnsafeEnabled {
  932. mi := &file_backend_operation_pasture_proto_msgTypes[14]
  933. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  934. ms.StoreMessageInfo(mi)
  935. }
  936. }
  937. func (x *SearchForageCategoryResponse) String() string {
  938. return protoimpl.X.MessageStringOf(x)
  939. }
  940. func (*SearchForageCategoryResponse) ProtoMessage() {}
  941. func (x *SearchForageCategoryResponse) ProtoReflect() protoreflect.Message {
  942. mi := &file_backend_operation_pasture_proto_msgTypes[14]
  943. if protoimpl.UnsafeEnabled && x != nil {
  944. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  945. if ms.LoadMessageInfo() == nil {
  946. ms.StoreMessageInfo(mi)
  947. }
  948. return ms
  949. }
  950. return mi.MessageOf(x)
  951. }
  952. // Deprecated: Use SearchForageCategoryResponse.ProtoReflect.Descriptor instead.
  953. func (*SearchForageCategoryResponse) Descriptor() ([]byte, []int) {
  954. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{14}
  955. }
  956. func (x *SearchForageCategoryResponse) GetCode() int32 {
  957. if x != nil {
  958. return x.Code
  959. }
  960. return 0
  961. }
  962. func (x *SearchForageCategoryResponse) GetMsg() string {
  963. if x != nil {
  964. return x.Msg
  965. }
  966. return ""
  967. }
  968. func (x *SearchForageCategoryResponse) GetData() *SearchForageCategoryData {
  969. if x != nil {
  970. return x.Data
  971. }
  972. return nil
  973. }
  974. type SearchForageCategoryData struct {
  975. state protoimpl.MessageState
  976. sizeCache protoimpl.SizeCache
  977. unknownFields protoimpl.UnknownFields
  978. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  979. Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  980. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  981. List []*AddForageCategoryRequest `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
  982. }
  983. func (x *SearchForageCategoryData) Reset() {
  984. *x = SearchForageCategoryData{}
  985. if protoimpl.UnsafeEnabled {
  986. mi := &file_backend_operation_pasture_proto_msgTypes[15]
  987. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  988. ms.StoreMessageInfo(mi)
  989. }
  990. }
  991. func (x *SearchForageCategoryData) String() string {
  992. return protoimpl.X.MessageStringOf(x)
  993. }
  994. func (*SearchForageCategoryData) ProtoMessage() {}
  995. func (x *SearchForageCategoryData) ProtoReflect() protoreflect.Message {
  996. mi := &file_backend_operation_pasture_proto_msgTypes[15]
  997. if protoimpl.UnsafeEnabled && x != nil {
  998. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  999. if ms.LoadMessageInfo() == nil {
  1000. ms.StoreMessageInfo(mi)
  1001. }
  1002. return ms
  1003. }
  1004. return mi.MessageOf(x)
  1005. }
  1006. // Deprecated: Use SearchForageCategoryData.ProtoReflect.Descriptor instead.
  1007. func (*SearchForageCategoryData) Descriptor() ([]byte, []int) {
  1008. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{15}
  1009. }
  1010. func (x *SearchForageCategoryData) GetPage() int32 {
  1011. if x != nil {
  1012. return x.Page
  1013. }
  1014. return 0
  1015. }
  1016. func (x *SearchForageCategoryData) GetTotal() int32 {
  1017. if x != nil {
  1018. return x.Total
  1019. }
  1020. return 0
  1021. }
  1022. func (x *SearchForageCategoryData) GetPageSize() int32 {
  1023. if x != nil {
  1024. return x.PageSize
  1025. }
  1026. return 0
  1027. }
  1028. func (x *SearchForageCategoryData) GetList() []*AddForageCategoryRequest {
  1029. if x != nil {
  1030. return x.List
  1031. }
  1032. return nil
  1033. }
  1034. // 饲料列表
  1035. type AddForageRequest struct {
  1036. state protoimpl.MessageState
  1037. sizeCache protoimpl.SizeCache
  1038. unknownFields protoimpl.UnknownFields
  1039. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1040. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // 饲料名称
  1041. CategoryId int32 `protobuf:"varint,3,opt,name=category_id,json=categoryId,proto3" json:"category_id,omitempty"` // 饲料分类id
  1042. CategoryName string `protobuf:"bytes,4,opt,name=category_name,json=categoryName,proto3" json:"category_name,omitempty"` // 饲料分类名称
  1043. MaterialTypeKey int32 `protobuf:"varint,5,opt,name=material_type_key,json=materialTypeKey,proto3" json:"material_type_key,omitempty"` // 物料类型key
  1044. MaterialTypeName string `protobuf:"bytes,6,opt,name=material_type_name,json=materialTypeName,proto3" json:"material_type_name,omitempty"` // 物料类型名称
  1045. UniqueEncode string `protobuf:"bytes,7,opt,name=unique_encode,json=uniqueEncode,proto3" json:"unique_encode,omitempty"` // 唯一编码
  1046. ForageSourceId ForageSource_Kind `protobuf:"varint,8,opt,name=forage_source_id,json=forageSourceId,proto3,enum=backend.operation.ForageSource_Kind" json:"forage_source_id,omitempty"` // 饲料来源id
  1047. ForageSourceName string `protobuf:"bytes,9,opt,name=forage_source_name,json=forageSourceName,proto3" json:"forage_source_name,omitempty"` // 饲料来源名称
  1048. PlanTypeId ForagePlanType_Kind `protobuf:"varint,10,opt,name=plan_type_id,json=planTypeId,proto3,enum=backend.operation.ForagePlanType_Kind" json:"plan_type_id,omitempty"` // 计划类型id
  1049. PlanTypeName string `protobuf:"bytes,11,opt,name=plan_type_name,json=planTypeName,proto3" json:"plan_type_name,omitempty"` // 计划类型名称
  1050. SmallMaterialScale string `protobuf:"bytes,12,opt,name=small_material_scale,json=smallMaterialScale,proto3" json:"small_material_scale,omitempty"` // 小料称
  1051. AllowError int32 `protobuf:"varint,13,opt,name=allow_error,json=allowError,proto3" json:"allow_error,omitempty"` // 允许误差 (单位kg)
  1052. PackageWeight int32 `protobuf:"varint,14,opt,name=package_weight,json=packageWeight,proto3" json:"package_weight,omitempty"` // 包装重量 (单位kg)
  1053. Price int32 `protobuf:"varint,15,opt,name=price,proto3" json:"price,omitempty"` // 单价(单位分)
  1054. JumpWeight int32 `protobuf:"varint,16,opt,name=jump_weight,json=jumpWeight,proto3" json:"jump_weight,omitempty"` // 跳转重量域(单位kg)
  1055. JumpDelay JumpDelaType_Kind `protobuf:"varint,17,opt,name=jump_delay,json=jumpDelay,proto3,enum=backend.operation.JumpDelaType_Kind" json:"jump_delay,omitempty"` // 跳转延迟
  1056. ConfirmStart IsShow_Kind `protobuf:"varint,18,opt,name=confirm_start,json=confirmStart,proto3,enum=backend.operation.IsShow_Kind" json:"confirm_start,omitempty"` // 确认开始
  1057. RelayLocations int32 `protobuf:"varint,19,opt,name=relay_locations,json=relayLocations,proto3" json:"relay_locations,omitempty"` // 继电器位置
  1058. Jmp IsShow_Kind `protobuf:"varint,20,opt,name=jmp,proto3,enum=backend.operation.IsShow_Kind" json:"jmp,omitempty"` // 无上域
  1059. Backup1 string `protobuf:"bytes,21,opt,name=backup1,proto3" json:"backup1,omitempty"` // 备用字段1
  1060. Backup2 string `protobuf:"bytes,22,opt,name=backup2,proto3" json:"backup2,omitempty"` // 备用字段2
  1061. Backup3 string `protobuf:"bytes,23,opt,name=backup3,proto3" json:"backup3,omitempty"` // 备用字段3
  1062. CreatedAt int32 `protobuf:"varint,24,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  1063. CreatedAtFormat string `protobuf:"bytes,25,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式化
  1064. IsShow IsShow_Kind `protobuf:"varint,26,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  1065. }
  1066. func (x *AddForageRequest) Reset() {
  1067. *x = AddForageRequest{}
  1068. if protoimpl.UnsafeEnabled {
  1069. mi := &file_backend_operation_pasture_proto_msgTypes[16]
  1070. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1071. ms.StoreMessageInfo(mi)
  1072. }
  1073. }
  1074. func (x *AddForageRequest) String() string {
  1075. return protoimpl.X.MessageStringOf(x)
  1076. }
  1077. func (*AddForageRequest) ProtoMessage() {}
  1078. func (x *AddForageRequest) ProtoReflect() protoreflect.Message {
  1079. mi := &file_backend_operation_pasture_proto_msgTypes[16]
  1080. if protoimpl.UnsafeEnabled && x != nil {
  1081. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1082. if ms.LoadMessageInfo() == nil {
  1083. ms.StoreMessageInfo(mi)
  1084. }
  1085. return ms
  1086. }
  1087. return mi.MessageOf(x)
  1088. }
  1089. // Deprecated: Use AddForageRequest.ProtoReflect.Descriptor instead.
  1090. func (*AddForageRequest) Descriptor() ([]byte, []int) {
  1091. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{16}
  1092. }
  1093. func (x *AddForageRequest) GetId() int32 {
  1094. if x != nil {
  1095. return x.Id
  1096. }
  1097. return 0
  1098. }
  1099. func (x *AddForageRequest) GetName() string {
  1100. if x != nil {
  1101. return x.Name
  1102. }
  1103. return ""
  1104. }
  1105. func (x *AddForageRequest) GetCategoryId() int32 {
  1106. if x != nil {
  1107. return x.CategoryId
  1108. }
  1109. return 0
  1110. }
  1111. func (x *AddForageRequest) GetCategoryName() string {
  1112. if x != nil {
  1113. return x.CategoryName
  1114. }
  1115. return ""
  1116. }
  1117. func (x *AddForageRequest) GetMaterialTypeKey() int32 {
  1118. if x != nil {
  1119. return x.MaterialTypeKey
  1120. }
  1121. return 0
  1122. }
  1123. func (x *AddForageRequest) GetMaterialTypeName() string {
  1124. if x != nil {
  1125. return x.MaterialTypeName
  1126. }
  1127. return ""
  1128. }
  1129. func (x *AddForageRequest) GetUniqueEncode() string {
  1130. if x != nil {
  1131. return x.UniqueEncode
  1132. }
  1133. return ""
  1134. }
  1135. func (x *AddForageRequest) GetForageSourceId() ForageSource_Kind {
  1136. if x != nil {
  1137. return x.ForageSourceId
  1138. }
  1139. return ForageSource_INVALID
  1140. }
  1141. func (x *AddForageRequest) GetForageSourceName() string {
  1142. if x != nil {
  1143. return x.ForageSourceName
  1144. }
  1145. return ""
  1146. }
  1147. func (x *AddForageRequest) GetPlanTypeId() ForagePlanType_Kind {
  1148. if x != nil {
  1149. return x.PlanTypeId
  1150. }
  1151. return ForagePlanType_INVALID
  1152. }
  1153. func (x *AddForageRequest) GetPlanTypeName() string {
  1154. if x != nil {
  1155. return x.PlanTypeName
  1156. }
  1157. return ""
  1158. }
  1159. func (x *AddForageRequest) GetSmallMaterialScale() string {
  1160. if x != nil {
  1161. return x.SmallMaterialScale
  1162. }
  1163. return ""
  1164. }
  1165. func (x *AddForageRequest) GetAllowError() int32 {
  1166. if x != nil {
  1167. return x.AllowError
  1168. }
  1169. return 0
  1170. }
  1171. func (x *AddForageRequest) GetPackageWeight() int32 {
  1172. if x != nil {
  1173. return x.PackageWeight
  1174. }
  1175. return 0
  1176. }
  1177. func (x *AddForageRequest) GetPrice() int32 {
  1178. if x != nil {
  1179. return x.Price
  1180. }
  1181. return 0
  1182. }
  1183. func (x *AddForageRequest) GetJumpWeight() int32 {
  1184. if x != nil {
  1185. return x.JumpWeight
  1186. }
  1187. return 0
  1188. }
  1189. func (x *AddForageRequest) GetJumpDelay() JumpDelaType_Kind {
  1190. if x != nil {
  1191. return x.JumpDelay
  1192. }
  1193. return JumpDelaType_INVALID
  1194. }
  1195. func (x *AddForageRequest) GetConfirmStart() IsShow_Kind {
  1196. if x != nil {
  1197. return x.ConfirmStart
  1198. }
  1199. return IsShow_INVALID
  1200. }
  1201. func (x *AddForageRequest) GetRelayLocations() int32 {
  1202. if x != nil {
  1203. return x.RelayLocations
  1204. }
  1205. return 0
  1206. }
  1207. func (x *AddForageRequest) GetJmp() IsShow_Kind {
  1208. if x != nil {
  1209. return x.Jmp
  1210. }
  1211. return IsShow_INVALID
  1212. }
  1213. func (x *AddForageRequest) GetBackup1() string {
  1214. if x != nil {
  1215. return x.Backup1
  1216. }
  1217. return ""
  1218. }
  1219. func (x *AddForageRequest) GetBackup2() string {
  1220. if x != nil {
  1221. return x.Backup2
  1222. }
  1223. return ""
  1224. }
  1225. func (x *AddForageRequest) GetBackup3() string {
  1226. if x != nil {
  1227. return x.Backup3
  1228. }
  1229. return ""
  1230. }
  1231. func (x *AddForageRequest) GetCreatedAt() int32 {
  1232. if x != nil {
  1233. return x.CreatedAt
  1234. }
  1235. return 0
  1236. }
  1237. func (x *AddForageRequest) GetCreatedAtFormat() string {
  1238. if x != nil {
  1239. return x.CreatedAtFormat
  1240. }
  1241. return ""
  1242. }
  1243. func (x *AddForageRequest) GetIsShow() IsShow_Kind {
  1244. if x != nil {
  1245. return x.IsShow
  1246. }
  1247. return IsShow_INVALID
  1248. }
  1249. type SearchForageListRequest struct {
  1250. state protoimpl.MessageState
  1251. sizeCache protoimpl.SizeCache
  1252. unknownFields protoimpl.UnknownFields
  1253. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // 饲料名称
  1254. CategoryId int32 `protobuf:"varint,2,opt,name=category_id,json=categoryId,proto3" json:"category_id,omitempty"` // 饲料分类id
  1255. ForageSourceId uint32 `protobuf:"varint,3,opt,name=forage_source_id,json=forageSourceId,proto3" json:"forage_source_id,omitempty"` // 饲料来源
  1256. IsShow IsShow_Kind `protobuf:"varint,4,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  1257. AllowError uint32 `protobuf:"varint,5,opt,name=allow_error,json=allowError,proto3" json:"allow_error,omitempty"` // 允许误差
  1258. JumpWeight uint32 `protobuf:"varint,6,opt,name=jump_weight,json=jumpWeight,proto3" json:"jump_weight,omitempty"` // 跳转重量域
  1259. JumpDelay JumpDelaType_Kind `protobuf:"varint,7,opt,name=jump_delay,json=jumpDelay,proto3,enum=backend.operation.JumpDelaType_Kind" json:"jump_delay,omitempty"` // 跳转延迟
  1260. Pagination *PaginationModel `protobuf:"bytes,8,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1261. }
  1262. func (x *SearchForageListRequest) Reset() {
  1263. *x = SearchForageListRequest{}
  1264. if protoimpl.UnsafeEnabled {
  1265. mi := &file_backend_operation_pasture_proto_msgTypes[17]
  1266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1267. ms.StoreMessageInfo(mi)
  1268. }
  1269. }
  1270. func (x *SearchForageListRequest) String() string {
  1271. return protoimpl.X.MessageStringOf(x)
  1272. }
  1273. func (*SearchForageListRequest) ProtoMessage() {}
  1274. func (x *SearchForageListRequest) ProtoReflect() protoreflect.Message {
  1275. mi := &file_backend_operation_pasture_proto_msgTypes[17]
  1276. if protoimpl.UnsafeEnabled && x != nil {
  1277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1278. if ms.LoadMessageInfo() == nil {
  1279. ms.StoreMessageInfo(mi)
  1280. }
  1281. return ms
  1282. }
  1283. return mi.MessageOf(x)
  1284. }
  1285. // Deprecated: Use SearchForageListRequest.ProtoReflect.Descriptor instead.
  1286. func (*SearchForageListRequest) Descriptor() ([]byte, []int) {
  1287. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{17}
  1288. }
  1289. func (x *SearchForageListRequest) GetName() string {
  1290. if x != nil {
  1291. return x.Name
  1292. }
  1293. return ""
  1294. }
  1295. func (x *SearchForageListRequest) GetCategoryId() int32 {
  1296. if x != nil {
  1297. return x.CategoryId
  1298. }
  1299. return 0
  1300. }
  1301. func (x *SearchForageListRequest) GetForageSourceId() uint32 {
  1302. if x != nil {
  1303. return x.ForageSourceId
  1304. }
  1305. return 0
  1306. }
  1307. func (x *SearchForageListRequest) GetIsShow() IsShow_Kind {
  1308. if x != nil {
  1309. return x.IsShow
  1310. }
  1311. return IsShow_INVALID
  1312. }
  1313. func (x *SearchForageListRequest) GetAllowError() uint32 {
  1314. if x != nil {
  1315. return x.AllowError
  1316. }
  1317. return 0
  1318. }
  1319. func (x *SearchForageListRequest) GetJumpWeight() uint32 {
  1320. if x != nil {
  1321. return x.JumpWeight
  1322. }
  1323. return 0
  1324. }
  1325. func (x *SearchForageListRequest) GetJumpDelay() JumpDelaType_Kind {
  1326. if x != nil {
  1327. return x.JumpDelay
  1328. }
  1329. return JumpDelaType_INVALID
  1330. }
  1331. func (x *SearchForageListRequest) GetPagination() *PaginationModel {
  1332. if x != nil {
  1333. return x.Pagination
  1334. }
  1335. return nil
  1336. }
  1337. type ForageListSortRequest struct {
  1338. state protoimpl.MessageState
  1339. sizeCache protoimpl.SizeCache
  1340. unknownFields protoimpl.UnknownFields
  1341. List []*ForageListSort `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1342. }
  1343. func (x *ForageListSortRequest) Reset() {
  1344. *x = ForageListSortRequest{}
  1345. if protoimpl.UnsafeEnabled {
  1346. mi := &file_backend_operation_pasture_proto_msgTypes[18]
  1347. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1348. ms.StoreMessageInfo(mi)
  1349. }
  1350. }
  1351. func (x *ForageListSortRequest) String() string {
  1352. return protoimpl.X.MessageStringOf(x)
  1353. }
  1354. func (*ForageListSortRequest) ProtoMessage() {}
  1355. func (x *ForageListSortRequest) ProtoReflect() protoreflect.Message {
  1356. mi := &file_backend_operation_pasture_proto_msgTypes[18]
  1357. if protoimpl.UnsafeEnabled && x != nil {
  1358. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1359. if ms.LoadMessageInfo() == nil {
  1360. ms.StoreMessageInfo(mi)
  1361. }
  1362. return ms
  1363. }
  1364. return mi.MessageOf(x)
  1365. }
  1366. // Deprecated: Use ForageListSortRequest.ProtoReflect.Descriptor instead.
  1367. func (*ForageListSortRequest) Descriptor() ([]byte, []int) {
  1368. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{18}
  1369. }
  1370. func (x *ForageListSortRequest) GetList() []*ForageListSort {
  1371. if x != nil {
  1372. return x.List
  1373. }
  1374. return nil
  1375. }
  1376. type ForageListSort struct {
  1377. state protoimpl.MessageState
  1378. sizeCache protoimpl.SizeCache
  1379. unknownFields protoimpl.UnknownFields
  1380. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1381. Sort int64 `protobuf:"varint,2,opt,name=sort,proto3" json:"sort,omitempty"`
  1382. }
  1383. func (x *ForageListSort) Reset() {
  1384. *x = ForageListSort{}
  1385. if protoimpl.UnsafeEnabled {
  1386. mi := &file_backend_operation_pasture_proto_msgTypes[19]
  1387. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1388. ms.StoreMessageInfo(mi)
  1389. }
  1390. }
  1391. func (x *ForageListSort) String() string {
  1392. return protoimpl.X.MessageStringOf(x)
  1393. }
  1394. func (*ForageListSort) ProtoMessage() {}
  1395. func (x *ForageListSort) ProtoReflect() protoreflect.Message {
  1396. mi := &file_backend_operation_pasture_proto_msgTypes[19]
  1397. if protoimpl.UnsafeEnabled && x != nil {
  1398. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1399. if ms.LoadMessageInfo() == nil {
  1400. ms.StoreMessageInfo(mi)
  1401. }
  1402. return ms
  1403. }
  1404. return mi.MessageOf(x)
  1405. }
  1406. // Deprecated: Use ForageListSort.ProtoReflect.Descriptor instead.
  1407. func (*ForageListSort) Descriptor() ([]byte, []int) {
  1408. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{19}
  1409. }
  1410. func (x *ForageListSort) GetId() int64 {
  1411. if x != nil {
  1412. return x.Id
  1413. }
  1414. return 0
  1415. }
  1416. func (x *ForageListSort) GetSort() int64 {
  1417. if x != nil {
  1418. return x.Sort
  1419. }
  1420. return 0
  1421. }
  1422. type SmallMaterialRequest struct {
  1423. state protoimpl.MessageState
  1424. sizeCache protoimpl.SizeCache
  1425. unknownFields protoimpl.UnknownFields
  1426. ApiName string `protobuf:"bytes,1,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1427. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1428. InfoName string `protobuf:"bytes,3,opt,name=info_name,json=infoName,proto3" json:"info_name,omitempty"` //
  1429. }
  1430. func (x *SmallMaterialRequest) Reset() {
  1431. *x = SmallMaterialRequest{}
  1432. if protoimpl.UnsafeEnabled {
  1433. mi := &file_backend_operation_pasture_proto_msgTypes[20]
  1434. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1435. ms.StoreMessageInfo(mi)
  1436. }
  1437. }
  1438. func (x *SmallMaterialRequest) String() string {
  1439. return protoimpl.X.MessageStringOf(x)
  1440. }
  1441. func (*SmallMaterialRequest) ProtoMessage() {}
  1442. func (x *SmallMaterialRequest) ProtoReflect() protoreflect.Message {
  1443. mi := &file_backend_operation_pasture_proto_msgTypes[20]
  1444. if protoimpl.UnsafeEnabled && x != nil {
  1445. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1446. if ms.LoadMessageInfo() == nil {
  1447. ms.StoreMessageInfo(mi)
  1448. }
  1449. return ms
  1450. }
  1451. return mi.MessageOf(x)
  1452. }
  1453. // Deprecated: Use SmallMaterialRequest.ProtoReflect.Descriptor instead.
  1454. func (*SmallMaterialRequest) Descriptor() ([]byte, []int) {
  1455. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{20}
  1456. }
  1457. func (x *SmallMaterialRequest) GetApiName() string {
  1458. if x != nil {
  1459. return x.ApiName
  1460. }
  1461. return ""
  1462. }
  1463. func (x *SmallMaterialRequest) GetPastureId() int32 {
  1464. if x != nil {
  1465. return x.PastureId
  1466. }
  1467. return 0
  1468. }
  1469. func (x *SmallMaterialRequest) GetInfoName() string {
  1470. if x != nil {
  1471. return x.InfoName
  1472. }
  1473. return ""
  1474. }
  1475. type SearchForageListResponse struct {
  1476. state protoimpl.MessageState
  1477. sizeCache protoimpl.SizeCache
  1478. unknownFields protoimpl.UnknownFields
  1479. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1480. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1481. Data *SearchForageList `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1482. }
  1483. func (x *SearchForageListResponse) Reset() {
  1484. *x = SearchForageListResponse{}
  1485. if protoimpl.UnsafeEnabled {
  1486. mi := &file_backend_operation_pasture_proto_msgTypes[21]
  1487. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1488. ms.StoreMessageInfo(mi)
  1489. }
  1490. }
  1491. func (x *SearchForageListResponse) String() string {
  1492. return protoimpl.X.MessageStringOf(x)
  1493. }
  1494. func (*SearchForageListResponse) ProtoMessage() {}
  1495. func (x *SearchForageListResponse) ProtoReflect() protoreflect.Message {
  1496. mi := &file_backend_operation_pasture_proto_msgTypes[21]
  1497. if protoimpl.UnsafeEnabled && x != nil {
  1498. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1499. if ms.LoadMessageInfo() == nil {
  1500. ms.StoreMessageInfo(mi)
  1501. }
  1502. return ms
  1503. }
  1504. return mi.MessageOf(x)
  1505. }
  1506. // Deprecated: Use SearchForageListResponse.ProtoReflect.Descriptor instead.
  1507. func (*SearchForageListResponse) Descriptor() ([]byte, []int) {
  1508. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{21}
  1509. }
  1510. func (x *SearchForageListResponse) GetCode() int32 {
  1511. if x != nil {
  1512. return x.Code
  1513. }
  1514. return 0
  1515. }
  1516. func (x *SearchForageListResponse) GetMsg() string {
  1517. if x != nil {
  1518. return x.Msg
  1519. }
  1520. return ""
  1521. }
  1522. func (x *SearchForageListResponse) GetData() *SearchForageList {
  1523. if x != nil {
  1524. return x.Data
  1525. }
  1526. return nil
  1527. }
  1528. type SearchForageList struct {
  1529. state protoimpl.MessageState
  1530. sizeCache protoimpl.SizeCache
  1531. unknownFields protoimpl.UnknownFields
  1532. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  1533. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  1534. Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
  1535. List []*AddForageRequest `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
  1536. }
  1537. func (x *SearchForageList) Reset() {
  1538. *x = SearchForageList{}
  1539. if protoimpl.UnsafeEnabled {
  1540. mi := &file_backend_operation_pasture_proto_msgTypes[22]
  1541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1542. ms.StoreMessageInfo(mi)
  1543. }
  1544. }
  1545. func (x *SearchForageList) String() string {
  1546. return protoimpl.X.MessageStringOf(x)
  1547. }
  1548. func (*SearchForageList) ProtoMessage() {}
  1549. func (x *SearchForageList) ProtoReflect() protoreflect.Message {
  1550. mi := &file_backend_operation_pasture_proto_msgTypes[22]
  1551. if protoimpl.UnsafeEnabled && x != nil {
  1552. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1553. if ms.LoadMessageInfo() == nil {
  1554. ms.StoreMessageInfo(mi)
  1555. }
  1556. return ms
  1557. }
  1558. return mi.MessageOf(x)
  1559. }
  1560. // Deprecated: Use SearchForageList.ProtoReflect.Descriptor instead.
  1561. func (*SearchForageList) Descriptor() ([]byte, []int) {
  1562. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{22}
  1563. }
  1564. func (x *SearchForageList) GetPage() int32 {
  1565. if x != nil {
  1566. return x.Page
  1567. }
  1568. return 0
  1569. }
  1570. func (x *SearchForageList) GetPageSize() int32 {
  1571. if x != nil {
  1572. return x.PageSize
  1573. }
  1574. return 0
  1575. }
  1576. func (x *SearchForageList) GetTotal() int32 {
  1577. if x != nil {
  1578. return x.Total
  1579. }
  1580. return 0
  1581. }
  1582. func (x *SearchForageList) GetList() []*AddForageRequest {
  1583. if x != nil {
  1584. return x.List
  1585. }
  1586. return nil
  1587. }
  1588. // 是否启用
  1589. type IsShowForage struct {
  1590. state protoimpl.MessageState
  1591. sizeCache protoimpl.SizeCache
  1592. unknownFields protoimpl.UnknownFields
  1593. ForageId int32 `protobuf:"varint,1,opt,name=forage_id,json=forageId,proto3" json:"forage_id,omitempty"`
  1594. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  1595. }
  1596. func (x *IsShowForage) Reset() {
  1597. *x = IsShowForage{}
  1598. if protoimpl.UnsafeEnabled {
  1599. mi := &file_backend_operation_pasture_proto_msgTypes[23]
  1600. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1601. ms.StoreMessageInfo(mi)
  1602. }
  1603. }
  1604. func (x *IsShowForage) String() string {
  1605. return protoimpl.X.MessageStringOf(x)
  1606. }
  1607. func (*IsShowForage) ProtoMessage() {}
  1608. func (x *IsShowForage) ProtoReflect() protoreflect.Message {
  1609. mi := &file_backend_operation_pasture_proto_msgTypes[23]
  1610. if protoimpl.UnsafeEnabled && x != nil {
  1611. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1612. if ms.LoadMessageInfo() == nil {
  1613. ms.StoreMessageInfo(mi)
  1614. }
  1615. return ms
  1616. }
  1617. return mi.MessageOf(x)
  1618. }
  1619. // Deprecated: Use IsShowForage.ProtoReflect.Descriptor instead.
  1620. func (*IsShowForage) Descriptor() ([]byte, []int) {
  1621. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{23}
  1622. }
  1623. func (x *IsShowForage) GetForageId() int32 {
  1624. if x != nil {
  1625. return x.ForageId
  1626. }
  1627. return 0
  1628. }
  1629. func (x *IsShowForage) GetIsShow() IsShow_Kind {
  1630. if x != nil {
  1631. return x.IsShow
  1632. }
  1633. return IsShow_INVALID
  1634. }
  1635. type ForageEnumListResponse struct {
  1636. state protoimpl.MessageState
  1637. sizeCache protoimpl.SizeCache
  1638. unknownFields protoimpl.UnknownFields
  1639. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1640. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1641. Data *ForageEnumList `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1642. }
  1643. func (x *ForageEnumListResponse) Reset() {
  1644. *x = ForageEnumListResponse{}
  1645. if protoimpl.UnsafeEnabled {
  1646. mi := &file_backend_operation_pasture_proto_msgTypes[24]
  1647. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1648. ms.StoreMessageInfo(mi)
  1649. }
  1650. }
  1651. func (x *ForageEnumListResponse) String() string {
  1652. return protoimpl.X.MessageStringOf(x)
  1653. }
  1654. func (*ForageEnumListResponse) ProtoMessage() {}
  1655. func (x *ForageEnumListResponse) ProtoReflect() protoreflect.Message {
  1656. mi := &file_backend_operation_pasture_proto_msgTypes[24]
  1657. if protoimpl.UnsafeEnabled && x != nil {
  1658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1659. if ms.LoadMessageInfo() == nil {
  1660. ms.StoreMessageInfo(mi)
  1661. }
  1662. return ms
  1663. }
  1664. return mi.MessageOf(x)
  1665. }
  1666. // Deprecated: Use ForageEnumListResponse.ProtoReflect.Descriptor instead.
  1667. func (*ForageEnumListResponse) Descriptor() ([]byte, []int) {
  1668. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{24}
  1669. }
  1670. func (x *ForageEnumListResponse) GetCode() int32 {
  1671. if x != nil {
  1672. return x.Code
  1673. }
  1674. return 0
  1675. }
  1676. func (x *ForageEnumListResponse) GetMsg() string {
  1677. if x != nil {
  1678. return x.Msg
  1679. }
  1680. return ""
  1681. }
  1682. func (x *ForageEnumListResponse) GetData() *ForageEnumList {
  1683. if x != nil {
  1684. return x.Data
  1685. }
  1686. return nil
  1687. }
  1688. type ForageEnumList struct {
  1689. state protoimpl.MessageState
  1690. sizeCache protoimpl.SizeCache
  1691. unknownFields protoimpl.UnknownFields
  1692. ForageSource []*ForageSourceEnum `protobuf:"bytes,1,rep,name=forage_source,json=forageSource,proto3" json:"forage_source,omitempty"` // 饲料来源
  1693. ForagePlanType []*ForagePlanTypeEnum `protobuf:"bytes,2,rep,name=forage_plan_type,json=foragePlanType,proto3" json:"forage_plan_type,omitempty"` // 饲料计划类型
  1694. JumpDelaType []*JumpDelaTypeEnum `protobuf:"bytes,3,rep,name=jump_dela_type,json=jumpDelaType,proto3" json:"jump_dela_type,omitempty"` // 跳转延迟类型
  1695. CattleParentCategory []*CattleParentCategoryEnum `protobuf:"bytes,4,rep,name=cattle_parent_category,json=cattleParentCategory,proto3" json:"cattle_parent_category,omitempty"` // 畜牧分类
  1696. ForageParentCategory []*ForageParentCategoryEnum `protobuf:"bytes,5,rep,name=forage_parent_category,json=forageParentCategory,proto3" json:"forage_parent_category,omitempty"` // 饲料分类
  1697. IsShow []*IsShowEnum `protobuf:"bytes,6,rep,name=is_show,json=isShow,proto3" json:"is_show,omitempty"`
  1698. FormulaType []*FormulaTypeEnum `protobuf:"bytes,7,rep,name=formula_type,json=formulaType,proto3" json:"formula_type,omitempty"` // 配方类型
  1699. FormulaList []*FormulaOptionEnum `protobuf:"bytes,8,rep,name=formula_list,json=formulaList,proto3" json:"formula_list,omitempty"` // 所有配方列表
  1700. ConfirmStart []*IsShowEnum `protobuf:"bytes,9,rep,name=confirm_start,json=confirmStart,proto3" json:"confirm_start,omitempty"` // 确认开始
  1701. FormulationEvaluation []*FormulaOptionEnum `protobuf:"bytes,10,rep,name=formulation_evaluation,json=formulationEvaluation,proto3" json:"formulation_evaluation,omitempty"` // 配方评估查询方式
  1702. UseMaterialsList []*FormulaOptionEnum `protobuf:"bytes,11,rep,name=use_materials_list,json=useMaterialsList,proto3" json:"use_materials_list,omitempty"` // 用料分析-列表显示
  1703. UseMaterialsType []*FormulaOptionEnum `protobuf:"bytes,12,rep,name=use_materials_type,json=useMaterialsType,proto3" json:"use_materials_type,omitempty"` // 用料分析-统计类型
  1704. PriceMaterialsType []*FormulaOptionEnum `protobuf:"bytes,13,rep,name=price_materials_type,json=priceMaterialsType,proto3" json:"price_materials_type,omitempty"` // 价格分析-统计类型
  1705. JumpType []*FormulaOptionEnum `protobuf:"bytes,14,rep,name=jump_type,json=jumpType,proto3" json:"jump_type,omitempty"` // 准确性-跳转方式
  1706. StatisticsType []*FormulaOptionEnum `protobuf:"bytes,15,rep,name=statistics_type,json=statisticsType,proto3" json:"statistics_type,omitempty"` // 准确性-统计类型
  1707. }
  1708. func (x *ForageEnumList) Reset() {
  1709. *x = ForageEnumList{}
  1710. if protoimpl.UnsafeEnabled {
  1711. mi := &file_backend_operation_pasture_proto_msgTypes[25]
  1712. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1713. ms.StoreMessageInfo(mi)
  1714. }
  1715. }
  1716. func (x *ForageEnumList) String() string {
  1717. return protoimpl.X.MessageStringOf(x)
  1718. }
  1719. func (*ForageEnumList) ProtoMessage() {}
  1720. func (x *ForageEnumList) ProtoReflect() protoreflect.Message {
  1721. mi := &file_backend_operation_pasture_proto_msgTypes[25]
  1722. if protoimpl.UnsafeEnabled && x != nil {
  1723. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1724. if ms.LoadMessageInfo() == nil {
  1725. ms.StoreMessageInfo(mi)
  1726. }
  1727. return ms
  1728. }
  1729. return mi.MessageOf(x)
  1730. }
  1731. // Deprecated: Use ForageEnumList.ProtoReflect.Descriptor instead.
  1732. func (*ForageEnumList) Descriptor() ([]byte, []int) {
  1733. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{25}
  1734. }
  1735. func (x *ForageEnumList) GetForageSource() []*ForageSourceEnum {
  1736. if x != nil {
  1737. return x.ForageSource
  1738. }
  1739. return nil
  1740. }
  1741. func (x *ForageEnumList) GetForagePlanType() []*ForagePlanTypeEnum {
  1742. if x != nil {
  1743. return x.ForagePlanType
  1744. }
  1745. return nil
  1746. }
  1747. func (x *ForageEnumList) GetJumpDelaType() []*JumpDelaTypeEnum {
  1748. if x != nil {
  1749. return x.JumpDelaType
  1750. }
  1751. return nil
  1752. }
  1753. func (x *ForageEnumList) GetCattleParentCategory() []*CattleParentCategoryEnum {
  1754. if x != nil {
  1755. return x.CattleParentCategory
  1756. }
  1757. return nil
  1758. }
  1759. func (x *ForageEnumList) GetForageParentCategory() []*ForageParentCategoryEnum {
  1760. if x != nil {
  1761. return x.ForageParentCategory
  1762. }
  1763. return nil
  1764. }
  1765. func (x *ForageEnumList) GetIsShow() []*IsShowEnum {
  1766. if x != nil {
  1767. return x.IsShow
  1768. }
  1769. return nil
  1770. }
  1771. func (x *ForageEnumList) GetFormulaType() []*FormulaTypeEnum {
  1772. if x != nil {
  1773. return x.FormulaType
  1774. }
  1775. return nil
  1776. }
  1777. func (x *ForageEnumList) GetFormulaList() []*FormulaOptionEnum {
  1778. if x != nil {
  1779. return x.FormulaList
  1780. }
  1781. return nil
  1782. }
  1783. func (x *ForageEnumList) GetConfirmStart() []*IsShowEnum {
  1784. if x != nil {
  1785. return x.ConfirmStart
  1786. }
  1787. return nil
  1788. }
  1789. func (x *ForageEnumList) GetFormulationEvaluation() []*FormulaOptionEnum {
  1790. if x != nil {
  1791. return x.FormulationEvaluation
  1792. }
  1793. return nil
  1794. }
  1795. func (x *ForageEnumList) GetUseMaterialsList() []*FormulaOptionEnum {
  1796. if x != nil {
  1797. return x.UseMaterialsList
  1798. }
  1799. return nil
  1800. }
  1801. func (x *ForageEnumList) GetUseMaterialsType() []*FormulaOptionEnum {
  1802. if x != nil {
  1803. return x.UseMaterialsType
  1804. }
  1805. return nil
  1806. }
  1807. func (x *ForageEnumList) GetPriceMaterialsType() []*FormulaOptionEnum {
  1808. if x != nil {
  1809. return x.PriceMaterialsType
  1810. }
  1811. return nil
  1812. }
  1813. func (x *ForageEnumList) GetJumpType() []*FormulaOptionEnum {
  1814. if x != nil {
  1815. return x.JumpType
  1816. }
  1817. return nil
  1818. }
  1819. func (x *ForageEnumList) GetStatisticsType() []*FormulaOptionEnum {
  1820. if x != nil {
  1821. return x.StatisticsType
  1822. }
  1823. return nil
  1824. }
  1825. type ForageSourceEnum struct {
  1826. state protoimpl.MessageState
  1827. sizeCache protoimpl.SizeCache
  1828. unknownFields protoimpl.UnknownFields
  1829. Value ForageSource_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForageSource_Kind" json:"value,omitempty"`
  1830. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1831. }
  1832. func (x *ForageSourceEnum) Reset() {
  1833. *x = ForageSourceEnum{}
  1834. if protoimpl.UnsafeEnabled {
  1835. mi := &file_backend_operation_pasture_proto_msgTypes[26]
  1836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1837. ms.StoreMessageInfo(mi)
  1838. }
  1839. }
  1840. func (x *ForageSourceEnum) String() string {
  1841. return protoimpl.X.MessageStringOf(x)
  1842. }
  1843. func (*ForageSourceEnum) ProtoMessage() {}
  1844. func (x *ForageSourceEnum) ProtoReflect() protoreflect.Message {
  1845. mi := &file_backend_operation_pasture_proto_msgTypes[26]
  1846. if protoimpl.UnsafeEnabled && x != nil {
  1847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1848. if ms.LoadMessageInfo() == nil {
  1849. ms.StoreMessageInfo(mi)
  1850. }
  1851. return ms
  1852. }
  1853. return mi.MessageOf(x)
  1854. }
  1855. // Deprecated: Use ForageSourceEnum.ProtoReflect.Descriptor instead.
  1856. func (*ForageSourceEnum) Descriptor() ([]byte, []int) {
  1857. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{26}
  1858. }
  1859. func (x *ForageSourceEnum) GetValue() ForageSource_Kind {
  1860. if x != nil {
  1861. return x.Value
  1862. }
  1863. return ForageSource_INVALID
  1864. }
  1865. func (x *ForageSourceEnum) GetLabel() string {
  1866. if x != nil {
  1867. return x.Label
  1868. }
  1869. return ""
  1870. }
  1871. type ForagePlanTypeEnum struct {
  1872. state protoimpl.MessageState
  1873. sizeCache protoimpl.SizeCache
  1874. unknownFields protoimpl.UnknownFields
  1875. Value ForagePlanType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForagePlanType_Kind" json:"value,omitempty"`
  1876. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1877. }
  1878. func (x *ForagePlanTypeEnum) Reset() {
  1879. *x = ForagePlanTypeEnum{}
  1880. if protoimpl.UnsafeEnabled {
  1881. mi := &file_backend_operation_pasture_proto_msgTypes[27]
  1882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1883. ms.StoreMessageInfo(mi)
  1884. }
  1885. }
  1886. func (x *ForagePlanTypeEnum) String() string {
  1887. return protoimpl.X.MessageStringOf(x)
  1888. }
  1889. func (*ForagePlanTypeEnum) ProtoMessage() {}
  1890. func (x *ForagePlanTypeEnum) ProtoReflect() protoreflect.Message {
  1891. mi := &file_backend_operation_pasture_proto_msgTypes[27]
  1892. if protoimpl.UnsafeEnabled && x != nil {
  1893. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1894. if ms.LoadMessageInfo() == nil {
  1895. ms.StoreMessageInfo(mi)
  1896. }
  1897. return ms
  1898. }
  1899. return mi.MessageOf(x)
  1900. }
  1901. // Deprecated: Use ForagePlanTypeEnum.ProtoReflect.Descriptor instead.
  1902. func (*ForagePlanTypeEnum) Descriptor() ([]byte, []int) {
  1903. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{27}
  1904. }
  1905. func (x *ForagePlanTypeEnum) GetValue() ForagePlanType_Kind {
  1906. if x != nil {
  1907. return x.Value
  1908. }
  1909. return ForagePlanType_INVALID
  1910. }
  1911. func (x *ForagePlanTypeEnum) GetLabel() string {
  1912. if x != nil {
  1913. return x.Label
  1914. }
  1915. return ""
  1916. }
  1917. type JumpDelaTypeEnum struct {
  1918. state protoimpl.MessageState
  1919. sizeCache protoimpl.SizeCache
  1920. unknownFields protoimpl.UnknownFields
  1921. Value JumpDelaType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.JumpDelaType_Kind" json:"value,omitempty"`
  1922. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1923. }
  1924. func (x *JumpDelaTypeEnum) Reset() {
  1925. *x = JumpDelaTypeEnum{}
  1926. if protoimpl.UnsafeEnabled {
  1927. mi := &file_backend_operation_pasture_proto_msgTypes[28]
  1928. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1929. ms.StoreMessageInfo(mi)
  1930. }
  1931. }
  1932. func (x *JumpDelaTypeEnum) String() string {
  1933. return protoimpl.X.MessageStringOf(x)
  1934. }
  1935. func (*JumpDelaTypeEnum) ProtoMessage() {}
  1936. func (x *JumpDelaTypeEnum) ProtoReflect() protoreflect.Message {
  1937. mi := &file_backend_operation_pasture_proto_msgTypes[28]
  1938. if protoimpl.UnsafeEnabled && x != nil {
  1939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1940. if ms.LoadMessageInfo() == nil {
  1941. ms.StoreMessageInfo(mi)
  1942. }
  1943. return ms
  1944. }
  1945. return mi.MessageOf(x)
  1946. }
  1947. // Deprecated: Use JumpDelaTypeEnum.ProtoReflect.Descriptor instead.
  1948. func (*JumpDelaTypeEnum) Descriptor() ([]byte, []int) {
  1949. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{28}
  1950. }
  1951. func (x *JumpDelaTypeEnum) GetValue() JumpDelaType_Kind {
  1952. if x != nil {
  1953. return x.Value
  1954. }
  1955. return JumpDelaType_INVALID
  1956. }
  1957. func (x *JumpDelaTypeEnum) GetLabel() string {
  1958. if x != nil {
  1959. return x.Label
  1960. }
  1961. return ""
  1962. }
  1963. type CattleParentCategoryEnum struct {
  1964. state protoimpl.MessageState
  1965. sizeCache protoimpl.SizeCache
  1966. unknownFields protoimpl.UnknownFields
  1967. Value CattleCategoryParent_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.CattleCategoryParent_Kind" json:"value,omitempty"`
  1968. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1969. }
  1970. func (x *CattleParentCategoryEnum) Reset() {
  1971. *x = CattleParentCategoryEnum{}
  1972. if protoimpl.UnsafeEnabled {
  1973. mi := &file_backend_operation_pasture_proto_msgTypes[29]
  1974. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1975. ms.StoreMessageInfo(mi)
  1976. }
  1977. }
  1978. func (x *CattleParentCategoryEnum) String() string {
  1979. return protoimpl.X.MessageStringOf(x)
  1980. }
  1981. func (*CattleParentCategoryEnum) ProtoMessage() {}
  1982. func (x *CattleParentCategoryEnum) ProtoReflect() protoreflect.Message {
  1983. mi := &file_backend_operation_pasture_proto_msgTypes[29]
  1984. if protoimpl.UnsafeEnabled && x != nil {
  1985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1986. if ms.LoadMessageInfo() == nil {
  1987. ms.StoreMessageInfo(mi)
  1988. }
  1989. return ms
  1990. }
  1991. return mi.MessageOf(x)
  1992. }
  1993. // Deprecated: Use CattleParentCategoryEnum.ProtoReflect.Descriptor instead.
  1994. func (*CattleParentCategoryEnum) Descriptor() ([]byte, []int) {
  1995. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{29}
  1996. }
  1997. func (x *CattleParentCategoryEnum) GetValue() CattleCategoryParent_Kind {
  1998. if x != nil {
  1999. return x.Value
  2000. }
  2001. return CattleCategoryParent_INVALID
  2002. }
  2003. func (x *CattleParentCategoryEnum) GetLabel() string {
  2004. if x != nil {
  2005. return x.Label
  2006. }
  2007. return ""
  2008. }
  2009. type ForageParentCategoryEnum struct {
  2010. state protoimpl.MessageState
  2011. sizeCache protoimpl.SizeCache
  2012. unknownFields protoimpl.UnknownFields
  2013. Value ForageCategoryParent_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForageCategoryParent_Kind" json:"value,omitempty"`
  2014. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2015. }
  2016. func (x *ForageParentCategoryEnum) Reset() {
  2017. *x = ForageParentCategoryEnum{}
  2018. if protoimpl.UnsafeEnabled {
  2019. mi := &file_backend_operation_pasture_proto_msgTypes[30]
  2020. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2021. ms.StoreMessageInfo(mi)
  2022. }
  2023. }
  2024. func (x *ForageParentCategoryEnum) String() string {
  2025. return protoimpl.X.MessageStringOf(x)
  2026. }
  2027. func (*ForageParentCategoryEnum) ProtoMessage() {}
  2028. func (x *ForageParentCategoryEnum) ProtoReflect() protoreflect.Message {
  2029. mi := &file_backend_operation_pasture_proto_msgTypes[30]
  2030. if protoimpl.UnsafeEnabled && x != nil {
  2031. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2032. if ms.LoadMessageInfo() == nil {
  2033. ms.StoreMessageInfo(mi)
  2034. }
  2035. return ms
  2036. }
  2037. return mi.MessageOf(x)
  2038. }
  2039. // Deprecated: Use ForageParentCategoryEnum.ProtoReflect.Descriptor instead.
  2040. func (*ForageParentCategoryEnum) Descriptor() ([]byte, []int) {
  2041. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{30}
  2042. }
  2043. func (x *ForageParentCategoryEnum) GetValue() ForageCategoryParent_Kind {
  2044. if x != nil {
  2045. return x.Value
  2046. }
  2047. return ForageCategoryParent_INVALID
  2048. }
  2049. func (x *ForageParentCategoryEnum) GetLabel() string {
  2050. if x != nil {
  2051. return x.Label
  2052. }
  2053. return ""
  2054. }
  2055. type IsShowEnum struct {
  2056. state protoimpl.MessageState
  2057. sizeCache protoimpl.SizeCache
  2058. unknownFields protoimpl.UnknownFields
  2059. Value IsShow_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.IsShow_Kind" json:"value,omitempty"`
  2060. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2061. }
  2062. func (x *IsShowEnum) Reset() {
  2063. *x = IsShowEnum{}
  2064. if protoimpl.UnsafeEnabled {
  2065. mi := &file_backend_operation_pasture_proto_msgTypes[31]
  2066. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2067. ms.StoreMessageInfo(mi)
  2068. }
  2069. }
  2070. func (x *IsShowEnum) String() string {
  2071. return protoimpl.X.MessageStringOf(x)
  2072. }
  2073. func (*IsShowEnum) ProtoMessage() {}
  2074. func (x *IsShowEnum) ProtoReflect() protoreflect.Message {
  2075. mi := &file_backend_operation_pasture_proto_msgTypes[31]
  2076. if protoimpl.UnsafeEnabled && x != nil {
  2077. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2078. if ms.LoadMessageInfo() == nil {
  2079. ms.StoreMessageInfo(mi)
  2080. }
  2081. return ms
  2082. }
  2083. return mi.MessageOf(x)
  2084. }
  2085. // Deprecated: Use IsShowEnum.ProtoReflect.Descriptor instead.
  2086. func (*IsShowEnum) Descriptor() ([]byte, []int) {
  2087. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{31}
  2088. }
  2089. func (x *IsShowEnum) GetValue() IsShow_Kind {
  2090. if x != nil {
  2091. return x.Value
  2092. }
  2093. return IsShow_INVALID
  2094. }
  2095. func (x *IsShowEnum) GetLabel() string {
  2096. if x != nil {
  2097. return x.Label
  2098. }
  2099. return ""
  2100. }
  2101. type FormulaTypeEnum struct {
  2102. state protoimpl.MessageState
  2103. sizeCache protoimpl.SizeCache
  2104. unknownFields protoimpl.UnknownFields
  2105. Value FormulaType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.FormulaType_Kind" json:"value,omitempty"`
  2106. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2107. }
  2108. func (x *FormulaTypeEnum) Reset() {
  2109. *x = FormulaTypeEnum{}
  2110. if protoimpl.UnsafeEnabled {
  2111. mi := &file_backend_operation_pasture_proto_msgTypes[32]
  2112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2113. ms.StoreMessageInfo(mi)
  2114. }
  2115. }
  2116. func (x *FormulaTypeEnum) String() string {
  2117. return protoimpl.X.MessageStringOf(x)
  2118. }
  2119. func (*FormulaTypeEnum) ProtoMessage() {}
  2120. func (x *FormulaTypeEnum) ProtoReflect() protoreflect.Message {
  2121. mi := &file_backend_operation_pasture_proto_msgTypes[32]
  2122. if protoimpl.UnsafeEnabled && x != nil {
  2123. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2124. if ms.LoadMessageInfo() == nil {
  2125. ms.StoreMessageInfo(mi)
  2126. }
  2127. return ms
  2128. }
  2129. return mi.MessageOf(x)
  2130. }
  2131. // Deprecated: Use FormulaTypeEnum.ProtoReflect.Descriptor instead.
  2132. func (*FormulaTypeEnum) Descriptor() ([]byte, []int) {
  2133. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{32}
  2134. }
  2135. func (x *FormulaTypeEnum) GetValue() FormulaType_Kind {
  2136. if x != nil {
  2137. return x.Value
  2138. }
  2139. return FormulaType_INVALID
  2140. }
  2141. func (x *FormulaTypeEnum) GetLabel() string {
  2142. if x != nil {
  2143. return x.Label
  2144. }
  2145. return ""
  2146. }
  2147. type FormulaOptionEnum struct {
  2148. state protoimpl.MessageState
  2149. sizeCache protoimpl.SizeCache
  2150. unknownFields protoimpl.UnknownFields
  2151. Value int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  2152. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2153. }
  2154. func (x *FormulaOptionEnum) Reset() {
  2155. *x = FormulaOptionEnum{}
  2156. if protoimpl.UnsafeEnabled {
  2157. mi := &file_backend_operation_pasture_proto_msgTypes[33]
  2158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2159. ms.StoreMessageInfo(mi)
  2160. }
  2161. }
  2162. func (x *FormulaOptionEnum) String() string {
  2163. return protoimpl.X.MessageStringOf(x)
  2164. }
  2165. func (*FormulaOptionEnum) ProtoMessage() {}
  2166. func (x *FormulaOptionEnum) ProtoReflect() protoreflect.Message {
  2167. mi := &file_backend_operation_pasture_proto_msgTypes[33]
  2168. if protoimpl.UnsafeEnabled && x != nil {
  2169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2170. if ms.LoadMessageInfo() == nil {
  2171. ms.StoreMessageInfo(mi)
  2172. }
  2173. return ms
  2174. }
  2175. return mi.MessageOf(x)
  2176. }
  2177. // Deprecated: Use FormulaOptionEnum.ProtoReflect.Descriptor instead.
  2178. func (*FormulaOptionEnum) Descriptor() ([]byte, []int) {
  2179. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{33}
  2180. }
  2181. func (x *FormulaOptionEnum) GetValue() int32 {
  2182. if x != nil {
  2183. return x.Value
  2184. }
  2185. return 0
  2186. }
  2187. func (x *FormulaOptionEnum) GetLabel() string {
  2188. if x != nil {
  2189. return x.Label
  2190. }
  2191. return ""
  2192. }
  2193. // 牧场端分类数据同步
  2194. type CategorySyncRequest struct {
  2195. state protoimpl.MessageState
  2196. sizeCache protoimpl.SizeCache
  2197. unknownFields protoimpl.UnknownFields
  2198. KeyWord string `protobuf:"bytes,1,opt,name=key_word,json=keyWord,proto3" json:"key_word,omitempty"` // 关键字
  2199. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  2200. ParentId int32 `protobuf:"varint,3,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"` // 一类id
  2201. ParentName string `protobuf:"bytes,4,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // 一类名称
  2202. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"` // 分类名称
  2203. Number string `protobuf:"bytes,6,opt,name=number,proto3" json:"number,omitempty"` // 分类编号
  2204. IsShow IsShow_Kind `protobuf:"varint,7,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否展示
  2205. IsDelete IsShow_Kind `protobuf:"varint,8,opt,name=is_delete,json=isDelete,proto3,enum=backend.operation.IsShow_Kind" json:"is_delete,omitempty"` // 是否删除
  2206. Id int32 `protobuf:"varint,9,opt,name=id,proto3" json:"id,omitempty"` // 牧场端数据id
  2207. }
  2208. func (x *CategorySyncRequest) Reset() {
  2209. *x = CategorySyncRequest{}
  2210. if protoimpl.UnsafeEnabled {
  2211. mi := &file_backend_operation_pasture_proto_msgTypes[34]
  2212. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2213. ms.StoreMessageInfo(mi)
  2214. }
  2215. }
  2216. func (x *CategorySyncRequest) String() string {
  2217. return protoimpl.X.MessageStringOf(x)
  2218. }
  2219. func (*CategorySyncRequest) ProtoMessage() {}
  2220. func (x *CategorySyncRequest) ProtoReflect() protoreflect.Message {
  2221. mi := &file_backend_operation_pasture_proto_msgTypes[34]
  2222. if protoimpl.UnsafeEnabled && x != nil {
  2223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2224. if ms.LoadMessageInfo() == nil {
  2225. ms.StoreMessageInfo(mi)
  2226. }
  2227. return ms
  2228. }
  2229. return mi.MessageOf(x)
  2230. }
  2231. // Deprecated: Use CategorySyncRequest.ProtoReflect.Descriptor instead.
  2232. func (*CategorySyncRequest) Descriptor() ([]byte, []int) {
  2233. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{34}
  2234. }
  2235. func (x *CategorySyncRequest) GetKeyWord() string {
  2236. if x != nil {
  2237. return x.KeyWord
  2238. }
  2239. return ""
  2240. }
  2241. func (x *CategorySyncRequest) GetPastureId() int32 {
  2242. if x != nil {
  2243. return x.PastureId
  2244. }
  2245. return 0
  2246. }
  2247. func (x *CategorySyncRequest) GetParentId() int32 {
  2248. if x != nil {
  2249. return x.ParentId
  2250. }
  2251. return 0
  2252. }
  2253. func (x *CategorySyncRequest) GetParentName() string {
  2254. if x != nil {
  2255. return x.ParentName
  2256. }
  2257. return ""
  2258. }
  2259. func (x *CategorySyncRequest) GetName() string {
  2260. if x != nil {
  2261. return x.Name
  2262. }
  2263. return ""
  2264. }
  2265. func (x *CategorySyncRequest) GetNumber() string {
  2266. if x != nil {
  2267. return x.Number
  2268. }
  2269. return ""
  2270. }
  2271. func (x *CategorySyncRequest) GetIsShow() IsShow_Kind {
  2272. if x != nil {
  2273. return x.IsShow
  2274. }
  2275. return IsShow_INVALID
  2276. }
  2277. func (x *CategorySyncRequest) GetIsDelete() IsShow_Kind {
  2278. if x != nil {
  2279. return x.IsDelete
  2280. }
  2281. return IsShow_INVALID
  2282. }
  2283. func (x *CategorySyncRequest) GetId() int32 {
  2284. if x != nil {
  2285. return x.Id
  2286. }
  2287. return 0
  2288. }
  2289. // 牧场端分类数据删除
  2290. type CategoryDeleteRequest struct {
  2291. state protoimpl.MessageState
  2292. sizeCache protoimpl.SizeCache
  2293. unknownFields protoimpl.UnknownFields
  2294. KeyWord string `protobuf:"bytes,1,opt,name=key_word,json=keyWord,proto3" json:"key_word,omitempty"` // 关键字
  2295. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  2296. DataId int32 `protobuf:"varint,3,opt,name=data_id,json=dataId,proto3" json:"data_id,omitempty"`
  2297. }
  2298. func (x *CategoryDeleteRequest) Reset() {
  2299. *x = CategoryDeleteRequest{}
  2300. if protoimpl.UnsafeEnabled {
  2301. mi := &file_backend_operation_pasture_proto_msgTypes[35]
  2302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2303. ms.StoreMessageInfo(mi)
  2304. }
  2305. }
  2306. func (x *CategoryDeleteRequest) String() string {
  2307. return protoimpl.X.MessageStringOf(x)
  2308. }
  2309. func (*CategoryDeleteRequest) ProtoMessage() {}
  2310. func (x *CategoryDeleteRequest) ProtoReflect() protoreflect.Message {
  2311. mi := &file_backend_operation_pasture_proto_msgTypes[35]
  2312. if protoimpl.UnsafeEnabled && x != nil {
  2313. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2314. if ms.LoadMessageInfo() == nil {
  2315. ms.StoreMessageInfo(mi)
  2316. }
  2317. return ms
  2318. }
  2319. return mi.MessageOf(x)
  2320. }
  2321. // Deprecated: Use CategoryDeleteRequest.ProtoReflect.Descriptor instead.
  2322. func (*CategoryDeleteRequest) Descriptor() ([]byte, []int) {
  2323. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{35}
  2324. }
  2325. func (x *CategoryDeleteRequest) GetKeyWord() string {
  2326. if x != nil {
  2327. return x.KeyWord
  2328. }
  2329. return ""
  2330. }
  2331. func (x *CategoryDeleteRequest) GetPastureId() int32 {
  2332. if x != nil {
  2333. return x.PastureId
  2334. }
  2335. return 0
  2336. }
  2337. func (x *CategoryDeleteRequest) GetDataId() int32 {
  2338. if x != nil {
  2339. return x.DataId
  2340. }
  2341. return 0
  2342. }
  2343. type FeedFormulaSyncRequest struct {
  2344. state protoimpl.MessageState
  2345. sizeCache protoimpl.SizeCache
  2346. unknownFields protoimpl.UnknownFields
  2347. PastureId int32 `protobuf:"varint,1,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  2348. Page int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"` // 返回数据条数
  2349. PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // 返回数据条数
  2350. }
  2351. func (x *FeedFormulaSyncRequest) Reset() {
  2352. *x = FeedFormulaSyncRequest{}
  2353. if protoimpl.UnsafeEnabled {
  2354. mi := &file_backend_operation_pasture_proto_msgTypes[36]
  2355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2356. ms.StoreMessageInfo(mi)
  2357. }
  2358. }
  2359. func (x *FeedFormulaSyncRequest) String() string {
  2360. return protoimpl.X.MessageStringOf(x)
  2361. }
  2362. func (*FeedFormulaSyncRequest) ProtoMessage() {}
  2363. func (x *FeedFormulaSyncRequest) ProtoReflect() protoreflect.Message {
  2364. mi := &file_backend_operation_pasture_proto_msgTypes[36]
  2365. if protoimpl.UnsafeEnabled && x != nil {
  2366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2367. if ms.LoadMessageInfo() == nil {
  2368. ms.StoreMessageInfo(mi)
  2369. }
  2370. return ms
  2371. }
  2372. return mi.MessageOf(x)
  2373. }
  2374. // Deprecated: Use FeedFormulaSyncRequest.ProtoReflect.Descriptor instead.
  2375. func (*FeedFormulaSyncRequest) Descriptor() ([]byte, []int) {
  2376. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{36}
  2377. }
  2378. func (x *FeedFormulaSyncRequest) GetPastureId() int32 {
  2379. if x != nil {
  2380. return x.PastureId
  2381. }
  2382. return 0
  2383. }
  2384. func (x *FeedFormulaSyncRequest) GetPage() int32 {
  2385. if x != nil {
  2386. return x.Page
  2387. }
  2388. return 0
  2389. }
  2390. func (x *FeedFormulaSyncRequest) GetPageSize() int32 {
  2391. if x != nil {
  2392. return x.PageSize
  2393. }
  2394. return 0
  2395. }
  2396. var File_backend_operation_pasture_proto protoreflect.FileDescriptor
  2397. var file_backend_operation_pasture_proto_rawDesc = []byte{
  2398. 0x0a, 0x1f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2399. 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2400. 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2401. 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x1c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70,
  2402. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f,
  2403. 0x74, 0x6f, 0x1a, 0x22, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72,
  2404. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2405. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xee, 0x02, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x50, 0x61,
  2406. 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02,
  2407. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  2408. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  2409. 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  2410. 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61,
  2411. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2412. 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x23, 0x0a,
  2413. 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05,
  2414. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x50, 0x68, 0x6f,
  2415. 0x6e, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20,
  2416. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x37, 0x0a, 0x07,
  2417. 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e,
  2418. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2419. 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69,
  2420. 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
  2421. 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74,
  2422. 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2423. 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  2424. 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2425. 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  2426. 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74,
  2427. 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61,
  2428. 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x22, 0xf0, 0x01, 0x0a, 0x14, 0x53, 0x65, 0x61, 0x72,
  2429. 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2430. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2431. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f,
  2432. 0x75, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61,
  2433. 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  2434. 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  2435. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
  2436. 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d,
  2437. 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65,
  2438. 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x65,
  2439. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2440. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63,
  2441. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50,
  2442. 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a,
  2443. 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x77, 0x0a, 0x15, 0x53, 0x65,
  2444. 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  2445. 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2446. 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02,
  2447. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x38, 0x0a, 0x04, 0x64, 0x61, 0x74,
  2448. 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2449. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72,
  2450. 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64,
  2451. 0x61, 0x74, 0x61, 0x22, 0x94, 0x01, 0x0a, 0x11, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61,
  2452. 0x73, 0x74, 0x75, 0x72, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67,
  2453. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a,
  2454. 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f,
  2455. 0x74, 0x61, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
  2456. 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
  2457. 0x12, 0x38, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24,
  2458. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2459. 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71,
  2460. 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x31, 0x0a, 0x0b, 0x55, 0x73,
  2461. 0x65, 0x72, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  2462. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  2463. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x6c, 0x0a,
  2464. 0x12, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x61, 0x73, 0x74,
  2465. 0x75, 0x72, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69,
  2466. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  2467. 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20,
  2468. 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2469. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b,
  2470. 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0xc6, 0x02, 0x0a, 0x18,
  2471. 0x41, 0x64, 0x64, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2472. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  2473. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65,
  2474. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61,
  2475. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2476. 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61,
  2477. 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
  2478. 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61,
  2479. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2480. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  2481. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62,
  2482. 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2483. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28,
  2484. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2485. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  2486. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  2487. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x63,
  2488. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61,
  2489. 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x08, 0x20,
  2490. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f,
  2491. 0x72, 0x6d, 0x61, 0x74, 0x22, 0x7d, 0x0a, 0x14, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61,
  2492. 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x2c, 0x0a, 0x12,
  2493. 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  2494. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65,
  2495. 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73,
  2496. 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61,
  2497. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2498. 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53,
  2499. 0x68, 0x6f, 0x77, 0x22, 0xcb, 0x01, 0x0a, 0x1b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x61,
  2500. 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  2501. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
  2502. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64,
  2503. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28,
  2504. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2505. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  2506. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  2507. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a,
  2508. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
  2509. 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2510. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2511. 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  2512. 0x6e, 0x22, 0x85, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x61, 0x74, 0x74,
  2513. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  2514. 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  2515. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  2516. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x3f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  2517. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2518. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63,
  2519. 0x68, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44,
  2520. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xa2, 0x01, 0x0a, 0x18, 0x53, 0x65,
  2521. 0x61, 0x72, 0x63, 0x68, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
  2522. 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01,
  2523. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  2524. 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  2525. 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20,
  2526. 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3f, 0x0a,
  2527. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61,
  2528. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2529. 0x41, 0x64, 0x64, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2530. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xc6,
  2531. 0x02, 0x0a, 0x18, 0x41, 0x64, 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65,
  2532. 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  2533. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x09, 0x70,
  2534. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c,
  2535. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2536. 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2537. 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x08, 0x70, 0x61,
  2538. 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2539. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x72,
  2540. 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2541. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  2542. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x75, 0x6d,
  2543. 0x62, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x06,
  2544. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2545. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e,
  2546. 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a,
  2547. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d,
  2548. 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63,
  2549. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2550. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41,
  2551. 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x22, 0x7d, 0x0a, 0x14, 0x49, 0x73, 0x53, 0x68, 0x6f,
  2552. 0x77, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12,
  2553. 0x2c, 0x0a, 0x12, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  2554. 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x66, 0x6f, 0x72,
  2555. 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x37, 0x0a,
  2556. 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e,
  2557. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2558. 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06,
  2559. 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0xe3, 0x01, 0x0a, 0x1b, 0x53, 0x65, 0x61, 0x72, 0x63,
  2560. 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52,
  2561. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2562. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
  2563. 0x74, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02,
  2564. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2565. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e,
  2566. 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x12, 0x0a, 0x04,
  2567. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  2568. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2569. 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69,
  2570. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62,
  2571. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2572. 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
  2573. 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x01, 0x0a,
  2574. 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74,
  2575. 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
  2576. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64,
  2577. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  2578. 0x6d, 0x73, 0x67, 0x12, 0x3f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
  2579. 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2580. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61,
  2581. 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04,
  2582. 0x64, 0x61, 0x74, 0x61, 0x22, 0xa2, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46,
  2583. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  2584. 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  2585. 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02,
  2586. 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x70,
  2587. 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
  2588. 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3f, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2589. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2590. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x6f,
  2591. 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  2592. 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xd1, 0x08, 0x0a, 0x10, 0x41, 0x64,
  2593. 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e,
  2594. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  2595. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  2596. 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69,
  2597. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2598. 0x79, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  2599. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x61, 0x74, 0x65,
  2600. 0x67, 0x6f, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x6d, 0x61, 0x74, 0x65,
  2601. 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x05, 0x20,
  2602. 0x01, 0x28, 0x05, 0x52, 0x0f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70,
  2603. 0x65, 0x4b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x12, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
  2604. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  2605. 0x52, 0x10, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x4e, 0x61,
  2606. 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x65, 0x6e, 0x63,
  2607. 0x6f, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x75, 0x6e, 0x69, 0x71, 0x75,
  2608. 0x65, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x4e, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67,
  2609. 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28,
  2610. 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2611. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72,
  2612. 0x63, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53,
  2613. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x12, 0x66, 0x6f, 0x72, 0x61, 0x67,
  2614. 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20,
  2615. 0x01, 0x28, 0x09, 0x52, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63,
  2616. 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74, 0x79,
  2617. 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x62, 0x61,
  2618. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2619. 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b,
  2620. 0x69, 0x6e, 0x64, 0x52, 0x0a, 0x70, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12,
  2621. 0x24, 0x0a, 0x0e, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
  2622. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70,
  2623. 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x5f, 0x6d,
  2624. 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x65, 0x18, 0x0c, 0x20,
  2625. 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69,
  2626. 0x61, 0x6c, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
  2627. 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x61, 0x6c,
  2628. 0x6c, 0x6f, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x61, 0x63, 0x6b,
  2629. 0x61, 0x67, 0x65, 0x5f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05,
  2630. 0x52, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12,
  2631. 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05,
  2632. 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x77, 0x65,
  2633. 0x69, 0x67, 0x68, 0x74, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x6a, 0x75, 0x6d, 0x70,
  2634. 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x43, 0x0a, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64,
  2635. 0x65, 0x6c, 0x61, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63,
  2636. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a,
  2637. 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64,
  2638. 0x52, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x43, 0x0a, 0x0d, 0x63,
  2639. 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x12, 0x20, 0x01,
  2640. 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2641. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69,
  2642. 0x6e, 0x64, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x53, 0x74, 0x61, 0x72, 0x74,
  2643. 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
  2644. 0x6f, 0x6e, 0x73, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65, 0x6c, 0x61, 0x79,
  2645. 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x30, 0x0a, 0x03, 0x6a, 0x6d, 0x70,
  2646. 0x18, 0x14, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2647. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f,
  2648. 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x03, 0x6a, 0x6d, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x62,
  2649. 0x61, 0x63, 0x6b, 0x75, 0x70, 0x31, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61,
  2650. 0x63, 0x6b, 0x75, 0x70, 0x31, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x32,
  2651. 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x32, 0x12,
  2652. 0x18, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x33, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09,
  2653. 0x52, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x33, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  2654. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63,
  2655. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61,
  2656. 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x19, 0x20,
  2657. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f,
  2658. 0x72, 0x6d, 0x61, 0x74, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18,
  2659. 0x1a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2660. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77,
  2661. 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0xfc, 0x02,
  2662. 0x0a, 0x17, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69,
  2663. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  2664. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a,
  2665. 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  2666. 0x28, 0x05, 0x52, 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x28,
  2667. 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f,
  2668. 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65,
  2669. 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73,
  2670. 0x68, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  2671. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73,
  2672. 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f,
  2673. 0x77, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
  2674. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x45, 0x72, 0x72,
  2675. 0x6f, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x77, 0x65, 0x69, 0x67, 0x68,
  2676. 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x57, 0x65, 0x69,
  2677. 0x67, 0x68, 0x74, 0x12, 0x43, 0x0a, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64, 0x65, 0x6c, 0x61,
  2678. 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2679. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x75, 0x6d, 0x70,
  2680. 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x09, 0x6a,
  2681. 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69,
  2682. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62,
  2683. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2684. 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
  2685. 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4e, 0x0a, 0x15,
  2686. 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x52, 0x65,
  2687. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x35, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  2688. 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2689. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69,
  2690. 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x34, 0x0a, 0x0e,
  2691. 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x12, 0x0e,
  2692. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  2693. 0x0a, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x6f,
  2694. 0x72, 0x74, 0x22, 0x6d, 0x0a, 0x14, 0x53, 0x6d, 0x61, 0x6c, 0x6c, 0x4d, 0x61, 0x74, 0x65, 0x72,
  2695. 0x69, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70,
  2696. 0x69, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70,
  2697. 0x69, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  2698. 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75,
  2699. 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x6e, 0x61, 0x6d,
  2700. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d,
  2701. 0x65, 0x22, 0x79, 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67,
  2702. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
  2703. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64,
  2704. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  2705. 0x6d, 0x73, 0x67, 0x12, 0x37, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
  2706. 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2707. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61,
  2708. 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x92, 0x01, 0x0a,
  2709. 0x10, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73,
  2710. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  2711. 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69,
  2712. 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  2713. 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  2714. 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x37, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2715. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2716. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x6f,
  2717. 0x72, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73,
  2718. 0x74, 0x22, 0x64, 0x0a, 0x0c, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x46, 0x6f, 0x72, 0x61, 0x67,
  2719. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
  2720. 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x37,
  2721. 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
  2722. 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2723. 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52,
  2724. 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0x75, 0x0a, 0x16, 0x46, 0x6f, 0x72, 0x61, 0x67,
  2725. 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  2726. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  2727. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
  2728. 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x35, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  2729. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2730. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65,
  2731. 0x45, 0x6e, 0x75, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb7,
  2732. 0x09, 0x0a, 0x0e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x4c, 0x69, 0x73,
  2733. 0x74, 0x12, 0x48, 0x0a, 0x0d, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72,
  2734. 0x63, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  2735. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72,
  2736. 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x66,
  2737. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x4f, 0x0a, 0x10, 0x66,
  2738. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  2739. 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2740. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65,
  2741. 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0e, 0x66, 0x6f,
  2742. 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x49, 0x0a, 0x0e,
  2743. 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03,
  2744. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2745. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c,
  2746. 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x6a, 0x75, 0x6d, 0x70, 0x44,
  2747. 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x61, 0x0a, 0x16, 0x63, 0x61, 0x74, 0x74, 0x6c,
  2748. 0x65, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2749. 0x79, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2750. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x74,
  2751. 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
  2752. 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x14, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65,
  2753. 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x61, 0x0a, 0x16, 0x66, 0x6f,
  2754. 0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65,
  2755. 0x67, 0x6f, 0x72, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63,
  2756. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46,
  2757. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67,
  2758. 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x14, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50,
  2759. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x36, 0x0a,
  2760. 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d,
  2761. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2762. 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x06, 0x69,
  2763. 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x45, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  2764. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  2765. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2766. 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52,
  2767. 0x0b, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x47, 0x0a, 0x0c,
  2768. 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03,
  2769. 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2770. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70,
  2771. 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0b, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  2772. 0x61, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x42, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d,
  2773. 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x62,
  2774. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2775. 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x63, 0x6f, 0x6e,
  2776. 0x66, 0x69, 0x72, 0x6d, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x5b, 0x0a, 0x16, 0x66, 0x6f, 0x72,
  2777. 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74,
  2778. 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  2779. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f,
  2780. 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52,
  2781. 0x15, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x61, 0x6c,
  2782. 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x12, 0x75, 0x73, 0x65, 0x5f, 0x6d, 0x61,
  2783. 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x03,
  2784. 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2785. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70,
  2786. 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x10, 0x75, 0x73, 0x65, 0x4d, 0x61, 0x74,
  2787. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x52, 0x0a, 0x12, 0x75, 0x73,
  2788. 0x65, 0x5f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65,
  2789. 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2790. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75,
  2791. 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x10, 0x75, 0x73,
  2792. 0x65, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x56,
  2793. 0x0a, 0x14, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
  2794. 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62,
  2795. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2796. 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,
  2797. 0x75, 0x6d, 0x52, 0x12, 0x70, 0x72, 0x69, 0x63, 0x65, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
  2798. 0x6c, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x41, 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x74,
  2799. 0x79, 0x70, 0x65, 0x18, 0x0e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  2800. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f,
  2801. 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52,
  2802. 0x08, 0x6a, 0x75, 0x6d, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4d, 0x0a, 0x0f, 0x73, 0x74, 0x61,
  2803. 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x03,
  2804. 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2805. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70,
  2806. 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  2807. 0x74, 0x69, 0x63, 0x73, 0x54, 0x79, 0x70, 0x65, 0x22, 0x64, 0x0a, 0x10, 0x46, 0x6f, 0x72, 0x61,
  2808. 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3a, 0x0a, 0x05,
  2809. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61,
  2810. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2811. 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x4b, 0x69, 0x6e,
  2812. 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65,
  2813. 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x68,
  2814. 0x0a, 0x12, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65,
  2815. 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20,
  2816. 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2817. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c,
  2818. 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c,
  2819. 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  2820. 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x64, 0x0a, 0x10, 0x4a, 0x75, 0x6d, 0x70,
  2821. 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3a, 0x0a, 0x05,
  2822. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61,
  2823. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2824. 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e,
  2825. 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65,
  2826. 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x74,
  2827. 0x0a, 0x18, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61,
  2828. 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x42, 0x0a, 0x05, 0x76, 0x61,
  2829. 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  2830. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61,
  2831. 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65,
  2832. 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14,
  2833. 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c,
  2834. 0x61, 0x62, 0x65, 0x6c, 0x22, 0x74, 0x0a, 0x18, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61,
  2835. 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d,
  2836. 0x12, 0x42, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
  2837. 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2838. 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
  2839. 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76,
  2840. 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20,
  2841. 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x58, 0x0a, 0x0a, 0x49, 0x73,
  2842. 0x53, 0x68, 0x6f, 0x77, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x34, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  2843. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2844. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68,
  2845. 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14,
  2846. 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c,
  2847. 0x61, 0x62, 0x65, 0x6c, 0x22, 0x62, 0x0a, 0x0f, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54,
  2848. 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x39, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2849. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2850. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75,
  2851. 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c,
  2852. 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  2853. 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x3f, 0x0a, 0x11, 0x46, 0x6f, 0x72, 0x6d,
  2854. 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x14, 0x0a,
  2855. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61,
  2856. 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01,
  2857. 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0xbf, 0x02, 0x0a, 0x13, 0x43, 0x61,
  2858. 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x53, 0x79, 0x6e, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2859. 0x74, 0x12, 0x19, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x5f, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20,
  2860. 0x01, 0x28, 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x12, 0x1d, 0x0a, 0x0a,
  2861. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  2862. 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70,
  2863. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
  2864. 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65,
  2865. 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70,
  2866. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  2867. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a,
  2868. 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e,
  2869. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77,
  2870. 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2871. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f,
  2872. 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x3b,
  2873. 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  2874. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2875. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  2876. 0x64, 0x52, 0x08, 0x69, 0x73, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  2877. 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x22, 0x6a, 0x0a, 0x15, 0x43,
  2878. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71,
  2879. 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x5f, 0x77, 0x6f, 0x72, 0x64,
  2880. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x12,
  2881. 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  2882. 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x17,
  2883. 0x0a, 0x07, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
  2884. 0x06, 0x64, 0x61, 0x74, 0x61, 0x49, 0x64, 0x22, 0x68, 0x0a, 0x16, 0x46, 0x65, 0x65, 0x64, 0x46,
  2885. 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x53, 0x79, 0x6e, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2886. 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18,
  2887. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64,
  2888. 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04,
  2889. 0x70, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a,
  2890. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a,
  2891. 0x65, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2892. 0x50, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2893. }
  2894. var (
  2895. file_backend_operation_pasture_proto_rawDescOnce sync.Once
  2896. file_backend_operation_pasture_proto_rawDescData = file_backend_operation_pasture_proto_rawDesc
  2897. )
  2898. func file_backend_operation_pasture_proto_rawDescGZIP() []byte {
  2899. file_backend_operation_pasture_proto_rawDescOnce.Do(func() {
  2900. file_backend_operation_pasture_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_pasture_proto_rawDescData)
  2901. })
  2902. return file_backend_operation_pasture_proto_rawDescData
  2903. }
  2904. var file_backend_operation_pasture_proto_msgTypes = make([]protoimpl.MessageInfo, 37)
  2905. var file_backend_operation_pasture_proto_goTypes = []interface{}{
  2906. (*AddPastureRequest)(nil), // 0: backend.operation.AddPastureRequest
  2907. (*SearchPastureRequest)(nil), // 1: backend.operation.SearchPastureRequest
  2908. (*SearchPastureResponse)(nil), // 2: backend.operation.SearchPastureResponse
  2909. (*SearchPastureData)(nil), // 3: backend.operation.SearchPastureData
  2910. (*UserPasture)(nil), // 4: backend.operation.UserPasture
  2911. (*IsShowGroupPasture)(nil), // 5: backend.operation.IsShowGroupPasture
  2912. (*AddCattleCategoryRequest)(nil), // 6: backend.operation.AddCattleCategoryRequest
  2913. (*IsShowCattleCategory)(nil), // 7: backend.operation.IsShowCattleCategory
  2914. (*SearchCattleCategoryRequest)(nil), // 8: backend.operation.SearchCattleCategoryRequest
  2915. (*SearchCattleCategoryResponse)(nil), // 9: backend.operation.SearchCattleCategoryResponse
  2916. (*SearchCattleCategoryData)(nil), // 10: backend.operation.SearchCattleCategoryData
  2917. (*AddForageCategoryRequest)(nil), // 11: backend.operation.AddForageCategoryRequest
  2918. (*IsShowForageCategory)(nil), // 12: backend.operation.IsShowForageCategory
  2919. (*SearchForageCategoryRequest)(nil), // 13: backend.operation.SearchForageCategoryRequest
  2920. (*SearchForageCategoryResponse)(nil), // 14: backend.operation.SearchForageCategoryResponse
  2921. (*SearchForageCategoryData)(nil), // 15: backend.operation.SearchForageCategoryData
  2922. (*AddForageRequest)(nil), // 16: backend.operation.AddForageRequest
  2923. (*SearchForageListRequest)(nil), // 17: backend.operation.SearchForageListRequest
  2924. (*ForageListSortRequest)(nil), // 18: backend.operation.ForageListSortRequest
  2925. (*ForageListSort)(nil), // 19: backend.operation.ForageListSort
  2926. (*SmallMaterialRequest)(nil), // 20: backend.operation.SmallMaterialRequest
  2927. (*SearchForageListResponse)(nil), // 21: backend.operation.SearchForageListResponse
  2928. (*SearchForageList)(nil), // 22: backend.operation.SearchForageList
  2929. (*IsShowForage)(nil), // 23: backend.operation.IsShowForage
  2930. (*ForageEnumListResponse)(nil), // 24: backend.operation.ForageEnumListResponse
  2931. (*ForageEnumList)(nil), // 25: backend.operation.ForageEnumList
  2932. (*ForageSourceEnum)(nil), // 26: backend.operation.ForageSourceEnum
  2933. (*ForagePlanTypeEnum)(nil), // 27: backend.operation.ForagePlanTypeEnum
  2934. (*JumpDelaTypeEnum)(nil), // 28: backend.operation.JumpDelaTypeEnum
  2935. (*CattleParentCategoryEnum)(nil), // 29: backend.operation.CattleParentCategoryEnum
  2936. (*ForageParentCategoryEnum)(nil), // 30: backend.operation.ForageParentCategoryEnum
  2937. (*IsShowEnum)(nil), // 31: backend.operation.IsShowEnum
  2938. (*FormulaTypeEnum)(nil), // 32: backend.operation.FormulaTypeEnum
  2939. (*FormulaOptionEnum)(nil), // 33: backend.operation.FormulaOptionEnum
  2940. (*CategorySyncRequest)(nil), // 34: backend.operation.CategorySyncRequest
  2941. (*CategoryDeleteRequest)(nil), // 35: backend.operation.CategoryDeleteRequest
  2942. (*FeedFormulaSyncRequest)(nil), // 36: backend.operation.FeedFormulaSyncRequest
  2943. (IsShow_Kind)(0), // 37: backend.operation.IsShow.Kind
  2944. (*PaginationModel)(nil), // 38: backend.operation.PaginationModel
  2945. (CattleCategoryParent_Kind)(0), // 39: backend.operation.CattleCategoryParent.Kind
  2946. (ForageCategoryParent_Kind)(0), // 40: backend.operation.ForageCategoryParent.Kind
  2947. (ForageSource_Kind)(0), // 41: backend.operation.ForageSource.Kind
  2948. (ForagePlanType_Kind)(0), // 42: backend.operation.ForagePlanType.Kind
  2949. (JumpDelaType_Kind)(0), // 43: backend.operation.JumpDelaType.Kind
  2950. (FormulaType_Kind)(0), // 44: backend.operation.FormulaType.Kind
  2951. }
  2952. var file_backend_operation_pasture_proto_depIdxs = []int32{
  2953. 37, // 0: backend.operation.AddPastureRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2954. 38, // 1: backend.operation.SearchPastureRequest.pagination:type_name -> backend.operation.PaginationModel
  2955. 3, // 2: backend.operation.SearchPastureResponse.data:type_name -> backend.operation.SearchPastureData
  2956. 0, // 3: backend.operation.SearchPastureData.list:type_name -> backend.operation.AddPastureRequest
  2957. 37, // 4: backend.operation.IsShowGroupPasture.is_show:type_name -> backend.operation.IsShow.Kind
  2958. 39, // 5: backend.operation.AddCattleCategoryRequest.parent_id:type_name -> backend.operation.CattleCategoryParent.Kind
  2959. 37, // 6: backend.operation.AddCattleCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2960. 37, // 7: backend.operation.IsShowCattleCategory.is_show:type_name -> backend.operation.IsShow.Kind
  2961. 37, // 8: backend.operation.SearchCattleCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2962. 38, // 9: backend.operation.SearchCattleCategoryRequest.pagination:type_name -> backend.operation.PaginationModel
  2963. 10, // 10: backend.operation.SearchCattleCategoryResponse.data:type_name -> backend.operation.SearchCattleCategoryData
  2964. 6, // 11: backend.operation.SearchCattleCategoryData.list:type_name -> backend.operation.AddCattleCategoryRequest
  2965. 40, // 12: backend.operation.AddForageCategoryRequest.parent_id:type_name -> backend.operation.ForageCategoryParent.Kind
  2966. 37, // 13: backend.operation.AddForageCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2967. 37, // 14: backend.operation.IsShowForageCategory.is_show:type_name -> backend.operation.IsShow.Kind
  2968. 37, // 15: backend.operation.SearchForageCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2969. 38, // 16: backend.operation.SearchForageCategoryRequest.pagination:type_name -> backend.operation.PaginationModel
  2970. 15, // 17: backend.operation.SearchForageCategoryResponse.data:type_name -> backend.operation.SearchForageCategoryData
  2971. 11, // 18: backend.operation.SearchForageCategoryData.list:type_name -> backend.operation.AddForageCategoryRequest
  2972. 41, // 19: backend.operation.AddForageRequest.forage_source_id:type_name -> backend.operation.ForageSource.Kind
  2973. 42, // 20: backend.operation.AddForageRequest.plan_type_id:type_name -> backend.operation.ForagePlanType.Kind
  2974. 43, // 21: backend.operation.AddForageRequest.jump_delay:type_name -> backend.operation.JumpDelaType.Kind
  2975. 37, // 22: backend.operation.AddForageRequest.confirm_start:type_name -> backend.operation.IsShow.Kind
  2976. 37, // 23: backend.operation.AddForageRequest.jmp:type_name -> backend.operation.IsShow.Kind
  2977. 37, // 24: backend.operation.AddForageRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2978. 37, // 25: backend.operation.SearchForageListRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2979. 43, // 26: backend.operation.SearchForageListRequest.jump_delay:type_name -> backend.operation.JumpDelaType.Kind
  2980. 38, // 27: backend.operation.SearchForageListRequest.pagination:type_name -> backend.operation.PaginationModel
  2981. 19, // 28: backend.operation.ForageListSortRequest.list:type_name -> backend.operation.ForageListSort
  2982. 22, // 29: backend.operation.SearchForageListResponse.data:type_name -> backend.operation.SearchForageList
  2983. 16, // 30: backend.operation.SearchForageList.list:type_name -> backend.operation.AddForageRequest
  2984. 37, // 31: backend.operation.IsShowForage.is_show:type_name -> backend.operation.IsShow.Kind
  2985. 25, // 32: backend.operation.ForageEnumListResponse.data:type_name -> backend.operation.ForageEnumList
  2986. 26, // 33: backend.operation.ForageEnumList.forage_source:type_name -> backend.operation.ForageSourceEnum
  2987. 27, // 34: backend.operation.ForageEnumList.forage_plan_type:type_name -> backend.operation.ForagePlanTypeEnum
  2988. 28, // 35: backend.operation.ForageEnumList.jump_dela_type:type_name -> backend.operation.JumpDelaTypeEnum
  2989. 29, // 36: backend.operation.ForageEnumList.cattle_parent_category:type_name -> backend.operation.CattleParentCategoryEnum
  2990. 30, // 37: backend.operation.ForageEnumList.forage_parent_category:type_name -> backend.operation.ForageParentCategoryEnum
  2991. 31, // 38: backend.operation.ForageEnumList.is_show:type_name -> backend.operation.IsShowEnum
  2992. 32, // 39: backend.operation.ForageEnumList.formula_type:type_name -> backend.operation.FormulaTypeEnum
  2993. 33, // 40: backend.operation.ForageEnumList.formula_list:type_name -> backend.operation.FormulaOptionEnum
  2994. 31, // 41: backend.operation.ForageEnumList.confirm_start:type_name -> backend.operation.IsShowEnum
  2995. 33, // 42: backend.operation.ForageEnumList.formulation_evaluation:type_name -> backend.operation.FormulaOptionEnum
  2996. 33, // 43: backend.operation.ForageEnumList.use_materials_list:type_name -> backend.operation.FormulaOptionEnum
  2997. 33, // 44: backend.operation.ForageEnumList.use_materials_type:type_name -> backend.operation.FormulaOptionEnum
  2998. 33, // 45: backend.operation.ForageEnumList.price_materials_type:type_name -> backend.operation.FormulaOptionEnum
  2999. 33, // 46: backend.operation.ForageEnumList.jump_type:type_name -> backend.operation.FormulaOptionEnum
  3000. 33, // 47: backend.operation.ForageEnumList.statistics_type:type_name -> backend.operation.FormulaOptionEnum
  3001. 41, // 48: backend.operation.ForageSourceEnum.value:type_name -> backend.operation.ForageSource.Kind
  3002. 42, // 49: backend.operation.ForagePlanTypeEnum.value:type_name -> backend.operation.ForagePlanType.Kind
  3003. 43, // 50: backend.operation.JumpDelaTypeEnum.value:type_name -> backend.operation.JumpDelaType.Kind
  3004. 39, // 51: backend.operation.CattleParentCategoryEnum.value:type_name -> backend.operation.CattleCategoryParent.Kind
  3005. 40, // 52: backend.operation.ForageParentCategoryEnum.value:type_name -> backend.operation.ForageCategoryParent.Kind
  3006. 37, // 53: backend.operation.IsShowEnum.value:type_name -> backend.operation.IsShow.Kind
  3007. 44, // 54: backend.operation.FormulaTypeEnum.value:type_name -> backend.operation.FormulaType.Kind
  3008. 37, // 55: backend.operation.CategorySyncRequest.is_show:type_name -> backend.operation.IsShow.Kind
  3009. 37, // 56: backend.operation.CategorySyncRequest.is_delete:type_name -> backend.operation.IsShow.Kind
  3010. 57, // [57:57] is the sub-list for method output_type
  3011. 57, // [57:57] is the sub-list for method input_type
  3012. 57, // [57:57] is the sub-list for extension type_name
  3013. 57, // [57:57] is the sub-list for extension extendee
  3014. 0, // [0:57] is the sub-list for field type_name
  3015. }
  3016. func init() { file_backend_operation_pasture_proto_init() }
  3017. func file_backend_operation_pasture_proto_init() {
  3018. if File_backend_operation_pasture_proto != nil {
  3019. return
  3020. }
  3021. file_backend_operation_enum_proto_init()
  3022. file_backend_operation_pagination_proto_init()
  3023. if !protoimpl.UnsafeEnabled {
  3024. file_backend_operation_pasture_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3025. switch v := v.(*AddPastureRequest); i {
  3026. case 0:
  3027. return &v.state
  3028. case 1:
  3029. return &v.sizeCache
  3030. case 2:
  3031. return &v.unknownFields
  3032. default:
  3033. return nil
  3034. }
  3035. }
  3036. file_backend_operation_pasture_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3037. switch v := v.(*SearchPastureRequest); i {
  3038. case 0:
  3039. return &v.state
  3040. case 1:
  3041. return &v.sizeCache
  3042. case 2:
  3043. return &v.unknownFields
  3044. default:
  3045. return nil
  3046. }
  3047. }
  3048. file_backend_operation_pasture_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3049. switch v := v.(*SearchPastureResponse); i {
  3050. case 0:
  3051. return &v.state
  3052. case 1:
  3053. return &v.sizeCache
  3054. case 2:
  3055. return &v.unknownFields
  3056. default:
  3057. return nil
  3058. }
  3059. }
  3060. file_backend_operation_pasture_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3061. switch v := v.(*SearchPastureData); i {
  3062. case 0:
  3063. return &v.state
  3064. case 1:
  3065. return &v.sizeCache
  3066. case 2:
  3067. return &v.unknownFields
  3068. default:
  3069. return nil
  3070. }
  3071. }
  3072. file_backend_operation_pasture_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3073. switch v := v.(*UserPasture); i {
  3074. case 0:
  3075. return &v.state
  3076. case 1:
  3077. return &v.sizeCache
  3078. case 2:
  3079. return &v.unknownFields
  3080. default:
  3081. return nil
  3082. }
  3083. }
  3084. file_backend_operation_pasture_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3085. switch v := v.(*IsShowGroupPasture); i {
  3086. case 0:
  3087. return &v.state
  3088. case 1:
  3089. return &v.sizeCache
  3090. case 2:
  3091. return &v.unknownFields
  3092. default:
  3093. return nil
  3094. }
  3095. }
  3096. file_backend_operation_pasture_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3097. switch v := v.(*AddCattleCategoryRequest); i {
  3098. case 0:
  3099. return &v.state
  3100. case 1:
  3101. return &v.sizeCache
  3102. case 2:
  3103. return &v.unknownFields
  3104. default:
  3105. return nil
  3106. }
  3107. }
  3108. file_backend_operation_pasture_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3109. switch v := v.(*IsShowCattleCategory); i {
  3110. case 0:
  3111. return &v.state
  3112. case 1:
  3113. return &v.sizeCache
  3114. case 2:
  3115. return &v.unknownFields
  3116. default:
  3117. return nil
  3118. }
  3119. }
  3120. file_backend_operation_pasture_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3121. switch v := v.(*SearchCattleCategoryRequest); i {
  3122. case 0:
  3123. return &v.state
  3124. case 1:
  3125. return &v.sizeCache
  3126. case 2:
  3127. return &v.unknownFields
  3128. default:
  3129. return nil
  3130. }
  3131. }
  3132. file_backend_operation_pasture_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3133. switch v := v.(*SearchCattleCategoryResponse); i {
  3134. case 0:
  3135. return &v.state
  3136. case 1:
  3137. return &v.sizeCache
  3138. case 2:
  3139. return &v.unknownFields
  3140. default:
  3141. return nil
  3142. }
  3143. }
  3144. file_backend_operation_pasture_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3145. switch v := v.(*SearchCattleCategoryData); i {
  3146. case 0:
  3147. return &v.state
  3148. case 1:
  3149. return &v.sizeCache
  3150. case 2:
  3151. return &v.unknownFields
  3152. default:
  3153. return nil
  3154. }
  3155. }
  3156. file_backend_operation_pasture_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3157. switch v := v.(*AddForageCategoryRequest); i {
  3158. case 0:
  3159. return &v.state
  3160. case 1:
  3161. return &v.sizeCache
  3162. case 2:
  3163. return &v.unknownFields
  3164. default:
  3165. return nil
  3166. }
  3167. }
  3168. file_backend_operation_pasture_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3169. switch v := v.(*IsShowForageCategory); i {
  3170. case 0:
  3171. return &v.state
  3172. case 1:
  3173. return &v.sizeCache
  3174. case 2:
  3175. return &v.unknownFields
  3176. default:
  3177. return nil
  3178. }
  3179. }
  3180. file_backend_operation_pasture_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3181. switch v := v.(*SearchForageCategoryRequest); i {
  3182. case 0:
  3183. return &v.state
  3184. case 1:
  3185. return &v.sizeCache
  3186. case 2:
  3187. return &v.unknownFields
  3188. default:
  3189. return nil
  3190. }
  3191. }
  3192. file_backend_operation_pasture_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3193. switch v := v.(*SearchForageCategoryResponse); i {
  3194. case 0:
  3195. return &v.state
  3196. case 1:
  3197. return &v.sizeCache
  3198. case 2:
  3199. return &v.unknownFields
  3200. default:
  3201. return nil
  3202. }
  3203. }
  3204. file_backend_operation_pasture_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3205. switch v := v.(*SearchForageCategoryData); i {
  3206. case 0:
  3207. return &v.state
  3208. case 1:
  3209. return &v.sizeCache
  3210. case 2:
  3211. return &v.unknownFields
  3212. default:
  3213. return nil
  3214. }
  3215. }
  3216. file_backend_operation_pasture_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3217. switch v := v.(*AddForageRequest); i {
  3218. case 0:
  3219. return &v.state
  3220. case 1:
  3221. return &v.sizeCache
  3222. case 2:
  3223. return &v.unknownFields
  3224. default:
  3225. return nil
  3226. }
  3227. }
  3228. file_backend_operation_pasture_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3229. switch v := v.(*SearchForageListRequest); i {
  3230. case 0:
  3231. return &v.state
  3232. case 1:
  3233. return &v.sizeCache
  3234. case 2:
  3235. return &v.unknownFields
  3236. default:
  3237. return nil
  3238. }
  3239. }
  3240. file_backend_operation_pasture_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3241. switch v := v.(*ForageListSortRequest); i {
  3242. case 0:
  3243. return &v.state
  3244. case 1:
  3245. return &v.sizeCache
  3246. case 2:
  3247. return &v.unknownFields
  3248. default:
  3249. return nil
  3250. }
  3251. }
  3252. file_backend_operation_pasture_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3253. switch v := v.(*ForageListSort); i {
  3254. case 0:
  3255. return &v.state
  3256. case 1:
  3257. return &v.sizeCache
  3258. case 2:
  3259. return &v.unknownFields
  3260. default:
  3261. return nil
  3262. }
  3263. }
  3264. file_backend_operation_pasture_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3265. switch v := v.(*SmallMaterialRequest); i {
  3266. case 0:
  3267. return &v.state
  3268. case 1:
  3269. return &v.sizeCache
  3270. case 2:
  3271. return &v.unknownFields
  3272. default:
  3273. return nil
  3274. }
  3275. }
  3276. file_backend_operation_pasture_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3277. switch v := v.(*SearchForageListResponse); i {
  3278. case 0:
  3279. return &v.state
  3280. case 1:
  3281. return &v.sizeCache
  3282. case 2:
  3283. return &v.unknownFields
  3284. default:
  3285. return nil
  3286. }
  3287. }
  3288. file_backend_operation_pasture_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3289. switch v := v.(*SearchForageList); i {
  3290. case 0:
  3291. return &v.state
  3292. case 1:
  3293. return &v.sizeCache
  3294. case 2:
  3295. return &v.unknownFields
  3296. default:
  3297. return nil
  3298. }
  3299. }
  3300. file_backend_operation_pasture_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3301. switch v := v.(*IsShowForage); i {
  3302. case 0:
  3303. return &v.state
  3304. case 1:
  3305. return &v.sizeCache
  3306. case 2:
  3307. return &v.unknownFields
  3308. default:
  3309. return nil
  3310. }
  3311. }
  3312. file_backend_operation_pasture_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3313. switch v := v.(*ForageEnumListResponse); i {
  3314. case 0:
  3315. return &v.state
  3316. case 1:
  3317. return &v.sizeCache
  3318. case 2:
  3319. return &v.unknownFields
  3320. default:
  3321. return nil
  3322. }
  3323. }
  3324. file_backend_operation_pasture_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3325. switch v := v.(*ForageEnumList); i {
  3326. case 0:
  3327. return &v.state
  3328. case 1:
  3329. return &v.sizeCache
  3330. case 2:
  3331. return &v.unknownFields
  3332. default:
  3333. return nil
  3334. }
  3335. }
  3336. file_backend_operation_pasture_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3337. switch v := v.(*ForageSourceEnum); i {
  3338. case 0:
  3339. return &v.state
  3340. case 1:
  3341. return &v.sizeCache
  3342. case 2:
  3343. return &v.unknownFields
  3344. default:
  3345. return nil
  3346. }
  3347. }
  3348. file_backend_operation_pasture_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3349. switch v := v.(*ForagePlanTypeEnum); i {
  3350. case 0:
  3351. return &v.state
  3352. case 1:
  3353. return &v.sizeCache
  3354. case 2:
  3355. return &v.unknownFields
  3356. default:
  3357. return nil
  3358. }
  3359. }
  3360. file_backend_operation_pasture_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3361. switch v := v.(*JumpDelaTypeEnum); i {
  3362. case 0:
  3363. return &v.state
  3364. case 1:
  3365. return &v.sizeCache
  3366. case 2:
  3367. return &v.unknownFields
  3368. default:
  3369. return nil
  3370. }
  3371. }
  3372. file_backend_operation_pasture_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3373. switch v := v.(*CattleParentCategoryEnum); i {
  3374. case 0:
  3375. return &v.state
  3376. case 1:
  3377. return &v.sizeCache
  3378. case 2:
  3379. return &v.unknownFields
  3380. default:
  3381. return nil
  3382. }
  3383. }
  3384. file_backend_operation_pasture_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3385. switch v := v.(*ForageParentCategoryEnum); i {
  3386. case 0:
  3387. return &v.state
  3388. case 1:
  3389. return &v.sizeCache
  3390. case 2:
  3391. return &v.unknownFields
  3392. default:
  3393. return nil
  3394. }
  3395. }
  3396. file_backend_operation_pasture_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3397. switch v := v.(*IsShowEnum); i {
  3398. case 0:
  3399. return &v.state
  3400. case 1:
  3401. return &v.sizeCache
  3402. case 2:
  3403. return &v.unknownFields
  3404. default:
  3405. return nil
  3406. }
  3407. }
  3408. file_backend_operation_pasture_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3409. switch v := v.(*FormulaTypeEnum); i {
  3410. case 0:
  3411. return &v.state
  3412. case 1:
  3413. return &v.sizeCache
  3414. case 2:
  3415. return &v.unknownFields
  3416. default:
  3417. return nil
  3418. }
  3419. }
  3420. file_backend_operation_pasture_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3421. switch v := v.(*FormulaOptionEnum); i {
  3422. case 0:
  3423. return &v.state
  3424. case 1:
  3425. return &v.sizeCache
  3426. case 2:
  3427. return &v.unknownFields
  3428. default:
  3429. return nil
  3430. }
  3431. }
  3432. file_backend_operation_pasture_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  3433. switch v := v.(*CategorySyncRequest); i {
  3434. case 0:
  3435. return &v.state
  3436. case 1:
  3437. return &v.sizeCache
  3438. case 2:
  3439. return &v.unknownFields
  3440. default:
  3441. return nil
  3442. }
  3443. }
  3444. file_backend_operation_pasture_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  3445. switch v := v.(*CategoryDeleteRequest); i {
  3446. case 0:
  3447. return &v.state
  3448. case 1:
  3449. return &v.sizeCache
  3450. case 2:
  3451. return &v.unknownFields
  3452. default:
  3453. return nil
  3454. }
  3455. }
  3456. file_backend_operation_pasture_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  3457. switch v := v.(*FeedFormulaSyncRequest); i {
  3458. case 0:
  3459. return &v.state
  3460. case 1:
  3461. return &v.sizeCache
  3462. case 2:
  3463. return &v.unknownFields
  3464. default:
  3465. return nil
  3466. }
  3467. }
  3468. }
  3469. type x struct{}
  3470. out := protoimpl.TypeBuilder{
  3471. File: protoimpl.DescBuilder{
  3472. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3473. RawDescriptor: file_backend_operation_pasture_proto_rawDesc,
  3474. NumEnums: 0,
  3475. NumMessages: 37,
  3476. NumExtensions: 0,
  3477. NumServices: 0,
  3478. },
  3479. GoTypes: file_backend_operation_pasture_proto_goTypes,
  3480. DependencyIndexes: file_backend_operation_pasture_proto_depIdxs,
  3481. MessageInfos: file_backend_operation_pasture_proto_msgTypes,
  3482. }.Build()
  3483. File_backend_operation_pasture_proto = out.File
  3484. file_backend_operation_pasture_proto_rawDesc = nil
  3485. file_backend_operation_pasture_proto_goTypes = nil
  3486. file_backend_operation_pasture_proto_depIdxs = nil
  3487. }