enum.pb.go 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194
  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/enum.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 IsShow_Kind int32
  20. const (
  21. IsShow_INVALID IsShow_Kind = 0 // 无效
  22. IsShow_OK IsShow_Kind = 1 // 是
  23. IsShow_NO IsShow_Kind = 2 // 否
  24. )
  25. // Enum value maps for IsShow_Kind.
  26. var (
  27. IsShow_Kind_name = map[int32]string{
  28. 0: "INVALID",
  29. 1: "OK",
  30. 2: "NO",
  31. }
  32. IsShow_Kind_value = map[string]int32{
  33. "INVALID": 0,
  34. "OK": 1,
  35. "NO": 2,
  36. }
  37. )
  38. func (x IsShow_Kind) Enum() *IsShow_Kind {
  39. p := new(IsShow_Kind)
  40. *p = x
  41. return p
  42. }
  43. func (x IsShow_Kind) String() string {
  44. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  45. }
  46. func (IsShow_Kind) Descriptor() protoreflect.EnumDescriptor {
  47. return file_backend_operation_enum_proto_enumTypes[0].Descriptor()
  48. }
  49. func (IsShow_Kind) Type() protoreflect.EnumType {
  50. return &file_backend_operation_enum_proto_enumTypes[0]
  51. }
  52. func (x IsShow_Kind) Number() protoreflect.EnumNumber {
  53. return protoreflect.EnumNumber(x)
  54. }
  55. // Deprecated: Use IsShow_Kind.Descriptor instead.
  56. func (IsShow_Kind) EnumDescriptor() ([]byte, []int) {
  57. return file_backend_operation_enum_proto_rawDescGZIP(), []int{0, 0}
  58. }
  59. type CattleCategoryParent_Kind int32
  60. const (
  61. CattleCategoryParent_INVALID CattleCategoryParent_Kind = 0 // 所有
  62. CattleCategoryParent_LACTATION_CAW CattleCategoryParent_Kind = 1 // 泌乳牛
  63. CattleCategoryParent_FATTEN_CAW CattleCategoryParent_Kind = 2 // 育肥牛
  64. CattleCategoryParent_RESERVE_CAW CattleCategoryParent_Kind = 3 // 后备牛
  65. CattleCategoryParent_DRY_CAW CattleCategoryParent_Kind = 4 // 干奶牛
  66. CattleCategoryParent_PERINATAL_CAW CattleCategoryParent_Kind = 5 // 围产牛
  67. CattleCategoryParent_OTHER_CAW CattleCategoryParent_Kind = 6 // 其他
  68. )
  69. // Enum value maps for CattleCategoryParent_Kind.
  70. var (
  71. CattleCategoryParent_Kind_name = map[int32]string{
  72. 0: "INVALID",
  73. 1: "LACTATION_CAW",
  74. 2: "FATTEN_CAW",
  75. 3: "RESERVE_CAW",
  76. 4: "DRY_CAW",
  77. 5: "PERINATAL_CAW",
  78. 6: "OTHER_CAW",
  79. }
  80. CattleCategoryParent_Kind_value = map[string]int32{
  81. "INVALID": 0,
  82. "LACTATION_CAW": 1,
  83. "FATTEN_CAW": 2,
  84. "RESERVE_CAW": 3,
  85. "DRY_CAW": 4,
  86. "PERINATAL_CAW": 5,
  87. "OTHER_CAW": 6,
  88. }
  89. )
  90. func (x CattleCategoryParent_Kind) Enum() *CattleCategoryParent_Kind {
  91. p := new(CattleCategoryParent_Kind)
  92. *p = x
  93. return p
  94. }
  95. func (x CattleCategoryParent_Kind) String() string {
  96. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  97. }
  98. func (CattleCategoryParent_Kind) Descriptor() protoreflect.EnumDescriptor {
  99. return file_backend_operation_enum_proto_enumTypes[1].Descriptor()
  100. }
  101. func (CattleCategoryParent_Kind) Type() protoreflect.EnumType {
  102. return &file_backend_operation_enum_proto_enumTypes[1]
  103. }
  104. func (x CattleCategoryParent_Kind) Number() protoreflect.EnumNumber {
  105. return protoreflect.EnumNumber(x)
  106. }
  107. // Deprecated: Use CattleCategoryParent_Kind.Descriptor instead.
  108. func (CattleCategoryParent_Kind) EnumDescriptor() ([]byte, []int) {
  109. return file_backend_operation_enum_proto_rawDescGZIP(), []int{1, 0}
  110. }
  111. type ForageCategoryParent_Kind int32
  112. const (
  113. ForageCategoryParent_INVALID ForageCategoryParent_Kind = 0 // 无效
  114. ForageCategoryParent_ROUGHAGE ForageCategoryParent_Kind = 1 // 粗料
  115. ForageCategoryParent_CONCENTRATE ForageCategoryParent_Kind = 2 // 精料(浓缩料)
  116. ForageCategoryParent_HALF_ROUGHAGE_HALF_CONCENTRATE ForageCategoryParent_Kind = 3 // 粗料精料各半
  117. ForageCategoryParent_OTHER ForageCategoryParent_Kind = 4 // 其他
  118. )
  119. // Enum value maps for ForageCategoryParent_Kind.
  120. var (
  121. ForageCategoryParent_Kind_name = map[int32]string{
  122. 0: "INVALID",
  123. 1: "ROUGHAGE",
  124. 2: "CONCENTRATE",
  125. 3: "HALF_ROUGHAGE_HALF_CONCENTRATE",
  126. 4: "OTHER",
  127. }
  128. ForageCategoryParent_Kind_value = map[string]int32{
  129. "INVALID": 0,
  130. "ROUGHAGE": 1,
  131. "CONCENTRATE": 2,
  132. "HALF_ROUGHAGE_HALF_CONCENTRATE": 3,
  133. "OTHER": 4,
  134. }
  135. )
  136. func (x ForageCategoryParent_Kind) Enum() *ForageCategoryParent_Kind {
  137. p := new(ForageCategoryParent_Kind)
  138. *p = x
  139. return p
  140. }
  141. func (x ForageCategoryParent_Kind) String() string {
  142. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  143. }
  144. func (ForageCategoryParent_Kind) Descriptor() protoreflect.EnumDescriptor {
  145. return file_backend_operation_enum_proto_enumTypes[2].Descriptor()
  146. }
  147. func (ForageCategoryParent_Kind) Type() protoreflect.EnumType {
  148. return &file_backend_operation_enum_proto_enumTypes[2]
  149. }
  150. func (x ForageCategoryParent_Kind) Number() protoreflect.EnumNumber {
  151. return protoreflect.EnumNumber(x)
  152. }
  153. // Deprecated: Use ForageCategoryParent_Kind.Descriptor instead.
  154. func (ForageCategoryParent_Kind) EnumDescriptor() ([]byte, []int) {
  155. return file_backend_operation_enum_proto_rawDescGZIP(), []int{2, 0}
  156. }
  157. type ForageSource_Kind int32
  158. const (
  159. ForageSource_INVALID ForageSource_Kind = 0 // 无效
  160. ForageSource_SYSTEM_BUILT_IN ForageSource_Kind = 1 // 系统内置
  161. ForageSource_USER_DEFINED ForageSource_Kind = 2 // 用户自定义
  162. )
  163. // Enum value maps for ForageSource_Kind.
  164. var (
  165. ForageSource_Kind_name = map[int32]string{
  166. 0: "INVALID",
  167. 1: "SYSTEM_BUILT_IN",
  168. 2: "USER_DEFINED",
  169. }
  170. ForageSource_Kind_value = map[string]int32{
  171. "INVALID": 0,
  172. "SYSTEM_BUILT_IN": 1,
  173. "USER_DEFINED": 2,
  174. }
  175. )
  176. func (x ForageSource_Kind) Enum() *ForageSource_Kind {
  177. p := new(ForageSource_Kind)
  178. *p = x
  179. return p
  180. }
  181. func (x ForageSource_Kind) String() string {
  182. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  183. }
  184. func (ForageSource_Kind) Descriptor() protoreflect.EnumDescriptor {
  185. return file_backend_operation_enum_proto_enumTypes[3].Descriptor()
  186. }
  187. func (ForageSource_Kind) Type() protoreflect.EnumType {
  188. return &file_backend_operation_enum_proto_enumTypes[3]
  189. }
  190. func (x ForageSource_Kind) Number() protoreflect.EnumNumber {
  191. return protoreflect.EnumNumber(x)
  192. }
  193. // Deprecated: Use ForageSource_Kind.Descriptor instead.
  194. func (ForageSource_Kind) EnumDescriptor() ([]byte, []int) {
  195. return file_backend_operation_enum_proto_rawDescGZIP(), []int{3, 0}
  196. }
  197. type JumpDelaType_Kind int32
  198. const (
  199. JumpDelaType_INVALID JumpDelaType_Kind = 0 // 禁用
  200. JumpDelaType_THREE JumpDelaType_Kind = 1 // 3秒
  201. JumpDelaType_SIX JumpDelaType_Kind = 2 // 6秒
  202. JumpDelaType_NINE JumpDelaType_Kind = 3 // 9秒
  203. )
  204. // Enum value maps for JumpDelaType_Kind.
  205. var (
  206. JumpDelaType_Kind_name = map[int32]string{
  207. 0: "INVALID",
  208. 1: "THREE",
  209. 2: "SIX",
  210. 3: "NINE",
  211. }
  212. JumpDelaType_Kind_value = map[string]int32{
  213. "INVALID": 0,
  214. "THREE": 1,
  215. "SIX": 2,
  216. "NINE": 3,
  217. }
  218. )
  219. func (x JumpDelaType_Kind) Enum() *JumpDelaType_Kind {
  220. p := new(JumpDelaType_Kind)
  221. *p = x
  222. return p
  223. }
  224. func (x JumpDelaType_Kind) String() string {
  225. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  226. }
  227. func (JumpDelaType_Kind) Descriptor() protoreflect.EnumDescriptor {
  228. return file_backend_operation_enum_proto_enumTypes[4].Descriptor()
  229. }
  230. func (JumpDelaType_Kind) Type() protoreflect.EnumType {
  231. return &file_backend_operation_enum_proto_enumTypes[4]
  232. }
  233. func (x JumpDelaType_Kind) Number() protoreflect.EnumNumber {
  234. return protoreflect.EnumNumber(x)
  235. }
  236. // Deprecated: Use JumpDelaType_Kind.Descriptor instead.
  237. func (JumpDelaType_Kind) EnumDescriptor() ([]byte, []int) {
  238. return file_backend_operation_enum_proto_rawDescGZIP(), []int{4, 0}
  239. }
  240. type ForagePlanType_Kind int32
  241. const (
  242. ForagePlanType_INVALID ForagePlanType_Kind = 0 // 无
  243. ForagePlanType_FORKLIFT ForagePlanType_Kind = 1 // 铲车
  244. ForagePlanType_CONCENTRATE ForagePlanType_Kind = 2 // 精料
  245. )
  246. // Enum value maps for ForagePlanType_Kind.
  247. var (
  248. ForagePlanType_Kind_name = map[int32]string{
  249. 0: "INVALID",
  250. 1: "FORKLIFT",
  251. 2: "CONCENTRATE",
  252. }
  253. ForagePlanType_Kind_value = map[string]int32{
  254. "INVALID": 0,
  255. "FORKLIFT": 1,
  256. "CONCENTRATE": 2,
  257. }
  258. )
  259. func (x ForagePlanType_Kind) Enum() *ForagePlanType_Kind {
  260. p := new(ForagePlanType_Kind)
  261. *p = x
  262. return p
  263. }
  264. func (x ForagePlanType_Kind) String() string {
  265. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  266. }
  267. func (ForagePlanType_Kind) Descriptor() protoreflect.EnumDescriptor {
  268. return file_backend_operation_enum_proto_enumTypes[5].Descriptor()
  269. }
  270. func (ForagePlanType_Kind) Type() protoreflect.EnumType {
  271. return &file_backend_operation_enum_proto_enumTypes[5]
  272. }
  273. func (x ForagePlanType_Kind) Number() protoreflect.EnumNumber {
  274. return protoreflect.EnumNumber(x)
  275. }
  276. // Deprecated: Use ForagePlanType_Kind.Descriptor instead.
  277. func (ForagePlanType_Kind) EnumDescriptor() ([]byte, []int) {
  278. return file_backend_operation_enum_proto_rawDescGZIP(), []int{5, 0}
  279. }
  280. type DataSource_Kind int32
  281. const (
  282. DataSource_INVALID DataSource_Kind = 0 // 无
  283. DataSource_BACKGROUND_ADD DataSource_Kind = 1 // 后台手动添加
  284. DataSource_EXCEL_IMPORT DataSource_Kind = 2 // excel报表导入
  285. DataSource_FROM_PASTURE DataSource_Kind = 3 // 来自牧场
  286. )
  287. // Enum value maps for DataSource_Kind.
  288. var (
  289. DataSource_Kind_name = map[int32]string{
  290. 0: "INVALID",
  291. 1: "BACKGROUND_ADD",
  292. 2: "EXCEL_IMPORT",
  293. 3: "FROM_PASTURE",
  294. }
  295. DataSource_Kind_value = map[string]int32{
  296. "INVALID": 0,
  297. "BACKGROUND_ADD": 1,
  298. "EXCEL_IMPORT": 2,
  299. "FROM_PASTURE": 3,
  300. }
  301. )
  302. func (x DataSource_Kind) Enum() *DataSource_Kind {
  303. p := new(DataSource_Kind)
  304. *p = x
  305. return p
  306. }
  307. func (x DataSource_Kind) String() string {
  308. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  309. }
  310. func (DataSource_Kind) Descriptor() protoreflect.EnumDescriptor {
  311. return file_backend_operation_enum_proto_enumTypes[6].Descriptor()
  312. }
  313. func (DataSource_Kind) Type() protoreflect.EnumType {
  314. return &file_backend_operation_enum_proto_enumTypes[6]
  315. }
  316. func (x DataSource_Kind) Number() protoreflect.EnumNumber {
  317. return protoreflect.EnumNumber(x)
  318. }
  319. // Deprecated: Use DataSource_Kind.Descriptor instead.
  320. func (DataSource_Kind) EnumDescriptor() ([]byte, []int) {
  321. return file_backend_operation_enum_proto_rawDescGZIP(), []int{6, 0}
  322. }
  323. type FormulaType_Kind int32
  324. const (
  325. FormulaType_INVALID FormulaType_Kind = 0 // 无
  326. FormulaType_FEED_FORMULA FormulaType_Kind = 1 // 饲喂配方
  327. FormulaType_PREMIXED_FORMULA FormulaType_Kind = 2 // 预混配方
  328. FormulaType_SUPPLEMENTARY_FORMULA FormulaType_Kind = 3 // 补料配方
  329. )
  330. // Enum value maps for FormulaType_Kind.
  331. var (
  332. FormulaType_Kind_name = map[int32]string{
  333. 0: "INVALID",
  334. 1: "FEED_FORMULA",
  335. 2: "PREMIXED_FORMULA",
  336. 3: "SUPPLEMENTARY_FORMULA",
  337. }
  338. FormulaType_Kind_value = map[string]int32{
  339. "INVALID": 0,
  340. "FEED_FORMULA": 1,
  341. "PREMIXED_FORMULA": 2,
  342. "SUPPLEMENTARY_FORMULA": 3,
  343. }
  344. )
  345. func (x FormulaType_Kind) Enum() *FormulaType_Kind {
  346. p := new(FormulaType_Kind)
  347. *p = x
  348. return p
  349. }
  350. func (x FormulaType_Kind) String() string {
  351. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  352. }
  353. func (FormulaType_Kind) Descriptor() protoreflect.EnumDescriptor {
  354. return file_backend_operation_enum_proto_enumTypes[7].Descriptor()
  355. }
  356. func (FormulaType_Kind) Type() protoreflect.EnumType {
  357. return &file_backend_operation_enum_proto_enumTypes[7]
  358. }
  359. func (x FormulaType_Kind) Number() protoreflect.EnumNumber {
  360. return protoreflect.EnumNumber(x)
  361. }
  362. // Deprecated: Use FormulaType_Kind.Descriptor instead.
  363. func (FormulaType_Kind) EnumDescriptor() ([]byte, []int) {
  364. return file_backend_operation_enum_proto_rawDescGZIP(), []int{7, 0}
  365. }
  366. type DashboardTopType_Kind int32
  367. const (
  368. DashboardTopType_INVALID DashboardTopType_Kind = 0 // 无
  369. DashboardTopType_MIXED_ACCURATE DashboardTopType_Kind = 1 // 混料准确率
  370. DashboardTopType_MIXED_CORRECT DashboardTopType_Kind = 2 // 混料正确率
  371. DashboardTopType_SPRINKLE_ACCURATE DashboardTopType_Kind = 3 // 撒料准确率
  372. DashboardTopType_Sprinkle_CORRECT DashboardTopType_Kind = 4 // 撒料正确率
  373. )
  374. // Enum value maps for DashboardTopType_Kind.
  375. var (
  376. DashboardTopType_Kind_name = map[int32]string{
  377. 0: "INVALID",
  378. 1: "MIXED_ACCURATE",
  379. 2: "MIXED_CORRECT",
  380. 3: "SPRINKLE_ACCURATE",
  381. 4: "Sprinkle_CORRECT",
  382. }
  383. DashboardTopType_Kind_value = map[string]int32{
  384. "INVALID": 0,
  385. "MIXED_ACCURATE": 1,
  386. "MIXED_CORRECT": 2,
  387. "SPRINKLE_ACCURATE": 3,
  388. "Sprinkle_CORRECT": 4,
  389. }
  390. )
  391. func (x DashboardTopType_Kind) Enum() *DashboardTopType_Kind {
  392. p := new(DashboardTopType_Kind)
  393. *p = x
  394. return p
  395. }
  396. func (x DashboardTopType_Kind) String() string {
  397. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  398. }
  399. func (DashboardTopType_Kind) Descriptor() protoreflect.EnumDescriptor {
  400. return file_backend_operation_enum_proto_enumTypes[8].Descriptor()
  401. }
  402. func (DashboardTopType_Kind) Type() protoreflect.EnumType {
  403. return &file_backend_operation_enum_proto_enumTypes[8]
  404. }
  405. func (x DashboardTopType_Kind) Number() protoreflect.EnumNumber {
  406. return protoreflect.EnumNumber(x)
  407. }
  408. // Deprecated: Use DashboardTopType_Kind.Descriptor instead.
  409. func (DashboardTopType_Kind) EnumDescriptor() ([]byte, []int) {
  410. return file_backend_operation_enum_proto_rawDescGZIP(), []int{8, 0}
  411. }
  412. type FeedFormulaEditRecordType_Kind int32
  413. const (
  414. FeedFormulaEditRecordType_INVALID FeedFormulaEditRecordType_Kind = 0 // 无
  415. FeedFormulaEditRecordType_INSERT FeedFormulaEditRecordType_Kind = 1 // 混料准确率
  416. FeedFormulaEditRecordType_UPDATE FeedFormulaEditRecordType_Kind = 2 // 混料正确率
  417. FeedFormulaEditRecordType_DELETE FeedFormulaEditRecordType_Kind = 3 // 撒料准确率
  418. )
  419. // Enum value maps for FeedFormulaEditRecordType_Kind.
  420. var (
  421. FeedFormulaEditRecordType_Kind_name = map[int32]string{
  422. 0: "INVALID",
  423. 1: "INSERT",
  424. 2: "UPDATE",
  425. 3: "DELETE",
  426. }
  427. FeedFormulaEditRecordType_Kind_value = map[string]int32{
  428. "INVALID": 0,
  429. "INSERT": 1,
  430. "UPDATE": 2,
  431. "DELETE": 3,
  432. }
  433. )
  434. func (x FeedFormulaEditRecordType_Kind) Enum() *FeedFormulaEditRecordType_Kind {
  435. p := new(FeedFormulaEditRecordType_Kind)
  436. *p = x
  437. return p
  438. }
  439. func (x FeedFormulaEditRecordType_Kind) String() string {
  440. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  441. }
  442. func (FeedFormulaEditRecordType_Kind) Descriptor() protoreflect.EnumDescriptor {
  443. return file_backend_operation_enum_proto_enumTypes[9].Descriptor()
  444. }
  445. func (FeedFormulaEditRecordType_Kind) Type() protoreflect.EnumType {
  446. return &file_backend_operation_enum_proto_enumTypes[9]
  447. }
  448. func (x FeedFormulaEditRecordType_Kind) Number() protoreflect.EnumNumber {
  449. return protoreflect.EnumNumber(x)
  450. }
  451. // Deprecated: Use FeedFormulaEditRecordType_Kind.Descriptor instead.
  452. func (FeedFormulaEditRecordType_Kind) EnumDescriptor() ([]byte, []int) {
  453. return file_backend_operation_enum_proto_rawDescGZIP(), []int{9, 0}
  454. }
  455. // 字段类型
  456. type IsShow struct {
  457. state protoimpl.MessageState
  458. sizeCache protoimpl.SizeCache
  459. unknownFields protoimpl.UnknownFields
  460. }
  461. func (x *IsShow) Reset() {
  462. *x = IsShow{}
  463. if protoimpl.UnsafeEnabled {
  464. mi := &file_backend_operation_enum_proto_msgTypes[0]
  465. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  466. ms.StoreMessageInfo(mi)
  467. }
  468. }
  469. func (x *IsShow) String() string {
  470. return protoimpl.X.MessageStringOf(x)
  471. }
  472. func (*IsShow) ProtoMessage() {}
  473. func (x *IsShow) ProtoReflect() protoreflect.Message {
  474. mi := &file_backend_operation_enum_proto_msgTypes[0]
  475. if protoimpl.UnsafeEnabled && x != nil {
  476. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  477. if ms.LoadMessageInfo() == nil {
  478. ms.StoreMessageInfo(mi)
  479. }
  480. return ms
  481. }
  482. return mi.MessageOf(x)
  483. }
  484. // Deprecated: Use IsShow.ProtoReflect.Descriptor instead.
  485. func (*IsShow) Descriptor() ([]byte, []int) {
  486. return file_backend_operation_enum_proto_rawDescGZIP(), []int{0}
  487. }
  488. type CattleCategoryParent struct {
  489. state protoimpl.MessageState
  490. sizeCache protoimpl.SizeCache
  491. unknownFields protoimpl.UnknownFields
  492. }
  493. func (x *CattleCategoryParent) Reset() {
  494. *x = CattleCategoryParent{}
  495. if protoimpl.UnsafeEnabled {
  496. mi := &file_backend_operation_enum_proto_msgTypes[1]
  497. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  498. ms.StoreMessageInfo(mi)
  499. }
  500. }
  501. func (x *CattleCategoryParent) String() string {
  502. return protoimpl.X.MessageStringOf(x)
  503. }
  504. func (*CattleCategoryParent) ProtoMessage() {}
  505. func (x *CattleCategoryParent) ProtoReflect() protoreflect.Message {
  506. mi := &file_backend_operation_enum_proto_msgTypes[1]
  507. if protoimpl.UnsafeEnabled && x != nil {
  508. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  509. if ms.LoadMessageInfo() == nil {
  510. ms.StoreMessageInfo(mi)
  511. }
  512. return ms
  513. }
  514. return mi.MessageOf(x)
  515. }
  516. // Deprecated: Use CattleCategoryParent.ProtoReflect.Descriptor instead.
  517. func (*CattleCategoryParent) Descriptor() ([]byte, []int) {
  518. return file_backend_operation_enum_proto_rawDescGZIP(), []int{1}
  519. }
  520. // 饲料类别
  521. type ForageCategoryParent struct {
  522. state protoimpl.MessageState
  523. sizeCache protoimpl.SizeCache
  524. unknownFields protoimpl.UnknownFields
  525. }
  526. func (x *ForageCategoryParent) Reset() {
  527. *x = ForageCategoryParent{}
  528. if protoimpl.UnsafeEnabled {
  529. mi := &file_backend_operation_enum_proto_msgTypes[2]
  530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  531. ms.StoreMessageInfo(mi)
  532. }
  533. }
  534. func (x *ForageCategoryParent) String() string {
  535. return protoimpl.X.MessageStringOf(x)
  536. }
  537. func (*ForageCategoryParent) ProtoMessage() {}
  538. func (x *ForageCategoryParent) ProtoReflect() protoreflect.Message {
  539. mi := &file_backend_operation_enum_proto_msgTypes[2]
  540. if protoimpl.UnsafeEnabled && x != nil {
  541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  542. if ms.LoadMessageInfo() == nil {
  543. ms.StoreMessageInfo(mi)
  544. }
  545. return ms
  546. }
  547. return mi.MessageOf(x)
  548. }
  549. // Deprecated: Use ForageCategoryParent.ProtoReflect.Descriptor instead.
  550. func (*ForageCategoryParent) Descriptor() ([]byte, []int) {
  551. return file_backend_operation_enum_proto_rawDescGZIP(), []int{2}
  552. }
  553. // 饲料来源
  554. type ForageSource struct {
  555. state protoimpl.MessageState
  556. sizeCache protoimpl.SizeCache
  557. unknownFields protoimpl.UnknownFields
  558. }
  559. func (x *ForageSource) Reset() {
  560. *x = ForageSource{}
  561. if protoimpl.UnsafeEnabled {
  562. mi := &file_backend_operation_enum_proto_msgTypes[3]
  563. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  564. ms.StoreMessageInfo(mi)
  565. }
  566. }
  567. func (x *ForageSource) String() string {
  568. return protoimpl.X.MessageStringOf(x)
  569. }
  570. func (*ForageSource) ProtoMessage() {}
  571. func (x *ForageSource) ProtoReflect() protoreflect.Message {
  572. mi := &file_backend_operation_enum_proto_msgTypes[3]
  573. if protoimpl.UnsafeEnabled && x != nil {
  574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  575. if ms.LoadMessageInfo() == nil {
  576. ms.StoreMessageInfo(mi)
  577. }
  578. return ms
  579. }
  580. return mi.MessageOf(x)
  581. }
  582. // Deprecated: Use ForageSource.ProtoReflect.Descriptor instead.
  583. func (*ForageSource) Descriptor() ([]byte, []int) {
  584. return file_backend_operation_enum_proto_rawDescGZIP(), []int{3}
  585. }
  586. // 跳转延迟
  587. type JumpDelaType struct {
  588. state protoimpl.MessageState
  589. sizeCache protoimpl.SizeCache
  590. unknownFields protoimpl.UnknownFields
  591. }
  592. func (x *JumpDelaType) Reset() {
  593. *x = JumpDelaType{}
  594. if protoimpl.UnsafeEnabled {
  595. mi := &file_backend_operation_enum_proto_msgTypes[4]
  596. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  597. ms.StoreMessageInfo(mi)
  598. }
  599. }
  600. func (x *JumpDelaType) String() string {
  601. return protoimpl.X.MessageStringOf(x)
  602. }
  603. func (*JumpDelaType) ProtoMessage() {}
  604. func (x *JumpDelaType) ProtoReflect() protoreflect.Message {
  605. mi := &file_backend_operation_enum_proto_msgTypes[4]
  606. if protoimpl.UnsafeEnabled && x != nil {
  607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  608. if ms.LoadMessageInfo() == nil {
  609. ms.StoreMessageInfo(mi)
  610. }
  611. return ms
  612. }
  613. return mi.MessageOf(x)
  614. }
  615. // Deprecated: Use JumpDelaType.ProtoReflect.Descriptor instead.
  616. func (*JumpDelaType) Descriptor() ([]byte, []int) {
  617. return file_backend_operation_enum_proto_rawDescGZIP(), []int{4}
  618. }
  619. // 计划类型
  620. type ForagePlanType struct {
  621. state protoimpl.MessageState
  622. sizeCache protoimpl.SizeCache
  623. unknownFields protoimpl.UnknownFields
  624. }
  625. func (x *ForagePlanType) Reset() {
  626. *x = ForagePlanType{}
  627. if protoimpl.UnsafeEnabled {
  628. mi := &file_backend_operation_enum_proto_msgTypes[5]
  629. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  630. ms.StoreMessageInfo(mi)
  631. }
  632. }
  633. func (x *ForagePlanType) String() string {
  634. return protoimpl.X.MessageStringOf(x)
  635. }
  636. func (*ForagePlanType) ProtoMessage() {}
  637. func (x *ForagePlanType) ProtoReflect() protoreflect.Message {
  638. mi := &file_backend_operation_enum_proto_msgTypes[5]
  639. if protoimpl.UnsafeEnabled && x != nil {
  640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  641. if ms.LoadMessageInfo() == nil {
  642. ms.StoreMessageInfo(mi)
  643. }
  644. return ms
  645. }
  646. return mi.MessageOf(x)
  647. }
  648. // Deprecated: Use ForagePlanType.ProtoReflect.Descriptor instead.
  649. func (*ForagePlanType) Descriptor() ([]byte, []int) {
  650. return file_backend_operation_enum_proto_rawDescGZIP(), []int{5}
  651. }
  652. type DataSource struct {
  653. state protoimpl.MessageState
  654. sizeCache protoimpl.SizeCache
  655. unknownFields protoimpl.UnknownFields
  656. }
  657. func (x *DataSource) Reset() {
  658. *x = DataSource{}
  659. if protoimpl.UnsafeEnabled {
  660. mi := &file_backend_operation_enum_proto_msgTypes[6]
  661. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  662. ms.StoreMessageInfo(mi)
  663. }
  664. }
  665. func (x *DataSource) String() string {
  666. return protoimpl.X.MessageStringOf(x)
  667. }
  668. func (*DataSource) ProtoMessage() {}
  669. func (x *DataSource) ProtoReflect() protoreflect.Message {
  670. mi := &file_backend_operation_enum_proto_msgTypes[6]
  671. if protoimpl.UnsafeEnabled && x != nil {
  672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  673. if ms.LoadMessageInfo() == nil {
  674. ms.StoreMessageInfo(mi)
  675. }
  676. return ms
  677. }
  678. return mi.MessageOf(x)
  679. }
  680. // Deprecated: Use DataSource.ProtoReflect.Descriptor instead.
  681. func (*DataSource) Descriptor() ([]byte, []int) {
  682. return file_backend_operation_enum_proto_rawDescGZIP(), []int{6}
  683. }
  684. type FormulaType struct {
  685. state protoimpl.MessageState
  686. sizeCache protoimpl.SizeCache
  687. unknownFields protoimpl.UnknownFields
  688. }
  689. func (x *FormulaType) Reset() {
  690. *x = FormulaType{}
  691. if protoimpl.UnsafeEnabled {
  692. mi := &file_backend_operation_enum_proto_msgTypes[7]
  693. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  694. ms.StoreMessageInfo(mi)
  695. }
  696. }
  697. func (x *FormulaType) String() string {
  698. return protoimpl.X.MessageStringOf(x)
  699. }
  700. func (*FormulaType) ProtoMessage() {}
  701. func (x *FormulaType) ProtoReflect() protoreflect.Message {
  702. mi := &file_backend_operation_enum_proto_msgTypes[7]
  703. if protoimpl.UnsafeEnabled && x != nil {
  704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  705. if ms.LoadMessageInfo() == nil {
  706. ms.StoreMessageInfo(mi)
  707. }
  708. return ms
  709. }
  710. return mi.MessageOf(x)
  711. }
  712. // Deprecated: Use FormulaType.ProtoReflect.Descriptor instead.
  713. func (*FormulaType) Descriptor() ([]byte, []int) {
  714. return file_backend_operation_enum_proto_rawDescGZIP(), []int{7}
  715. }
  716. // DashboardTopType 首页排行榜的类型
  717. type DashboardTopType struct {
  718. state protoimpl.MessageState
  719. sizeCache protoimpl.SizeCache
  720. unknownFields protoimpl.UnknownFields
  721. }
  722. func (x *DashboardTopType) Reset() {
  723. *x = DashboardTopType{}
  724. if protoimpl.UnsafeEnabled {
  725. mi := &file_backend_operation_enum_proto_msgTypes[8]
  726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  727. ms.StoreMessageInfo(mi)
  728. }
  729. }
  730. func (x *DashboardTopType) String() string {
  731. return protoimpl.X.MessageStringOf(x)
  732. }
  733. func (*DashboardTopType) ProtoMessage() {}
  734. func (x *DashboardTopType) ProtoReflect() protoreflect.Message {
  735. mi := &file_backend_operation_enum_proto_msgTypes[8]
  736. if protoimpl.UnsafeEnabled && x != nil {
  737. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  738. if ms.LoadMessageInfo() == nil {
  739. ms.StoreMessageInfo(mi)
  740. }
  741. return ms
  742. }
  743. return mi.MessageOf(x)
  744. }
  745. // Deprecated: Use DashboardTopType.ProtoReflect.Descriptor instead.
  746. func (*DashboardTopType) Descriptor() ([]byte, []int) {
  747. return file_backend_operation_enum_proto_rawDescGZIP(), []int{8}
  748. }
  749. // FeedFormulaEditRecordType 配方饲料修改类型
  750. type FeedFormulaEditRecordType struct {
  751. state protoimpl.MessageState
  752. sizeCache protoimpl.SizeCache
  753. unknownFields protoimpl.UnknownFields
  754. }
  755. func (x *FeedFormulaEditRecordType) Reset() {
  756. *x = FeedFormulaEditRecordType{}
  757. if protoimpl.UnsafeEnabled {
  758. mi := &file_backend_operation_enum_proto_msgTypes[9]
  759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  760. ms.StoreMessageInfo(mi)
  761. }
  762. }
  763. func (x *FeedFormulaEditRecordType) String() string {
  764. return protoimpl.X.MessageStringOf(x)
  765. }
  766. func (*FeedFormulaEditRecordType) ProtoMessage() {}
  767. func (x *FeedFormulaEditRecordType) ProtoReflect() protoreflect.Message {
  768. mi := &file_backend_operation_enum_proto_msgTypes[9]
  769. if protoimpl.UnsafeEnabled && x != nil {
  770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  771. if ms.LoadMessageInfo() == nil {
  772. ms.StoreMessageInfo(mi)
  773. }
  774. return ms
  775. }
  776. return mi.MessageOf(x)
  777. }
  778. // Deprecated: Use FeedFormulaEditRecordType.ProtoReflect.Descriptor instead.
  779. func (*FeedFormulaEditRecordType) Descriptor() ([]byte, []int) {
  780. return file_backend_operation_enum_proto_rawDescGZIP(), []int{9}
  781. }
  782. var File_backend_operation_enum_proto protoreflect.FileDescriptor
  783. var file_backend_operation_enum_proto_rawDesc = []byte{
  784. 0x0a, 0x1c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  785. 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x11,
  786. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  787. 0x6e, 0x22, 0x2d, 0x0a, 0x06, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x22, 0x23, 0x0a, 0x04, 0x4b,
  788. 0x69, 0x6e, 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00,
  789. 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b, 0x10, 0x01, 0x12, 0x06, 0x0a, 0x02, 0x4e, 0x4f, 0x10, 0x02,
  790. 0x22, 0x8e, 0x01, 0x0a, 0x14, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67,
  791. 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x76, 0x0a, 0x04, 0x4b, 0x69, 0x6e,
  792. 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x11,
  793. 0x0a, 0x0d, 0x4c, 0x41, 0x43, 0x54, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x41, 0x57, 0x10,
  794. 0x01, 0x12, 0x0e, 0x0a, 0x0a, 0x46, 0x41, 0x54, 0x54, 0x45, 0x4e, 0x5f, 0x43, 0x41, 0x57, 0x10,
  795. 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45, 0x5f, 0x43, 0x41, 0x57,
  796. 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x52, 0x59, 0x5f, 0x43, 0x41, 0x57, 0x10, 0x04, 0x12,
  797. 0x11, 0x0a, 0x0d, 0x50, 0x45, 0x52, 0x49, 0x4e, 0x41, 0x54, 0x41, 0x4c, 0x5f, 0x43, 0x41, 0x57,
  798. 0x10, 0x05, 0x12, 0x0d, 0x0a, 0x09, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x5f, 0x43, 0x41, 0x57, 0x10,
  799. 0x06, 0x22, 0x79, 0x0a, 0x14, 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67,
  800. 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x22, 0x61, 0x0a, 0x04, 0x4b, 0x69, 0x6e,
  801. 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x0c,
  802. 0x0a, 0x08, 0x52, 0x4f, 0x55, 0x47, 0x48, 0x41, 0x47, 0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b,
  803. 0x43, 0x4f, 0x4e, 0x43, 0x45, 0x4e, 0x54, 0x52, 0x41, 0x54, 0x45, 0x10, 0x02, 0x12, 0x22, 0x0a,
  804. 0x1e, 0x48, 0x41, 0x4c, 0x46, 0x5f, 0x52, 0x4f, 0x55, 0x47, 0x48, 0x41, 0x47, 0x45, 0x5f, 0x48,
  805. 0x41, 0x4c, 0x46, 0x5f, 0x43, 0x4f, 0x4e, 0x43, 0x45, 0x4e, 0x54, 0x52, 0x41, 0x54, 0x45, 0x10,
  806. 0x03, 0x12, 0x09, 0x0a, 0x05, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x10, 0x04, 0x22, 0x4a, 0x0a, 0x0c,
  807. 0x46, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22, 0x3a, 0x0a, 0x04,
  808. 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10,
  809. 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x42, 0x55, 0x49, 0x4c,
  810. 0x54, 0x5f, 0x49, 0x4e, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x44,
  811. 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x02, 0x22, 0x41, 0x0a, 0x0c, 0x4a, 0x75, 0x6d, 0x70,
  812. 0x44, 0x65, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x22, 0x31, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64,
  813. 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a,
  814. 0x05, 0x54, 0x48, 0x52, 0x45, 0x45, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x53, 0x49, 0x58, 0x10,
  815. 0x02, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x49, 0x4e, 0x45, 0x10, 0x03, 0x22, 0x44, 0x0a, 0x0e, 0x46,
  816. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a,
  817. 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44,
  818. 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x46, 0x4f, 0x52, 0x4b, 0x4c, 0x49, 0x46, 0x54, 0x10, 0x01,
  819. 0x12, 0x0f, 0x0a, 0x0b, 0x43, 0x4f, 0x4e, 0x43, 0x45, 0x4e, 0x54, 0x52, 0x41, 0x54, 0x45, 0x10,
  820. 0x02, 0x22, 0x59, 0x0a, 0x0a, 0x44, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22,
  821. 0x4b, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c,
  822. 0x49, 0x44, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e, 0x42, 0x41, 0x43, 0x4b, 0x47, 0x52, 0x4f, 0x55,
  823. 0x4e, 0x44, 0x5f, 0x41, 0x44, 0x44, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x45, 0x58, 0x43, 0x45,
  824. 0x4c, 0x5f, 0x49, 0x4d, 0x50, 0x4f, 0x52, 0x54, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x0c, 0x46, 0x52,
  825. 0x4f, 0x4d, 0x5f, 0x50, 0x41, 0x53, 0x54, 0x55, 0x52, 0x45, 0x10, 0x03, 0x22, 0x65, 0x0a, 0x0b,
  826. 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x22, 0x56, 0x0a, 0x04, 0x4b,
  827. 0x69, 0x6e, 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00,
  828. 0x12, 0x10, 0x0a, 0x0c, 0x46, 0x45, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x55, 0x4c, 0x41,
  829. 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x50, 0x52, 0x45, 0x4d, 0x49, 0x58, 0x45, 0x44, 0x5f, 0x46,
  830. 0x4f, 0x52, 0x4d, 0x55, 0x4c, 0x41, 0x10, 0x02, 0x12, 0x19, 0x0a, 0x15, 0x53, 0x55, 0x50, 0x50,
  831. 0x4c, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x41, 0x52, 0x59, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x55, 0x4c,
  832. 0x41, 0x10, 0x03, 0x22, 0x7b, 0x0a, 0x10, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64,
  833. 0x54, 0x6f, 0x70, 0x54, 0x79, 0x70, 0x65, 0x22, 0x67, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12,
  834. 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x00, 0x12, 0x12, 0x0a, 0x0e,
  835. 0x4d, 0x49, 0x58, 0x45, 0x44, 0x5f, 0x41, 0x43, 0x43, 0x55, 0x52, 0x41, 0x54, 0x45, 0x10, 0x01,
  836. 0x12, 0x11, 0x0a, 0x0d, 0x4d, 0x49, 0x58, 0x45, 0x44, 0x5f, 0x43, 0x4f, 0x52, 0x52, 0x45, 0x43,
  837. 0x54, 0x10, 0x02, 0x12, 0x15, 0x0a, 0x11, 0x53, 0x50, 0x52, 0x49, 0x4e, 0x4b, 0x4c, 0x45, 0x5f,
  838. 0x41, 0x43, 0x43, 0x55, 0x52, 0x41, 0x54, 0x45, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10, 0x53, 0x70,
  839. 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x43, 0x4f, 0x52, 0x52, 0x45, 0x43, 0x54, 0x10, 0x04,
  840. 0x22, 0x54, 0x0a, 0x19, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x45,
  841. 0x64, 0x69, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65, 0x22, 0x37, 0x0a,
  842. 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44,
  843. 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x4e, 0x53, 0x45, 0x52, 0x54, 0x10, 0x01, 0x12, 0x0a,
  844. 0x0a, 0x06, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x45,
  845. 0x4c, 0x45, 0x54, 0x45, 0x10, 0x03, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x3b, 0x6f, 0x70, 0x65, 0x72,
  846. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  847. }
  848. var (
  849. file_backend_operation_enum_proto_rawDescOnce sync.Once
  850. file_backend_operation_enum_proto_rawDescData = file_backend_operation_enum_proto_rawDesc
  851. )
  852. func file_backend_operation_enum_proto_rawDescGZIP() []byte {
  853. file_backend_operation_enum_proto_rawDescOnce.Do(func() {
  854. file_backend_operation_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_enum_proto_rawDescData)
  855. })
  856. return file_backend_operation_enum_proto_rawDescData
  857. }
  858. var file_backend_operation_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 10)
  859. var file_backend_operation_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
  860. var file_backend_operation_enum_proto_goTypes = []interface{}{
  861. (IsShow_Kind)(0), // 0: backend.operation.IsShow.Kind
  862. (CattleCategoryParent_Kind)(0), // 1: backend.operation.CattleCategoryParent.Kind
  863. (ForageCategoryParent_Kind)(0), // 2: backend.operation.ForageCategoryParent.Kind
  864. (ForageSource_Kind)(0), // 3: backend.operation.ForageSource.Kind
  865. (JumpDelaType_Kind)(0), // 4: backend.operation.JumpDelaType.Kind
  866. (ForagePlanType_Kind)(0), // 5: backend.operation.ForagePlanType.Kind
  867. (DataSource_Kind)(0), // 6: backend.operation.DataSource.Kind
  868. (FormulaType_Kind)(0), // 7: backend.operation.FormulaType.Kind
  869. (DashboardTopType_Kind)(0), // 8: backend.operation.DashboardTopType.Kind
  870. (FeedFormulaEditRecordType_Kind)(0), // 9: backend.operation.FeedFormulaEditRecordType.Kind
  871. (*IsShow)(nil), // 10: backend.operation.IsShow
  872. (*CattleCategoryParent)(nil), // 11: backend.operation.CattleCategoryParent
  873. (*ForageCategoryParent)(nil), // 12: backend.operation.ForageCategoryParent
  874. (*ForageSource)(nil), // 13: backend.operation.ForageSource
  875. (*JumpDelaType)(nil), // 14: backend.operation.JumpDelaType
  876. (*ForagePlanType)(nil), // 15: backend.operation.ForagePlanType
  877. (*DataSource)(nil), // 16: backend.operation.DataSource
  878. (*FormulaType)(nil), // 17: backend.operation.FormulaType
  879. (*DashboardTopType)(nil), // 18: backend.operation.DashboardTopType
  880. (*FeedFormulaEditRecordType)(nil), // 19: backend.operation.FeedFormulaEditRecordType
  881. }
  882. var file_backend_operation_enum_proto_depIdxs = []int32{
  883. 0, // [0:0] is the sub-list for method output_type
  884. 0, // [0:0] is the sub-list for method input_type
  885. 0, // [0:0] is the sub-list for extension type_name
  886. 0, // [0:0] is the sub-list for extension extendee
  887. 0, // [0:0] is the sub-list for field type_name
  888. }
  889. func init() { file_backend_operation_enum_proto_init() }
  890. func file_backend_operation_enum_proto_init() {
  891. if File_backend_operation_enum_proto != nil {
  892. return
  893. }
  894. if !protoimpl.UnsafeEnabled {
  895. file_backend_operation_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  896. switch v := v.(*IsShow); i {
  897. case 0:
  898. return &v.state
  899. case 1:
  900. return &v.sizeCache
  901. case 2:
  902. return &v.unknownFields
  903. default:
  904. return nil
  905. }
  906. }
  907. file_backend_operation_enum_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  908. switch v := v.(*CattleCategoryParent); i {
  909. case 0:
  910. return &v.state
  911. case 1:
  912. return &v.sizeCache
  913. case 2:
  914. return &v.unknownFields
  915. default:
  916. return nil
  917. }
  918. }
  919. file_backend_operation_enum_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  920. switch v := v.(*ForageCategoryParent); i {
  921. case 0:
  922. return &v.state
  923. case 1:
  924. return &v.sizeCache
  925. case 2:
  926. return &v.unknownFields
  927. default:
  928. return nil
  929. }
  930. }
  931. file_backend_operation_enum_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  932. switch v := v.(*ForageSource); i {
  933. case 0:
  934. return &v.state
  935. case 1:
  936. return &v.sizeCache
  937. case 2:
  938. return &v.unknownFields
  939. default:
  940. return nil
  941. }
  942. }
  943. file_backend_operation_enum_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  944. switch v := v.(*JumpDelaType); i {
  945. case 0:
  946. return &v.state
  947. case 1:
  948. return &v.sizeCache
  949. case 2:
  950. return &v.unknownFields
  951. default:
  952. return nil
  953. }
  954. }
  955. file_backend_operation_enum_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  956. switch v := v.(*ForagePlanType); i {
  957. case 0:
  958. return &v.state
  959. case 1:
  960. return &v.sizeCache
  961. case 2:
  962. return &v.unknownFields
  963. default:
  964. return nil
  965. }
  966. }
  967. file_backend_operation_enum_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  968. switch v := v.(*DataSource); i {
  969. case 0:
  970. return &v.state
  971. case 1:
  972. return &v.sizeCache
  973. case 2:
  974. return &v.unknownFields
  975. default:
  976. return nil
  977. }
  978. }
  979. file_backend_operation_enum_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  980. switch v := v.(*FormulaType); i {
  981. case 0:
  982. return &v.state
  983. case 1:
  984. return &v.sizeCache
  985. case 2:
  986. return &v.unknownFields
  987. default:
  988. return nil
  989. }
  990. }
  991. file_backend_operation_enum_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  992. switch v := v.(*DashboardTopType); i {
  993. case 0:
  994. return &v.state
  995. case 1:
  996. return &v.sizeCache
  997. case 2:
  998. return &v.unknownFields
  999. default:
  1000. return nil
  1001. }
  1002. }
  1003. file_backend_operation_enum_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1004. switch v := v.(*FeedFormulaEditRecordType); i {
  1005. case 0:
  1006. return &v.state
  1007. case 1:
  1008. return &v.sizeCache
  1009. case 2:
  1010. return &v.unknownFields
  1011. default:
  1012. return nil
  1013. }
  1014. }
  1015. }
  1016. type x struct{}
  1017. out := protoimpl.TypeBuilder{
  1018. File: protoimpl.DescBuilder{
  1019. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1020. RawDescriptor: file_backend_operation_enum_proto_rawDesc,
  1021. NumEnums: 10,
  1022. NumMessages: 10,
  1023. NumExtensions: 0,
  1024. NumServices: 0,
  1025. },
  1026. GoTypes: file_backend_operation_enum_proto_goTypes,
  1027. DependencyIndexes: file_backend_operation_enum_proto_depIdxs,
  1028. EnumInfos: file_backend_operation_enum_proto_enumTypes,
  1029. MessageInfos: file_backend_operation_enum_proto_msgTypes,
  1030. }.Build()
  1031. File_backend_operation_enum_proto = out.File
  1032. file_backend_operation_enum_proto_rawDesc = nil
  1033. file_backend_operation_enum_proto_goTypes = nil
  1034. file_backend_operation_enum_proto_depIdxs = nil
  1035. }