pasture.pb.go 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796
  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 IsShowGroupPasture struct {
  302. state protoimpl.MessageState
  303. sizeCache protoimpl.SizeCache
  304. unknownFields protoimpl.UnknownFields
  305. PastureId int32 `protobuf:"varint,1,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  306. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否开启
  307. }
  308. func (x *IsShowGroupPasture) Reset() {
  309. *x = IsShowGroupPasture{}
  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 *IsShowGroupPasture) String() string {
  317. return protoimpl.X.MessageStringOf(x)
  318. }
  319. func (*IsShowGroupPasture) ProtoMessage() {}
  320. func (x *IsShowGroupPasture) 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 IsShowGroupPasture.ProtoReflect.Descriptor instead.
  332. func (*IsShowGroupPasture) Descriptor() ([]byte, []int) {
  333. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{4}
  334. }
  335. func (x *IsShowGroupPasture) GetPastureId() int32 {
  336. if x != nil {
  337. return x.PastureId
  338. }
  339. return 0
  340. }
  341. func (x *IsShowGroupPasture) GetIsShow() IsShow_Kind {
  342. if x != nil {
  343. return x.IsShow
  344. }
  345. return IsShow_INVALID
  346. }
  347. // 添加牧畜分类
  348. type AddCattleCategoryRequest struct {
  349. state protoimpl.MessageState
  350. sizeCache protoimpl.SizeCache
  351. unknownFields protoimpl.UnknownFields
  352. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  353. ParentId CattleCategoryParent_Kind `protobuf:"varint,2,opt,name=parent_id,json=parentId,proto3,enum=backend.operation.CattleCategoryParent_Kind" json:"parent_id,omitempty"` // 父类id
  354. ParentName string `protobuf:"bytes,3,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // 父类名称
  355. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` // 牧畜分类名称
  356. Number string `protobuf:"bytes,5,opt,name=number,proto3" json:"number,omitempty"` // 畜牧类别编号
  357. IsShow IsShow_Kind `protobuf:"varint,6,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  358. CreatedAt uint32 `protobuf:"varint,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  359. CreatedAtFormat string `protobuf:"bytes,8,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式
  360. }
  361. func (x *AddCattleCategoryRequest) Reset() {
  362. *x = AddCattleCategoryRequest{}
  363. if protoimpl.UnsafeEnabled {
  364. mi := &file_backend_operation_pasture_proto_msgTypes[5]
  365. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  366. ms.StoreMessageInfo(mi)
  367. }
  368. }
  369. func (x *AddCattleCategoryRequest) String() string {
  370. return protoimpl.X.MessageStringOf(x)
  371. }
  372. func (*AddCattleCategoryRequest) ProtoMessage() {}
  373. func (x *AddCattleCategoryRequest) ProtoReflect() protoreflect.Message {
  374. mi := &file_backend_operation_pasture_proto_msgTypes[5]
  375. if protoimpl.UnsafeEnabled && x != nil {
  376. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  377. if ms.LoadMessageInfo() == nil {
  378. ms.StoreMessageInfo(mi)
  379. }
  380. return ms
  381. }
  382. return mi.MessageOf(x)
  383. }
  384. // Deprecated: Use AddCattleCategoryRequest.ProtoReflect.Descriptor instead.
  385. func (*AddCattleCategoryRequest) Descriptor() ([]byte, []int) {
  386. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{5}
  387. }
  388. func (x *AddCattleCategoryRequest) GetId() uint32 {
  389. if x != nil {
  390. return x.Id
  391. }
  392. return 0
  393. }
  394. func (x *AddCattleCategoryRequest) GetParentId() CattleCategoryParent_Kind {
  395. if x != nil {
  396. return x.ParentId
  397. }
  398. return CattleCategoryParent_INVALID
  399. }
  400. func (x *AddCattleCategoryRequest) GetParentName() string {
  401. if x != nil {
  402. return x.ParentName
  403. }
  404. return ""
  405. }
  406. func (x *AddCattleCategoryRequest) GetName() string {
  407. if x != nil {
  408. return x.Name
  409. }
  410. return ""
  411. }
  412. func (x *AddCattleCategoryRequest) GetNumber() string {
  413. if x != nil {
  414. return x.Number
  415. }
  416. return ""
  417. }
  418. func (x *AddCattleCategoryRequest) GetIsShow() IsShow_Kind {
  419. if x != nil {
  420. return x.IsShow
  421. }
  422. return IsShow_INVALID
  423. }
  424. func (x *AddCattleCategoryRequest) GetCreatedAt() uint32 {
  425. if x != nil {
  426. return x.CreatedAt
  427. }
  428. return 0
  429. }
  430. func (x *AddCattleCategoryRequest) GetCreatedAtFormat() string {
  431. if x != nil {
  432. return x.CreatedAtFormat
  433. }
  434. return ""
  435. }
  436. // 是否启用
  437. type IsShowCattleCategory struct {
  438. state protoimpl.MessageState
  439. sizeCache protoimpl.SizeCache
  440. unknownFields protoimpl.UnknownFields
  441. CattleCategoryId int32 `protobuf:"varint,1,opt,name=cattle_category_id,json=cattleCategoryId,proto3" json:"cattle_category_id,omitempty"`
  442. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  443. }
  444. func (x *IsShowCattleCategory) Reset() {
  445. *x = IsShowCattleCategory{}
  446. if protoimpl.UnsafeEnabled {
  447. mi := &file_backend_operation_pasture_proto_msgTypes[6]
  448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  449. ms.StoreMessageInfo(mi)
  450. }
  451. }
  452. func (x *IsShowCattleCategory) String() string {
  453. return protoimpl.X.MessageStringOf(x)
  454. }
  455. func (*IsShowCattleCategory) ProtoMessage() {}
  456. func (x *IsShowCattleCategory) ProtoReflect() protoreflect.Message {
  457. mi := &file_backend_operation_pasture_proto_msgTypes[6]
  458. if protoimpl.UnsafeEnabled && x != nil {
  459. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  460. if ms.LoadMessageInfo() == nil {
  461. ms.StoreMessageInfo(mi)
  462. }
  463. return ms
  464. }
  465. return mi.MessageOf(x)
  466. }
  467. // Deprecated: Use IsShowCattleCategory.ProtoReflect.Descriptor instead.
  468. func (*IsShowCattleCategory) Descriptor() ([]byte, []int) {
  469. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{6}
  470. }
  471. func (x *IsShowCattleCategory) GetCattleCategoryId() int32 {
  472. if x != nil {
  473. return x.CattleCategoryId
  474. }
  475. return 0
  476. }
  477. func (x *IsShowCattleCategory) GetIsShow() IsShow_Kind {
  478. if x != nil {
  479. return x.IsShow
  480. }
  481. return IsShow_INVALID
  482. }
  483. // 畜牧分类查询列表
  484. type SearchCattleCategoryRequest struct {
  485. state protoimpl.MessageState
  486. sizeCache protoimpl.SizeCache
  487. unknownFields protoimpl.UnknownFields
  488. ParentName string `protobuf:"bytes,1,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"`
  489. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  490. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  491. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  492. }
  493. func (x *SearchCattleCategoryRequest) Reset() {
  494. *x = SearchCattleCategoryRequest{}
  495. if protoimpl.UnsafeEnabled {
  496. mi := &file_backend_operation_pasture_proto_msgTypes[7]
  497. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  498. ms.StoreMessageInfo(mi)
  499. }
  500. }
  501. func (x *SearchCattleCategoryRequest) String() string {
  502. return protoimpl.X.MessageStringOf(x)
  503. }
  504. func (*SearchCattleCategoryRequest) ProtoMessage() {}
  505. func (x *SearchCattleCategoryRequest) ProtoReflect() protoreflect.Message {
  506. mi := &file_backend_operation_pasture_proto_msgTypes[7]
  507. if protoimpl.UnsafeEnabled && x != nil {
  508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  509. if ms.LoadMessageInfo() == nil {
  510. ms.StoreMessageInfo(mi)
  511. }
  512. return ms
  513. }
  514. return mi.MessageOf(x)
  515. }
  516. // Deprecated: Use SearchCattleCategoryRequest.ProtoReflect.Descriptor instead.
  517. func (*SearchCattleCategoryRequest) Descriptor() ([]byte, []int) {
  518. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{7}
  519. }
  520. func (x *SearchCattleCategoryRequest) GetParentName() string {
  521. if x != nil {
  522. return x.ParentName
  523. }
  524. return ""
  525. }
  526. func (x *SearchCattleCategoryRequest) GetIsShow() IsShow_Kind {
  527. if x != nil {
  528. return x.IsShow
  529. }
  530. return IsShow_INVALID
  531. }
  532. func (x *SearchCattleCategoryRequest) GetName() string {
  533. if x != nil {
  534. return x.Name
  535. }
  536. return ""
  537. }
  538. func (x *SearchCattleCategoryRequest) GetPagination() *PaginationModel {
  539. if x != nil {
  540. return x.Pagination
  541. }
  542. return nil
  543. }
  544. type SearchCattleCategoryResponse struct {
  545. state protoimpl.MessageState
  546. sizeCache protoimpl.SizeCache
  547. unknownFields protoimpl.UnknownFields
  548. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  549. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  550. Data *SearchCattleCategoryData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  551. }
  552. func (x *SearchCattleCategoryResponse) Reset() {
  553. *x = SearchCattleCategoryResponse{}
  554. if protoimpl.UnsafeEnabled {
  555. mi := &file_backend_operation_pasture_proto_msgTypes[8]
  556. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  557. ms.StoreMessageInfo(mi)
  558. }
  559. }
  560. func (x *SearchCattleCategoryResponse) String() string {
  561. return protoimpl.X.MessageStringOf(x)
  562. }
  563. func (*SearchCattleCategoryResponse) ProtoMessage() {}
  564. func (x *SearchCattleCategoryResponse) ProtoReflect() protoreflect.Message {
  565. mi := &file_backend_operation_pasture_proto_msgTypes[8]
  566. if protoimpl.UnsafeEnabled && x != nil {
  567. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  568. if ms.LoadMessageInfo() == nil {
  569. ms.StoreMessageInfo(mi)
  570. }
  571. return ms
  572. }
  573. return mi.MessageOf(x)
  574. }
  575. // Deprecated: Use SearchCattleCategoryResponse.ProtoReflect.Descriptor instead.
  576. func (*SearchCattleCategoryResponse) Descriptor() ([]byte, []int) {
  577. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{8}
  578. }
  579. func (x *SearchCattleCategoryResponse) GetCode() int32 {
  580. if x != nil {
  581. return x.Code
  582. }
  583. return 0
  584. }
  585. func (x *SearchCattleCategoryResponse) GetMsg() string {
  586. if x != nil {
  587. return x.Msg
  588. }
  589. return ""
  590. }
  591. func (x *SearchCattleCategoryResponse) GetData() *SearchCattleCategoryData {
  592. if x != nil {
  593. return x.Data
  594. }
  595. return nil
  596. }
  597. type SearchCattleCategoryData struct {
  598. state protoimpl.MessageState
  599. sizeCache protoimpl.SizeCache
  600. unknownFields protoimpl.UnknownFields
  601. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  602. Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  603. List []*AddCattleCategoryRequest `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  604. }
  605. func (x *SearchCattleCategoryData) Reset() {
  606. *x = SearchCattleCategoryData{}
  607. if protoimpl.UnsafeEnabled {
  608. mi := &file_backend_operation_pasture_proto_msgTypes[9]
  609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  610. ms.StoreMessageInfo(mi)
  611. }
  612. }
  613. func (x *SearchCattleCategoryData) String() string {
  614. return protoimpl.X.MessageStringOf(x)
  615. }
  616. func (*SearchCattleCategoryData) ProtoMessage() {}
  617. func (x *SearchCattleCategoryData) ProtoReflect() protoreflect.Message {
  618. mi := &file_backend_operation_pasture_proto_msgTypes[9]
  619. if protoimpl.UnsafeEnabled && x != nil {
  620. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  621. if ms.LoadMessageInfo() == nil {
  622. ms.StoreMessageInfo(mi)
  623. }
  624. return ms
  625. }
  626. return mi.MessageOf(x)
  627. }
  628. // Deprecated: Use SearchCattleCategoryData.ProtoReflect.Descriptor instead.
  629. func (*SearchCattleCategoryData) Descriptor() ([]byte, []int) {
  630. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{9}
  631. }
  632. func (x *SearchCattleCategoryData) GetPage() int32 {
  633. if x != nil {
  634. return x.Page
  635. }
  636. return 0
  637. }
  638. func (x *SearchCattleCategoryData) GetTotal() int32 {
  639. if x != nil {
  640. return x.Total
  641. }
  642. return 0
  643. }
  644. func (x *SearchCattleCategoryData) GetList() []*AddCattleCategoryRequest {
  645. if x != nil {
  646. return x.List
  647. }
  648. return nil
  649. }
  650. // 添加饲料分类
  651. type AddForageCategoryRequest struct {
  652. state protoimpl.MessageState
  653. sizeCache protoimpl.SizeCache
  654. unknownFields protoimpl.UnknownFields
  655. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  656. ParentId ForageCategoryParent_Kind `protobuf:"varint,2,opt,name=parent_id,json=parentId,proto3,enum=backend.operation.ForageCategoryParent_Kind" json:"parent_id,omitempty"` // 父类id
  657. ParentName string `protobuf:"bytes,3,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"` // 父类名称
  658. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` // 牧畜分类名称
  659. Number string `protobuf:"bytes,5,opt,name=number,proto3" json:"number,omitempty"` // 畜牧类别编号
  660. IsShow IsShow_Kind `protobuf:"varint,6,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  661. CreatedAt uint32 `protobuf:"varint,7,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  662. CreatedAtFormat string `protobuf:"bytes,8,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式
  663. }
  664. func (x *AddForageCategoryRequest) Reset() {
  665. *x = AddForageCategoryRequest{}
  666. if protoimpl.UnsafeEnabled {
  667. mi := &file_backend_operation_pasture_proto_msgTypes[10]
  668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  669. ms.StoreMessageInfo(mi)
  670. }
  671. }
  672. func (x *AddForageCategoryRequest) String() string {
  673. return protoimpl.X.MessageStringOf(x)
  674. }
  675. func (*AddForageCategoryRequest) ProtoMessage() {}
  676. func (x *AddForageCategoryRequest) ProtoReflect() protoreflect.Message {
  677. mi := &file_backend_operation_pasture_proto_msgTypes[10]
  678. if protoimpl.UnsafeEnabled && x != nil {
  679. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  680. if ms.LoadMessageInfo() == nil {
  681. ms.StoreMessageInfo(mi)
  682. }
  683. return ms
  684. }
  685. return mi.MessageOf(x)
  686. }
  687. // Deprecated: Use AddForageCategoryRequest.ProtoReflect.Descriptor instead.
  688. func (*AddForageCategoryRequest) Descriptor() ([]byte, []int) {
  689. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{10}
  690. }
  691. func (x *AddForageCategoryRequest) GetId() uint32 {
  692. if x != nil {
  693. return x.Id
  694. }
  695. return 0
  696. }
  697. func (x *AddForageCategoryRequest) GetParentId() ForageCategoryParent_Kind {
  698. if x != nil {
  699. return x.ParentId
  700. }
  701. return ForageCategoryParent_INVALID
  702. }
  703. func (x *AddForageCategoryRequest) GetParentName() string {
  704. if x != nil {
  705. return x.ParentName
  706. }
  707. return ""
  708. }
  709. func (x *AddForageCategoryRequest) GetName() string {
  710. if x != nil {
  711. return x.Name
  712. }
  713. return ""
  714. }
  715. func (x *AddForageCategoryRequest) GetNumber() string {
  716. if x != nil {
  717. return x.Number
  718. }
  719. return ""
  720. }
  721. func (x *AddForageCategoryRequest) GetIsShow() IsShow_Kind {
  722. if x != nil {
  723. return x.IsShow
  724. }
  725. return IsShow_INVALID
  726. }
  727. func (x *AddForageCategoryRequest) GetCreatedAt() uint32 {
  728. if x != nil {
  729. return x.CreatedAt
  730. }
  731. return 0
  732. }
  733. func (x *AddForageCategoryRequest) GetCreatedAtFormat() string {
  734. if x != nil {
  735. return x.CreatedAtFormat
  736. }
  737. return ""
  738. }
  739. // 是否启用
  740. type IsShowForageCategory struct {
  741. state protoimpl.MessageState
  742. sizeCache protoimpl.SizeCache
  743. unknownFields protoimpl.UnknownFields
  744. ForageCategoryId int32 `protobuf:"varint,1,opt,name=forage_category_id,json=forageCategoryId,proto3" json:"forage_category_id,omitempty"`
  745. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  746. }
  747. func (x *IsShowForageCategory) Reset() {
  748. *x = IsShowForageCategory{}
  749. if protoimpl.UnsafeEnabled {
  750. mi := &file_backend_operation_pasture_proto_msgTypes[11]
  751. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  752. ms.StoreMessageInfo(mi)
  753. }
  754. }
  755. func (x *IsShowForageCategory) String() string {
  756. return protoimpl.X.MessageStringOf(x)
  757. }
  758. func (*IsShowForageCategory) ProtoMessage() {}
  759. func (x *IsShowForageCategory) ProtoReflect() protoreflect.Message {
  760. mi := &file_backend_operation_pasture_proto_msgTypes[11]
  761. if protoimpl.UnsafeEnabled && x != nil {
  762. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  763. if ms.LoadMessageInfo() == nil {
  764. ms.StoreMessageInfo(mi)
  765. }
  766. return ms
  767. }
  768. return mi.MessageOf(x)
  769. }
  770. // Deprecated: Use IsShowForageCategory.ProtoReflect.Descriptor instead.
  771. func (*IsShowForageCategory) Descriptor() ([]byte, []int) {
  772. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{11}
  773. }
  774. func (x *IsShowForageCategory) GetForageCategoryId() int32 {
  775. if x != nil {
  776. return x.ForageCategoryId
  777. }
  778. return 0
  779. }
  780. func (x *IsShowForageCategory) GetIsShow() IsShow_Kind {
  781. if x != nil {
  782. return x.IsShow
  783. }
  784. return IsShow_INVALID
  785. }
  786. // 饲料分类查询列表
  787. type SearchForageCategoryRequest struct {
  788. state protoimpl.MessageState
  789. sizeCache protoimpl.SizeCache
  790. unknownFields protoimpl.UnknownFields
  791. ParentName string `protobuf:"bytes,1,opt,name=parent_name,json=parentName,proto3" json:"parent_name,omitempty"`
  792. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  793. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  794. Pagination *PaginationModel `protobuf:"bytes,4,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  795. }
  796. func (x *SearchForageCategoryRequest) Reset() {
  797. *x = SearchForageCategoryRequest{}
  798. if protoimpl.UnsafeEnabled {
  799. mi := &file_backend_operation_pasture_proto_msgTypes[12]
  800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  801. ms.StoreMessageInfo(mi)
  802. }
  803. }
  804. func (x *SearchForageCategoryRequest) String() string {
  805. return protoimpl.X.MessageStringOf(x)
  806. }
  807. func (*SearchForageCategoryRequest) ProtoMessage() {}
  808. func (x *SearchForageCategoryRequest) ProtoReflect() protoreflect.Message {
  809. mi := &file_backend_operation_pasture_proto_msgTypes[12]
  810. if protoimpl.UnsafeEnabled && x != nil {
  811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  812. if ms.LoadMessageInfo() == nil {
  813. ms.StoreMessageInfo(mi)
  814. }
  815. return ms
  816. }
  817. return mi.MessageOf(x)
  818. }
  819. // Deprecated: Use SearchForageCategoryRequest.ProtoReflect.Descriptor instead.
  820. func (*SearchForageCategoryRequest) Descriptor() ([]byte, []int) {
  821. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{12}
  822. }
  823. func (x *SearchForageCategoryRequest) GetParentName() string {
  824. if x != nil {
  825. return x.ParentName
  826. }
  827. return ""
  828. }
  829. func (x *SearchForageCategoryRequest) GetIsShow() IsShow_Kind {
  830. if x != nil {
  831. return x.IsShow
  832. }
  833. return IsShow_INVALID
  834. }
  835. func (x *SearchForageCategoryRequest) GetName() string {
  836. if x != nil {
  837. return x.Name
  838. }
  839. return ""
  840. }
  841. func (x *SearchForageCategoryRequest) GetPagination() *PaginationModel {
  842. if x != nil {
  843. return x.Pagination
  844. }
  845. return nil
  846. }
  847. type SearchForageCategoryResponse struct {
  848. state protoimpl.MessageState
  849. sizeCache protoimpl.SizeCache
  850. unknownFields protoimpl.UnknownFields
  851. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  852. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  853. Data *SearchForageCategoryData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  854. }
  855. func (x *SearchForageCategoryResponse) Reset() {
  856. *x = SearchForageCategoryResponse{}
  857. if protoimpl.UnsafeEnabled {
  858. mi := &file_backend_operation_pasture_proto_msgTypes[13]
  859. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  860. ms.StoreMessageInfo(mi)
  861. }
  862. }
  863. func (x *SearchForageCategoryResponse) String() string {
  864. return protoimpl.X.MessageStringOf(x)
  865. }
  866. func (*SearchForageCategoryResponse) ProtoMessage() {}
  867. func (x *SearchForageCategoryResponse) ProtoReflect() protoreflect.Message {
  868. mi := &file_backend_operation_pasture_proto_msgTypes[13]
  869. if protoimpl.UnsafeEnabled && x != nil {
  870. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  871. if ms.LoadMessageInfo() == nil {
  872. ms.StoreMessageInfo(mi)
  873. }
  874. return ms
  875. }
  876. return mi.MessageOf(x)
  877. }
  878. // Deprecated: Use SearchForageCategoryResponse.ProtoReflect.Descriptor instead.
  879. func (*SearchForageCategoryResponse) Descriptor() ([]byte, []int) {
  880. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{13}
  881. }
  882. func (x *SearchForageCategoryResponse) GetCode() int32 {
  883. if x != nil {
  884. return x.Code
  885. }
  886. return 0
  887. }
  888. func (x *SearchForageCategoryResponse) GetMsg() string {
  889. if x != nil {
  890. return x.Msg
  891. }
  892. return ""
  893. }
  894. func (x *SearchForageCategoryResponse) GetData() *SearchForageCategoryData {
  895. if x != nil {
  896. return x.Data
  897. }
  898. return nil
  899. }
  900. type SearchForageCategoryData struct {
  901. state protoimpl.MessageState
  902. sizeCache protoimpl.SizeCache
  903. unknownFields protoimpl.UnknownFields
  904. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  905. Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  906. List []*AddForageCategoryRequest `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  907. }
  908. func (x *SearchForageCategoryData) Reset() {
  909. *x = SearchForageCategoryData{}
  910. if protoimpl.UnsafeEnabled {
  911. mi := &file_backend_operation_pasture_proto_msgTypes[14]
  912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  913. ms.StoreMessageInfo(mi)
  914. }
  915. }
  916. func (x *SearchForageCategoryData) String() string {
  917. return protoimpl.X.MessageStringOf(x)
  918. }
  919. func (*SearchForageCategoryData) ProtoMessage() {}
  920. func (x *SearchForageCategoryData) ProtoReflect() protoreflect.Message {
  921. mi := &file_backend_operation_pasture_proto_msgTypes[14]
  922. if protoimpl.UnsafeEnabled && x != nil {
  923. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  924. if ms.LoadMessageInfo() == nil {
  925. ms.StoreMessageInfo(mi)
  926. }
  927. return ms
  928. }
  929. return mi.MessageOf(x)
  930. }
  931. // Deprecated: Use SearchForageCategoryData.ProtoReflect.Descriptor instead.
  932. func (*SearchForageCategoryData) Descriptor() ([]byte, []int) {
  933. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{14}
  934. }
  935. func (x *SearchForageCategoryData) GetPage() int32 {
  936. if x != nil {
  937. return x.Page
  938. }
  939. return 0
  940. }
  941. func (x *SearchForageCategoryData) GetTotal() int32 {
  942. if x != nil {
  943. return x.Total
  944. }
  945. return 0
  946. }
  947. func (x *SearchForageCategoryData) GetList() []*AddForageCategoryRequest {
  948. if x != nil {
  949. return x.List
  950. }
  951. return nil
  952. }
  953. // 饲料列表
  954. type AddForageRequest struct {
  955. state protoimpl.MessageState
  956. sizeCache protoimpl.SizeCache
  957. unknownFields protoimpl.UnknownFields
  958. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  959. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // 饲料名称
  960. CategoryId uint32 `protobuf:"varint,3,opt,name=category_id,json=categoryId,proto3" json:"category_id,omitempty"` // 饲料分类id
  961. CategoryName string `protobuf:"bytes,4,opt,name=category_name,json=categoryName,proto3" json:"category_name,omitempty"` // 饲料分类名称
  962. MaterialType uint32 `protobuf:"varint,5,opt,name=material_type,json=materialType,proto3" json:"material_type,omitempty"` // 物料类型
  963. UniqueEncode string `protobuf:"bytes,7,opt,name=unique_encode,json=uniqueEncode,proto3" json:"unique_encode,omitempty"` // 唯一编码
  964. ForageSourceId ForageSource_Kind `protobuf:"varint,8,opt,name=forage_source_id,json=forageSourceId,proto3,enum=backend.operation.ForageSource_Kind" json:"forage_source_id,omitempty"` // 饲料来源
  965. PlanTypeId ForagePlanType_Kind `protobuf:"varint,9,opt,name=plan_type_id,json=planTypeId,proto3,enum=backend.operation.ForagePlanType_Kind" json:"plan_type_id,omitempty"` // 计划类型
  966. SmallMaterialScale string `protobuf:"bytes,10,opt,name=small_material_scale,json=smallMaterialScale,proto3" json:"small_material_scale,omitempty"` // 小料称
  967. AllowError uint32 `protobuf:"varint,11,opt,name=allow_error,json=allowError,proto3" json:"allow_error,omitempty"` // 允许误差 (单位kg)
  968. PackageWeight uint32 `protobuf:"varint,12,opt,name=package_weight,json=packageWeight,proto3" json:"package_weight,omitempty"` // 包装重量 (单位kg)
  969. Price uint32 `protobuf:"varint,13,opt,name=price,proto3" json:"price,omitempty"` // 单价(单位分)
  970. JumpWeight uint32 `protobuf:"varint,14,opt,name=jump_weight,json=jumpWeight,proto3" json:"jump_weight,omitempty"` // 跳转重量域(单位kg)
  971. JumpDelay JumpDelaType_Kind `protobuf:"varint,15,opt,name=jump_delay,json=jumpDelay,proto3,enum=backend.operation.JumpDelaType_Kind" json:"jump_delay,omitempty"` // 跳转延迟
  972. ConfirmStart IsShow_Kind `protobuf:"varint,16,opt,name=confirm_start,json=confirmStart,proto3,enum=backend.operation.IsShow_Kind" json:"confirm_start,omitempty"` // 确认开始
  973. RelayLocations uint32 `protobuf:"varint,17,opt,name=relay_locations,json=relayLocations,proto3" json:"relay_locations,omitempty"` // 继电器位置
  974. Jmp IsShow_Kind `protobuf:"varint,18,opt,name=jmp,proto3,enum=backend.operation.IsShow_Kind" json:"jmp,omitempty"` // 无上域
  975. Backup1 string `protobuf:"bytes,19,opt,name=backup1,proto3" json:"backup1,omitempty"` // 备用字段1
  976. Backup2 string `protobuf:"bytes,20,opt,name=backup2,proto3" json:"backup2,omitempty"` // 备用字段2
  977. Backup3 string `protobuf:"bytes,21,opt,name=backup3,proto3" json:"backup3,omitempty"` // 备用字段3
  978. CreatedAt uint32 `protobuf:"varint,22,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  979. CreatedAtFormat string `protobuf:"bytes,23,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式化
  980. IsShow IsShow_Kind `protobuf:"varint,24,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  981. }
  982. func (x *AddForageRequest) Reset() {
  983. *x = AddForageRequest{}
  984. if protoimpl.UnsafeEnabled {
  985. mi := &file_backend_operation_pasture_proto_msgTypes[15]
  986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  987. ms.StoreMessageInfo(mi)
  988. }
  989. }
  990. func (x *AddForageRequest) String() string {
  991. return protoimpl.X.MessageStringOf(x)
  992. }
  993. func (*AddForageRequest) ProtoMessage() {}
  994. func (x *AddForageRequest) ProtoReflect() protoreflect.Message {
  995. mi := &file_backend_operation_pasture_proto_msgTypes[15]
  996. if protoimpl.UnsafeEnabled && x != nil {
  997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  998. if ms.LoadMessageInfo() == nil {
  999. ms.StoreMessageInfo(mi)
  1000. }
  1001. return ms
  1002. }
  1003. return mi.MessageOf(x)
  1004. }
  1005. // Deprecated: Use AddForageRequest.ProtoReflect.Descriptor instead.
  1006. func (*AddForageRequest) Descriptor() ([]byte, []int) {
  1007. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{15}
  1008. }
  1009. func (x *AddForageRequest) GetId() uint32 {
  1010. if x != nil {
  1011. return x.Id
  1012. }
  1013. return 0
  1014. }
  1015. func (x *AddForageRequest) GetName() string {
  1016. if x != nil {
  1017. return x.Name
  1018. }
  1019. return ""
  1020. }
  1021. func (x *AddForageRequest) GetCategoryId() uint32 {
  1022. if x != nil {
  1023. return x.CategoryId
  1024. }
  1025. return 0
  1026. }
  1027. func (x *AddForageRequest) GetCategoryName() string {
  1028. if x != nil {
  1029. return x.CategoryName
  1030. }
  1031. return ""
  1032. }
  1033. func (x *AddForageRequest) GetMaterialType() uint32 {
  1034. if x != nil {
  1035. return x.MaterialType
  1036. }
  1037. return 0
  1038. }
  1039. func (x *AddForageRequest) GetUniqueEncode() string {
  1040. if x != nil {
  1041. return x.UniqueEncode
  1042. }
  1043. return ""
  1044. }
  1045. func (x *AddForageRequest) GetForageSourceId() ForageSource_Kind {
  1046. if x != nil {
  1047. return x.ForageSourceId
  1048. }
  1049. return ForageSource_INVALID
  1050. }
  1051. func (x *AddForageRequest) GetPlanTypeId() ForagePlanType_Kind {
  1052. if x != nil {
  1053. return x.PlanTypeId
  1054. }
  1055. return ForagePlanType_INVALID
  1056. }
  1057. func (x *AddForageRequest) GetSmallMaterialScale() string {
  1058. if x != nil {
  1059. return x.SmallMaterialScale
  1060. }
  1061. return ""
  1062. }
  1063. func (x *AddForageRequest) GetAllowError() uint32 {
  1064. if x != nil {
  1065. return x.AllowError
  1066. }
  1067. return 0
  1068. }
  1069. func (x *AddForageRequest) GetPackageWeight() uint32 {
  1070. if x != nil {
  1071. return x.PackageWeight
  1072. }
  1073. return 0
  1074. }
  1075. func (x *AddForageRequest) GetPrice() uint32 {
  1076. if x != nil {
  1077. return x.Price
  1078. }
  1079. return 0
  1080. }
  1081. func (x *AddForageRequest) GetJumpWeight() uint32 {
  1082. if x != nil {
  1083. return x.JumpWeight
  1084. }
  1085. return 0
  1086. }
  1087. func (x *AddForageRequest) GetJumpDelay() JumpDelaType_Kind {
  1088. if x != nil {
  1089. return x.JumpDelay
  1090. }
  1091. return JumpDelaType_INVALID
  1092. }
  1093. func (x *AddForageRequest) GetConfirmStart() IsShow_Kind {
  1094. if x != nil {
  1095. return x.ConfirmStart
  1096. }
  1097. return IsShow_INVALID
  1098. }
  1099. func (x *AddForageRequest) GetRelayLocations() uint32 {
  1100. if x != nil {
  1101. return x.RelayLocations
  1102. }
  1103. return 0
  1104. }
  1105. func (x *AddForageRequest) GetJmp() IsShow_Kind {
  1106. if x != nil {
  1107. return x.Jmp
  1108. }
  1109. return IsShow_INVALID
  1110. }
  1111. func (x *AddForageRequest) GetBackup1() string {
  1112. if x != nil {
  1113. return x.Backup1
  1114. }
  1115. return ""
  1116. }
  1117. func (x *AddForageRequest) GetBackup2() string {
  1118. if x != nil {
  1119. return x.Backup2
  1120. }
  1121. return ""
  1122. }
  1123. func (x *AddForageRequest) GetBackup3() string {
  1124. if x != nil {
  1125. return x.Backup3
  1126. }
  1127. return ""
  1128. }
  1129. func (x *AddForageRequest) GetCreatedAt() uint32 {
  1130. if x != nil {
  1131. return x.CreatedAt
  1132. }
  1133. return 0
  1134. }
  1135. func (x *AddForageRequest) GetCreatedAtFormat() string {
  1136. if x != nil {
  1137. return x.CreatedAtFormat
  1138. }
  1139. return ""
  1140. }
  1141. func (x *AddForageRequest) GetIsShow() IsShow_Kind {
  1142. if x != nil {
  1143. return x.IsShow
  1144. }
  1145. return IsShow_INVALID
  1146. }
  1147. type SearchForageListRequest struct {
  1148. state protoimpl.MessageState
  1149. sizeCache protoimpl.SizeCache
  1150. unknownFields protoimpl.UnknownFields
  1151. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // 饲料名称
  1152. CategoryId string `protobuf:"bytes,2,opt,name=category_id,json=categoryId,proto3" json:"category_id,omitempty"` // 饲料分类id
  1153. ForageSourceId uint32 `protobuf:"varint,3,opt,name=forage_source_id,json=forageSourceId,proto3" json:"forage_source_id,omitempty"` // 饲料来源
  1154. IsShow IsShow_Kind `protobuf:"varint,4,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  1155. AllowError uint32 `protobuf:"varint,5,opt,name=allow_error,json=allowError,proto3" json:"allow_error,omitempty"` // 允许误差
  1156. JumpWeight uint32 `protobuf:"varint,6,opt,name=jump_weight,json=jumpWeight,proto3" json:"jump_weight,omitempty"` // 跳转重量域
  1157. JumpDelay JumpDelaType_Kind `protobuf:"varint,7,opt,name=jump_delay,json=jumpDelay,proto3,enum=backend.operation.JumpDelaType_Kind" json:"jump_delay,omitempty"` // 跳转延迟
  1158. Pagination *PaginationModel `protobuf:"bytes,8,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  1159. }
  1160. func (x *SearchForageListRequest) Reset() {
  1161. *x = SearchForageListRequest{}
  1162. if protoimpl.UnsafeEnabled {
  1163. mi := &file_backend_operation_pasture_proto_msgTypes[16]
  1164. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1165. ms.StoreMessageInfo(mi)
  1166. }
  1167. }
  1168. func (x *SearchForageListRequest) String() string {
  1169. return protoimpl.X.MessageStringOf(x)
  1170. }
  1171. func (*SearchForageListRequest) ProtoMessage() {}
  1172. func (x *SearchForageListRequest) ProtoReflect() protoreflect.Message {
  1173. mi := &file_backend_operation_pasture_proto_msgTypes[16]
  1174. if protoimpl.UnsafeEnabled && x != nil {
  1175. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1176. if ms.LoadMessageInfo() == nil {
  1177. ms.StoreMessageInfo(mi)
  1178. }
  1179. return ms
  1180. }
  1181. return mi.MessageOf(x)
  1182. }
  1183. // Deprecated: Use SearchForageListRequest.ProtoReflect.Descriptor instead.
  1184. func (*SearchForageListRequest) Descriptor() ([]byte, []int) {
  1185. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{16}
  1186. }
  1187. func (x *SearchForageListRequest) GetName() string {
  1188. if x != nil {
  1189. return x.Name
  1190. }
  1191. return ""
  1192. }
  1193. func (x *SearchForageListRequest) GetCategoryId() string {
  1194. if x != nil {
  1195. return x.CategoryId
  1196. }
  1197. return ""
  1198. }
  1199. func (x *SearchForageListRequest) GetForageSourceId() uint32 {
  1200. if x != nil {
  1201. return x.ForageSourceId
  1202. }
  1203. return 0
  1204. }
  1205. func (x *SearchForageListRequest) GetIsShow() IsShow_Kind {
  1206. if x != nil {
  1207. return x.IsShow
  1208. }
  1209. return IsShow_INVALID
  1210. }
  1211. func (x *SearchForageListRequest) GetAllowError() uint32 {
  1212. if x != nil {
  1213. return x.AllowError
  1214. }
  1215. return 0
  1216. }
  1217. func (x *SearchForageListRequest) GetJumpWeight() uint32 {
  1218. if x != nil {
  1219. return x.JumpWeight
  1220. }
  1221. return 0
  1222. }
  1223. func (x *SearchForageListRequest) GetJumpDelay() JumpDelaType_Kind {
  1224. if x != nil {
  1225. return x.JumpDelay
  1226. }
  1227. return JumpDelaType_INVALID
  1228. }
  1229. func (x *SearchForageListRequest) GetPagination() *PaginationModel {
  1230. if x != nil {
  1231. return x.Pagination
  1232. }
  1233. return nil
  1234. }
  1235. type SearchForageListResponse struct {
  1236. state protoimpl.MessageState
  1237. sizeCache protoimpl.SizeCache
  1238. unknownFields protoimpl.UnknownFields
  1239. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  1240. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  1241. Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
  1242. List []*AddForageRequest `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
  1243. }
  1244. func (x *SearchForageListResponse) Reset() {
  1245. *x = SearchForageListResponse{}
  1246. if protoimpl.UnsafeEnabled {
  1247. mi := &file_backend_operation_pasture_proto_msgTypes[17]
  1248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1249. ms.StoreMessageInfo(mi)
  1250. }
  1251. }
  1252. func (x *SearchForageListResponse) String() string {
  1253. return protoimpl.X.MessageStringOf(x)
  1254. }
  1255. func (*SearchForageListResponse) ProtoMessage() {}
  1256. func (x *SearchForageListResponse) ProtoReflect() protoreflect.Message {
  1257. mi := &file_backend_operation_pasture_proto_msgTypes[17]
  1258. if protoimpl.UnsafeEnabled && x != nil {
  1259. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1260. if ms.LoadMessageInfo() == nil {
  1261. ms.StoreMessageInfo(mi)
  1262. }
  1263. return ms
  1264. }
  1265. return mi.MessageOf(x)
  1266. }
  1267. // Deprecated: Use SearchForageListResponse.ProtoReflect.Descriptor instead.
  1268. func (*SearchForageListResponse) Descriptor() ([]byte, []int) {
  1269. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{17}
  1270. }
  1271. func (x *SearchForageListResponse) GetPage() int32 {
  1272. if x != nil {
  1273. return x.Page
  1274. }
  1275. return 0
  1276. }
  1277. func (x *SearchForageListResponse) GetPageSize() int32 {
  1278. if x != nil {
  1279. return x.PageSize
  1280. }
  1281. return 0
  1282. }
  1283. func (x *SearchForageListResponse) GetTotal() int32 {
  1284. if x != nil {
  1285. return x.Total
  1286. }
  1287. return 0
  1288. }
  1289. func (x *SearchForageListResponse) GetList() []*AddForageRequest {
  1290. if x != nil {
  1291. return x.List
  1292. }
  1293. return nil
  1294. }
  1295. // 是否启用
  1296. type IsShowForage struct {
  1297. state protoimpl.MessageState
  1298. sizeCache protoimpl.SizeCache
  1299. unknownFields protoimpl.UnknownFields
  1300. ForageId uint32 `protobuf:"varint,1,opt,name=forage_id,json=forageId,proto3" json:"forage_id,omitempty"`
  1301. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  1302. }
  1303. func (x *IsShowForage) Reset() {
  1304. *x = IsShowForage{}
  1305. if protoimpl.UnsafeEnabled {
  1306. mi := &file_backend_operation_pasture_proto_msgTypes[18]
  1307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1308. ms.StoreMessageInfo(mi)
  1309. }
  1310. }
  1311. func (x *IsShowForage) String() string {
  1312. return protoimpl.X.MessageStringOf(x)
  1313. }
  1314. func (*IsShowForage) ProtoMessage() {}
  1315. func (x *IsShowForage) ProtoReflect() protoreflect.Message {
  1316. mi := &file_backend_operation_pasture_proto_msgTypes[18]
  1317. if protoimpl.UnsafeEnabled && x != nil {
  1318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1319. if ms.LoadMessageInfo() == nil {
  1320. ms.StoreMessageInfo(mi)
  1321. }
  1322. return ms
  1323. }
  1324. return mi.MessageOf(x)
  1325. }
  1326. // Deprecated: Use IsShowForage.ProtoReflect.Descriptor instead.
  1327. func (*IsShowForage) Descriptor() ([]byte, []int) {
  1328. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{18}
  1329. }
  1330. func (x *IsShowForage) GetForageId() uint32 {
  1331. if x != nil {
  1332. return x.ForageId
  1333. }
  1334. return 0
  1335. }
  1336. func (x *IsShowForage) GetIsShow() IsShow_Kind {
  1337. if x != nil {
  1338. return x.IsShow
  1339. }
  1340. return IsShow_INVALID
  1341. }
  1342. type ForageEnumList struct {
  1343. state protoimpl.MessageState
  1344. sizeCache protoimpl.SizeCache
  1345. unknownFields protoimpl.UnknownFields
  1346. ForageSource []*ForageSourceEnum `protobuf:"bytes,1,rep,name=forage_source,json=forageSource,proto3" json:"forage_source,omitempty"`
  1347. ForagePlanType []*ForagePlanTypeEnum `protobuf:"bytes,2,rep,name=forage_plan_type,json=foragePlanType,proto3" json:"forage_plan_type,omitempty"`
  1348. JumpDelaType []*JumpDelaTypeEnum `protobuf:"bytes,3,rep,name=jump_dela_type,json=jumpDelaType,proto3" json:"jump_dela_type,omitempty"`
  1349. CattleParentCategory []*CattleParentCategoryEnum `protobuf:"bytes,4,rep,name=cattle_parent_category,json=cattleParentCategory,proto3" json:"cattle_parent_category,omitempty"`
  1350. ForageParentCategory []*ForageParentCategoryEnum `protobuf:"bytes,5,rep,name=forage_parent_category,json=forageParentCategory,proto3" json:"forage_parent_category,omitempty"`
  1351. IsShow []*IsShowEnum `protobuf:"bytes,6,rep,name=is_show,json=isShow,proto3" json:"is_show,omitempty"`
  1352. }
  1353. func (x *ForageEnumList) Reset() {
  1354. *x = ForageEnumList{}
  1355. if protoimpl.UnsafeEnabled {
  1356. mi := &file_backend_operation_pasture_proto_msgTypes[19]
  1357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1358. ms.StoreMessageInfo(mi)
  1359. }
  1360. }
  1361. func (x *ForageEnumList) String() string {
  1362. return protoimpl.X.MessageStringOf(x)
  1363. }
  1364. func (*ForageEnumList) ProtoMessage() {}
  1365. func (x *ForageEnumList) ProtoReflect() protoreflect.Message {
  1366. mi := &file_backend_operation_pasture_proto_msgTypes[19]
  1367. if protoimpl.UnsafeEnabled && x != nil {
  1368. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1369. if ms.LoadMessageInfo() == nil {
  1370. ms.StoreMessageInfo(mi)
  1371. }
  1372. return ms
  1373. }
  1374. return mi.MessageOf(x)
  1375. }
  1376. // Deprecated: Use ForageEnumList.ProtoReflect.Descriptor instead.
  1377. func (*ForageEnumList) Descriptor() ([]byte, []int) {
  1378. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{19}
  1379. }
  1380. func (x *ForageEnumList) GetForageSource() []*ForageSourceEnum {
  1381. if x != nil {
  1382. return x.ForageSource
  1383. }
  1384. return nil
  1385. }
  1386. func (x *ForageEnumList) GetForagePlanType() []*ForagePlanTypeEnum {
  1387. if x != nil {
  1388. return x.ForagePlanType
  1389. }
  1390. return nil
  1391. }
  1392. func (x *ForageEnumList) GetJumpDelaType() []*JumpDelaTypeEnum {
  1393. if x != nil {
  1394. return x.JumpDelaType
  1395. }
  1396. return nil
  1397. }
  1398. func (x *ForageEnumList) GetCattleParentCategory() []*CattleParentCategoryEnum {
  1399. if x != nil {
  1400. return x.CattleParentCategory
  1401. }
  1402. return nil
  1403. }
  1404. func (x *ForageEnumList) GetForageParentCategory() []*ForageParentCategoryEnum {
  1405. if x != nil {
  1406. return x.ForageParentCategory
  1407. }
  1408. return nil
  1409. }
  1410. func (x *ForageEnumList) GetIsShow() []*IsShowEnum {
  1411. if x != nil {
  1412. return x.IsShow
  1413. }
  1414. return nil
  1415. }
  1416. type ForageSourceEnum struct {
  1417. state protoimpl.MessageState
  1418. sizeCache protoimpl.SizeCache
  1419. unknownFields protoimpl.UnknownFields
  1420. Value ForageSource_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForageSource_Kind" json:"value,omitempty"`
  1421. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1422. }
  1423. func (x *ForageSourceEnum) Reset() {
  1424. *x = ForageSourceEnum{}
  1425. if protoimpl.UnsafeEnabled {
  1426. mi := &file_backend_operation_pasture_proto_msgTypes[20]
  1427. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1428. ms.StoreMessageInfo(mi)
  1429. }
  1430. }
  1431. func (x *ForageSourceEnum) String() string {
  1432. return protoimpl.X.MessageStringOf(x)
  1433. }
  1434. func (*ForageSourceEnum) ProtoMessage() {}
  1435. func (x *ForageSourceEnum) ProtoReflect() protoreflect.Message {
  1436. mi := &file_backend_operation_pasture_proto_msgTypes[20]
  1437. if protoimpl.UnsafeEnabled && x != nil {
  1438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1439. if ms.LoadMessageInfo() == nil {
  1440. ms.StoreMessageInfo(mi)
  1441. }
  1442. return ms
  1443. }
  1444. return mi.MessageOf(x)
  1445. }
  1446. // Deprecated: Use ForageSourceEnum.ProtoReflect.Descriptor instead.
  1447. func (*ForageSourceEnum) Descriptor() ([]byte, []int) {
  1448. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{20}
  1449. }
  1450. func (x *ForageSourceEnum) GetValue() ForageSource_Kind {
  1451. if x != nil {
  1452. return x.Value
  1453. }
  1454. return ForageSource_INVALID
  1455. }
  1456. func (x *ForageSourceEnum) GetLabel() string {
  1457. if x != nil {
  1458. return x.Label
  1459. }
  1460. return ""
  1461. }
  1462. type ForagePlanTypeEnum struct {
  1463. state protoimpl.MessageState
  1464. sizeCache protoimpl.SizeCache
  1465. unknownFields protoimpl.UnknownFields
  1466. Value ForagePlanType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForagePlanType_Kind" json:"value,omitempty"`
  1467. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1468. }
  1469. func (x *ForagePlanTypeEnum) Reset() {
  1470. *x = ForagePlanTypeEnum{}
  1471. if protoimpl.UnsafeEnabled {
  1472. mi := &file_backend_operation_pasture_proto_msgTypes[21]
  1473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1474. ms.StoreMessageInfo(mi)
  1475. }
  1476. }
  1477. func (x *ForagePlanTypeEnum) String() string {
  1478. return protoimpl.X.MessageStringOf(x)
  1479. }
  1480. func (*ForagePlanTypeEnum) ProtoMessage() {}
  1481. func (x *ForagePlanTypeEnum) ProtoReflect() protoreflect.Message {
  1482. mi := &file_backend_operation_pasture_proto_msgTypes[21]
  1483. if protoimpl.UnsafeEnabled && x != nil {
  1484. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1485. if ms.LoadMessageInfo() == nil {
  1486. ms.StoreMessageInfo(mi)
  1487. }
  1488. return ms
  1489. }
  1490. return mi.MessageOf(x)
  1491. }
  1492. // Deprecated: Use ForagePlanTypeEnum.ProtoReflect.Descriptor instead.
  1493. func (*ForagePlanTypeEnum) Descriptor() ([]byte, []int) {
  1494. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{21}
  1495. }
  1496. func (x *ForagePlanTypeEnum) GetValue() ForagePlanType_Kind {
  1497. if x != nil {
  1498. return x.Value
  1499. }
  1500. return ForagePlanType_INVALID
  1501. }
  1502. func (x *ForagePlanTypeEnum) GetLabel() string {
  1503. if x != nil {
  1504. return x.Label
  1505. }
  1506. return ""
  1507. }
  1508. type JumpDelaTypeEnum struct {
  1509. state protoimpl.MessageState
  1510. sizeCache protoimpl.SizeCache
  1511. unknownFields protoimpl.UnknownFields
  1512. Value JumpDelaType_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.JumpDelaType_Kind" json:"value,omitempty"`
  1513. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1514. }
  1515. func (x *JumpDelaTypeEnum) Reset() {
  1516. *x = JumpDelaTypeEnum{}
  1517. if protoimpl.UnsafeEnabled {
  1518. mi := &file_backend_operation_pasture_proto_msgTypes[22]
  1519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1520. ms.StoreMessageInfo(mi)
  1521. }
  1522. }
  1523. func (x *JumpDelaTypeEnum) String() string {
  1524. return protoimpl.X.MessageStringOf(x)
  1525. }
  1526. func (*JumpDelaTypeEnum) ProtoMessage() {}
  1527. func (x *JumpDelaTypeEnum) ProtoReflect() protoreflect.Message {
  1528. mi := &file_backend_operation_pasture_proto_msgTypes[22]
  1529. if protoimpl.UnsafeEnabled && x != nil {
  1530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1531. if ms.LoadMessageInfo() == nil {
  1532. ms.StoreMessageInfo(mi)
  1533. }
  1534. return ms
  1535. }
  1536. return mi.MessageOf(x)
  1537. }
  1538. // Deprecated: Use JumpDelaTypeEnum.ProtoReflect.Descriptor instead.
  1539. func (*JumpDelaTypeEnum) Descriptor() ([]byte, []int) {
  1540. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{22}
  1541. }
  1542. func (x *JumpDelaTypeEnum) GetValue() JumpDelaType_Kind {
  1543. if x != nil {
  1544. return x.Value
  1545. }
  1546. return JumpDelaType_INVALID
  1547. }
  1548. func (x *JumpDelaTypeEnum) GetLabel() string {
  1549. if x != nil {
  1550. return x.Label
  1551. }
  1552. return ""
  1553. }
  1554. type CattleParentCategoryEnum struct {
  1555. state protoimpl.MessageState
  1556. sizeCache protoimpl.SizeCache
  1557. unknownFields protoimpl.UnknownFields
  1558. Value CattleCategoryParent_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.CattleCategoryParent_Kind" json:"value,omitempty"`
  1559. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1560. }
  1561. func (x *CattleParentCategoryEnum) Reset() {
  1562. *x = CattleParentCategoryEnum{}
  1563. if protoimpl.UnsafeEnabled {
  1564. mi := &file_backend_operation_pasture_proto_msgTypes[23]
  1565. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1566. ms.StoreMessageInfo(mi)
  1567. }
  1568. }
  1569. func (x *CattleParentCategoryEnum) String() string {
  1570. return protoimpl.X.MessageStringOf(x)
  1571. }
  1572. func (*CattleParentCategoryEnum) ProtoMessage() {}
  1573. func (x *CattleParentCategoryEnum) ProtoReflect() protoreflect.Message {
  1574. mi := &file_backend_operation_pasture_proto_msgTypes[23]
  1575. if protoimpl.UnsafeEnabled && x != nil {
  1576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1577. if ms.LoadMessageInfo() == nil {
  1578. ms.StoreMessageInfo(mi)
  1579. }
  1580. return ms
  1581. }
  1582. return mi.MessageOf(x)
  1583. }
  1584. // Deprecated: Use CattleParentCategoryEnum.ProtoReflect.Descriptor instead.
  1585. func (*CattleParentCategoryEnum) Descriptor() ([]byte, []int) {
  1586. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{23}
  1587. }
  1588. func (x *CattleParentCategoryEnum) GetValue() CattleCategoryParent_Kind {
  1589. if x != nil {
  1590. return x.Value
  1591. }
  1592. return CattleCategoryParent_INVALID
  1593. }
  1594. func (x *CattleParentCategoryEnum) GetLabel() string {
  1595. if x != nil {
  1596. return x.Label
  1597. }
  1598. return ""
  1599. }
  1600. type ForageParentCategoryEnum struct {
  1601. state protoimpl.MessageState
  1602. sizeCache protoimpl.SizeCache
  1603. unknownFields protoimpl.UnknownFields
  1604. Value ForageCategoryParent_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.ForageCategoryParent_Kind" json:"value,omitempty"`
  1605. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1606. }
  1607. func (x *ForageParentCategoryEnum) Reset() {
  1608. *x = ForageParentCategoryEnum{}
  1609. if protoimpl.UnsafeEnabled {
  1610. mi := &file_backend_operation_pasture_proto_msgTypes[24]
  1611. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1612. ms.StoreMessageInfo(mi)
  1613. }
  1614. }
  1615. func (x *ForageParentCategoryEnum) String() string {
  1616. return protoimpl.X.MessageStringOf(x)
  1617. }
  1618. func (*ForageParentCategoryEnum) ProtoMessage() {}
  1619. func (x *ForageParentCategoryEnum) ProtoReflect() protoreflect.Message {
  1620. mi := &file_backend_operation_pasture_proto_msgTypes[24]
  1621. if protoimpl.UnsafeEnabled && x != nil {
  1622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1623. if ms.LoadMessageInfo() == nil {
  1624. ms.StoreMessageInfo(mi)
  1625. }
  1626. return ms
  1627. }
  1628. return mi.MessageOf(x)
  1629. }
  1630. // Deprecated: Use ForageParentCategoryEnum.ProtoReflect.Descriptor instead.
  1631. func (*ForageParentCategoryEnum) Descriptor() ([]byte, []int) {
  1632. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{24}
  1633. }
  1634. func (x *ForageParentCategoryEnum) GetValue() ForageCategoryParent_Kind {
  1635. if x != nil {
  1636. return x.Value
  1637. }
  1638. return ForageCategoryParent_INVALID
  1639. }
  1640. func (x *ForageParentCategoryEnum) GetLabel() string {
  1641. if x != nil {
  1642. return x.Label
  1643. }
  1644. return ""
  1645. }
  1646. type IsShowEnum struct {
  1647. state protoimpl.MessageState
  1648. sizeCache protoimpl.SizeCache
  1649. unknownFields protoimpl.UnknownFields
  1650. Value IsShow_Kind `protobuf:"varint,1,opt,name=value,proto3,enum=backend.operation.IsShow_Kind" json:"value,omitempty"`
  1651. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
  1652. }
  1653. func (x *IsShowEnum) Reset() {
  1654. *x = IsShowEnum{}
  1655. if protoimpl.UnsafeEnabled {
  1656. mi := &file_backend_operation_pasture_proto_msgTypes[25]
  1657. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1658. ms.StoreMessageInfo(mi)
  1659. }
  1660. }
  1661. func (x *IsShowEnum) String() string {
  1662. return protoimpl.X.MessageStringOf(x)
  1663. }
  1664. func (*IsShowEnum) ProtoMessage() {}
  1665. func (x *IsShowEnum) ProtoReflect() protoreflect.Message {
  1666. mi := &file_backend_operation_pasture_proto_msgTypes[25]
  1667. if protoimpl.UnsafeEnabled && x != nil {
  1668. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1669. if ms.LoadMessageInfo() == nil {
  1670. ms.StoreMessageInfo(mi)
  1671. }
  1672. return ms
  1673. }
  1674. return mi.MessageOf(x)
  1675. }
  1676. // Deprecated: Use IsShowEnum.ProtoReflect.Descriptor instead.
  1677. func (*IsShowEnum) Descriptor() ([]byte, []int) {
  1678. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{25}
  1679. }
  1680. func (x *IsShowEnum) GetValue() IsShow_Kind {
  1681. if x != nil {
  1682. return x.Value
  1683. }
  1684. return IsShow_INVALID
  1685. }
  1686. func (x *IsShowEnum) GetLabel() string {
  1687. if x != nil {
  1688. return x.Label
  1689. }
  1690. return ""
  1691. }
  1692. var File_backend_operation_pasture_proto protoreflect.FileDescriptor
  1693. var file_backend_operation_pasture_proto_rawDesc = []byte{
  1694. 0x0a, 0x1f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  1695. 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1696. 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  1697. 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x1c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70,
  1698. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f,
  1699. 0x74, 0x6f, 0x1a, 0x22, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72,
  1700. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1701. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb7, 0x02, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x50, 0x61,
  1702. 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02,
  1703. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  1704. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  1705. 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  1706. 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61,
  1707. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  1708. 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x23, 0x0a,
  1709. 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05,
  1710. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x50, 0x68, 0x6f,
  1711. 0x6e, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20,
  1712. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x37, 0x0a, 0x07,
  1713. 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e,
  1714. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  1715. 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69,
  1716. 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
  1717. 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74,
  1718. 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  1719. 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  1720. 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1721. 0x22, 0xf0, 0x01, 0x0a, 0x14, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75,
  1722. 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
  1723. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a,
  1724. 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20,
  1725. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72,
  1726. 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e,
  1727. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  1728. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74,
  1729. 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74,
  1730. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  1731. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12,
  1732. 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20,
  1733. 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  1734. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
  1735. 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
  1736. 0x69, 0x6f, 0x6e, 0x22, 0x77, 0x0a, 0x15, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x73,
  1737. 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04,
  1738. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  1739. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d,
  1740. 0x73, 0x67, 0x12, 0x38, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  1741. 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  1742. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75,
  1743. 0x72, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x94, 0x01, 0x0a,
  1744. 0x11, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x44, 0x61,
  1745. 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  1746. 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18,
  1747. 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1b, 0x0a, 0x09,
  1748. 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
  1749. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x38, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  1750. 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  1751. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x50,
  1752. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c,
  1753. 0x69, 0x73, 0x74, 0x22, 0x6c, 0x0a, 0x12, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x47, 0x72, 0x6f,
  1754. 0x75, 0x70, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73,
  1755. 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70,
  1756. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73,
  1757. 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  1758. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73,
  1759. 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f,
  1760. 0x77, 0x22, 0xc6, 0x02, 0x0a, 0x18, 0x41, 0x64, 0x64, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43,
  1761. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e,
  1762. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x49,
  1763. 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1764. 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  1765. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65,
  1766. 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52,
  1767. 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72,
  1768. 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  1769. 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  1770. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16,
  1771. 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1772. 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f,
  1773. 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  1774. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68,
  1775. 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12,
  1776. 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20,
  1777. 0x01, 0x28, 0x0d, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a,
  1778. 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72,
  1779. 0x6d, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74,
  1780. 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x22, 0x7d, 0x0a, 0x14, 0x49, 0x73,
  1781. 0x53, 0x68, 0x6f, 0x77, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
  1782. 0x72, 0x79, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74,
  1783. 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10,
  1784. 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64,
  1785. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28,
  1786. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  1787. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  1788. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0xcf, 0x01, 0x0a, 0x1b, 0x53, 0x65,
  1789. 0x61, 0x72, 0x63, 0x68, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
  1790. 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72,
  1791. 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  1792. 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73,
  1793. 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61,
  1794. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  1795. 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53,
  1796. 0x68, 0x6f, 0x77, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1797. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  1798. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61,
  1799. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  1800. 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52,
  1801. 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x01, 0x0a, 0x1c,
  1802. 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65,
  1803. 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04,
  1804. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  1805. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d,
  1806. 0x73, 0x67, 0x12, 0x3f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
  1807. 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  1808. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x61, 0x74, 0x74, 0x6c,
  1809. 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64,
  1810. 0x61, 0x74, 0x61, 0x22, 0x85, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x61,
  1811. 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61,
  1812. 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04,
  1813. 0x70, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20,
  1814. 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x3f, 0x0a, 0x04, 0x6c, 0x69,
  1815. 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  1816. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64,
  1817. 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65,
  1818. 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xc6, 0x02, 0x0a, 0x18,
  1819. 0x41, 0x64, 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  1820. 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1821. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x49, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x65,
  1822. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61,
  1823. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  1824. 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61,
  1825. 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e,
  1826. 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61,
  1827. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  1828. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  1829. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62,
  1830. 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
  1831. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28,
  1832. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  1833. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  1834. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65,
  1835. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x63,
  1836. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61,
  1837. 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x08, 0x20,
  1838. 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f,
  1839. 0x72, 0x6d, 0x61, 0x74, 0x22, 0x7d, 0x0a, 0x14, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x46, 0x6f,
  1840. 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x2c, 0x0a, 0x12,
  1841. 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f,
  1842. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65,
  1843. 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73,
  1844. 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61,
  1845. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  1846. 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53,
  1847. 0x68, 0x6f, 0x77, 0x22, 0xcf, 0x01, 0x0a, 0x1b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f,
  1848. 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75,
  1849. 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x61,
  1850. 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  1851. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18,
  1852. 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  1853. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77,
  1854. 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x12, 0x0a,
  1855. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  1856. 0x65, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  1857. 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  1858. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61,
  1859. 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e,
  1860. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x01, 0x0a, 0x1c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
  1861. 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65,
  1862. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  1863. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73,
  1864. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x3f, 0x0a, 0x04,
  1865. 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63,
  1866. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53,
  1867. 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67,
  1868. 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x85, 0x01,
  1869. 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61,
  1870. 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61,
  1871. 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x14,
  1872. 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74,
  1873. 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x3f, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03,
  1874. 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  1875. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65,
  1876. 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52,
  1877. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xc8, 0x07, 0x0a, 0x10, 0x41, 0x64, 0x64, 0x46, 0x6f, 0x72,
  1878. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1879. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  1880. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f,
  1881. 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
  1882. 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12,
  1883. 0x23, 0x0a, 0x0d, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  1884. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
  1885. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
  1886. 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x6d, 0x61, 0x74,
  1887. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x75, 0x6e, 0x69,
  1888. 0x71, 0x75, 0x65, 0x5f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  1889. 0x52, 0x0c, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x4e,
  1890. 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f,
  1891. 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  1892. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72,
  1893. 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x0e,
  1894. 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x48,
  1895. 0x0a, 0x0c, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x09,
  1896. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  1897. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50,
  1898. 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x0a, 0x70, 0x6c,
  1899. 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x6d, 0x61, 0x6c,
  1900. 0x6c, 0x5f, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x73, 0x63, 0x61, 0x6c, 0x65,
  1901. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x73, 0x6d, 0x61, 0x6c, 0x6c, 0x4d, 0x61, 0x74,
  1902. 0x65, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x6c,
  1903. 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0d, 0x52,
  1904. 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x25, 0x0a, 0x0e, 0x70,
  1905. 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x5f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0c, 0x20,
  1906. 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x57, 0x65, 0x69, 0x67,
  1907. 0x68, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
  1908. 0x0d, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6a, 0x75, 0x6d, 0x70,
  1909. 0x5f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x6a,
  1910. 0x75, 0x6d, 0x70, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x43, 0x0a, 0x0a, 0x6a, 0x75, 0x6d,
  1911. 0x70, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e,
  1912. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  1913. 0x6e, 0x2e, 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b,
  1914. 0x69, 0x6e, 0x64, 0x52, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x43,
  1915. 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18,
  1916. 0x10, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  1917. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77,
  1918. 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x53, 0x74,
  1919. 0x61, 0x72, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x6c, 0x61, 0x79, 0x5f, 0x6c, 0x6f, 0x63,
  1920. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65,
  1921. 0x6c, 0x61, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x30, 0x0a, 0x03,
  1922. 0x6a, 0x6d, 0x70, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  1923. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73,
  1924. 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x03, 0x6a, 0x6d, 0x70, 0x12, 0x18,
  1925. 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x31, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52,
  1926. 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x31, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b,
  1927. 0x75, 0x70, 0x32, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75,
  1928. 0x70, 0x32, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x33, 0x18, 0x15, 0x20,
  1929. 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x61, 0x63, 0x6b, 0x75, 0x70, 0x33, 0x12, 0x1d, 0x0a, 0x0a,
  1930. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0d,
  1931. 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63,
  1932. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1933. 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41,
  1934. 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68,
  1935. 0x6f, 0x77, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  1936. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53,
  1937. 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77,
  1938. 0x22, 0xfc, 0x02, 0x0a, 0x17, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67,
  1939. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
  1940. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  1941. 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18,
  1942. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49,
  1943. 0x64, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72,
  1944. 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x66, 0x6f, 0x72,
  1945. 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69,
  1946. 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62,
  1947. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1948. 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73,
  1949. 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x72,
  1950. 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
  1951. 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x77, 0x65,
  1952. 0x69, 0x67, 0x68, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x6a, 0x75, 0x6d, 0x70,
  1953. 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x43, 0x0a, 0x0a, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64,
  1954. 0x65, 0x6c, 0x61, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63,
  1955. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a,
  1956. 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64,
  1957. 0x52, 0x09, 0x6a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x42, 0x0a, 0x0a, 0x70,
  1958. 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1959. 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  1960. 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f,
  1961. 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
  1962. 0x9a, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65,
  1963. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04,
  1964. 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65,
  1965. 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20,
  1966. 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a,
  1967. 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f,
  1968. 0x74, 0x61, 0x6c, 0x12, 0x37, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28,
  1969. 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  1970. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x52,
  1971. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x64, 0x0a, 0x0c,
  1972. 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09,
  1973. 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52,
  1974. 0x08, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f,
  1975. 0x73, 0x68, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63,
  1976. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49,
  1977. 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68,
  1978. 0x6f, 0x77, 0x22, 0xf4, 0x03, 0x0a, 0x0e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x75,
  1979. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x0d, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f,
  1980. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62,
  1981. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1982. 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75,
  1983. 0x6d, 0x52, 0x0c, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12,
  1984. 0x4f, 0x0a, 0x10, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x74,
  1985. 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  1986. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f,
  1987. 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
  1988. 0x52, 0x0e, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65,
  1989. 0x12, 0x49, 0x0a, 0x0e, 0x6a, 0x75, 0x6d, 0x70, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x5f, 0x74, 0x79,
  1990. 0x70, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  1991. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4a, 0x75, 0x6d,
  1992. 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x6a,
  1993. 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x61, 0x0a, 0x16, 0x63,
  1994. 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x61, 0x74,
  1995. 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x62, 0x61,
  1996. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  1997. 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65,
  1998. 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x14, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65,
  1999. 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x61,
  2000. 0x0a, 0x16, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f,
  2001. 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b,
  2002. 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  2003. 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43,
  2004. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x14, 0x66, 0x6f, 0x72,
  2005. 0x61, 0x67, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
  2006. 0x79, 0x12, 0x36, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x03,
  2007. 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  2008. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x45, 0x6e, 0x75,
  2009. 0x6d, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0x64, 0x0a, 0x10, 0x46, 0x6f, 0x72,
  2010. 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3a, 0x0a,
  2011. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62,
  2012. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2013. 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x4b, 0x69,
  2014. 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62,
  2015. 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
  2016. 0x68, 0x0a, 0x12, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70,
  2017. 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01,
  2018. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f,
  2019. 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50,
  2020. 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61,
  2021. 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01,
  2022. 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x64, 0x0a, 0x10, 0x4a, 0x75, 0x6d,
  2023. 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x3a, 0x0a,
  2024. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x24, 0x2e, 0x62,
  2025. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2026. 0x2e, 0x4a, 0x75, 0x6d, 0x70, 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x2e, 0x4b, 0x69,
  2027. 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62,
  2028. 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22,
  2029. 0x74, 0x0a, 0x18, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43,
  2030. 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x42, 0x0a, 0x05, 0x76,
  2031. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63,
  2032. 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43,
  2033. 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72,
  2034. 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12,
  2035. 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2036. 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x74, 0x0a, 0x18, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50,
  2037. 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75,
  2038. 0x6d, 0x12, 0x42, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e,
  2039. 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2040. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67,
  2041. 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05,
  2042. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02,
  2043. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x22, 0x58, 0x0a, 0x0a, 0x49,
  2044. 0x73, 0x53, 0x68, 0x6f, 0x77, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x34, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  2045. 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  2046. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53,
  2047. 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12,
  2048. 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2049. 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61,
  2050. 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2051. }
  2052. var (
  2053. file_backend_operation_pasture_proto_rawDescOnce sync.Once
  2054. file_backend_operation_pasture_proto_rawDescData = file_backend_operation_pasture_proto_rawDesc
  2055. )
  2056. func file_backend_operation_pasture_proto_rawDescGZIP() []byte {
  2057. file_backend_operation_pasture_proto_rawDescOnce.Do(func() {
  2058. file_backend_operation_pasture_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_pasture_proto_rawDescData)
  2059. })
  2060. return file_backend_operation_pasture_proto_rawDescData
  2061. }
  2062. var file_backend_operation_pasture_proto_msgTypes = make([]protoimpl.MessageInfo, 26)
  2063. var file_backend_operation_pasture_proto_goTypes = []interface{}{
  2064. (*AddPastureRequest)(nil), // 0: backend.operation.AddPastureRequest
  2065. (*SearchPastureRequest)(nil), // 1: backend.operation.SearchPastureRequest
  2066. (*SearchPastureResponse)(nil), // 2: backend.operation.SearchPastureResponse
  2067. (*SearchPastureData)(nil), // 3: backend.operation.SearchPastureData
  2068. (*IsShowGroupPasture)(nil), // 4: backend.operation.IsShowGroupPasture
  2069. (*AddCattleCategoryRequest)(nil), // 5: backend.operation.AddCattleCategoryRequest
  2070. (*IsShowCattleCategory)(nil), // 6: backend.operation.IsShowCattleCategory
  2071. (*SearchCattleCategoryRequest)(nil), // 7: backend.operation.SearchCattleCategoryRequest
  2072. (*SearchCattleCategoryResponse)(nil), // 8: backend.operation.SearchCattleCategoryResponse
  2073. (*SearchCattleCategoryData)(nil), // 9: backend.operation.SearchCattleCategoryData
  2074. (*AddForageCategoryRequest)(nil), // 10: backend.operation.AddForageCategoryRequest
  2075. (*IsShowForageCategory)(nil), // 11: backend.operation.IsShowForageCategory
  2076. (*SearchForageCategoryRequest)(nil), // 12: backend.operation.SearchForageCategoryRequest
  2077. (*SearchForageCategoryResponse)(nil), // 13: backend.operation.SearchForageCategoryResponse
  2078. (*SearchForageCategoryData)(nil), // 14: backend.operation.SearchForageCategoryData
  2079. (*AddForageRequest)(nil), // 15: backend.operation.AddForageRequest
  2080. (*SearchForageListRequest)(nil), // 16: backend.operation.SearchForageListRequest
  2081. (*SearchForageListResponse)(nil), // 17: backend.operation.SearchForageListResponse
  2082. (*IsShowForage)(nil), // 18: backend.operation.IsShowForage
  2083. (*ForageEnumList)(nil), // 19: backend.operation.ForageEnumList
  2084. (*ForageSourceEnum)(nil), // 20: backend.operation.ForageSourceEnum
  2085. (*ForagePlanTypeEnum)(nil), // 21: backend.operation.ForagePlanTypeEnum
  2086. (*JumpDelaTypeEnum)(nil), // 22: backend.operation.JumpDelaTypeEnum
  2087. (*CattleParentCategoryEnum)(nil), // 23: backend.operation.CattleParentCategoryEnum
  2088. (*ForageParentCategoryEnum)(nil), // 24: backend.operation.ForageParentCategoryEnum
  2089. (*IsShowEnum)(nil), // 25: backend.operation.IsShowEnum
  2090. (IsShow_Kind)(0), // 26: backend.operation.IsShow.Kind
  2091. (*PaginationModel)(nil), // 27: backend.operation.PaginationModel
  2092. (CattleCategoryParent_Kind)(0), // 28: backend.operation.CattleCategoryParent.Kind
  2093. (ForageCategoryParent_Kind)(0), // 29: backend.operation.ForageCategoryParent.Kind
  2094. (ForageSource_Kind)(0), // 30: backend.operation.ForageSource.Kind
  2095. (ForagePlanType_Kind)(0), // 31: backend.operation.ForagePlanType.Kind
  2096. (JumpDelaType_Kind)(0), // 32: backend.operation.JumpDelaType.Kind
  2097. }
  2098. var file_backend_operation_pasture_proto_depIdxs = []int32{
  2099. 26, // 0: backend.operation.AddPastureRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2100. 27, // 1: backend.operation.SearchPastureRequest.pagination:type_name -> backend.operation.PaginationModel
  2101. 3, // 2: backend.operation.SearchPastureResponse.data:type_name -> backend.operation.SearchPastureData
  2102. 0, // 3: backend.operation.SearchPastureData.list:type_name -> backend.operation.AddPastureRequest
  2103. 26, // 4: backend.operation.IsShowGroupPasture.is_show:type_name -> backend.operation.IsShow.Kind
  2104. 28, // 5: backend.operation.AddCattleCategoryRequest.parent_id:type_name -> backend.operation.CattleCategoryParent.Kind
  2105. 26, // 6: backend.operation.AddCattleCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2106. 26, // 7: backend.operation.IsShowCattleCategory.is_show:type_name -> backend.operation.IsShow.Kind
  2107. 26, // 8: backend.operation.SearchCattleCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2108. 27, // 9: backend.operation.SearchCattleCategoryRequest.pagination:type_name -> backend.operation.PaginationModel
  2109. 9, // 10: backend.operation.SearchCattleCategoryResponse.data:type_name -> backend.operation.SearchCattleCategoryData
  2110. 5, // 11: backend.operation.SearchCattleCategoryData.list:type_name -> backend.operation.AddCattleCategoryRequest
  2111. 29, // 12: backend.operation.AddForageCategoryRequest.parent_id:type_name -> backend.operation.ForageCategoryParent.Kind
  2112. 26, // 13: backend.operation.AddForageCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2113. 26, // 14: backend.operation.IsShowForageCategory.is_show:type_name -> backend.operation.IsShow.Kind
  2114. 26, // 15: backend.operation.SearchForageCategoryRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2115. 27, // 16: backend.operation.SearchForageCategoryRequest.pagination:type_name -> backend.operation.PaginationModel
  2116. 14, // 17: backend.operation.SearchForageCategoryResponse.data:type_name -> backend.operation.SearchForageCategoryData
  2117. 10, // 18: backend.operation.SearchForageCategoryData.list:type_name -> backend.operation.AddForageCategoryRequest
  2118. 30, // 19: backend.operation.AddForageRequest.forage_source_id:type_name -> backend.operation.ForageSource.Kind
  2119. 31, // 20: backend.operation.AddForageRequest.plan_type_id:type_name -> backend.operation.ForagePlanType.Kind
  2120. 32, // 21: backend.operation.AddForageRequest.jump_delay:type_name -> backend.operation.JumpDelaType.Kind
  2121. 26, // 22: backend.operation.AddForageRequest.confirm_start:type_name -> backend.operation.IsShow.Kind
  2122. 26, // 23: backend.operation.AddForageRequest.jmp:type_name -> backend.operation.IsShow.Kind
  2123. 26, // 24: backend.operation.AddForageRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2124. 26, // 25: backend.operation.SearchForageListRequest.is_show:type_name -> backend.operation.IsShow.Kind
  2125. 32, // 26: backend.operation.SearchForageListRequest.jump_delay:type_name -> backend.operation.JumpDelaType.Kind
  2126. 27, // 27: backend.operation.SearchForageListRequest.pagination:type_name -> backend.operation.PaginationModel
  2127. 15, // 28: backend.operation.SearchForageListResponse.list:type_name -> backend.operation.AddForageRequest
  2128. 26, // 29: backend.operation.IsShowForage.is_show:type_name -> backend.operation.IsShow.Kind
  2129. 20, // 30: backend.operation.ForageEnumList.forage_source:type_name -> backend.operation.ForageSourceEnum
  2130. 21, // 31: backend.operation.ForageEnumList.forage_plan_type:type_name -> backend.operation.ForagePlanTypeEnum
  2131. 22, // 32: backend.operation.ForageEnumList.jump_dela_type:type_name -> backend.operation.JumpDelaTypeEnum
  2132. 23, // 33: backend.operation.ForageEnumList.cattle_parent_category:type_name -> backend.operation.CattleParentCategoryEnum
  2133. 24, // 34: backend.operation.ForageEnumList.forage_parent_category:type_name -> backend.operation.ForageParentCategoryEnum
  2134. 25, // 35: backend.operation.ForageEnumList.is_show:type_name -> backend.operation.IsShowEnum
  2135. 30, // 36: backend.operation.ForageSourceEnum.value:type_name -> backend.operation.ForageSource.Kind
  2136. 31, // 37: backend.operation.ForagePlanTypeEnum.value:type_name -> backend.operation.ForagePlanType.Kind
  2137. 32, // 38: backend.operation.JumpDelaTypeEnum.value:type_name -> backend.operation.JumpDelaType.Kind
  2138. 28, // 39: backend.operation.CattleParentCategoryEnum.value:type_name -> backend.operation.CattleCategoryParent.Kind
  2139. 29, // 40: backend.operation.ForageParentCategoryEnum.value:type_name -> backend.operation.ForageCategoryParent.Kind
  2140. 26, // 41: backend.operation.IsShowEnum.value:type_name -> backend.operation.IsShow.Kind
  2141. 42, // [42:42] is the sub-list for method output_type
  2142. 42, // [42:42] is the sub-list for method input_type
  2143. 42, // [42:42] is the sub-list for extension type_name
  2144. 42, // [42:42] is the sub-list for extension extendee
  2145. 0, // [0:42] is the sub-list for field type_name
  2146. }
  2147. func init() { file_backend_operation_pasture_proto_init() }
  2148. func file_backend_operation_pasture_proto_init() {
  2149. if File_backend_operation_pasture_proto != nil {
  2150. return
  2151. }
  2152. file_backend_operation_enum_proto_init()
  2153. file_backend_operation_pagination_proto_init()
  2154. if !protoimpl.UnsafeEnabled {
  2155. file_backend_operation_pasture_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2156. switch v := v.(*AddPastureRequest); i {
  2157. case 0:
  2158. return &v.state
  2159. case 1:
  2160. return &v.sizeCache
  2161. case 2:
  2162. return &v.unknownFields
  2163. default:
  2164. return nil
  2165. }
  2166. }
  2167. file_backend_operation_pasture_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2168. switch v := v.(*SearchPastureRequest); i {
  2169. case 0:
  2170. return &v.state
  2171. case 1:
  2172. return &v.sizeCache
  2173. case 2:
  2174. return &v.unknownFields
  2175. default:
  2176. return nil
  2177. }
  2178. }
  2179. file_backend_operation_pasture_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2180. switch v := v.(*SearchPastureResponse); i {
  2181. case 0:
  2182. return &v.state
  2183. case 1:
  2184. return &v.sizeCache
  2185. case 2:
  2186. return &v.unknownFields
  2187. default:
  2188. return nil
  2189. }
  2190. }
  2191. file_backend_operation_pasture_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2192. switch v := v.(*SearchPastureData); i {
  2193. case 0:
  2194. return &v.state
  2195. case 1:
  2196. return &v.sizeCache
  2197. case 2:
  2198. return &v.unknownFields
  2199. default:
  2200. return nil
  2201. }
  2202. }
  2203. file_backend_operation_pasture_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2204. switch v := v.(*IsShowGroupPasture); i {
  2205. case 0:
  2206. return &v.state
  2207. case 1:
  2208. return &v.sizeCache
  2209. case 2:
  2210. return &v.unknownFields
  2211. default:
  2212. return nil
  2213. }
  2214. }
  2215. file_backend_operation_pasture_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2216. switch v := v.(*AddCattleCategoryRequest); i {
  2217. case 0:
  2218. return &v.state
  2219. case 1:
  2220. return &v.sizeCache
  2221. case 2:
  2222. return &v.unknownFields
  2223. default:
  2224. return nil
  2225. }
  2226. }
  2227. file_backend_operation_pasture_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2228. switch v := v.(*IsShowCattleCategory); i {
  2229. case 0:
  2230. return &v.state
  2231. case 1:
  2232. return &v.sizeCache
  2233. case 2:
  2234. return &v.unknownFields
  2235. default:
  2236. return nil
  2237. }
  2238. }
  2239. file_backend_operation_pasture_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2240. switch v := v.(*SearchCattleCategoryRequest); i {
  2241. case 0:
  2242. return &v.state
  2243. case 1:
  2244. return &v.sizeCache
  2245. case 2:
  2246. return &v.unknownFields
  2247. default:
  2248. return nil
  2249. }
  2250. }
  2251. file_backend_operation_pasture_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2252. switch v := v.(*SearchCattleCategoryResponse); i {
  2253. case 0:
  2254. return &v.state
  2255. case 1:
  2256. return &v.sizeCache
  2257. case 2:
  2258. return &v.unknownFields
  2259. default:
  2260. return nil
  2261. }
  2262. }
  2263. file_backend_operation_pasture_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2264. switch v := v.(*SearchCattleCategoryData); i {
  2265. case 0:
  2266. return &v.state
  2267. case 1:
  2268. return &v.sizeCache
  2269. case 2:
  2270. return &v.unknownFields
  2271. default:
  2272. return nil
  2273. }
  2274. }
  2275. file_backend_operation_pasture_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2276. switch v := v.(*AddForageCategoryRequest); i {
  2277. case 0:
  2278. return &v.state
  2279. case 1:
  2280. return &v.sizeCache
  2281. case 2:
  2282. return &v.unknownFields
  2283. default:
  2284. return nil
  2285. }
  2286. }
  2287. file_backend_operation_pasture_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2288. switch v := v.(*IsShowForageCategory); i {
  2289. case 0:
  2290. return &v.state
  2291. case 1:
  2292. return &v.sizeCache
  2293. case 2:
  2294. return &v.unknownFields
  2295. default:
  2296. return nil
  2297. }
  2298. }
  2299. file_backend_operation_pasture_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2300. switch v := v.(*SearchForageCategoryRequest); i {
  2301. case 0:
  2302. return &v.state
  2303. case 1:
  2304. return &v.sizeCache
  2305. case 2:
  2306. return &v.unknownFields
  2307. default:
  2308. return nil
  2309. }
  2310. }
  2311. file_backend_operation_pasture_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2312. switch v := v.(*SearchForageCategoryResponse); i {
  2313. case 0:
  2314. return &v.state
  2315. case 1:
  2316. return &v.sizeCache
  2317. case 2:
  2318. return &v.unknownFields
  2319. default:
  2320. return nil
  2321. }
  2322. }
  2323. file_backend_operation_pasture_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2324. switch v := v.(*SearchForageCategoryData); i {
  2325. case 0:
  2326. return &v.state
  2327. case 1:
  2328. return &v.sizeCache
  2329. case 2:
  2330. return &v.unknownFields
  2331. default:
  2332. return nil
  2333. }
  2334. }
  2335. file_backend_operation_pasture_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2336. switch v := v.(*AddForageRequest); i {
  2337. case 0:
  2338. return &v.state
  2339. case 1:
  2340. return &v.sizeCache
  2341. case 2:
  2342. return &v.unknownFields
  2343. default:
  2344. return nil
  2345. }
  2346. }
  2347. file_backend_operation_pasture_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2348. switch v := v.(*SearchForageListRequest); i {
  2349. case 0:
  2350. return &v.state
  2351. case 1:
  2352. return &v.sizeCache
  2353. case 2:
  2354. return &v.unknownFields
  2355. default:
  2356. return nil
  2357. }
  2358. }
  2359. file_backend_operation_pasture_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2360. switch v := v.(*SearchForageListResponse); i {
  2361. case 0:
  2362. return &v.state
  2363. case 1:
  2364. return &v.sizeCache
  2365. case 2:
  2366. return &v.unknownFields
  2367. default:
  2368. return nil
  2369. }
  2370. }
  2371. file_backend_operation_pasture_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2372. switch v := v.(*IsShowForage); i {
  2373. case 0:
  2374. return &v.state
  2375. case 1:
  2376. return &v.sizeCache
  2377. case 2:
  2378. return &v.unknownFields
  2379. default:
  2380. return nil
  2381. }
  2382. }
  2383. file_backend_operation_pasture_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2384. switch v := v.(*ForageEnumList); i {
  2385. case 0:
  2386. return &v.state
  2387. case 1:
  2388. return &v.sizeCache
  2389. case 2:
  2390. return &v.unknownFields
  2391. default:
  2392. return nil
  2393. }
  2394. }
  2395. file_backend_operation_pasture_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2396. switch v := v.(*ForageSourceEnum); i {
  2397. case 0:
  2398. return &v.state
  2399. case 1:
  2400. return &v.sizeCache
  2401. case 2:
  2402. return &v.unknownFields
  2403. default:
  2404. return nil
  2405. }
  2406. }
  2407. file_backend_operation_pasture_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2408. switch v := v.(*ForagePlanTypeEnum); i {
  2409. case 0:
  2410. return &v.state
  2411. case 1:
  2412. return &v.sizeCache
  2413. case 2:
  2414. return &v.unknownFields
  2415. default:
  2416. return nil
  2417. }
  2418. }
  2419. file_backend_operation_pasture_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2420. switch v := v.(*JumpDelaTypeEnum); i {
  2421. case 0:
  2422. return &v.state
  2423. case 1:
  2424. return &v.sizeCache
  2425. case 2:
  2426. return &v.unknownFields
  2427. default:
  2428. return nil
  2429. }
  2430. }
  2431. file_backend_operation_pasture_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2432. switch v := v.(*CattleParentCategoryEnum); i {
  2433. case 0:
  2434. return &v.state
  2435. case 1:
  2436. return &v.sizeCache
  2437. case 2:
  2438. return &v.unknownFields
  2439. default:
  2440. return nil
  2441. }
  2442. }
  2443. file_backend_operation_pasture_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2444. switch v := v.(*ForageParentCategoryEnum); i {
  2445. case 0:
  2446. return &v.state
  2447. case 1:
  2448. return &v.sizeCache
  2449. case 2:
  2450. return &v.unknownFields
  2451. default:
  2452. return nil
  2453. }
  2454. }
  2455. file_backend_operation_pasture_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2456. switch v := v.(*IsShowEnum); i {
  2457. case 0:
  2458. return &v.state
  2459. case 1:
  2460. return &v.sizeCache
  2461. case 2:
  2462. return &v.unknownFields
  2463. default:
  2464. return nil
  2465. }
  2466. }
  2467. }
  2468. type x struct{}
  2469. out := protoimpl.TypeBuilder{
  2470. File: protoimpl.DescBuilder{
  2471. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2472. RawDescriptor: file_backend_operation_pasture_proto_rawDesc,
  2473. NumEnums: 0,
  2474. NumMessages: 26,
  2475. NumExtensions: 0,
  2476. NumServices: 0,
  2477. },
  2478. GoTypes: file_backend_operation_pasture_proto_goTypes,
  2479. DependencyIndexes: file_backend_operation_pasture_proto_depIdxs,
  2480. MessageInfos: file_backend_operation_pasture_proto_msgTypes,
  2481. }.Build()
  2482. File_backend_operation_pasture_proto = out.File
  2483. file_backend_operation_pasture_proto_rawDesc = nil
  2484. file_backend_operation_pasture_proto_goTypes = nil
  2485. file_backend_operation_pasture_proto_depIdxs = nil
  2486. }