pasture.pb.go 130 KB

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