pasture.pb.go 111 KB

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