pasture.pb.go 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894
  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. MaterialType int32 `protobuf:"varint,5,opt,name=material_type,json=materialType,proto3" json:"material_type,omitempty"` // 物料类型
  1044. UniqueEncode string `protobuf:"bytes,7,opt,name=unique_encode,json=uniqueEncode,proto3" json:"unique_encode,omitempty"` // 唯一编码
  1045. 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
  1046. ForageSourceName string `protobuf:"bytes,9,opt,name=forage_source_name,json=forageSourceName,proto3" json:"forage_source_name,omitempty"` // 饲料来源名称
  1047. 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
  1048. PlanTypeName string `protobuf:"bytes,11,opt,name=plan_type_name,json=planTypeName,proto3" json:"plan_type_name,omitempty"` // 计划类型名称
  1049. SmallMaterialScale string `protobuf:"bytes,12,opt,name=small_material_scale,json=smallMaterialScale,proto3" json:"small_material_scale,omitempty"` // 小料称
  1050. AllowError int32 `protobuf:"varint,13,opt,name=allow_error,json=allowError,proto3" json:"allow_error,omitempty"` // 允许误差 (单位kg)
  1051. PackageWeight int32 `protobuf:"varint,14,opt,name=package_weight,json=packageWeight,proto3" json:"package_weight,omitempty"` // 包装重量 (单位kg)
  1052. Price int32 `protobuf:"varint,15,opt,name=price,proto3" json:"price,omitempty"` // 单价(单位分)
  1053. JumpWeight int32 `protobuf:"varint,16,opt,name=jump_weight,json=jumpWeight,proto3" json:"jump_weight,omitempty"` // 跳转重量域(单位kg)
  1054. JumpDelay JumpDelaType_Kind `protobuf:"varint,17,opt,name=jump_delay,json=jumpDelay,proto3,enum=backend.operation.JumpDelaType_Kind" json:"jump_delay,omitempty"` // 跳转延迟
  1055. ConfirmStart IsShow_Kind `protobuf:"varint,18,opt,name=confirm_start,json=confirmStart,proto3,enum=backend.operation.IsShow_Kind" json:"confirm_start,omitempty"` // 确认开始
  1056. RelayLocations int32 `protobuf:"varint,19,opt,name=relay_locations,json=relayLocations,proto3" json:"relay_locations,omitempty"` // 继电器位置
  1057. Jmp IsShow_Kind `protobuf:"varint,20,opt,name=jmp,proto3,enum=backend.operation.IsShow_Kind" json:"jmp,omitempty"` // 无上域
  1058. Backup1 string `protobuf:"bytes,21,opt,name=backup1,proto3" json:"backup1,omitempty"` // 备用字段1
  1059. Backup2 string `protobuf:"bytes,22,opt,name=backup2,proto3" json:"backup2,omitempty"` // 备用字段2
  1060. Backup3 string `protobuf:"bytes,23,opt,name=backup3,proto3" json:"backup3,omitempty"` // 备用字段3
  1061. CreatedAt int32 `protobuf:"varint,24,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  1062. CreatedAtFormat string `protobuf:"bytes,25,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式化
  1063. IsShow IsShow_Kind `protobuf:"varint,26,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  1064. }
  1065. func (x *AddForageRequest) Reset() {
  1066. *x = AddForageRequest{}
  1067. if protoimpl.UnsafeEnabled {
  1068. mi := &file_backend_operation_pasture_proto_msgTypes[16]
  1069. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1070. ms.StoreMessageInfo(mi)
  1071. }
  1072. }
  1073. func (x *AddForageRequest) String() string {
  1074. return protoimpl.X.MessageStringOf(x)
  1075. }
  1076. func (*AddForageRequest) ProtoMessage() {}
  1077. func (x *AddForageRequest) ProtoReflect() protoreflect.Message {
  1078. mi := &file_backend_operation_pasture_proto_msgTypes[16]
  1079. if protoimpl.UnsafeEnabled && x != nil {
  1080. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1081. if ms.LoadMessageInfo() == nil {
  1082. ms.StoreMessageInfo(mi)
  1083. }
  1084. return ms
  1085. }
  1086. return mi.MessageOf(x)
  1087. }
  1088. // Deprecated: Use AddForageRequest.ProtoReflect.Descriptor instead.
  1089. func (*AddForageRequest) Descriptor() ([]byte, []int) {
  1090. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{16}
  1091. }
  1092. func (x *AddForageRequest) GetId() int32 {
  1093. if x != nil {
  1094. return x.Id
  1095. }
  1096. return 0
  1097. }
  1098. func (x *AddForageRequest) GetName() string {
  1099. if x != nil {
  1100. return x.Name
  1101. }
  1102. return ""
  1103. }
  1104. func (x *AddForageRequest) GetCategoryId() int32 {
  1105. if x != nil {
  1106. return x.CategoryId
  1107. }
  1108. return 0
  1109. }
  1110. func (x *AddForageRequest) GetCategoryName() string {
  1111. if x != nil {
  1112. return x.CategoryName
  1113. }
  1114. return ""
  1115. }
  1116. func (x *AddForageRequest) GetMaterialType() int32 {
  1117. if x != nil {
  1118. return x.MaterialType
  1119. }
  1120. return 0
  1121. }
  1122. func (x *AddForageRequest) GetUniqueEncode() string {
  1123. if x != nil {
  1124. return x.UniqueEncode
  1125. }
  1126. return ""
  1127. }
  1128. func (x *AddForageRequest) GetForageSourceId() ForageSource_Kind {
  1129. if x != nil {
  1130. return x.ForageSourceId
  1131. }
  1132. return ForageSource_INVALID
  1133. }
  1134. func (x *AddForageRequest) GetForageSourceName() string {
  1135. if x != nil {
  1136. return x.ForageSourceName
  1137. }
  1138. return ""
  1139. }
  1140. func (x *AddForageRequest) GetPlanTypeId() ForagePlanType_Kind {
  1141. if x != nil {
  1142. return x.PlanTypeId
  1143. }
  1144. return ForagePlanType_INVALID
  1145. }
  1146. func (x *AddForageRequest) GetPlanTypeName() string {
  1147. if x != nil {
  1148. return x.PlanTypeName
  1149. }
  1150. return ""
  1151. }
  1152. func (x *AddForageRequest) GetSmallMaterialScale() string {
  1153. if x != nil {
  1154. return x.SmallMaterialScale
  1155. }
  1156. return ""
  1157. }
  1158. func (x *AddForageRequest) GetAllowError() int32 {
  1159. if x != nil {
  1160. return x.AllowError
  1161. }
  1162. return 0
  1163. }
  1164. func (x *AddForageRequest) GetPackageWeight() int32 {
  1165. if x != nil {
  1166. return x.PackageWeight
  1167. }
  1168. return 0
  1169. }
  1170. func (x *AddForageRequest) GetPrice() int32 {
  1171. if x != nil {
  1172. return x.Price
  1173. }
  1174. return 0
  1175. }
  1176. func (x *AddForageRequest) GetJumpWeight() int32 {
  1177. if x != nil {
  1178. return x.JumpWeight
  1179. }
  1180. return 0
  1181. }
  1182. func (x *AddForageRequest) GetJumpDelay() JumpDelaType_Kind {
  1183. if x != nil {
  1184. return x.JumpDelay
  1185. }
  1186. return JumpDelaType_INVALID
  1187. }
  1188. func (x *AddForageRequest) GetConfirmStart() IsShow_Kind {
  1189. if x != nil {
  1190. return x.ConfirmStart
  1191. }
  1192. return IsShow_INVALID
  1193. }
  1194. func (x *AddForageRequest) GetRelayLocations() int32 {
  1195. if x != nil {
  1196. return x.RelayLocations
  1197. }
  1198. return 0
  1199. }
  1200. func (x *AddForageRequest) GetJmp() IsShow_Kind {
  1201. if x != nil {
  1202. return x.Jmp
  1203. }
  1204. return IsShow_INVALID
  1205. }
  1206. func (x *AddForageRequest) GetBackup1() string {
  1207. if x != nil {
  1208. return x.Backup1
  1209. }
  1210. return ""
  1211. }
  1212. func (x *AddForageRequest) GetBackup2() string {
  1213. if x != nil {
  1214. return x.Backup2
  1215. }
  1216. return ""
  1217. }
  1218. func (x *AddForageRequest) GetBackup3() string {
  1219. if x != nil {
  1220. return x.Backup3
  1221. }
  1222. return ""
  1223. }
  1224. func (x *AddForageRequest) GetCreatedAt() int32 {
  1225. if x != nil {
  1226. return x.CreatedAt
  1227. }
  1228. return 0
  1229. }
  1230. func (x *AddForageRequest) GetCreatedAtFormat() string {
  1231. if x != nil {
  1232. return x.CreatedAtFormat
  1233. }
  1234. return ""
  1235. }
  1236. func (x *AddForageRequest) GetIsShow() IsShow_Kind {
  1237. if x != nil {
  1238. return x.IsShow
  1239. }
  1240. return IsShow_INVALID
  1241. }
  1242. type SearchForageListRequest struct {
  1243. state protoimpl.MessageState
  1244. sizeCache protoimpl.SizeCache
  1245. unknownFields protoimpl.UnknownFields
  1246. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // 饲料名称
  1247. CategoryId int32 `protobuf:"varint,2,opt,name=category_id,json=categoryId,proto3" json:"category_id,omitempty"` // 饲料分类id
  1248. ForageSourceId uint32 `protobuf:"varint,3,opt,name=forage_source_id,json=forageSourceId,proto3" json:"forage_source_id,omitempty"` // 饲料来源
  1249. IsShow IsShow_Kind `protobuf:"varint,4,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  1250. AllowError uint32 `protobuf:"varint,5,opt,name=allow_error,json=allowError,proto3" json:"allow_error,omitempty"` // 允许误差
  1251. JumpWeight uint32 `protobuf:"varint,6,opt,name=jump_weight,json=jumpWeight,proto3" json:"jump_weight,omitempty"` // 跳转重量域
  1252. JumpDelay JumpDelaType_Kind `protobuf:"varint,7,opt,name=jump_delay,json=jumpDelay,proto3,enum=backend.operation.JumpDelaType_Kind" json:"jump_delay,omitempty"` // 跳转延迟
  1253. Pagination *PaginationModel `protobuf:"bytes,8,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1254. }
  1255. func (x *SearchForageListRequest) Reset() {
  1256. *x = SearchForageListRequest{}
  1257. if protoimpl.UnsafeEnabled {
  1258. mi := &file_backend_operation_pasture_proto_msgTypes[17]
  1259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1260. ms.StoreMessageInfo(mi)
  1261. }
  1262. }
  1263. func (x *SearchForageListRequest) String() string {
  1264. return protoimpl.X.MessageStringOf(x)
  1265. }
  1266. func (*SearchForageListRequest) ProtoMessage() {}
  1267. func (x *SearchForageListRequest) ProtoReflect() protoreflect.Message {
  1268. mi := &file_backend_operation_pasture_proto_msgTypes[17]
  1269. if protoimpl.UnsafeEnabled && x != nil {
  1270. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1271. if ms.LoadMessageInfo() == nil {
  1272. ms.StoreMessageInfo(mi)
  1273. }
  1274. return ms
  1275. }
  1276. return mi.MessageOf(x)
  1277. }
  1278. // Deprecated: Use SearchForageListRequest.ProtoReflect.Descriptor instead.
  1279. func (*SearchForageListRequest) Descriptor() ([]byte, []int) {
  1280. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{17}
  1281. }
  1282. func (x *SearchForageListRequest) GetName() string {
  1283. if x != nil {
  1284. return x.Name
  1285. }
  1286. return ""
  1287. }
  1288. func (x *SearchForageListRequest) GetCategoryId() int32 {
  1289. if x != nil {
  1290. return x.CategoryId
  1291. }
  1292. return 0
  1293. }
  1294. func (x *SearchForageListRequest) GetForageSourceId() uint32 {
  1295. if x != nil {
  1296. return x.ForageSourceId
  1297. }
  1298. return 0
  1299. }
  1300. func (x *SearchForageListRequest) GetIsShow() IsShow_Kind {
  1301. if x != nil {
  1302. return x.IsShow
  1303. }
  1304. return IsShow_INVALID
  1305. }
  1306. func (x *SearchForageListRequest) GetAllowError() uint32 {
  1307. if x != nil {
  1308. return x.AllowError
  1309. }
  1310. return 0
  1311. }
  1312. func (x *SearchForageListRequest) GetJumpWeight() uint32 {
  1313. if x != nil {
  1314. return x.JumpWeight
  1315. }
  1316. return 0
  1317. }
  1318. func (x *SearchForageListRequest) GetJumpDelay() JumpDelaType_Kind {
  1319. if x != nil {
  1320. return x.JumpDelay
  1321. }
  1322. return JumpDelaType_INVALID
  1323. }
  1324. func (x *SearchForageListRequest) GetPagination() *PaginationModel {
  1325. if x != nil {
  1326. return x.Pagination
  1327. }
  1328. return nil
  1329. }
  1330. type ForageListSortRequest struct {
  1331. state protoimpl.MessageState
  1332. sizeCache protoimpl.SizeCache
  1333. unknownFields protoimpl.UnknownFields
  1334. List []*ForageListSort `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1335. }
  1336. func (x *ForageListSortRequest) Reset() {
  1337. *x = ForageListSortRequest{}
  1338. if protoimpl.UnsafeEnabled {
  1339. mi := &file_backend_operation_pasture_proto_msgTypes[18]
  1340. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1341. ms.StoreMessageInfo(mi)
  1342. }
  1343. }
  1344. func (x *ForageListSortRequest) String() string {
  1345. return protoimpl.X.MessageStringOf(x)
  1346. }
  1347. func (*ForageListSortRequest) ProtoMessage() {}
  1348. func (x *ForageListSortRequest) ProtoReflect() protoreflect.Message {
  1349. mi := &file_backend_operation_pasture_proto_msgTypes[18]
  1350. if protoimpl.UnsafeEnabled && x != nil {
  1351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1352. if ms.LoadMessageInfo() == nil {
  1353. ms.StoreMessageInfo(mi)
  1354. }
  1355. return ms
  1356. }
  1357. return mi.MessageOf(x)
  1358. }
  1359. // Deprecated: Use ForageListSortRequest.ProtoReflect.Descriptor instead.
  1360. func (*ForageListSortRequest) Descriptor() ([]byte, []int) {
  1361. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{18}
  1362. }
  1363. func (x *ForageListSortRequest) GetList() []*ForageListSort {
  1364. if x != nil {
  1365. return x.List
  1366. }
  1367. return nil
  1368. }
  1369. type ForageListSort struct {
  1370. state protoimpl.MessageState
  1371. sizeCache protoimpl.SizeCache
  1372. unknownFields protoimpl.UnknownFields
  1373. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1374. Sort int64 `protobuf:"varint,2,opt,name=sort,proto3" json:"sort,omitempty"`
  1375. }
  1376. func (x *ForageListSort) Reset() {
  1377. *x = ForageListSort{}
  1378. if protoimpl.UnsafeEnabled {
  1379. mi := &file_backend_operation_pasture_proto_msgTypes[19]
  1380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1381. ms.StoreMessageInfo(mi)
  1382. }
  1383. }
  1384. func (x *ForageListSort) String() string {
  1385. return protoimpl.X.MessageStringOf(x)
  1386. }
  1387. func (*ForageListSort) ProtoMessage() {}
  1388. func (x *ForageListSort) ProtoReflect() protoreflect.Message {
  1389. mi := &file_backend_operation_pasture_proto_msgTypes[19]
  1390. if protoimpl.UnsafeEnabled && x != nil {
  1391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1392. if ms.LoadMessageInfo() == nil {
  1393. ms.StoreMessageInfo(mi)
  1394. }
  1395. return ms
  1396. }
  1397. return mi.MessageOf(x)
  1398. }
  1399. // Deprecated: Use ForageListSort.ProtoReflect.Descriptor instead.
  1400. func (*ForageListSort) Descriptor() ([]byte, []int) {
  1401. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{19}
  1402. }
  1403. func (x *ForageListSort) GetId() int64 {
  1404. if x != nil {
  1405. return x.Id
  1406. }
  1407. return 0
  1408. }
  1409. func (x *ForageListSort) GetSort() int64 {
  1410. if x != nil {
  1411. return x.Sort
  1412. }
  1413. return 0
  1414. }
  1415. type SmallMaterialRequest struct {
  1416. state protoimpl.MessageState
  1417. sizeCache protoimpl.SizeCache
  1418. unknownFields protoimpl.UnknownFields
  1419. ApiName string `protobuf:"bytes,1,opt,name=api_name,json=apiName,proto3" json:"api_name,omitempty"` // 牧场端接口标识名称
  1420. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1421. InfoName string `protobuf:"bytes,3,opt,name=info_name,json=infoName,proto3" json:"info_name,omitempty"` //
  1422. }
  1423. func (x *SmallMaterialRequest) Reset() {
  1424. *x = SmallMaterialRequest{}
  1425. if protoimpl.UnsafeEnabled {
  1426. mi := &file_backend_operation_pasture_proto_msgTypes[20]
  1427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1428. ms.StoreMessageInfo(mi)
  1429. }
  1430. }
  1431. func (x *SmallMaterialRequest) String() string {
  1432. return protoimpl.X.MessageStringOf(x)
  1433. }
  1434. func (*SmallMaterialRequest) ProtoMessage() {}
  1435. func (x *SmallMaterialRequest) ProtoReflect() protoreflect.Message {
  1436. mi := &file_backend_operation_pasture_proto_msgTypes[20]
  1437. if protoimpl.UnsafeEnabled && x != nil {
  1438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1439. if ms.LoadMessageInfo() == nil {
  1440. ms.StoreMessageInfo(mi)
  1441. }
  1442. return ms
  1443. }
  1444. return mi.MessageOf(x)
  1445. }
  1446. // Deprecated: Use SmallMaterialRequest.ProtoReflect.Descriptor instead.
  1447. func (*SmallMaterialRequest) Descriptor() ([]byte, []int) {
  1448. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{20}
  1449. }
  1450. func (x *SmallMaterialRequest) GetApiName() string {
  1451. if x != nil {
  1452. return x.ApiName
  1453. }
  1454. return ""
  1455. }
  1456. func (x *SmallMaterialRequest) GetPastureId() int32 {
  1457. if x != nil {
  1458. return x.PastureId
  1459. }
  1460. return 0
  1461. }
  1462. func (x *SmallMaterialRequest) GetInfoName() string {
  1463. if x != nil {
  1464. return x.InfoName
  1465. }
  1466. return ""
  1467. }
  1468. type SearchForageListResponse struct {
  1469. state protoimpl.MessageState
  1470. sizeCache protoimpl.SizeCache
  1471. unknownFields protoimpl.UnknownFields
  1472. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1473. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1474. Data *SearchForageList `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1475. }
  1476. func (x *SearchForageListResponse) Reset() {
  1477. *x = SearchForageListResponse{}
  1478. if protoimpl.UnsafeEnabled {
  1479. mi := &file_backend_operation_pasture_proto_msgTypes[21]
  1480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1481. ms.StoreMessageInfo(mi)
  1482. }
  1483. }
  1484. func (x *SearchForageListResponse) String() string {
  1485. return protoimpl.X.MessageStringOf(x)
  1486. }
  1487. func (*SearchForageListResponse) ProtoMessage() {}
  1488. func (x *SearchForageListResponse) ProtoReflect() protoreflect.Message {
  1489. mi := &file_backend_operation_pasture_proto_msgTypes[21]
  1490. if protoimpl.UnsafeEnabled && x != nil {
  1491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1492. if ms.LoadMessageInfo() == nil {
  1493. ms.StoreMessageInfo(mi)
  1494. }
  1495. return ms
  1496. }
  1497. return mi.MessageOf(x)
  1498. }
  1499. // Deprecated: Use SearchForageListResponse.ProtoReflect.Descriptor instead.
  1500. func (*SearchForageListResponse) Descriptor() ([]byte, []int) {
  1501. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{21}
  1502. }
  1503. func (x *SearchForageListResponse) GetCode() int32 {
  1504. if x != nil {
  1505. return x.Code
  1506. }
  1507. return 0
  1508. }
  1509. func (x *SearchForageListResponse) GetMsg() string {
  1510. if x != nil {
  1511. return x.Msg
  1512. }
  1513. return ""
  1514. }
  1515. func (x *SearchForageListResponse) GetData() *SearchForageList {
  1516. if x != nil {
  1517. return x.Data
  1518. }
  1519. return nil
  1520. }
  1521. type SearchForageList struct {
  1522. state protoimpl.MessageState
  1523. sizeCache protoimpl.SizeCache
  1524. unknownFields protoimpl.UnknownFields
  1525. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  1526. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  1527. Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
  1528. List []*AddForageRequest `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
  1529. }
  1530. func (x *SearchForageList) Reset() {
  1531. *x = SearchForageList{}
  1532. if protoimpl.UnsafeEnabled {
  1533. mi := &file_backend_operation_pasture_proto_msgTypes[22]
  1534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1535. ms.StoreMessageInfo(mi)
  1536. }
  1537. }
  1538. func (x *SearchForageList) String() string {
  1539. return protoimpl.X.MessageStringOf(x)
  1540. }
  1541. func (*SearchForageList) ProtoMessage() {}
  1542. func (x *SearchForageList) ProtoReflect() protoreflect.Message {
  1543. mi := &file_backend_operation_pasture_proto_msgTypes[22]
  1544. if protoimpl.UnsafeEnabled && x != nil {
  1545. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1546. if ms.LoadMessageInfo() == nil {
  1547. ms.StoreMessageInfo(mi)
  1548. }
  1549. return ms
  1550. }
  1551. return mi.MessageOf(x)
  1552. }
  1553. // Deprecated: Use SearchForageList.ProtoReflect.Descriptor instead.
  1554. func (*SearchForageList) Descriptor() ([]byte, []int) {
  1555. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{22}
  1556. }
  1557. func (x *SearchForageList) GetPage() int32 {
  1558. if x != nil {
  1559. return x.Page
  1560. }
  1561. return 0
  1562. }
  1563. func (x *SearchForageList) GetPageSize() int32 {
  1564. if x != nil {
  1565. return x.PageSize
  1566. }
  1567. return 0
  1568. }
  1569. func (x *SearchForageList) GetTotal() int32 {
  1570. if x != nil {
  1571. return x.Total
  1572. }
  1573. return 0
  1574. }
  1575. func (x *SearchForageList) GetList() []*AddForageRequest {
  1576. if x != nil {
  1577. return x.List
  1578. }
  1579. return nil
  1580. }
  1581. // 是否启用
  1582. type IsShowForage struct {
  1583. state protoimpl.MessageState
  1584. sizeCache protoimpl.SizeCache
  1585. unknownFields protoimpl.UnknownFields
  1586. ForageId int32 `protobuf:"varint,1,opt,name=forage_id,json=forageId,proto3" json:"forage_id,omitempty"`
  1587. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  1588. }
  1589. func (x *IsShowForage) Reset() {
  1590. *x = IsShowForage{}
  1591. if protoimpl.UnsafeEnabled {
  1592. mi := &file_backend_operation_pasture_proto_msgTypes[23]
  1593. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1594. ms.StoreMessageInfo(mi)
  1595. }
  1596. }
  1597. func (x *IsShowForage) String() string {
  1598. return protoimpl.X.MessageStringOf(x)
  1599. }
  1600. func (*IsShowForage) ProtoMessage() {}
  1601. func (x *IsShowForage) ProtoReflect() protoreflect.Message {
  1602. mi := &file_backend_operation_pasture_proto_msgTypes[23]
  1603. if protoimpl.UnsafeEnabled && x != nil {
  1604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1605. if ms.LoadMessageInfo() == nil {
  1606. ms.StoreMessageInfo(mi)
  1607. }
  1608. return ms
  1609. }
  1610. return mi.MessageOf(x)
  1611. }
  1612. // Deprecated: Use IsShowForage.ProtoReflect.Descriptor instead.
  1613. func (*IsShowForage) Descriptor() ([]byte, []int) {
  1614. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{23}
  1615. }
  1616. func (x *IsShowForage) GetForageId() int32 {
  1617. if x != nil {
  1618. return x.ForageId
  1619. }
  1620. return 0
  1621. }
  1622. func (x *IsShowForage) GetIsShow() IsShow_Kind {
  1623. if x != nil {
  1624. return x.IsShow
  1625. }
  1626. return IsShow_INVALID
  1627. }
  1628. type ForageEnumListResponse struct {
  1629. state protoimpl.MessageState
  1630. sizeCache protoimpl.SizeCache
  1631. unknownFields protoimpl.UnknownFields
  1632. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1633. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1634. Data *ForageEnumList `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1635. }
  1636. func (x *ForageEnumListResponse) Reset() {
  1637. *x = ForageEnumListResponse{}
  1638. if protoimpl.UnsafeEnabled {
  1639. mi := &file_backend_operation_pasture_proto_msgTypes[24]
  1640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1641. ms.StoreMessageInfo(mi)
  1642. }
  1643. }
  1644. func (x *ForageEnumListResponse) String() string {
  1645. return protoimpl.X.MessageStringOf(x)
  1646. }
  1647. func (*ForageEnumListResponse) ProtoMessage() {}
  1648. func (x *ForageEnumListResponse) ProtoReflect() protoreflect.Message {
  1649. mi := &file_backend_operation_pasture_proto_msgTypes[24]
  1650. if protoimpl.UnsafeEnabled && x != nil {
  1651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1652. if ms.LoadMessageInfo() == nil {
  1653. ms.StoreMessageInfo(mi)
  1654. }
  1655. return ms
  1656. }
  1657. return mi.MessageOf(x)
  1658. }
  1659. // Deprecated: Use ForageEnumListResponse.ProtoReflect.Descriptor instead.
  1660. func (*ForageEnumListResponse) Descriptor() ([]byte, []int) {
  1661. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{24}
  1662. }
  1663. func (x *ForageEnumListResponse) GetCode() int32 {
  1664. if x != nil {
  1665. return x.Code
  1666. }
  1667. return 0
  1668. }
  1669. func (x *ForageEnumListResponse) GetMsg() string {
  1670. if x != nil {
  1671. return x.Msg
  1672. }
  1673. return ""
  1674. }
  1675. func (x *ForageEnumListResponse) GetData() *ForageEnumList {
  1676. if x != nil {
  1677. return x.Data
  1678. }
  1679. return nil
  1680. }
  1681. type ForageEnumList struct {
  1682. state protoimpl.MessageState
  1683. sizeCache protoimpl.SizeCache
  1684. unknownFields protoimpl.UnknownFields
  1685. ForageSource []*ForageSourceEnum `protobuf:"bytes,1,rep,name=forage_source,json=forageSource,proto3" json:"forage_source,omitempty"` // 饲料来源
  1686. ForagePlanType []*ForagePlanTypeEnum `protobuf:"bytes,2,rep,name=forage_plan_type,json=foragePlanType,proto3" json:"forage_plan_type,omitempty"` // 饲料计划类型
  1687. JumpDelaType []*JumpDelaTypeEnum `protobuf:"bytes,3,rep,name=jump_dela_type,json=jumpDelaType,proto3" json:"jump_dela_type,omitempty"` // 跳转延迟类型
  1688. CattleParentCategory []*CattleParentCategoryEnum `protobuf:"bytes,4,rep,name=cattle_parent_category,json=cattleParentCategory,proto3" json:"cattle_parent_category,omitempty"` // 畜牧分类
  1689. ForageParentCategory []*ForageParentCategoryEnum `protobuf:"bytes,5,rep,name=forage_parent_category,json=forageParentCategory,proto3" json:"forage_parent_category,omitempty"` // 饲料分类
  1690. IsShow []*IsShowEnum `protobuf:"bytes,6,rep,name=is_show,json=isShow,proto3" json:"is_show,omitempty"`
  1691. FormulaType []*FormulaTypeEnum `protobuf:"bytes,7,rep,name=formula_type,json=formulaType,proto3" json:"formula_type,omitempty"` // 配方类型
  1692. FormulaList []*FormulaOptionEnum `protobuf:"bytes,8,rep,name=formula_list,json=formulaList,proto3" json:"formula_list,omitempty"` // 所有配方列表
  1693. ConfirmStart []*IsShowEnum `protobuf:"bytes,9,rep,name=confirm_start,json=confirmStart,proto3" json:"confirm_start,omitempty"` // 确认开始
  1694. FormulationEvaluation []*FormulaOptionEnum `protobuf:"bytes,10,rep,name=formulation_evaluation,json=formulationEvaluation,proto3" json:"formulation_evaluation,omitempty"` // 配方评估查询方式
  1695. UseMaterialsList []*FormulaOptionEnum `protobuf:"bytes,11,rep,name=use_materials_list,json=useMaterialsList,proto3" json:"use_materials_list,omitempty"` // 用料分析-列表显示
  1696. UseMaterialsType []*FormulaOptionEnum `protobuf:"bytes,12,rep,name=use_materials_type,json=useMaterialsType,proto3" json:"use_materials_type,omitempty"` // 用料分析-统计类型
  1697. PriceMaterialsType []*FormulaOptionEnum `protobuf:"bytes,13,rep,name=price_materials_type,json=priceMaterialsType,proto3" json:"price_materials_type,omitempty"` // 价格分析-统计类型
  1698. JumpType []*FormulaOptionEnum `protobuf:"bytes,14,rep,name=jump_type,json=jumpType,proto3" json:"jump_type,omitempty"` // 准确性-跳转方式
  1699. StatisticsType []*FormulaOptionEnum `protobuf:"bytes,15,rep,name=statistics_type,json=statisticsType,proto3" json:"statistics_type,omitempty"` // 准确性-统计类型
  1700. }
  1701. func (x *ForageEnumList) Reset() {
  1702. *x = ForageEnumList{}
  1703. if protoimpl.UnsafeEnabled {
  1704. mi := &file_backend_operation_pasture_proto_msgTypes[25]
  1705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1706. ms.StoreMessageInfo(mi)
  1707. }
  1708. }
  1709. func (x *ForageEnumList) String() string {
  1710. return protoimpl.X.MessageStringOf(x)
  1711. }
  1712. func (*ForageEnumList) ProtoMessage() {}
  1713. func (x *ForageEnumList) ProtoReflect() protoreflect.Message {
  1714. mi := &file_backend_operation_pasture_proto_msgTypes[25]
  1715. if protoimpl.UnsafeEnabled && x != nil {
  1716. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1717. if ms.LoadMessageInfo() == nil {
  1718. ms.StoreMessageInfo(mi)
  1719. }
  1720. return ms
  1721. }
  1722. return mi.MessageOf(x)
  1723. }
  1724. // Deprecated: Use ForageEnumList.ProtoReflect.Descriptor instead.
  1725. func (*ForageEnumList) Descriptor() ([]byte, []int) {
  1726. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{25}
  1727. }
  1728. func (x *ForageEnumList) GetForageSource() []*ForageSourceEnum {
  1729. if x != nil {
  1730. return x.ForageSource
  1731. }
  1732. return nil
  1733. }
  1734. func (x *ForageEnumList) GetForagePlanType() []*ForagePlanTypeEnum {
  1735. if x != nil {
  1736. return x.ForagePlanType
  1737. }
  1738. return nil
  1739. }
  1740. func (x *ForageEnumList) GetJumpDelaType() []*JumpDelaTypeEnum {
  1741. if x != nil {
  1742. return x.JumpDelaType
  1743. }
  1744. return nil
  1745. }
  1746. func (x *ForageEnumList) GetCattleParentCategory() []*CattleParentCategoryEnum {
  1747. if x != nil {
  1748. return x.CattleParentCategory
  1749. }
  1750. return nil
  1751. }
  1752. func (x *ForageEnumList) GetForageParentCategory() []*ForageParentCategoryEnum {
  1753. if x != nil {
  1754. return x.ForageParentCategory
  1755. }
  1756. return nil
  1757. }
  1758. func (x *ForageEnumList) GetIsShow() []*IsShowEnum {
  1759. if x != nil {
  1760. return x.IsShow
  1761. }
  1762. return nil
  1763. }
  1764. func (x *ForageEnumList) GetFormulaType() []*FormulaTypeEnum {
  1765. if x != nil {
  1766. return x.FormulaType
  1767. }
  1768. return nil
  1769. }
  1770. func (x *ForageEnumList) GetFormulaList() []*FormulaOptionEnum {
  1771. if x != nil {
  1772. return x.FormulaList
  1773. }
  1774. return nil
  1775. }
  1776. func (x *ForageEnumList) GetConfirmStart() []*IsShowEnum {
  1777. if x != nil {
  1778. return x.ConfirmStart
  1779. }
  1780. return nil
  1781. }
  1782. func (x *ForageEnumList) GetFormulationEvaluation() []*FormulaOptionEnum {
  1783. if x != nil {
  1784. return x.FormulationEvaluation
  1785. }
  1786. return nil
  1787. }
  1788. func (x *ForageEnumList) GetUseMaterialsList() []*FormulaOptionEnum {
  1789. if x != nil {
  1790. return x.UseMaterialsList
  1791. }
  1792. return nil
  1793. }
  1794. func (x *ForageEnumList) GetUseMaterialsType() []*FormulaOptionEnum {
  1795. if x != nil {
  1796. return x.UseMaterialsType
  1797. }
  1798. return nil
  1799. }
  1800. func (x *ForageEnumList) GetPriceMaterialsType() []*FormulaOptionEnum {
  1801. if x != nil {
  1802. return x.PriceMaterialsType
  1803. }
  1804. return nil
  1805. }
  1806. func (x *ForageEnumList) GetJumpType() []*FormulaOptionEnum {
  1807. if x != nil {
  1808. return x.JumpType
  1809. }
  1810. return nil
  1811. }
  1812. func (x *ForageEnumList) GetStatisticsType() []*FormulaOptionEnum {
  1813. if x != nil {
  1814. return x.StatisticsType
  1815. }
  1816. return nil
  1817. }
  1818. type ForageSourceEnum struct {
  1819. state protoimpl.MessageState
  1820. sizeCache protoimpl.SizeCache
  1821. unknownFields protoimpl.UnknownFields
  1822. Value ForageSource_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForageSource_Kind" json:"value,omitempty"`
  1823. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1824. }
  1825. func (x *ForageSourceEnum) Reset() {
  1826. *x = ForageSourceEnum{}
  1827. if protoimpl.UnsafeEnabled {
  1828. mi := &file_backend_operation_pasture_proto_msgTypes[26]
  1829. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1830. ms.StoreMessageInfo(mi)
  1831. }
  1832. }
  1833. func (x *ForageSourceEnum) String() string {
  1834. return protoimpl.X.MessageStringOf(x)
  1835. }
  1836. func (*ForageSourceEnum) ProtoMessage() {}
  1837. func (x *ForageSourceEnum) ProtoReflect() protoreflect.Message {
  1838. mi := &file_backend_operation_pasture_proto_msgTypes[26]
  1839. if protoimpl.UnsafeEnabled && x != nil {
  1840. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1841. if ms.LoadMessageInfo() == nil {
  1842. ms.StoreMessageInfo(mi)
  1843. }
  1844. return ms
  1845. }
  1846. return mi.MessageOf(x)
  1847. }
  1848. // Deprecated: Use ForageSourceEnum.ProtoReflect.Descriptor instead.
  1849. func (*ForageSourceEnum) Descriptor() ([]byte, []int) {
  1850. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{26}
  1851. }
  1852. func (x *ForageSourceEnum) GetValue() ForageSource_Kind {
  1853. if x != nil {
  1854. return x.Value
  1855. }
  1856. return ForageSource_INVALID
  1857. }
  1858. func (x *ForageSourceEnum) GetLabel() string {
  1859. if x != nil {
  1860. return x.Label
  1861. }
  1862. return ""
  1863. }
  1864. type ForagePlanTypeEnum struct {
  1865. state protoimpl.MessageState
  1866. sizeCache protoimpl.SizeCache
  1867. unknownFields protoimpl.UnknownFields
  1868. Value ForagePlanType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForagePlanType_Kind" json:"value,omitempty"`
  1869. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1870. }
  1871. func (x *ForagePlanTypeEnum) Reset() {
  1872. *x = ForagePlanTypeEnum{}
  1873. if protoimpl.UnsafeEnabled {
  1874. mi := &file_backend_operation_pasture_proto_msgTypes[27]
  1875. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1876. ms.StoreMessageInfo(mi)
  1877. }
  1878. }
  1879. func (x *ForagePlanTypeEnum) String() string {
  1880. return protoimpl.X.MessageStringOf(x)
  1881. }
  1882. func (*ForagePlanTypeEnum) ProtoMessage() {}
  1883. func (x *ForagePlanTypeEnum) ProtoReflect() protoreflect.Message {
  1884. mi := &file_backend_operation_pasture_proto_msgTypes[27]
  1885. if protoimpl.UnsafeEnabled && x != nil {
  1886. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1887. if ms.LoadMessageInfo() == nil {
  1888. ms.StoreMessageInfo(mi)
  1889. }
  1890. return ms
  1891. }
  1892. return mi.MessageOf(x)
  1893. }
  1894. // Deprecated: Use ForagePlanTypeEnum.ProtoReflect.Descriptor instead.
  1895. func (*ForagePlanTypeEnum) Descriptor() ([]byte, []int) {
  1896. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{27}
  1897. }
  1898. func (x *ForagePlanTypeEnum) GetValue() ForagePlanType_Kind {
  1899. if x != nil {
  1900. return x.Value
  1901. }
  1902. return ForagePlanType_INVALID
  1903. }
  1904. func (x *ForagePlanTypeEnum) GetLabel() string {
  1905. if x != nil {
  1906. return x.Label
  1907. }
  1908. return ""
  1909. }
  1910. type JumpDelaTypeEnum struct {
  1911. state protoimpl.MessageState
  1912. sizeCache protoimpl.SizeCache
  1913. unknownFields protoimpl.UnknownFields
  1914. Value JumpDelaType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.JumpDelaType_Kind" json:"value,omitempty"`
  1915. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1916. }
  1917. func (x *JumpDelaTypeEnum) Reset() {
  1918. *x = JumpDelaTypeEnum{}
  1919. if protoimpl.UnsafeEnabled {
  1920. mi := &file_backend_operation_pasture_proto_msgTypes[28]
  1921. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1922. ms.StoreMessageInfo(mi)
  1923. }
  1924. }
  1925. func (x *JumpDelaTypeEnum) String() string {
  1926. return protoimpl.X.MessageStringOf(x)
  1927. }
  1928. func (*JumpDelaTypeEnum) ProtoMessage() {}
  1929. func (x *JumpDelaTypeEnum) ProtoReflect() protoreflect.Message {
  1930. mi := &file_backend_operation_pasture_proto_msgTypes[28]
  1931. if protoimpl.UnsafeEnabled && x != nil {
  1932. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1933. if ms.LoadMessageInfo() == nil {
  1934. ms.StoreMessageInfo(mi)
  1935. }
  1936. return ms
  1937. }
  1938. return mi.MessageOf(x)
  1939. }
  1940. // Deprecated: Use JumpDelaTypeEnum.ProtoReflect.Descriptor instead.
  1941. func (*JumpDelaTypeEnum) Descriptor() ([]byte, []int) {
  1942. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{28}
  1943. }
  1944. func (x *JumpDelaTypeEnum) GetValue() JumpDelaType_Kind {
  1945. if x != nil {
  1946. return x.Value
  1947. }
  1948. return JumpDelaType_INVALID
  1949. }
  1950. func (x *JumpDelaTypeEnum) GetLabel() string {
  1951. if x != nil {
  1952. return x.Label
  1953. }
  1954. return ""
  1955. }
  1956. type CattleParentCategoryEnum struct {
  1957. state protoimpl.MessageState
  1958. sizeCache protoimpl.SizeCache
  1959. unknownFields protoimpl.UnknownFields
  1960. Value CattleCategoryParent_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.CattleCategoryParent_Kind" json:"value,omitempty"`
  1961. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1962. }
  1963. func (x *CattleParentCategoryEnum) Reset() {
  1964. *x = CattleParentCategoryEnum{}
  1965. if protoimpl.UnsafeEnabled {
  1966. mi := &file_backend_operation_pasture_proto_msgTypes[29]
  1967. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1968. ms.StoreMessageInfo(mi)
  1969. }
  1970. }
  1971. func (x *CattleParentCategoryEnum) String() string {
  1972. return protoimpl.X.MessageStringOf(x)
  1973. }
  1974. func (*CattleParentCategoryEnum) ProtoMessage() {}
  1975. func (x *CattleParentCategoryEnum) ProtoReflect() protoreflect.Message {
  1976. mi := &file_backend_operation_pasture_proto_msgTypes[29]
  1977. if protoimpl.UnsafeEnabled && x != nil {
  1978. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1979. if ms.LoadMessageInfo() == nil {
  1980. ms.StoreMessageInfo(mi)
  1981. }
  1982. return ms
  1983. }
  1984. return mi.MessageOf(x)
  1985. }
  1986. // Deprecated: Use CattleParentCategoryEnum.ProtoReflect.Descriptor instead.
  1987. func (*CattleParentCategoryEnum) Descriptor() ([]byte, []int) {
  1988. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{29}
  1989. }
  1990. func (x *CattleParentCategoryEnum) GetValue() CattleCategoryParent_Kind {
  1991. if x != nil {
  1992. return x.Value
  1993. }
  1994. return CattleCategoryParent_INVALID
  1995. }
  1996. func (x *CattleParentCategoryEnum) GetLabel() string {
  1997. if x != nil {
  1998. return x.Label
  1999. }
  2000. return ""
  2001. }
  2002. type ForageParentCategoryEnum struct {
  2003. state protoimpl.MessageState
  2004. sizeCache protoimpl.SizeCache
  2005. unknownFields protoimpl.UnknownFields
  2006. Value ForageCategoryParent_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForageCategoryParent_Kind" json:"value,omitempty"`
  2007. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2008. }
  2009. func (x *ForageParentCategoryEnum) Reset() {
  2010. *x = ForageParentCategoryEnum{}
  2011. if protoimpl.UnsafeEnabled {
  2012. mi := &file_backend_operation_pasture_proto_msgTypes[30]
  2013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2014. ms.StoreMessageInfo(mi)
  2015. }
  2016. }
  2017. func (x *ForageParentCategoryEnum) String() string {
  2018. return protoimpl.X.MessageStringOf(x)
  2019. }
  2020. func (*ForageParentCategoryEnum) ProtoMessage() {}
  2021. func (x *ForageParentCategoryEnum) ProtoReflect() protoreflect.Message {
  2022. mi := &file_backend_operation_pasture_proto_msgTypes[30]
  2023. if protoimpl.UnsafeEnabled && x != nil {
  2024. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2025. if ms.LoadMessageInfo() == nil {
  2026. ms.StoreMessageInfo(mi)
  2027. }
  2028. return ms
  2029. }
  2030. return mi.MessageOf(x)
  2031. }
  2032. // Deprecated: Use ForageParentCategoryEnum.ProtoReflect.Descriptor instead.
  2033. func (*ForageParentCategoryEnum) Descriptor() ([]byte, []int) {
  2034. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{30}
  2035. }
  2036. func (x *ForageParentCategoryEnum) GetValue() ForageCategoryParent_Kind {
  2037. if x != nil {
  2038. return x.Value
  2039. }
  2040. return ForageCategoryParent_INVALID
  2041. }
  2042. func (x *ForageParentCategoryEnum) GetLabel() string {
  2043. if x != nil {
  2044. return x.Label
  2045. }
  2046. return ""
  2047. }
  2048. type IsShowEnum struct {
  2049. state protoimpl.MessageState
  2050. sizeCache protoimpl.SizeCache
  2051. unknownFields protoimpl.UnknownFields
  2052. Value IsShow_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.IsShow_Kind" json:"value,omitempty"`
  2053. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2054. }
  2055. func (x *IsShowEnum) Reset() {
  2056. *x = IsShowEnum{}
  2057. if protoimpl.UnsafeEnabled {
  2058. mi := &file_backend_operation_pasture_proto_msgTypes[31]
  2059. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2060. ms.StoreMessageInfo(mi)
  2061. }
  2062. }
  2063. func (x *IsShowEnum) String() string {
  2064. return protoimpl.X.MessageStringOf(x)
  2065. }
  2066. func (*IsShowEnum) ProtoMessage() {}
  2067. func (x *IsShowEnum) ProtoReflect() protoreflect.Message {
  2068. mi := &file_backend_operation_pasture_proto_msgTypes[31]
  2069. if protoimpl.UnsafeEnabled && x != nil {
  2070. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2071. if ms.LoadMessageInfo() == nil {
  2072. ms.StoreMessageInfo(mi)
  2073. }
  2074. return ms
  2075. }
  2076. return mi.MessageOf(x)
  2077. }
  2078. // Deprecated: Use IsShowEnum.ProtoReflect.Descriptor instead.
  2079. func (*IsShowEnum) Descriptor() ([]byte, []int) {
  2080. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{31}
  2081. }
  2082. func (x *IsShowEnum) GetValue() IsShow_Kind {
  2083. if x != nil {
  2084. return x.Value
  2085. }
  2086. return IsShow_INVALID
  2087. }
  2088. func (x *IsShowEnum) GetLabel() string {
  2089. if x != nil {
  2090. return x.Label
  2091. }
  2092. return ""
  2093. }
  2094. type FormulaTypeEnum struct {
  2095. state protoimpl.MessageState
  2096. sizeCache protoimpl.SizeCache
  2097. unknownFields protoimpl.UnknownFields
  2098. Value FormulaType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.FormulaType_Kind" json:"value,omitempty"`
  2099. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2100. }
  2101. func (x *FormulaTypeEnum) Reset() {
  2102. *x = FormulaTypeEnum{}
  2103. if protoimpl.UnsafeEnabled {
  2104. mi := &file_backend_operation_pasture_proto_msgTypes[32]
  2105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2106. ms.StoreMessageInfo(mi)
  2107. }
  2108. }
  2109. func (x *FormulaTypeEnum) String() string {
  2110. return protoimpl.X.MessageStringOf(x)
  2111. }
  2112. func (*FormulaTypeEnum) ProtoMessage() {}
  2113. func (x *FormulaTypeEnum) ProtoReflect() protoreflect.Message {
  2114. mi := &file_backend_operation_pasture_proto_msgTypes[32]
  2115. if protoimpl.UnsafeEnabled && x != nil {
  2116. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2117. if ms.LoadMessageInfo() == nil {
  2118. ms.StoreMessageInfo(mi)
  2119. }
  2120. return ms
  2121. }
  2122. return mi.MessageOf(x)
  2123. }
  2124. // Deprecated: Use FormulaTypeEnum.ProtoReflect.Descriptor instead.
  2125. func (*FormulaTypeEnum) Descriptor() ([]byte, []int) {
  2126. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{32}
  2127. }
  2128. func (x *FormulaTypeEnum) GetValue() FormulaType_Kind {
  2129. if x != nil {
  2130. return x.Value
  2131. }
  2132. return FormulaType_INVALID
  2133. }
  2134. func (x *FormulaTypeEnum) GetLabel() string {
  2135. if x != nil {
  2136. return x.Label
  2137. }
  2138. return ""
  2139. }
  2140. type FormulaOptionEnum struct {
  2141. state protoimpl.MessageState
  2142. sizeCache protoimpl.SizeCache
  2143. unknownFields protoimpl.UnknownFields
  2144. Value int32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
  2145. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  2146. }
  2147. func (x *FormulaOptionEnum) Reset() {
  2148. *x = FormulaOptionEnum{}
  2149. if protoimpl.UnsafeEnabled {
  2150. mi := &file_backend_operation_pasture_proto_msgTypes[33]
  2151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2152. ms.StoreMessageInfo(mi)
  2153. }
  2154. }
  2155. func (x *FormulaOptionEnum) String() string {
  2156. return protoimpl.X.MessageStringOf(x)
  2157. }
  2158. func (*FormulaOptionEnum) ProtoMessage() {}
  2159. func (x *FormulaOptionEnum) ProtoReflect() protoreflect.Message {
  2160. mi := &file_backend_operation_pasture_proto_msgTypes[33]
  2161. if protoimpl.UnsafeEnabled && x != nil {
  2162. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2163. if ms.LoadMessageInfo() == nil {
  2164. ms.StoreMessageInfo(mi)
  2165. }
  2166. return ms
  2167. }
  2168. return mi.MessageOf(x)
  2169. }
  2170. // Deprecated: Use FormulaOptionEnum.ProtoReflect.Descriptor instead.
  2171. func (*FormulaOptionEnum) Descriptor() ([]byte, []int) {
  2172. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{33}
  2173. }
  2174. func (x *FormulaOptionEnum) GetValue() int32 {
  2175. if x != nil {
  2176. return x.Value
  2177. }
  2178. return 0
  2179. }
  2180. func (x *FormulaOptionEnum) GetLabel() string {
  2181. if x != nil {
  2182. return x.Label
  2183. }
  2184. return ""
  2185. }
  2186. // 牧场端分类数据同步
  2187. type CategorySyncRequest struct {
  2188. state protoimpl.MessageState
  2189. sizeCache protoimpl.SizeCache
  2190. unknownFields protoimpl.UnknownFields
  2191. KeyWord string `protobuf:"bytes,1,opt,name=key_word,json=keyWord,proto3" json:"key_word,omitempty"` // 关键字
  2192. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  2193. ParentId int32 `protobuf:"varint,3,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"` // 一类id
  2194. ParentName string `protobuf:"bytes,4,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // 一类名称
  2195. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"` // 分类名称
  2196. Number string `protobuf:"bytes,6,opt,name=number,proto3" json:"number,omitempty"` // 分类编号
  2197. IsShow IsShow_Kind `protobuf:"varint,7,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否展示
  2198. IsDelete IsShow_Kind `protobuf:"varint,8,opt,name=is_delete,json=isDelete,proto3,enum=backend.operation.IsShow_Kind" json:"is_delete,omitempty"` // 是否删除
  2199. Id int32 `protobuf:"varint,9,opt,name=id,proto3" json:"id,omitempty"` // 牧场端数据id
  2200. }
  2201. func (x *CategorySyncRequest) Reset() {
  2202. *x = CategorySyncRequest{}
  2203. if protoimpl.UnsafeEnabled {
  2204. mi := &file_backend_operation_pasture_proto_msgTypes[34]
  2205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2206. ms.StoreMessageInfo(mi)
  2207. }
  2208. }
  2209. func (x *CategorySyncRequest) String() string {
  2210. return protoimpl.X.MessageStringOf(x)
  2211. }
  2212. func (*CategorySyncRequest) ProtoMessage() {}
  2213. func (x *CategorySyncRequest) ProtoReflect() protoreflect.Message {
  2214. mi := &file_backend_operation_pasture_proto_msgTypes[34]
  2215. if protoimpl.UnsafeEnabled && x != nil {
  2216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2217. if ms.LoadMessageInfo() == nil {
  2218. ms.StoreMessageInfo(mi)
  2219. }
  2220. return ms
  2221. }
  2222. return mi.MessageOf(x)
  2223. }
  2224. // Deprecated: Use CategorySyncRequest.ProtoReflect.Descriptor instead.
  2225. func (*CategorySyncRequest) Descriptor() ([]byte, []int) {
  2226. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{34}
  2227. }
  2228. func (x *CategorySyncRequest) GetKeyWord() string {
  2229. if x != nil {
  2230. return x.KeyWord
  2231. }
  2232. return ""
  2233. }
  2234. func (x *CategorySyncRequest) GetPastureId() int32 {
  2235. if x != nil {
  2236. return x.PastureId
  2237. }
  2238. return 0
  2239. }
  2240. func (x *CategorySyncRequest) GetParentId() int32 {
  2241. if x != nil {
  2242. return x.ParentId
  2243. }
  2244. return 0
  2245. }
  2246. func (x *CategorySyncRequest) GetParentName() string {
  2247. if x != nil {
  2248. return x.ParentName
  2249. }
  2250. return ""
  2251. }
  2252. func (x *CategorySyncRequest) GetName() string {
  2253. if x != nil {
  2254. return x.Name
  2255. }
  2256. return ""
  2257. }
  2258. func (x *CategorySyncRequest) GetNumber() string {
  2259. if x != nil {
  2260. return x.Number
  2261. }
  2262. return ""
  2263. }
  2264. func (x *CategorySyncRequest) GetIsShow() IsShow_Kind {
  2265. if x != nil {
  2266. return x.IsShow
  2267. }
  2268. return IsShow_INVALID
  2269. }
  2270. func (x *CategorySyncRequest) GetIsDelete() IsShow_Kind {
  2271. if x != nil {
  2272. return x.IsDelete
  2273. }
  2274. return IsShow_INVALID
  2275. }
  2276. func (x *CategorySyncRequest) GetId() int32 {
  2277. if x != nil {
  2278. return x.Id
  2279. }
  2280. return 0
  2281. }
  2282. // 牧场端分类数据删除
  2283. type CategoryDeleteRequest struct {
  2284. state protoimpl.MessageState
  2285. sizeCache protoimpl.SizeCache
  2286. unknownFields protoimpl.UnknownFields
  2287. KeyWord string `protobuf:"bytes,1,opt,name=key_word,json=keyWord,proto3" json:"key_word,omitempty"` // 关键字
  2288. PastureId int32 `protobuf:"varint,2,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  2289. DataId int32 `protobuf:"varint,3,opt,name=data_id,json=dataId,proto3" json:"data_id,omitempty"`
  2290. }
  2291. func (x *CategoryDeleteRequest) Reset() {
  2292. *x = CategoryDeleteRequest{}
  2293. if protoimpl.UnsafeEnabled {
  2294. mi := &file_backend_operation_pasture_proto_msgTypes[35]
  2295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2296. ms.StoreMessageInfo(mi)
  2297. }
  2298. }
  2299. func (x *CategoryDeleteRequest) String() string {
  2300. return protoimpl.X.MessageStringOf(x)
  2301. }
  2302. func (*CategoryDeleteRequest) ProtoMessage() {}
  2303. func (x *CategoryDeleteRequest) ProtoReflect() protoreflect.Message {
  2304. mi := &file_backend_operation_pasture_proto_msgTypes[35]
  2305. if protoimpl.UnsafeEnabled && x != nil {
  2306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2307. if ms.LoadMessageInfo() == nil {
  2308. ms.StoreMessageInfo(mi)
  2309. }
  2310. return ms
  2311. }
  2312. return mi.MessageOf(x)
  2313. }
  2314. // Deprecated: Use CategoryDeleteRequest.ProtoReflect.Descriptor instead.
  2315. func (*CategoryDeleteRequest) Descriptor() ([]byte, []int) {
  2316. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{35}
  2317. }
  2318. func (x *CategoryDeleteRequest) GetKeyWord() string {
  2319. if x != nil {
  2320. return x.KeyWord
  2321. }
  2322. return ""
  2323. }
  2324. func (x *CategoryDeleteRequest) GetPastureId() int32 {
  2325. if x != nil {
  2326. return x.PastureId
  2327. }
  2328. return 0
  2329. }
  2330. func (x *CategoryDeleteRequest) GetDataId() int32 {
  2331. if x != nil {
  2332. return x.DataId
  2333. }
  2334. return 0
  2335. }
  2336. type FeedFormulaSyncRequest struct {
  2337. state protoimpl.MessageState
  2338. sizeCache protoimpl.SizeCache
  2339. unknownFields protoimpl.UnknownFields
  2340. PastureId int32 `protobuf:"varint,1,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"`
  2341. }
  2342. func (x *FeedFormulaSyncRequest) Reset() {
  2343. *x = FeedFormulaSyncRequest{}
  2344. if protoimpl.UnsafeEnabled {
  2345. mi := &file_backend_operation_pasture_proto_msgTypes[36]
  2346. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2347. ms.StoreMessageInfo(mi)
  2348. }
  2349. }
  2350. func (x *FeedFormulaSyncRequest) String() string {
  2351. return protoimpl.X.MessageStringOf(x)
  2352. }
  2353. func (*FeedFormulaSyncRequest) ProtoMessage() {}
  2354. func (x *FeedFormulaSyncRequest) ProtoReflect() protoreflect.Message {
  2355. mi := &file_backend_operation_pasture_proto_msgTypes[36]
  2356. if protoimpl.UnsafeEnabled && x != nil {
  2357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2358. if ms.LoadMessageInfo() == nil {
  2359. ms.StoreMessageInfo(mi)
  2360. }
  2361. return ms
  2362. }
  2363. return mi.MessageOf(x)
  2364. }
  2365. // Deprecated: Use FeedFormulaSyncRequest.ProtoReflect.Descriptor instead.
  2366. func (*FeedFormulaSyncRequest) Descriptor() ([]byte, []int) {
  2367. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{36}
  2368. }
  2369. func (x *FeedFormulaSyncRequest) GetPastureId() int32 {
  2370. if x != nil {
  2371. return x.PastureId
  2372. }
  2373. return 0
  2374. }
  2375. var File_backend_operation_pasture_proto protoreflect.FileDescriptor
  2376. var file_backend_operation_pasture_proto_rawDesc = []byte{
  2377. 0x0a, 0x1f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2378. 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2379. 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2380. 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x1c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70,
  2381. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f,
  2382. 0x74, 0x6f, 0x1a, 0x22, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72,
  2383. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2384. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xee, 0x02, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x50, 0x61,
  2385. 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02,
  2386. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  2387. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  2388. 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  2389. 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61,
  2390. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2391. 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x23, 0x0a,
  2392. 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05,
  2393. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x50, 0x68, 0x6f,
  2394. 0x6e, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20,
  2395. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x37, 0x0a, 0x07,
  2396. 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e,
  2397. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2398. 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69,
  2399. 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
  2400. 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74,
  2401. 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2402. 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  2403. 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2404. 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  2405. 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74,
  2406. 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61,
  2407. 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x22, 0xf0, 0x01, 0x0a, 0x14, 0x53, 0x65, 0x61, 0x72,
  2408. 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2409. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2410. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f,
  2411. 0x75, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61,
  2412. 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  2413. 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  2414. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
  2415. 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d,
  2416. 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65,
  2417. 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x65,
  2418. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61,
  2419. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63,
  2420. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50,
  2421. 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a,
  2422. 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x77, 0x0a, 0x15, 0x53, 0x65,
  2423. 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  2424. 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2425. 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02,
  2426. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x38, 0x0a, 0x04, 0x64, 0x61, 0x74,
  2427. 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2428. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72,
  2429. 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64,
  2430. 0x61, 0x74, 0x61, 0x22, 0x94, 0x01, 0x0a, 0x11, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61,
  2431. 0x73, 0x74, 0x75, 0x72, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67,
  2432. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a,
  2433. 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f,
  2434. 0x74, 0x61, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
  2435. 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
  2436. 0x12, 0x38, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24,
  2437. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2438. 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71,
  2439. 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x31, 0x0a, 0x0b, 0x55, 0x73,
  2440. 0x65, 0x72, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  2441. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  2442. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x6c, 0x0a,
  2443. 0x12, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x61, 0x73, 0x74,
  2444. 0x75, 0x72, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69,
  2445. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  2446. 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20,
  2447. 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2448. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b,
  2449. 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0xc6, 0x02, 0x0a, 0x18,
  2450. 0x41, 0x64, 0x64, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2451. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  2452. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65,
  2453. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61,
  2454. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2455. 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61,
  2456. 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
  2457. 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61,
  2458. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2459. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  2460. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62,
  2461. 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2462. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28,
  2463. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2464. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  2465. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  2466. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x63,
  2467. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61,
  2468. 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x08, 0x20,
  2469. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f,
  2470. 0x72, 0x6d, 0x61, 0x74, 0x22, 0x7d, 0x0a, 0x14, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61,
  2471. 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x2c, 0x0a, 0x12,
  2472. 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  2473. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65,
  2474. 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73,
  2475. 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61,
  2476. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2477. 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53,
  2478. 0x68, 0x6f, 0x77, 0x22, 0xcb, 0x01, 0x0a, 0x1b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x61,
  2479. 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  2480. 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
  2481. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64,
  2482. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28,
  2483. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2484. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  2485. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  2486. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a,
  2487. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
  2488. 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2489. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2490. 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  2491. 0x6e, 0x22, 0x85, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x61, 0x74, 0x74,
  2492. 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  2493. 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  2494. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  2495. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x3f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  2496. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2497. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63,
  2498. 0x68, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44,
  2499. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xa2, 0x01, 0x0a, 0x18, 0x53, 0x65,
  2500. 0x61, 0x72, 0x63, 0x68, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
  2501. 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01,
  2502. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  2503. 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  2504. 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20,
  2505. 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3f, 0x0a,
  2506. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61,
  2507. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  2508. 0x41, 0x64, 0x64, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2509. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xc6,
  2510. 0x02, 0x0a, 0x18, 0x41, 0x64, 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65,
  2511. 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  2512. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x09, 0x70,
  2513. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c,
  2514. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2515. 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2516. 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x08, 0x70, 0x61,
  2517. 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2518. 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x72,
  2519. 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2520. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  2521. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x75, 0x6d,
  2522. 0x62, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x06,
  2523. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2524. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e,
  2525. 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a,
  2526. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d,
  2527. 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63,
  2528. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  2529. 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41,
  2530. 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x22, 0x7d, 0x0a, 0x14, 0x49, 0x73, 0x53, 0x68, 0x6f,
  2531. 0x77, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12,
  2532. 0x2c, 0x0a, 0x12, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  2533. 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x66, 0x6f, 0x72,
  2534. 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x37, 0x0a,
  2535. 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e,
  2536. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2537. 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06,
  2538. 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0xe3, 0x01, 0x0a, 0x1b, 0x53, 0x65, 0x61, 0x72, 0x63,
  2539. 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52,
  2540. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2541. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
  2542. 0x74, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02,
  2543. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2544. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e,
  2545. 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x12, 0x0a, 0x04,
  2546. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  2547. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2548. 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69,
  2549. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62,
  2550. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2551. 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
  2552. 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x01, 0x0a,
  2553. 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74,
  2554. 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a,
  2555. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64,
  2556. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  2557. 0x6d, 0x73, 0x67, 0x12, 0x3f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
  2558. 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2559. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61,
  2560. 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04,
  2561. 0x64, 0x61, 0x74, 0x61, 0x22, 0xa2, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46,
  2562. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74,
  2563. 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  2564. 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02,
  2565. 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x70,
  2566. 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
  2567. 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x3f, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2568. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2569. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x6f,
  2570. 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  2571. 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x9c, 0x08, 0x0a, 0x10, 0x41, 0x64,
  2572. 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e,
  2573. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  2574. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  2575. 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69,
  2576. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2577. 0x79, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  2578. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x61, 0x74, 0x65,
  2579. 0x67, 0x6f, 0x72, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x61, 0x74, 0x65,
  2580. 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52,
  2581. 0x0c, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a,
  2582. 0x0d, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x07,
  2583. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x45, 0x6e, 0x63, 0x6f,
  2584. 0x64, 0x65, 0x12, 0x4e, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75,
  2585. 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62,
  2586. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2587. 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x4b, 0x69,
  2588. 0x6e, 0x64, 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
  2589. 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x12, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75,
  2590. 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10,
  2591. 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65,
  2592. 0x12, 0x48, 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64,
  2593. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2594. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67,
  2595. 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x0a,
  2596. 0x70, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x6c,
  2597. 0x61, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01,
  2598. 0x28, 0x09, 0x52, 0x0c, 0x70, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65,
  2599. 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x5f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69,
  2600. 0x61, 0x6c, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12,
  2601. 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x63, 0x61,
  2602. 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f,
  2603. 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x45, 0x72,
  2604. 0x72, 0x6f, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x5f, 0x77,
  2605. 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x70, 0x61, 0x63,
  2606. 0x6b, 0x61, 0x67, 0x65, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72,
  2607. 0x69, 0x63, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65,
  2608. 0x12, 0x1f, 0x0a, 0x0b, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18,
  2609. 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x57, 0x65, 0x69, 0x67, 0x68,
  2610. 0x74, 0x12, 0x43, 0x0a, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18,
  2611. 0x11, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2612. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65,
  2613. 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x09, 0x6a, 0x75, 0x6d,
  2614. 0x70, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x43, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72,
  2615. 0x6d, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e,
  2616. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2617. 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x0c, 0x63,
  2618. 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x72,
  2619. 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x13,
  2620. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74,
  2621. 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x30, 0x0a, 0x03, 0x6a, 0x6d, 0x70, 0x18, 0x14, 0x20, 0x01, 0x28,
  2622. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2623. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  2624. 0x64, 0x52, 0x03, 0x6a, 0x6d, 0x70, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70,
  2625. 0x31, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x31,
  2626. 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x32, 0x18, 0x16, 0x20, 0x01, 0x28,
  2627. 0x09, 0x52, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x32, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61,
  2628. 0x63, 0x6b, 0x75, 0x70, 0x33, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x63,
  2629. 0x6b, 0x75, 0x70, 0x33, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2630. 0x61, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  2631. 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61,
  2632. 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f,
  2633. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12,
  2634. 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0e,
  2635. 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2636. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64,
  2637. 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0xfc, 0x02, 0x0a, 0x17, 0x53, 0x65, 0x61,
  2638. 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  2639. 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  2640. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65,
  2641. 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x63,
  2642. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x6f, 0x72,
  2643. 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
  2644. 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63,
  2645. 0x65, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x04,
  2646. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2647. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e,
  2648. 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1f, 0x0a, 0x0b,
  2649. 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28,
  2650. 0x0d, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x1f, 0x0a,
  2651. 0x0b, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x06, 0x20, 0x01,
  2652. 0x28, 0x0d, 0x52, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x43,
  2653. 0x0a, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18, 0x07, 0x20, 0x01,
  2654. 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2655. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54,
  2656. 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x44, 0x65,
  2657. 0x6c, 0x61, 0x79, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
  2658. 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2659. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69,
  2660. 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67,
  2661. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x4e, 0x0a, 0x15, 0x46, 0x6f, 0x72, 0x61, 0x67,
  2662. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2663. 0x12, 0x35, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21,
  2664. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2665. 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x6f, 0x72,
  2666. 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x34, 0x0a, 0x0e, 0x46, 0x6f, 0x72, 0x61, 0x67,
  2667. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x6f, 0x72, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  2668. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6f, 0x72,
  2669. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x22, 0x6d, 0x0a,
  2670. 0x14, 0x53, 0x6d, 0x61, 0x6c, 0x6c, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x52, 0x65,
  2671. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x5f, 0x6e, 0x61, 0x6d,
  2672. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x69, 0x4e, 0x61, 0x6d, 0x65,
  2673. 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02,
  2674. 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12,
  2675. 0x1b, 0x0a, 0x09, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2676. 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x79, 0x0a, 0x18,
  2677. 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74,
  2678. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2679. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03,
  2680. 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x37,
  2681. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62,
  2682. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2683. 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73,
  2684. 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x92, 0x01, 0x0a, 0x10, 0x53, 0x65, 0x61, 0x72,
  2685. 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
  2686. 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65,
  2687. 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,
  2688. 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a,
  2689. 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f,
  2690. 0x74, 0x61, 0x6c, 0x12, 0x37, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28,
  2691. 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2692. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x52,
  2693. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x64, 0x0a, 0x0c,
  2694. 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  2695. 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  2696. 0x08, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f,
  2697. 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63,
  2698. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49,
  2699. 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68,
  2700. 0x6f, 0x77, 0x22, 0x75, 0x0a, 0x16, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d,
  2701. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04,
  2702. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2703. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d,
  2704. 0x73, 0x67, 0x12, 0x35, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  2705. 0x32, 0x21, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2706. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x4c,
  2707. 0x69, 0x73, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb7, 0x09, 0x0a, 0x0e, 0x46, 0x6f,
  2708. 0x72, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x0d,
  2709. 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20,
  2710. 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  2711. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f,
  2712. 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65,
  2713. 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x4f, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65,
  2714. 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,
  2715. 0x32, 0x25, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2716. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54,
  2717. 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50,
  2718. 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x49, 0x0a, 0x0e, 0x6a, 0x75, 0x6d, 0x70, 0x5f,
  2719. 0x64, 0x65, 0x6c, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2720. 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  2721. 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65,
  2722. 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x6a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79,
  2723. 0x70, 0x65, 0x12, 0x61, 0x0a, 0x16, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x72,
  2724. 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x04, 0x20, 0x03,
  2725. 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2726. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72,
  2727. 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x52,
  2728. 0x14, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74,
  2729. 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x61, 0x0a, 0x16, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f,
  2730. 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18,
  2731. 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  2732. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65,
  2733. 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e,
  2734. 0x75, 0x6d, 0x52, 0x14, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2735. 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x36, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73,
  2736. 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  2737. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73,
  2738. 0x53, 0x68, 0x6f, 0x77, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77,
  2739. 0x12, 0x45, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65,
  2740. 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2741. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75,
  2742. 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0b, 0x66, 0x6f, 0x72, 0x6d,
  2743. 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x47, 0x0a, 0x0c, 0x66, 0x6f, 0x72, 0x6d, 0x75,
  2744. 0x6c, 0x61, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e,
  2745. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2746. 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45,
  2747. 0x6e, 0x75, 0x6d, 0x52, 0x0b, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4c, 0x69, 0x73, 0x74,
  2748. 0x12, 0x42, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x5f, 0x73, 0x74, 0x61, 0x72,
  2749. 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2750. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68,
  2751. 0x6f, 0x77, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x53,
  2752. 0x74, 0x61, 0x72, 0x74, 0x12, 0x5b, 0x0a, 0x16, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x74,
  2753. 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a,
  2754. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2755. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  2756. 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x15, 0x66, 0x6f, 0x72, 0x6d,
  2757. 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74, 0x69, 0x6f,
  2758. 0x6e, 0x12, 0x52, 0x0a, 0x12, 0x75, 0x73, 0x65, 0x5f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61,
  2759. 0x6c, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e,
  2760. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2761. 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45,
  2762. 0x6e, 0x75, 0x6d, 0x52, 0x10, 0x75, 0x73, 0x65, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
  2763. 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x52, 0x0a, 0x12, 0x75, 0x73, 0x65, 0x5f, 0x6d, 0x61, 0x74,
  2764. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x03, 0x28,
  2765. 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2766. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74,
  2767. 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x10, 0x75, 0x73, 0x65, 0x4d, 0x61, 0x74, 0x65,
  2768. 0x72, 0x69, 0x61, 0x6c, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x56, 0x0a, 0x14, 0x70, 0x72, 0x69,
  2769. 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x5f, 0x74, 0x79, 0x70,
  2770. 0x65, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  2771. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d,
  2772. 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x70,
  2773. 0x72, 0x69, 0x63, 0x65, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x73, 0x54, 0x79, 0x70,
  2774. 0x65, 0x12, 0x41, 0x0a, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0e,
  2775. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2776. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  2777. 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x08, 0x6a, 0x75, 0x6d, 0x70,
  2778. 0x54, 0x79, 0x70, 0x65, 0x12, 0x4d, 0x0a, 0x0f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2779. 0x63, 0x73, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e,
  2780. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2781. 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45,
  2782. 0x6e, 0x75, 0x6d, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x54,
  2783. 0x79, 0x70, 0x65, 0x22, 0x64, 0x0a, 0x10, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75,
  2784. 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3a, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2785. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2786. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67,
  2787. 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61,
  2788. 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01,
  2789. 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x68, 0x0a, 0x12, 0x46, 0x6f, 0x72,
  2790. 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12,
  2791. 0x3c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26,
  2792. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2793. 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70,
  2794. 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a,
  2795. 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61,
  2796. 0x62, 0x65, 0x6c, 0x22, 0x64, 0x0a, 0x10, 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54,
  2797. 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3a, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2798. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  2799. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x75, 0x6d, 0x70, 0x44,
  2800. 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61,
  2801. 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01,
  2802. 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x74, 0x0a, 0x18, 0x43, 0x61, 0x74,
  2803. 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2804. 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x42, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01,
  2805. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2806. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43,
  2807. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69,
  2808. 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62,
  2809. 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
  2810. 0x74, 0x0a, 0x18, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43,
  2811. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x42, 0x0a, 0x05, 0x76,
  2812. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63,
  2813. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46,
  2814. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72,
  2815. 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12,
  2816. 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2817. 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x58, 0x0a, 0x0a, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x45,
  2818. 0x6e, 0x75, 0x6d, 0x12, 0x34, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01,
  2819. 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2820. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69,
  2821. 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62,
  2822. 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
  2823. 0x62, 0x0a, 0x0f, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
  2824. 0x75, 0x6d, 0x12, 0x39, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2825. 0x0e, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2826. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70,
  2827. 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a,
  2828. 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61,
  2829. 0x62, 0x65, 0x6c, 0x22, 0x3f, 0x0a, 0x11, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4f, 0x70,
  2830. 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  2831. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14,
  2832. 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c,
  2833. 0x61, 0x62, 0x65, 0x6c, 0x22, 0xbf, 0x02, 0x0a, 0x13, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2834. 0x79, 0x53, 0x79, 0x6e, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08,
  2835. 0x6b, 0x65, 0x79, 0x5f, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2836. 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75,
  2837. 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73,
  2838. 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2839. 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
  2840. 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61,
  2841. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  2842. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  2843. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62,
  2844. 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  2845. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28,
  2846. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  2847. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  2848. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x3b, 0x0a, 0x09, 0x69, 0x73, 0x5f,
  2849. 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62,
  2850. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2851. 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x08, 0x69, 0x73,
  2852. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01,
  2853. 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x22, 0x6a, 0x0a, 0x15, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
  2854. 0x72, 0x79, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  2855. 0x19, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x5f, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2856. 0x09, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61,
  2857. 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
  2858. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x64, 0x61, 0x74,
  2859. 0x61, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x64, 0x61, 0x74, 0x61,
  2860. 0x49, 0x64, 0x22, 0x37, 0x0a, 0x16, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  2861. 0x61, 0x53, 0x79, 0x6e, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a,
  2862. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  2863. 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x42, 0x0f, 0x5a, 0x0d, 0x2e,
  2864. 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72,
  2865. 0x6f, 0x74, 0x6f, 0x33,
  2866. }
  2867. var (
  2868. file_backend_operation_pasture_proto_rawDescOnce sync.Once
  2869. file_backend_operation_pasture_proto_rawDescData = file_backend_operation_pasture_proto_rawDesc
  2870. )
  2871. func file_backend_operation_pasture_proto_rawDescGZIP() []byte {
  2872. file_backend_operation_pasture_proto_rawDescOnce.Do(func() {
  2873. file_backend_operation_pasture_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_pasture_proto_rawDescData)
  2874. })
  2875. return file_backend_operation_pasture_proto_rawDescData
  2876. }
  2877. var file_backend_operation_pasture_proto_msgTypes = make([]protoimpl.MessageInfo, 37)
  2878. var file_backend_operation_pasture_proto_goTypes = []interface{}{
  2879. (*AddPastureRequest)(nil), // 0: backend.operation.AddPastureRequest
  2880. (*SearchPastureRequest)(nil), // 1: backend.operation.SearchPastureRequest
  2881. (*SearchPastureResponse)(nil), // 2: backend.operation.SearchPastureResponse
  2882. (*SearchPastureData)(nil), // 3: backend.operation.SearchPastureData
  2883. (*UserPasture)(nil), // 4: backend.operation.UserPasture
  2884. (*IsShowGroupPasture)(nil), // 5: backend.operation.IsShowGroupPasture
  2885. (*AddCattleCategoryRequest)(nil), // 6: backend.operation.AddCattleCategoryRequest
  2886. (*IsShowCattleCategory)(nil), // 7: backend.operation.IsShowCattleCategory
  2887. (*SearchCattleCategoryRequest)(nil), // 8: backend.operation.SearchCattleCategoryRequest
  2888. (*SearchCattleCategoryResponse)(nil), // 9: backend.operation.SearchCattleCategoryResponse
  2889. (*SearchCattleCategoryData)(nil), // 10: backend.operation.SearchCattleCategoryData
  2890. (*AddForageCategoryRequest)(nil), // 11: backend.operation.AddForageCategoryRequest
  2891. (*IsShowForageCategory)(nil), // 12: backend.operation.IsShowForageCategory
  2892. (*SearchForageCategoryRequest)(nil), // 13: backend.operation.SearchForageCategoryRequest
  2893. (*SearchForageCategoryResponse)(nil), // 14: backend.operation.SearchForageCategoryResponse
  2894. (*SearchForageCategoryData)(nil), // 15: backend.operation.SearchForageCategoryData
  2895. (*AddForageRequest)(nil), // 16: backend.operation.AddForageRequest
  2896. (*SearchForageListRequest)(nil), // 17: backend.operation.SearchForageListRequest
  2897. (*ForageListSortRequest)(nil), // 18: backend.operation.ForageListSortRequest
  2898. (*ForageListSort)(nil), // 19: backend.operation.ForageListSort
  2899. (*SmallMaterialRequest)(nil), // 20: backend.operation.SmallMaterialRequest
  2900. (*SearchForageListResponse)(nil), // 21: backend.operation.SearchForageListResponse
  2901. (*SearchForageList)(nil), // 22: backend.operation.SearchForageList
  2902. (*IsShowForage)(nil), // 23: backend.operation.IsShowForage
  2903. (*ForageEnumListResponse)(nil), // 24: backend.operation.ForageEnumListResponse
  2904. (*ForageEnumList)(nil), // 25: backend.operation.ForageEnumList
  2905. (*ForageSourceEnum)(nil), // 26: backend.operation.ForageSourceEnum
  2906. (*ForagePlanTypeEnum)(nil), // 27: backend.operation.ForagePlanTypeEnum
  2907. (*JumpDelaTypeEnum)(nil), // 28: backend.operation.JumpDelaTypeEnum
  2908. (*CattleParentCategoryEnum)(nil), // 29: backend.operation.CattleParentCategoryEnum
  2909. (*ForageParentCategoryEnum)(nil), // 30: backend.operation.ForageParentCategoryEnum
  2910. (*IsShowEnum)(nil), // 31: backend.operation.IsShowEnum
  2911. (*FormulaTypeEnum)(nil), // 32: backend.operation.FormulaTypeEnum
  2912. (*FormulaOptionEnum)(nil), // 33: backend.operation.FormulaOptionEnum
  2913. (*CategorySyncRequest)(nil), // 34: backend.operation.CategorySyncRequest
  2914. (*CategoryDeleteRequest)(nil), // 35: backend.operation.CategoryDeleteRequest
  2915. (*FeedFormulaSyncRequest)(nil), // 36: backend.operation.FeedFormulaSyncRequest
  2916. (IsShow_Kind)(0), // 37: backend.operation.IsShow.Kind
  2917. (*PaginationModel)(nil), // 38: backend.operation.PaginationModel
  2918. (CattleCategoryParent_Kind)(0), // 39: backend.operation.CattleCategoryParent.Kind
  2919. (ForageCategoryParent_Kind)(0), // 40: backend.operation.ForageCategoryParent.Kind
  2920. (ForageSource_Kind)(0), // 41: backend.operation.ForageSource.Kind
  2921. (ForagePlanType_Kind)(0), // 42: backend.operation.ForagePlanType.Kind
  2922. (JumpDelaType_Kind)(0), // 43: backend.operation.JumpDelaType.Kind
  2923. (FormulaType_Kind)(0), // 44: backend.operation.FormulaType.Kind
  2924. }
  2925. var file_backend_operation_pasture_proto_depIdxs = []int32{
  2926. 37, // 0: backend.operation.AddPastureRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2927. 38, // 1: backend.operation.SearchPastureRequest.pagination:type_name -> backend.operation.PaginationModel
  2928. 3, // 2: backend.operation.SearchPastureResponse.data:type_name -> backend.operation.SearchPastureData
  2929. 0, // 3: backend.operation.SearchPastureData.list:type_name -> backend.operation.AddPastureRequest
  2930. 37, // 4: backend.operation.IsShowGroupPasture.is_show:type_name -> backend.operation.IsShow.Kind
  2931. 39, // 5: backend.operation.AddCattleCategoryRequest.parent_id:type_name -> backend.operation.CattleCategoryParent.Kind
  2932. 37, // 6: backend.operation.AddCattleCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2933. 37, // 7: backend.operation.IsShowCattleCategory.is_show:type_name -> backend.operation.IsShow.Kind
  2934. 37, // 8: backend.operation.SearchCattleCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2935. 38, // 9: backend.operation.SearchCattleCategoryRequest.pagination:type_name -> backend.operation.PaginationModel
  2936. 10, // 10: backend.operation.SearchCattleCategoryResponse.data:type_name -> backend.operation.SearchCattleCategoryData
  2937. 6, // 11: backend.operation.SearchCattleCategoryData.list:type_name -> backend.operation.AddCattleCategoryRequest
  2938. 40, // 12: backend.operation.AddForageCategoryRequest.parent_id:type_name -> backend.operation.ForageCategoryParent.Kind
  2939. 37, // 13: backend.operation.AddForageCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2940. 37, // 14: backend.operation.IsShowForageCategory.is_show:type_name -> backend.operation.IsShow.Kind
  2941. 37, // 15: backend.operation.SearchForageCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2942. 38, // 16: backend.operation.SearchForageCategoryRequest.pagination:type_name -> backend.operation.PaginationModel
  2943. 15, // 17: backend.operation.SearchForageCategoryResponse.data:type_name -> backend.operation.SearchForageCategoryData
  2944. 11, // 18: backend.operation.SearchForageCategoryData.list:type_name -> backend.operation.AddForageCategoryRequest
  2945. 41, // 19: backend.operation.AddForageRequest.forage_source_id:type_name -> backend.operation.ForageSource.Kind
  2946. 42, // 20: backend.operation.AddForageRequest.plan_type_id:type_name -> backend.operation.ForagePlanType.Kind
  2947. 43, // 21: backend.operation.AddForageRequest.jump_delay:type_name -> backend.operation.JumpDelaType.Kind
  2948. 37, // 22: backend.operation.AddForageRequest.confirm_start:type_name -> backend.operation.IsShow.Kind
  2949. 37, // 23: backend.operation.AddForageRequest.jmp:type_name -> backend.operation.IsShow.Kind
  2950. 37, // 24: backend.operation.AddForageRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2951. 37, // 25: backend.operation.SearchForageListRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2952. 43, // 26: backend.operation.SearchForageListRequest.jump_delay:type_name -> backend.operation.JumpDelaType.Kind
  2953. 38, // 27: backend.operation.SearchForageListRequest.pagination:type_name -> backend.operation.PaginationModel
  2954. 19, // 28: backend.operation.ForageListSortRequest.list:type_name -> backend.operation.ForageListSort
  2955. 22, // 29: backend.operation.SearchForageListResponse.data:type_name -> backend.operation.SearchForageList
  2956. 16, // 30: backend.operation.SearchForageList.list:type_name -> backend.operation.AddForageRequest
  2957. 37, // 31: backend.operation.IsShowForage.is_show:type_name -> backend.operation.IsShow.Kind
  2958. 25, // 32: backend.operation.ForageEnumListResponse.data:type_name -> backend.operation.ForageEnumList
  2959. 26, // 33: backend.operation.ForageEnumList.forage_source:type_name -> backend.operation.ForageSourceEnum
  2960. 27, // 34: backend.operation.ForageEnumList.forage_plan_type:type_name -> backend.operation.ForagePlanTypeEnum
  2961. 28, // 35: backend.operation.ForageEnumList.jump_dela_type:type_name -> backend.operation.JumpDelaTypeEnum
  2962. 29, // 36: backend.operation.ForageEnumList.cattle_parent_category:type_name -> backend.operation.CattleParentCategoryEnum
  2963. 30, // 37: backend.operation.ForageEnumList.forage_parent_category:type_name -> backend.operation.ForageParentCategoryEnum
  2964. 31, // 38: backend.operation.ForageEnumList.is_show:type_name -> backend.operation.IsShowEnum
  2965. 32, // 39: backend.operation.ForageEnumList.formula_type:type_name -> backend.operation.FormulaTypeEnum
  2966. 33, // 40: backend.operation.ForageEnumList.formula_list:type_name -> backend.operation.FormulaOptionEnum
  2967. 31, // 41: backend.operation.ForageEnumList.confirm_start:type_name -> backend.operation.IsShowEnum
  2968. 33, // 42: backend.operation.ForageEnumList.formulation_evaluation:type_name -> backend.operation.FormulaOptionEnum
  2969. 33, // 43: backend.operation.ForageEnumList.use_materials_list:type_name -> backend.operation.FormulaOptionEnum
  2970. 33, // 44: backend.operation.ForageEnumList.use_materials_type:type_name -> backend.operation.FormulaOptionEnum
  2971. 33, // 45: backend.operation.ForageEnumList.price_materials_type:type_name -> backend.operation.FormulaOptionEnum
  2972. 33, // 46: backend.operation.ForageEnumList.jump_type:type_name -> backend.operation.FormulaOptionEnum
  2973. 33, // 47: backend.operation.ForageEnumList.statistics_type:type_name -> backend.operation.FormulaOptionEnum
  2974. 41, // 48: backend.operation.ForageSourceEnum.value:type_name -> backend.operation.ForageSource.Kind
  2975. 42, // 49: backend.operation.ForagePlanTypeEnum.value:type_name -> backend.operation.ForagePlanType.Kind
  2976. 43, // 50: backend.operation.JumpDelaTypeEnum.value:type_name -> backend.operation.JumpDelaType.Kind
  2977. 39, // 51: backend.operation.CattleParentCategoryEnum.value:type_name -> backend.operation.CattleCategoryParent.Kind
  2978. 40, // 52: backend.operation.ForageParentCategoryEnum.value:type_name -> backend.operation.ForageCategoryParent.Kind
  2979. 37, // 53: backend.operation.IsShowEnum.value:type_name -> backend.operation.IsShow.Kind
  2980. 44, // 54: backend.operation.FormulaTypeEnum.value:type_name -> backend.operation.FormulaType.Kind
  2981. 37, // 55: backend.operation.CategorySyncRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2982. 37, // 56: backend.operation.CategorySyncRequest.is_delete:type_name -> backend.operation.IsShow.Kind
  2983. 57, // [57:57] is the sub-list for method output_type
  2984. 57, // [57:57] is the sub-list for method input_type
  2985. 57, // [57:57] is the sub-list for extension type_name
  2986. 57, // [57:57] is the sub-list for extension extendee
  2987. 0, // [0:57] is the sub-list for field type_name
  2988. }
  2989. func init() { file_backend_operation_pasture_proto_init() }
  2990. func file_backend_operation_pasture_proto_init() {
  2991. if File_backend_operation_pasture_proto != nil {
  2992. return
  2993. }
  2994. file_backend_operation_enum_proto_init()
  2995. file_backend_operation_pagination_proto_init()
  2996. if !protoimpl.UnsafeEnabled {
  2997. file_backend_operation_pasture_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2998. switch v := v.(*AddPastureRequest); i {
  2999. case 0:
  3000. return &v.state
  3001. case 1:
  3002. return &v.sizeCache
  3003. case 2:
  3004. return &v.unknownFields
  3005. default:
  3006. return nil
  3007. }
  3008. }
  3009. file_backend_operation_pasture_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3010. switch v := v.(*SearchPastureRequest); i {
  3011. case 0:
  3012. return &v.state
  3013. case 1:
  3014. return &v.sizeCache
  3015. case 2:
  3016. return &v.unknownFields
  3017. default:
  3018. return nil
  3019. }
  3020. }
  3021. file_backend_operation_pasture_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3022. switch v := v.(*SearchPastureResponse); i {
  3023. case 0:
  3024. return &v.state
  3025. case 1:
  3026. return &v.sizeCache
  3027. case 2:
  3028. return &v.unknownFields
  3029. default:
  3030. return nil
  3031. }
  3032. }
  3033. file_backend_operation_pasture_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3034. switch v := v.(*SearchPastureData); i {
  3035. case 0:
  3036. return &v.state
  3037. case 1:
  3038. return &v.sizeCache
  3039. case 2:
  3040. return &v.unknownFields
  3041. default:
  3042. return nil
  3043. }
  3044. }
  3045. file_backend_operation_pasture_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3046. switch v := v.(*UserPasture); i {
  3047. case 0:
  3048. return &v.state
  3049. case 1:
  3050. return &v.sizeCache
  3051. case 2:
  3052. return &v.unknownFields
  3053. default:
  3054. return nil
  3055. }
  3056. }
  3057. file_backend_operation_pasture_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3058. switch v := v.(*IsShowGroupPasture); i {
  3059. case 0:
  3060. return &v.state
  3061. case 1:
  3062. return &v.sizeCache
  3063. case 2:
  3064. return &v.unknownFields
  3065. default:
  3066. return nil
  3067. }
  3068. }
  3069. file_backend_operation_pasture_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3070. switch v := v.(*AddCattleCategoryRequest); i {
  3071. case 0:
  3072. return &v.state
  3073. case 1:
  3074. return &v.sizeCache
  3075. case 2:
  3076. return &v.unknownFields
  3077. default:
  3078. return nil
  3079. }
  3080. }
  3081. file_backend_operation_pasture_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3082. switch v := v.(*IsShowCattleCategory); i {
  3083. case 0:
  3084. return &v.state
  3085. case 1:
  3086. return &v.sizeCache
  3087. case 2:
  3088. return &v.unknownFields
  3089. default:
  3090. return nil
  3091. }
  3092. }
  3093. file_backend_operation_pasture_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3094. switch v := v.(*SearchCattleCategoryRequest); i {
  3095. case 0:
  3096. return &v.state
  3097. case 1:
  3098. return &v.sizeCache
  3099. case 2:
  3100. return &v.unknownFields
  3101. default:
  3102. return nil
  3103. }
  3104. }
  3105. file_backend_operation_pasture_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3106. switch v := v.(*SearchCattleCategoryResponse); i {
  3107. case 0:
  3108. return &v.state
  3109. case 1:
  3110. return &v.sizeCache
  3111. case 2:
  3112. return &v.unknownFields
  3113. default:
  3114. return nil
  3115. }
  3116. }
  3117. file_backend_operation_pasture_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3118. switch v := v.(*SearchCattleCategoryData); i {
  3119. case 0:
  3120. return &v.state
  3121. case 1:
  3122. return &v.sizeCache
  3123. case 2:
  3124. return &v.unknownFields
  3125. default:
  3126. return nil
  3127. }
  3128. }
  3129. file_backend_operation_pasture_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3130. switch v := v.(*AddForageCategoryRequest); i {
  3131. case 0:
  3132. return &v.state
  3133. case 1:
  3134. return &v.sizeCache
  3135. case 2:
  3136. return &v.unknownFields
  3137. default:
  3138. return nil
  3139. }
  3140. }
  3141. file_backend_operation_pasture_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3142. switch v := v.(*IsShowForageCategory); i {
  3143. case 0:
  3144. return &v.state
  3145. case 1:
  3146. return &v.sizeCache
  3147. case 2:
  3148. return &v.unknownFields
  3149. default:
  3150. return nil
  3151. }
  3152. }
  3153. file_backend_operation_pasture_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3154. switch v := v.(*SearchForageCategoryRequest); i {
  3155. case 0:
  3156. return &v.state
  3157. case 1:
  3158. return &v.sizeCache
  3159. case 2:
  3160. return &v.unknownFields
  3161. default:
  3162. return nil
  3163. }
  3164. }
  3165. file_backend_operation_pasture_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3166. switch v := v.(*SearchForageCategoryResponse); i {
  3167. case 0:
  3168. return &v.state
  3169. case 1:
  3170. return &v.sizeCache
  3171. case 2:
  3172. return &v.unknownFields
  3173. default:
  3174. return nil
  3175. }
  3176. }
  3177. file_backend_operation_pasture_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3178. switch v := v.(*SearchForageCategoryData); i {
  3179. case 0:
  3180. return &v.state
  3181. case 1:
  3182. return &v.sizeCache
  3183. case 2:
  3184. return &v.unknownFields
  3185. default:
  3186. return nil
  3187. }
  3188. }
  3189. file_backend_operation_pasture_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3190. switch v := v.(*AddForageRequest); i {
  3191. case 0:
  3192. return &v.state
  3193. case 1:
  3194. return &v.sizeCache
  3195. case 2:
  3196. return &v.unknownFields
  3197. default:
  3198. return nil
  3199. }
  3200. }
  3201. file_backend_operation_pasture_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3202. switch v := v.(*SearchForageListRequest); i {
  3203. case 0:
  3204. return &v.state
  3205. case 1:
  3206. return &v.sizeCache
  3207. case 2:
  3208. return &v.unknownFields
  3209. default:
  3210. return nil
  3211. }
  3212. }
  3213. file_backend_operation_pasture_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3214. switch v := v.(*ForageListSortRequest); i {
  3215. case 0:
  3216. return &v.state
  3217. case 1:
  3218. return &v.sizeCache
  3219. case 2:
  3220. return &v.unknownFields
  3221. default:
  3222. return nil
  3223. }
  3224. }
  3225. file_backend_operation_pasture_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3226. switch v := v.(*ForageListSort); i {
  3227. case 0:
  3228. return &v.state
  3229. case 1:
  3230. return &v.sizeCache
  3231. case 2:
  3232. return &v.unknownFields
  3233. default:
  3234. return nil
  3235. }
  3236. }
  3237. file_backend_operation_pasture_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3238. switch v := v.(*SmallMaterialRequest); i {
  3239. case 0:
  3240. return &v.state
  3241. case 1:
  3242. return &v.sizeCache
  3243. case 2:
  3244. return &v.unknownFields
  3245. default:
  3246. return nil
  3247. }
  3248. }
  3249. file_backend_operation_pasture_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3250. switch v := v.(*SearchForageListResponse); i {
  3251. case 0:
  3252. return &v.state
  3253. case 1:
  3254. return &v.sizeCache
  3255. case 2:
  3256. return &v.unknownFields
  3257. default:
  3258. return nil
  3259. }
  3260. }
  3261. file_backend_operation_pasture_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3262. switch v := v.(*SearchForageList); i {
  3263. case 0:
  3264. return &v.state
  3265. case 1:
  3266. return &v.sizeCache
  3267. case 2:
  3268. return &v.unknownFields
  3269. default:
  3270. return nil
  3271. }
  3272. }
  3273. file_backend_operation_pasture_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3274. switch v := v.(*IsShowForage); i {
  3275. case 0:
  3276. return &v.state
  3277. case 1:
  3278. return &v.sizeCache
  3279. case 2:
  3280. return &v.unknownFields
  3281. default:
  3282. return nil
  3283. }
  3284. }
  3285. file_backend_operation_pasture_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3286. switch v := v.(*ForageEnumListResponse); i {
  3287. case 0:
  3288. return &v.state
  3289. case 1:
  3290. return &v.sizeCache
  3291. case 2:
  3292. return &v.unknownFields
  3293. default:
  3294. return nil
  3295. }
  3296. }
  3297. file_backend_operation_pasture_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3298. switch v := v.(*ForageEnumList); i {
  3299. case 0:
  3300. return &v.state
  3301. case 1:
  3302. return &v.sizeCache
  3303. case 2:
  3304. return &v.unknownFields
  3305. default:
  3306. return nil
  3307. }
  3308. }
  3309. file_backend_operation_pasture_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3310. switch v := v.(*ForageSourceEnum); i {
  3311. case 0:
  3312. return &v.state
  3313. case 1:
  3314. return &v.sizeCache
  3315. case 2:
  3316. return &v.unknownFields
  3317. default:
  3318. return nil
  3319. }
  3320. }
  3321. file_backend_operation_pasture_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3322. switch v := v.(*ForagePlanTypeEnum); i {
  3323. case 0:
  3324. return &v.state
  3325. case 1:
  3326. return &v.sizeCache
  3327. case 2:
  3328. return &v.unknownFields
  3329. default:
  3330. return nil
  3331. }
  3332. }
  3333. file_backend_operation_pasture_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3334. switch v := v.(*JumpDelaTypeEnum); i {
  3335. case 0:
  3336. return &v.state
  3337. case 1:
  3338. return &v.sizeCache
  3339. case 2:
  3340. return &v.unknownFields
  3341. default:
  3342. return nil
  3343. }
  3344. }
  3345. file_backend_operation_pasture_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3346. switch v := v.(*CattleParentCategoryEnum); i {
  3347. case 0:
  3348. return &v.state
  3349. case 1:
  3350. return &v.sizeCache
  3351. case 2:
  3352. return &v.unknownFields
  3353. default:
  3354. return nil
  3355. }
  3356. }
  3357. file_backend_operation_pasture_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3358. switch v := v.(*ForageParentCategoryEnum); i {
  3359. case 0:
  3360. return &v.state
  3361. case 1:
  3362. return &v.sizeCache
  3363. case 2:
  3364. return &v.unknownFields
  3365. default:
  3366. return nil
  3367. }
  3368. }
  3369. file_backend_operation_pasture_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3370. switch v := v.(*IsShowEnum); i {
  3371. case 0:
  3372. return &v.state
  3373. case 1:
  3374. return &v.sizeCache
  3375. case 2:
  3376. return &v.unknownFields
  3377. default:
  3378. return nil
  3379. }
  3380. }
  3381. file_backend_operation_pasture_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3382. switch v := v.(*FormulaTypeEnum); i {
  3383. case 0:
  3384. return &v.state
  3385. case 1:
  3386. return &v.sizeCache
  3387. case 2:
  3388. return &v.unknownFields
  3389. default:
  3390. return nil
  3391. }
  3392. }
  3393. file_backend_operation_pasture_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3394. switch v := v.(*FormulaOptionEnum); i {
  3395. case 0:
  3396. return &v.state
  3397. case 1:
  3398. return &v.sizeCache
  3399. case 2:
  3400. return &v.unknownFields
  3401. default:
  3402. return nil
  3403. }
  3404. }
  3405. file_backend_operation_pasture_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  3406. switch v := v.(*CategorySyncRequest); i {
  3407. case 0:
  3408. return &v.state
  3409. case 1:
  3410. return &v.sizeCache
  3411. case 2:
  3412. return &v.unknownFields
  3413. default:
  3414. return nil
  3415. }
  3416. }
  3417. file_backend_operation_pasture_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  3418. switch v := v.(*CategoryDeleteRequest); i {
  3419. case 0:
  3420. return &v.state
  3421. case 1:
  3422. return &v.sizeCache
  3423. case 2:
  3424. return &v.unknownFields
  3425. default:
  3426. return nil
  3427. }
  3428. }
  3429. file_backend_operation_pasture_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  3430. switch v := v.(*FeedFormulaSyncRequest); i {
  3431. case 0:
  3432. return &v.state
  3433. case 1:
  3434. return &v.sizeCache
  3435. case 2:
  3436. return &v.unknownFields
  3437. default:
  3438. return nil
  3439. }
  3440. }
  3441. }
  3442. type x struct{}
  3443. out := protoimpl.TypeBuilder{
  3444. File: protoimpl.DescBuilder{
  3445. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3446. RawDescriptor: file_backend_operation_pasture_proto_rawDesc,
  3447. NumEnums: 0,
  3448. NumMessages: 37,
  3449. NumExtensions: 0,
  3450. NumServices: 0,
  3451. },
  3452. GoTypes: file_backend_operation_pasture_proto_goTypes,
  3453. DependencyIndexes: file_backend_operation_pasture_proto_depIdxs,
  3454. MessageInfos: file_backend_operation_pasture_proto_msgTypes,
  3455. }.Build()
  3456. File_backend_operation_pasture_proto = out.File
  3457. file_backend_operation_pasture_proto_rawDesc = nil
  3458. file_backend_operation_pasture_proto_goTypes = nil
  3459. file_backend_operation_pasture_proto_depIdxs = nil
  3460. }