pasture.pb.go 144 KB

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