feed_formula.pb.go 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376
  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/feed_formula.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 AddFeedFormulaRequest 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. EncodeNumber string `protobuf:"bytes,3,opt,name=encode_number,json=encodeNumber,proto3" json:"encode_number,omitempty"` // 编码
  26. Colour string `protobuf:"bytes,4,opt,name=colour,proto3" json:"colour,omitempty"` // 颜色
  27. CattleCategoryId CattleCategoryParent_Kind `protobuf:"varint,5,opt,name=cattle_category_id,json=cattleCategoryId,proto3,enum=backend.operation.CattleCategoryParent_Kind" json:"cattle_category_id,omitempty"` // 畜牧类别id
  28. CattleCategoryName string `protobuf:"bytes,6,opt,name=cattle_category_name,json=cattleCategoryName,proto3" json:"cattle_category_name,omitempty"` // 畜牧类型名称
  29. FormulaTypeId int32 `protobuf:"varint,7,opt,name=formula_type_id,json=formulaTypeId,proto3" json:"formula_type_id,omitempty"` // 配方类型id
  30. FormulaTypeName string `protobuf:"bytes,8,opt,name=formula_type_name,json=formulaTypeName,proto3" json:"formula_type_name,omitempty"` // 配方类型名称
  31. DataSourceId DataSource_Kind `protobuf:"varint,9,opt,name=data_source_id,json=dataSourceId,proto3,enum=backend.operation.DataSource_Kind" json:"data_source_id,omitempty"` // 数据来源
  32. DataSourceName string `protobuf:"bytes,10,opt,name=data_source_name,json=dataSourceName,proto3" json:"data_source_name,omitempty"` // 数据来源
  33. Remarks string `protobuf:"bytes,11,opt,name=remarks,proto3" json:"remarks,omitempty"` // 备注
  34. Version int32 `protobuf:"varint,12,opt,name=version,proto3" json:"version,omitempty"` // 版本号
  35. IsShow IsShow_Kind `protobuf:"varint,13,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  36. IsModify IsShow_Kind `protobuf:"varint,14,opt,name=is_modify,json=isModify,proto3,enum=backend.operation.IsShow_Kind" json:"is_modify,omitempty"` // 是否可修改
  37. CreatedAt int32 `protobuf:"varint,15,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  38. CreatedAtFormat string `protobuf:"bytes,16,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式化
  39. PastureName string `protobuf:"bytes,17,opt,name=pasture_name,json=pastureName,proto3" json:"pasture_name,omitempty"` // 牧场名称
  40. }
  41. func (x *AddFeedFormulaRequest) Reset() {
  42. *x = AddFeedFormulaRequest{}
  43. if protoimpl.UnsafeEnabled {
  44. mi := &file_backend_operation_feed_formula_proto_msgTypes[0]
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. ms.StoreMessageInfo(mi)
  47. }
  48. }
  49. func (x *AddFeedFormulaRequest) String() string {
  50. return protoimpl.X.MessageStringOf(x)
  51. }
  52. func (*AddFeedFormulaRequest) ProtoMessage() {}
  53. func (x *AddFeedFormulaRequest) ProtoReflect() protoreflect.Message {
  54. mi := &file_backend_operation_feed_formula_proto_msgTypes[0]
  55. if protoimpl.UnsafeEnabled && x != nil {
  56. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  57. if ms.LoadMessageInfo() == nil {
  58. ms.StoreMessageInfo(mi)
  59. }
  60. return ms
  61. }
  62. return mi.MessageOf(x)
  63. }
  64. // Deprecated: Use AddFeedFormulaRequest.ProtoReflect.Descriptor instead.
  65. func (*AddFeedFormulaRequest) Descriptor() ([]byte, []int) {
  66. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{0}
  67. }
  68. func (x *AddFeedFormulaRequest) GetId() int32 {
  69. if x != nil {
  70. return x.Id
  71. }
  72. return 0
  73. }
  74. func (x *AddFeedFormulaRequest) GetName() string {
  75. if x != nil {
  76. return x.Name
  77. }
  78. return ""
  79. }
  80. func (x *AddFeedFormulaRequest) GetEncodeNumber() string {
  81. if x != nil {
  82. return x.EncodeNumber
  83. }
  84. return ""
  85. }
  86. func (x *AddFeedFormulaRequest) GetColour() string {
  87. if x != nil {
  88. return x.Colour
  89. }
  90. return ""
  91. }
  92. func (x *AddFeedFormulaRequest) GetCattleCategoryId() CattleCategoryParent_Kind {
  93. if x != nil {
  94. return x.CattleCategoryId
  95. }
  96. return CattleCategoryParent_INVALID
  97. }
  98. func (x *AddFeedFormulaRequest) GetCattleCategoryName() string {
  99. if x != nil {
  100. return x.CattleCategoryName
  101. }
  102. return ""
  103. }
  104. func (x *AddFeedFormulaRequest) GetFormulaTypeId() int32 {
  105. if x != nil {
  106. return x.FormulaTypeId
  107. }
  108. return 0
  109. }
  110. func (x *AddFeedFormulaRequest) GetFormulaTypeName() string {
  111. if x != nil {
  112. return x.FormulaTypeName
  113. }
  114. return ""
  115. }
  116. func (x *AddFeedFormulaRequest) GetDataSourceId() DataSource_Kind {
  117. if x != nil {
  118. return x.DataSourceId
  119. }
  120. return DataSource_INVALID
  121. }
  122. func (x *AddFeedFormulaRequest) GetDataSourceName() string {
  123. if x != nil {
  124. return x.DataSourceName
  125. }
  126. return ""
  127. }
  128. func (x *AddFeedFormulaRequest) GetRemarks() string {
  129. if x != nil {
  130. return x.Remarks
  131. }
  132. return ""
  133. }
  134. func (x *AddFeedFormulaRequest) GetVersion() int32 {
  135. if x != nil {
  136. return x.Version
  137. }
  138. return 0
  139. }
  140. func (x *AddFeedFormulaRequest) GetIsShow() IsShow_Kind {
  141. if x != nil {
  142. return x.IsShow
  143. }
  144. return IsShow_INVALID
  145. }
  146. func (x *AddFeedFormulaRequest) GetIsModify() IsShow_Kind {
  147. if x != nil {
  148. return x.IsModify
  149. }
  150. return IsShow_INVALID
  151. }
  152. func (x *AddFeedFormulaRequest) GetCreatedAt() int32 {
  153. if x != nil {
  154. return x.CreatedAt
  155. }
  156. return 0
  157. }
  158. func (x *AddFeedFormulaRequest) GetCreatedAtFormat() string {
  159. if x != nil {
  160. return x.CreatedAtFormat
  161. }
  162. return ""
  163. }
  164. func (x *AddFeedFormulaRequest) GetPastureName() string {
  165. if x != nil {
  166. return x.PastureName
  167. }
  168. return ""
  169. }
  170. type SearchFeedFormulaRequest struct {
  171. state protoimpl.MessageState
  172. sizeCache protoimpl.SizeCache
  173. unknownFields protoimpl.UnknownFields
  174. CattleCategoryId int32 `protobuf:"varint,1,opt,name=cattle_category_id,json=cattleCategoryId,proto3" json:"cattle_category_id,omitempty"` // 分类id
  175. FormulaTypeId int32 `protobuf:"varint,2,opt,name=formula_type_id,json=formulaTypeId,proto3" json:"formula_type_id,omitempty"` // 配方类型id
  176. DataSource int32 `protobuf:"varint,3,opt,name=data_source,json=dataSource,proto3" json:"data_source,omitempty"` // 饲料来源
  177. IsShow IsShow_Kind `protobuf:"varint,4,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  178. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"` // 配方名称
  179. Remarks string `protobuf:"bytes,6,opt,name=remarks,proto3" json:"remarks,omitempty"` // 备注
  180. Pagination *PaginationModel `protobuf:"bytes,7,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  181. }
  182. func (x *SearchFeedFormulaRequest) Reset() {
  183. *x = SearchFeedFormulaRequest{}
  184. if protoimpl.UnsafeEnabled {
  185. mi := &file_backend_operation_feed_formula_proto_msgTypes[1]
  186. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  187. ms.StoreMessageInfo(mi)
  188. }
  189. }
  190. func (x *SearchFeedFormulaRequest) String() string {
  191. return protoimpl.X.MessageStringOf(x)
  192. }
  193. func (*SearchFeedFormulaRequest) ProtoMessage() {}
  194. func (x *SearchFeedFormulaRequest) ProtoReflect() protoreflect.Message {
  195. mi := &file_backend_operation_feed_formula_proto_msgTypes[1]
  196. if protoimpl.UnsafeEnabled && x != nil {
  197. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  198. if ms.LoadMessageInfo() == nil {
  199. ms.StoreMessageInfo(mi)
  200. }
  201. return ms
  202. }
  203. return mi.MessageOf(x)
  204. }
  205. // Deprecated: Use SearchFeedFormulaRequest.ProtoReflect.Descriptor instead.
  206. func (*SearchFeedFormulaRequest) Descriptor() ([]byte, []int) {
  207. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{1}
  208. }
  209. func (x *SearchFeedFormulaRequest) GetCattleCategoryId() int32 {
  210. if x != nil {
  211. return x.CattleCategoryId
  212. }
  213. return 0
  214. }
  215. func (x *SearchFeedFormulaRequest) GetFormulaTypeId() int32 {
  216. if x != nil {
  217. return x.FormulaTypeId
  218. }
  219. return 0
  220. }
  221. func (x *SearchFeedFormulaRequest) GetDataSource() int32 {
  222. if x != nil {
  223. return x.DataSource
  224. }
  225. return 0
  226. }
  227. func (x *SearchFeedFormulaRequest) GetIsShow() IsShow_Kind {
  228. if x != nil {
  229. return x.IsShow
  230. }
  231. return IsShow_INVALID
  232. }
  233. func (x *SearchFeedFormulaRequest) GetName() string {
  234. if x != nil {
  235. return x.Name
  236. }
  237. return ""
  238. }
  239. func (x *SearchFeedFormulaRequest) GetRemarks() string {
  240. if x != nil {
  241. return x.Remarks
  242. }
  243. return ""
  244. }
  245. func (x *SearchFeedFormulaRequest) GetPagination() *PaginationModel {
  246. if x != nil {
  247. return x.Pagination
  248. }
  249. return nil
  250. }
  251. type SearchFeedFormulaListResponse struct {
  252. state protoimpl.MessageState
  253. sizeCache protoimpl.SizeCache
  254. unknownFields protoimpl.UnknownFields
  255. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  256. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  257. Data *SearchFeedFormulaListData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  258. }
  259. func (x *SearchFeedFormulaListResponse) Reset() {
  260. *x = SearchFeedFormulaListResponse{}
  261. if protoimpl.UnsafeEnabled {
  262. mi := &file_backend_operation_feed_formula_proto_msgTypes[2]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. }
  267. func (x *SearchFeedFormulaListResponse) String() string {
  268. return protoimpl.X.MessageStringOf(x)
  269. }
  270. func (*SearchFeedFormulaListResponse) ProtoMessage() {}
  271. func (x *SearchFeedFormulaListResponse) ProtoReflect() protoreflect.Message {
  272. mi := &file_backend_operation_feed_formula_proto_msgTypes[2]
  273. if protoimpl.UnsafeEnabled && x != nil {
  274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  275. if ms.LoadMessageInfo() == nil {
  276. ms.StoreMessageInfo(mi)
  277. }
  278. return ms
  279. }
  280. return mi.MessageOf(x)
  281. }
  282. // Deprecated: Use SearchFeedFormulaListResponse.ProtoReflect.Descriptor instead.
  283. func (*SearchFeedFormulaListResponse) Descriptor() ([]byte, []int) {
  284. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{2}
  285. }
  286. func (x *SearchFeedFormulaListResponse) GetCode() int32 {
  287. if x != nil {
  288. return x.Code
  289. }
  290. return 0
  291. }
  292. func (x *SearchFeedFormulaListResponse) GetMsg() string {
  293. if x != nil {
  294. return x.Msg
  295. }
  296. return ""
  297. }
  298. func (x *SearchFeedFormulaListResponse) GetData() *SearchFeedFormulaListData {
  299. if x != nil {
  300. return x.Data
  301. }
  302. return nil
  303. }
  304. type SearchFeedFormulaListData struct {
  305. state protoimpl.MessageState
  306. sizeCache protoimpl.SizeCache
  307. unknownFields protoimpl.UnknownFields
  308. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  309. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  310. Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
  311. List []*AddFeedFormulaRequest `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
  312. }
  313. func (x *SearchFeedFormulaListData) Reset() {
  314. *x = SearchFeedFormulaListData{}
  315. if protoimpl.UnsafeEnabled {
  316. mi := &file_backend_operation_feed_formula_proto_msgTypes[3]
  317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  318. ms.StoreMessageInfo(mi)
  319. }
  320. }
  321. func (x *SearchFeedFormulaListData) String() string {
  322. return protoimpl.X.MessageStringOf(x)
  323. }
  324. func (*SearchFeedFormulaListData) ProtoMessage() {}
  325. func (x *SearchFeedFormulaListData) ProtoReflect() protoreflect.Message {
  326. mi := &file_backend_operation_feed_formula_proto_msgTypes[3]
  327. if protoimpl.UnsafeEnabled && x != nil {
  328. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  329. if ms.LoadMessageInfo() == nil {
  330. ms.StoreMessageInfo(mi)
  331. }
  332. return ms
  333. }
  334. return mi.MessageOf(x)
  335. }
  336. // Deprecated: Use SearchFeedFormulaListData.ProtoReflect.Descriptor instead.
  337. func (*SearchFeedFormulaListData) Descriptor() ([]byte, []int) {
  338. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{3}
  339. }
  340. func (x *SearchFeedFormulaListData) GetPage() int32 {
  341. if x != nil {
  342. return x.Page
  343. }
  344. return 0
  345. }
  346. func (x *SearchFeedFormulaListData) GetPageSize() int32 {
  347. if x != nil {
  348. return x.PageSize
  349. }
  350. return 0
  351. }
  352. func (x *SearchFeedFormulaListData) GetTotal() int32 {
  353. if x != nil {
  354. return x.Total
  355. }
  356. return 0
  357. }
  358. func (x *SearchFeedFormulaListData) GetList() []*AddFeedFormulaRequest {
  359. if x != nil {
  360. return x.List
  361. }
  362. return nil
  363. }
  364. // 是否启用
  365. type IsShowModifyFeedFormula struct {
  366. state protoimpl.MessageState
  367. sizeCache protoimpl.SizeCache
  368. unknownFields protoimpl.UnknownFields
  369. FeedFormulaId int32 `protobuf:"varint,1,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"`
  370. IsShow IsShow_Kind `protobuf:"varint,2,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"`
  371. EditType int32 `protobuf:"varint,3,opt,name=edit_type,json=editType,proto3" json:"edit_type,omitempty"` // 1 更新是否启用 2 更新 modify
  372. }
  373. func (x *IsShowModifyFeedFormula) Reset() {
  374. *x = IsShowModifyFeedFormula{}
  375. if protoimpl.UnsafeEnabled {
  376. mi := &file_backend_operation_feed_formula_proto_msgTypes[4]
  377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  378. ms.StoreMessageInfo(mi)
  379. }
  380. }
  381. func (x *IsShowModifyFeedFormula) String() string {
  382. return protoimpl.X.MessageStringOf(x)
  383. }
  384. func (*IsShowModifyFeedFormula) ProtoMessage() {}
  385. func (x *IsShowModifyFeedFormula) ProtoReflect() protoreflect.Message {
  386. mi := &file_backend_operation_feed_formula_proto_msgTypes[4]
  387. if protoimpl.UnsafeEnabled && x != nil {
  388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  389. if ms.LoadMessageInfo() == nil {
  390. ms.StoreMessageInfo(mi)
  391. }
  392. return ms
  393. }
  394. return mi.MessageOf(x)
  395. }
  396. // Deprecated: Use IsShowModifyFeedFormula.ProtoReflect.Descriptor instead.
  397. func (*IsShowModifyFeedFormula) Descriptor() ([]byte, []int) {
  398. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{4}
  399. }
  400. func (x *IsShowModifyFeedFormula) GetFeedFormulaId() int32 {
  401. if x != nil {
  402. return x.FeedFormulaId
  403. }
  404. return 0
  405. }
  406. func (x *IsShowModifyFeedFormula) GetIsShow() IsShow_Kind {
  407. if x != nil {
  408. return x.IsShow
  409. }
  410. return IsShow_INVALID
  411. }
  412. func (x *IsShowModifyFeedFormula) GetEditType() int32 {
  413. if x != nil {
  414. return x.EditType
  415. }
  416. return 0
  417. }
  418. // 配方编码
  419. type UniqueID struct {
  420. state protoimpl.MessageState
  421. sizeCache protoimpl.SizeCache
  422. unknownFields protoimpl.UnknownFields
  423. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  424. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  425. Data *UniqueID_UniqueData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  426. }
  427. func (x *UniqueID) Reset() {
  428. *x = UniqueID{}
  429. if protoimpl.UnsafeEnabled {
  430. mi := &file_backend_operation_feed_formula_proto_msgTypes[5]
  431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  432. ms.StoreMessageInfo(mi)
  433. }
  434. }
  435. func (x *UniqueID) String() string {
  436. return protoimpl.X.MessageStringOf(x)
  437. }
  438. func (*UniqueID) ProtoMessage() {}
  439. func (x *UniqueID) ProtoReflect() protoreflect.Message {
  440. mi := &file_backend_operation_feed_formula_proto_msgTypes[5]
  441. if protoimpl.UnsafeEnabled && x != nil {
  442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  443. if ms.LoadMessageInfo() == nil {
  444. ms.StoreMessageInfo(mi)
  445. }
  446. return ms
  447. }
  448. return mi.MessageOf(x)
  449. }
  450. // Deprecated: Use UniqueID.ProtoReflect.Descriptor instead.
  451. func (*UniqueID) Descriptor() ([]byte, []int) {
  452. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{5}
  453. }
  454. func (x *UniqueID) GetCode() int32 {
  455. if x != nil {
  456. return x.Code
  457. }
  458. return 0
  459. }
  460. func (x *UniqueID) GetMsg() string {
  461. if x != nil {
  462. return x.Msg
  463. }
  464. return ""
  465. }
  466. func (x *UniqueID) GetData() *UniqueID_UniqueData {
  467. if x != nil {
  468. return x.Data
  469. }
  470. return nil
  471. }
  472. // DistributeFeedFormulaRequest 饲料配方下发
  473. type DistributeFeedFormulaRequest struct {
  474. state protoimpl.MessageState
  475. sizeCache protoimpl.SizeCache
  476. unknownFields protoimpl.UnknownFields
  477. PastureIds []int32 `protobuf:"varint,1,rep,packed,name=pasture_ids,json=pastureIds,proto3" json:"pasture_ids,omitempty"` // 牧场ids集合
  478. FeedFormulaIds []int32 `protobuf:"varint,2,rep,packed,name=feed_formula_ids,json=feedFormulaIds,proto3" json:"feed_formula_ids,omitempty"` // 配方ids集合
  479. }
  480. func (x *DistributeFeedFormulaRequest) Reset() {
  481. *x = DistributeFeedFormulaRequest{}
  482. if protoimpl.UnsafeEnabled {
  483. mi := &file_backend_operation_feed_formula_proto_msgTypes[6]
  484. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  485. ms.StoreMessageInfo(mi)
  486. }
  487. }
  488. func (x *DistributeFeedFormulaRequest) String() string {
  489. return protoimpl.X.MessageStringOf(x)
  490. }
  491. func (*DistributeFeedFormulaRequest) ProtoMessage() {}
  492. func (x *DistributeFeedFormulaRequest) ProtoReflect() protoreflect.Message {
  493. mi := &file_backend_operation_feed_formula_proto_msgTypes[6]
  494. if protoimpl.UnsafeEnabled && x != nil {
  495. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  496. if ms.LoadMessageInfo() == nil {
  497. ms.StoreMessageInfo(mi)
  498. }
  499. return ms
  500. }
  501. return mi.MessageOf(x)
  502. }
  503. // Deprecated: Use DistributeFeedFormulaRequest.ProtoReflect.Descriptor instead.
  504. func (*DistributeFeedFormulaRequest) Descriptor() ([]byte, []int) {
  505. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{6}
  506. }
  507. func (x *DistributeFeedFormulaRequest) GetPastureIds() []int32 {
  508. if x != nil {
  509. return x.PastureIds
  510. }
  511. return nil
  512. }
  513. func (x *DistributeFeedFormulaRequest) GetFeedFormulaIds() []int32 {
  514. if x != nil {
  515. return x.FeedFormulaIds
  516. }
  517. return nil
  518. }
  519. // EditRecodeFeedFormulaRequest 饲料配方修改记录
  520. type EditRecodeFeedFormulaRequest struct {
  521. state protoimpl.MessageState
  522. sizeCache protoimpl.SizeCache
  523. unknownFields protoimpl.UnknownFields
  524. PastureId int32 `protobuf:"varint,1,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  525. FeedFormulaId int32 `protobuf:"varint,2,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 饲料配方id
  526. StartTime int32 `protobuf:"varint,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  527. EndTime int32 `protobuf:"varint,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  528. }
  529. func (x *EditRecodeFeedFormulaRequest) Reset() {
  530. *x = EditRecodeFeedFormulaRequest{}
  531. if protoimpl.UnsafeEnabled {
  532. mi := &file_backend_operation_feed_formula_proto_msgTypes[7]
  533. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  534. ms.StoreMessageInfo(mi)
  535. }
  536. }
  537. func (x *EditRecodeFeedFormulaRequest) String() string {
  538. return protoimpl.X.MessageStringOf(x)
  539. }
  540. func (*EditRecodeFeedFormulaRequest) ProtoMessage() {}
  541. func (x *EditRecodeFeedFormulaRequest) ProtoReflect() protoreflect.Message {
  542. mi := &file_backend_operation_feed_formula_proto_msgTypes[7]
  543. if protoimpl.UnsafeEnabled && x != nil {
  544. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  545. if ms.LoadMessageInfo() == nil {
  546. ms.StoreMessageInfo(mi)
  547. }
  548. return ms
  549. }
  550. return mi.MessageOf(x)
  551. }
  552. // Deprecated: Use EditRecodeFeedFormulaRequest.ProtoReflect.Descriptor instead.
  553. func (*EditRecodeFeedFormulaRequest) Descriptor() ([]byte, []int) {
  554. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{7}
  555. }
  556. func (x *EditRecodeFeedFormulaRequest) GetPastureId() int32 {
  557. if x != nil {
  558. return x.PastureId
  559. }
  560. return 0
  561. }
  562. func (x *EditRecodeFeedFormulaRequest) GetFeedFormulaId() int32 {
  563. if x != nil {
  564. return x.FeedFormulaId
  565. }
  566. return 0
  567. }
  568. func (x *EditRecodeFeedFormulaRequest) GetStartTime() int32 {
  569. if x != nil {
  570. return x.StartTime
  571. }
  572. return 0
  573. }
  574. func (x *EditRecodeFeedFormulaRequest) GetEndTime() int32 {
  575. if x != nil {
  576. return x.EndTime
  577. }
  578. return 0
  579. }
  580. // EditRecodeFeedFormulaResponse 饲料配方修改记录
  581. type EditRecodeFeedFormulaResponse struct {
  582. state protoimpl.MessageState
  583. sizeCache protoimpl.SizeCache
  584. unknownFields protoimpl.UnknownFields
  585. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  586. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  587. Data []*EditRecodeFeedFormulaData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  588. }
  589. func (x *EditRecodeFeedFormulaResponse) Reset() {
  590. *x = EditRecodeFeedFormulaResponse{}
  591. if protoimpl.UnsafeEnabled {
  592. mi := &file_backend_operation_feed_formula_proto_msgTypes[8]
  593. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  594. ms.StoreMessageInfo(mi)
  595. }
  596. }
  597. func (x *EditRecodeFeedFormulaResponse) String() string {
  598. return protoimpl.X.MessageStringOf(x)
  599. }
  600. func (*EditRecodeFeedFormulaResponse) ProtoMessage() {}
  601. func (x *EditRecodeFeedFormulaResponse) ProtoReflect() protoreflect.Message {
  602. mi := &file_backend_operation_feed_formula_proto_msgTypes[8]
  603. if protoimpl.UnsafeEnabled && x != nil {
  604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  605. if ms.LoadMessageInfo() == nil {
  606. ms.StoreMessageInfo(mi)
  607. }
  608. return ms
  609. }
  610. return mi.MessageOf(x)
  611. }
  612. // Deprecated: Use EditRecodeFeedFormulaResponse.ProtoReflect.Descriptor instead.
  613. func (*EditRecodeFeedFormulaResponse) Descriptor() ([]byte, []int) {
  614. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{8}
  615. }
  616. func (x *EditRecodeFeedFormulaResponse) GetCode() int32 {
  617. if x != nil {
  618. return x.Code
  619. }
  620. return 0
  621. }
  622. func (x *EditRecodeFeedFormulaResponse) GetMsg() string {
  623. if x != nil {
  624. return x.Msg
  625. }
  626. return ""
  627. }
  628. func (x *EditRecodeFeedFormulaResponse) GetData() []*EditRecodeFeedFormulaData {
  629. if x != nil {
  630. return x.Data
  631. }
  632. return nil
  633. }
  634. type EditRecodeFeedFormulaData struct {
  635. state protoimpl.MessageState
  636. sizeCache protoimpl.SizeCache
  637. unknownFields protoimpl.UnknownFields
  638. PastureId int32 `protobuf:"varint,1,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"`
  639. PastureName string `protobuf:"bytes,2,opt,name=pasture_name,json=pastureName,proto3" json:"pasture_name,omitempty"`
  640. ModifyTime string `protobuf:"bytes,3,opt,name=modify_time,json=modifyTime,proto3" json:"modify_time,omitempty"`
  641. ModifyDetail string `protobuf:"bytes,4,opt,name=modify_detail,json=modifyDetail,proto3" json:"modify_detail,omitempty"`
  642. }
  643. func (x *EditRecodeFeedFormulaData) Reset() {
  644. *x = EditRecodeFeedFormulaData{}
  645. if protoimpl.UnsafeEnabled {
  646. mi := &file_backend_operation_feed_formula_proto_msgTypes[9]
  647. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  648. ms.StoreMessageInfo(mi)
  649. }
  650. }
  651. func (x *EditRecodeFeedFormulaData) String() string {
  652. return protoimpl.X.MessageStringOf(x)
  653. }
  654. func (*EditRecodeFeedFormulaData) ProtoMessage() {}
  655. func (x *EditRecodeFeedFormulaData) ProtoReflect() protoreflect.Message {
  656. mi := &file_backend_operation_feed_formula_proto_msgTypes[9]
  657. if protoimpl.UnsafeEnabled && x != nil {
  658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  659. if ms.LoadMessageInfo() == nil {
  660. ms.StoreMessageInfo(mi)
  661. }
  662. return ms
  663. }
  664. return mi.MessageOf(x)
  665. }
  666. // Deprecated: Use EditRecodeFeedFormulaData.ProtoReflect.Descriptor instead.
  667. func (*EditRecodeFeedFormulaData) Descriptor() ([]byte, []int) {
  668. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{9}
  669. }
  670. func (x *EditRecodeFeedFormulaData) GetPastureId() int32 {
  671. if x != nil {
  672. return x.PastureId
  673. }
  674. return 0
  675. }
  676. func (x *EditRecodeFeedFormulaData) GetPastureName() string {
  677. if x != nil {
  678. return x.PastureName
  679. }
  680. return ""
  681. }
  682. func (x *EditRecodeFeedFormulaData) GetModifyTime() string {
  683. if x != nil {
  684. return x.ModifyTime
  685. }
  686. return ""
  687. }
  688. func (x *EditRecodeFeedFormulaData) GetModifyDetail() string {
  689. if x != nil {
  690. return x.ModifyDetail
  691. }
  692. return ""
  693. }
  694. // GroupAddFeedFormulaDetail 配方添加饲料
  695. type GroupAddFeedFormulaDetail struct {
  696. state protoimpl.MessageState
  697. sizeCache protoimpl.SizeCache
  698. unknownFields protoimpl.UnknownFields
  699. FeedFormulaId int32 `protobuf:"varint,1,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  700. List []*AddFeedFormulaDetail `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"` // 饲料详情
  701. }
  702. func (x *GroupAddFeedFormulaDetail) Reset() {
  703. *x = GroupAddFeedFormulaDetail{}
  704. if protoimpl.UnsafeEnabled {
  705. mi := &file_backend_operation_feed_formula_proto_msgTypes[10]
  706. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  707. ms.StoreMessageInfo(mi)
  708. }
  709. }
  710. func (x *GroupAddFeedFormulaDetail) String() string {
  711. return protoimpl.X.MessageStringOf(x)
  712. }
  713. func (*GroupAddFeedFormulaDetail) ProtoMessage() {}
  714. func (x *GroupAddFeedFormulaDetail) ProtoReflect() protoreflect.Message {
  715. mi := &file_backend_operation_feed_formula_proto_msgTypes[10]
  716. if protoimpl.UnsafeEnabled && x != nil {
  717. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  718. if ms.LoadMessageInfo() == nil {
  719. ms.StoreMessageInfo(mi)
  720. }
  721. return ms
  722. }
  723. return mi.MessageOf(x)
  724. }
  725. // Deprecated: Use GroupAddFeedFormulaDetail.ProtoReflect.Descriptor instead.
  726. func (*GroupAddFeedFormulaDetail) Descriptor() ([]byte, []int) {
  727. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{10}
  728. }
  729. func (x *GroupAddFeedFormulaDetail) GetFeedFormulaId() int32 {
  730. if x != nil {
  731. return x.FeedFormulaId
  732. }
  733. return 0
  734. }
  735. func (x *GroupAddFeedFormulaDetail) GetList() []*AddFeedFormulaDetail {
  736. if x != nil {
  737. return x.List
  738. }
  739. return nil
  740. }
  741. type AddFeedFormulaDetail struct {
  742. state protoimpl.MessageState
  743. sizeCache protoimpl.SizeCache
  744. unknownFields protoimpl.UnknownFields
  745. FeedFormulaId int32 `protobuf:"varint,1,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  746. ForageId int32 `protobuf:"varint,2,opt,name=forage_id,json=forageId,proto3" json:"forage_id,omitempty"` // 饲料id
  747. ForageName string `protobuf:"bytes,3,opt,name=forage_name,json=forageName,proto3" json:"forage_name,omitempty"` // 饲料名称
  748. ForageGroupName string `protobuf:"bytes,4,opt,name=forage_group_name,json=forageGroupName,proto3" json:"forage_group_name,omitempty"` // 饲料分组名称
  749. Weight float32 `protobuf:"fixed32,5,opt,name=weight,proto3" json:"weight,omitempty"` // 重量
  750. StirDelay int32 `protobuf:"varint,6,opt,name=stir_delay,json=stirDelay,proto3" json:"stir_delay,omitempty"` // 搅拌延迟
  751. AllowError int32 `protobuf:"varint,7,opt,name=allow_error,json=allowError,proto3" json:"allow_error,omitempty"` // 允许误差
  752. CreatedAt int32 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  753. CreatedAtFormat string `protobuf:"bytes,9,opt,name=created_at_format,json=createdAtFormat,proto3" json:"created_at_format,omitempty"` // 创建时间格式化
  754. Id int32 `protobuf:"varint,10,opt,name=id,proto3" json:"id,omitempty"`
  755. Sort int32 `protobuf:"varint,11,opt,name=sort,proto3" json:"sort,omitempty"` // 排序
  756. IsLockCowCountRatio int32 `protobuf:"varint,12,opt,name=is_lock_cow_count_ratio,json=isLockCowCountRatio,proto3" json:"is_lock_cow_count_ratio,omitempty"` // 是否锁定牛头数比例
  757. Pagination *PaginationModel `protobuf:"bytes,13,opt,name=pagination,proto3" json:"pagination,omitempty"` // 分页
  758. PreFit int32 `protobuf:"varint,14,opt,name=pre_fit,json=preFit,proto3" json:"pre_fit,omitempty"` // 预混料id
  759. }
  760. func (x *AddFeedFormulaDetail) Reset() {
  761. *x = AddFeedFormulaDetail{}
  762. if protoimpl.UnsafeEnabled {
  763. mi := &file_backend_operation_feed_formula_proto_msgTypes[11]
  764. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  765. ms.StoreMessageInfo(mi)
  766. }
  767. }
  768. func (x *AddFeedFormulaDetail) String() string {
  769. return protoimpl.X.MessageStringOf(x)
  770. }
  771. func (*AddFeedFormulaDetail) ProtoMessage() {}
  772. func (x *AddFeedFormulaDetail) ProtoReflect() protoreflect.Message {
  773. mi := &file_backend_operation_feed_formula_proto_msgTypes[11]
  774. if protoimpl.UnsafeEnabled && x != nil {
  775. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  776. if ms.LoadMessageInfo() == nil {
  777. ms.StoreMessageInfo(mi)
  778. }
  779. return ms
  780. }
  781. return mi.MessageOf(x)
  782. }
  783. // Deprecated: Use AddFeedFormulaDetail.ProtoReflect.Descriptor instead.
  784. func (*AddFeedFormulaDetail) Descriptor() ([]byte, []int) {
  785. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{11}
  786. }
  787. func (x *AddFeedFormulaDetail) GetFeedFormulaId() int32 {
  788. if x != nil {
  789. return x.FeedFormulaId
  790. }
  791. return 0
  792. }
  793. func (x *AddFeedFormulaDetail) GetForageId() int32 {
  794. if x != nil {
  795. return x.ForageId
  796. }
  797. return 0
  798. }
  799. func (x *AddFeedFormulaDetail) GetForageName() string {
  800. if x != nil {
  801. return x.ForageName
  802. }
  803. return ""
  804. }
  805. func (x *AddFeedFormulaDetail) GetForageGroupName() string {
  806. if x != nil {
  807. return x.ForageGroupName
  808. }
  809. return ""
  810. }
  811. func (x *AddFeedFormulaDetail) GetWeight() float32 {
  812. if x != nil {
  813. return x.Weight
  814. }
  815. return 0
  816. }
  817. func (x *AddFeedFormulaDetail) GetStirDelay() int32 {
  818. if x != nil {
  819. return x.StirDelay
  820. }
  821. return 0
  822. }
  823. func (x *AddFeedFormulaDetail) GetAllowError() int32 {
  824. if x != nil {
  825. return x.AllowError
  826. }
  827. return 0
  828. }
  829. func (x *AddFeedFormulaDetail) GetCreatedAt() int32 {
  830. if x != nil {
  831. return x.CreatedAt
  832. }
  833. return 0
  834. }
  835. func (x *AddFeedFormulaDetail) GetCreatedAtFormat() string {
  836. if x != nil {
  837. return x.CreatedAtFormat
  838. }
  839. return ""
  840. }
  841. func (x *AddFeedFormulaDetail) GetId() int32 {
  842. if x != nil {
  843. return x.Id
  844. }
  845. return 0
  846. }
  847. func (x *AddFeedFormulaDetail) GetSort() int32 {
  848. if x != nil {
  849. return x.Sort
  850. }
  851. return 0
  852. }
  853. func (x *AddFeedFormulaDetail) GetIsLockCowCountRatio() int32 {
  854. if x != nil {
  855. return x.IsLockCowCountRatio
  856. }
  857. return 0
  858. }
  859. func (x *AddFeedFormulaDetail) GetPagination() *PaginationModel {
  860. if x != nil {
  861. return x.Pagination
  862. }
  863. return nil
  864. }
  865. func (x *AddFeedFormulaDetail) GetPreFit() int32 {
  866. if x != nil {
  867. return x.PreFit
  868. }
  869. return 0
  870. }
  871. // FeedFormulaDetailRequest 饲料配方详情
  872. type FeedFormulaDetailRequest struct {
  873. state protoimpl.MessageState
  874. sizeCache protoimpl.SizeCache
  875. unknownFields protoimpl.UnknownFields
  876. FeedFormulaId int32 `protobuf:"varint,1,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 配方id
  877. }
  878. func (x *FeedFormulaDetailRequest) Reset() {
  879. *x = FeedFormulaDetailRequest{}
  880. if protoimpl.UnsafeEnabled {
  881. mi := &file_backend_operation_feed_formula_proto_msgTypes[12]
  882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  883. ms.StoreMessageInfo(mi)
  884. }
  885. }
  886. func (x *FeedFormulaDetailRequest) String() string {
  887. return protoimpl.X.MessageStringOf(x)
  888. }
  889. func (*FeedFormulaDetailRequest) ProtoMessage() {}
  890. func (x *FeedFormulaDetailRequest) ProtoReflect() protoreflect.Message {
  891. mi := &file_backend_operation_feed_formula_proto_msgTypes[12]
  892. if protoimpl.UnsafeEnabled && x != nil {
  893. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  894. if ms.LoadMessageInfo() == nil {
  895. ms.StoreMessageInfo(mi)
  896. }
  897. return ms
  898. }
  899. return mi.MessageOf(x)
  900. }
  901. // Deprecated: Use FeedFormulaDetailRequest.ProtoReflect.Descriptor instead.
  902. func (*FeedFormulaDetailRequest) Descriptor() ([]byte, []int) {
  903. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{12}
  904. }
  905. func (x *FeedFormulaDetailRequest) GetFeedFormulaId() int32 {
  906. if x != nil {
  907. return x.FeedFormulaId
  908. }
  909. return 0
  910. }
  911. // FeedFormulaDetailRequest 饲料配方详情
  912. type FeedFormulaDetailResponse struct {
  913. state protoimpl.MessageState
  914. sizeCache protoimpl.SizeCache
  915. unknownFields protoimpl.UnknownFields
  916. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  917. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  918. Data []*AddFeedFormulaDetail `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  919. }
  920. func (x *FeedFormulaDetailResponse) Reset() {
  921. *x = FeedFormulaDetailResponse{}
  922. if protoimpl.UnsafeEnabled {
  923. mi := &file_backend_operation_feed_formula_proto_msgTypes[13]
  924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  925. ms.StoreMessageInfo(mi)
  926. }
  927. }
  928. func (x *FeedFormulaDetailResponse) String() string {
  929. return protoimpl.X.MessageStringOf(x)
  930. }
  931. func (*FeedFormulaDetailResponse) ProtoMessage() {}
  932. func (x *FeedFormulaDetailResponse) ProtoReflect() protoreflect.Message {
  933. mi := &file_backend_operation_feed_formula_proto_msgTypes[13]
  934. if protoimpl.UnsafeEnabled && x != nil {
  935. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  936. if ms.LoadMessageInfo() == nil {
  937. ms.StoreMessageInfo(mi)
  938. }
  939. return ms
  940. }
  941. return mi.MessageOf(x)
  942. }
  943. // Deprecated: Use FeedFormulaDetailResponse.ProtoReflect.Descriptor instead.
  944. func (*FeedFormulaDetailResponse) Descriptor() ([]byte, []int) {
  945. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{13}
  946. }
  947. func (x *FeedFormulaDetailResponse) GetCode() int32 {
  948. if x != nil {
  949. return x.Code
  950. }
  951. return 0
  952. }
  953. func (x *FeedFormulaDetailResponse) GetMsg() string {
  954. if x != nil {
  955. return x.Msg
  956. }
  957. return ""
  958. }
  959. func (x *FeedFormulaDetailResponse) GetData() []*AddFeedFormulaDetail {
  960. if x != nil {
  961. return x.Data
  962. }
  963. return nil
  964. }
  965. // 配方使用概况
  966. type FeedFormulaUsageRequest struct {
  967. state protoimpl.MessageState
  968. sizeCache protoimpl.SizeCache
  969. unknownFields protoimpl.UnknownFields
  970. FeedFormulaId int32 `protobuf:"varint,1,opt,name=feed_formula_id,json=feedFormulaId,proto3" json:"feed_formula_id,omitempty"` // 饲料配方id
  971. StartTime string `protobuf:"bytes,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  972. EndTime string `protobuf:"bytes,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  973. PastureId int32 `protobuf:"varint,4,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  974. }
  975. func (x *FeedFormulaUsageRequest) Reset() {
  976. *x = FeedFormulaUsageRequest{}
  977. if protoimpl.UnsafeEnabled {
  978. mi := &file_backend_operation_feed_formula_proto_msgTypes[14]
  979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  980. ms.StoreMessageInfo(mi)
  981. }
  982. }
  983. func (x *FeedFormulaUsageRequest) String() string {
  984. return protoimpl.X.MessageStringOf(x)
  985. }
  986. func (*FeedFormulaUsageRequest) ProtoMessage() {}
  987. func (x *FeedFormulaUsageRequest) ProtoReflect() protoreflect.Message {
  988. mi := &file_backend_operation_feed_formula_proto_msgTypes[14]
  989. if protoimpl.UnsafeEnabled && x != nil {
  990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  991. if ms.LoadMessageInfo() == nil {
  992. ms.StoreMessageInfo(mi)
  993. }
  994. return ms
  995. }
  996. return mi.MessageOf(x)
  997. }
  998. // Deprecated: Use FeedFormulaUsageRequest.ProtoReflect.Descriptor instead.
  999. func (*FeedFormulaUsageRequest) Descriptor() ([]byte, []int) {
  1000. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{14}
  1001. }
  1002. func (x *FeedFormulaUsageRequest) GetFeedFormulaId() int32 {
  1003. if x != nil {
  1004. return x.FeedFormulaId
  1005. }
  1006. return 0
  1007. }
  1008. func (x *FeedFormulaUsageRequest) GetStartTime() string {
  1009. if x != nil {
  1010. return x.StartTime
  1011. }
  1012. return ""
  1013. }
  1014. func (x *FeedFormulaUsageRequest) GetEndTime() string {
  1015. if x != nil {
  1016. return x.EndTime
  1017. }
  1018. return ""
  1019. }
  1020. func (x *FeedFormulaUsageRequest) GetPastureId() int32 {
  1021. if x != nil {
  1022. return x.PastureId
  1023. }
  1024. return 0
  1025. }
  1026. // 配方使用概况
  1027. type FeedFormulaUsageResponse struct {
  1028. state protoimpl.MessageState
  1029. sizeCache protoimpl.SizeCache
  1030. unknownFields protoimpl.UnknownFields
  1031. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1032. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1033. Data []*FeedFormulaUsageList `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1034. }
  1035. func (x *FeedFormulaUsageResponse) Reset() {
  1036. *x = FeedFormulaUsageResponse{}
  1037. if protoimpl.UnsafeEnabled {
  1038. mi := &file_backend_operation_feed_formula_proto_msgTypes[15]
  1039. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1040. ms.StoreMessageInfo(mi)
  1041. }
  1042. }
  1043. func (x *FeedFormulaUsageResponse) String() string {
  1044. return protoimpl.X.MessageStringOf(x)
  1045. }
  1046. func (*FeedFormulaUsageResponse) ProtoMessage() {}
  1047. func (x *FeedFormulaUsageResponse) ProtoReflect() protoreflect.Message {
  1048. mi := &file_backend_operation_feed_formula_proto_msgTypes[15]
  1049. if protoimpl.UnsafeEnabled && x != nil {
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. if ms.LoadMessageInfo() == nil {
  1052. ms.StoreMessageInfo(mi)
  1053. }
  1054. return ms
  1055. }
  1056. return mi.MessageOf(x)
  1057. }
  1058. // Deprecated: Use FeedFormulaUsageResponse.ProtoReflect.Descriptor instead.
  1059. func (*FeedFormulaUsageResponse) Descriptor() ([]byte, []int) {
  1060. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{15}
  1061. }
  1062. func (x *FeedFormulaUsageResponse) GetCode() int32 {
  1063. if x != nil {
  1064. return x.Code
  1065. }
  1066. return 0
  1067. }
  1068. func (x *FeedFormulaUsageResponse) GetMsg() string {
  1069. if x != nil {
  1070. return x.Msg
  1071. }
  1072. return ""
  1073. }
  1074. func (x *FeedFormulaUsageResponse) GetData() []*FeedFormulaUsageList {
  1075. if x != nil {
  1076. return x.Data
  1077. }
  1078. return nil
  1079. }
  1080. // 配方使用概况
  1081. type FeedFormulaUsageList struct {
  1082. state protoimpl.MessageState
  1083. sizeCache protoimpl.SizeCache
  1084. unknownFields protoimpl.UnknownFields
  1085. PastureId int32 `protobuf:"varint,1,opt,name=pasture_id,json=pastureId,proto3" json:"pasture_id,omitempty"` // 牧场id
  1086. PastureName string `protobuf:"bytes,2,opt,name=pasture_name,json=pastureName,proto3" json:"pasture_name,omitempty"` // 牧场名称
  1087. MixedFodderAccurateRatio string `protobuf:"bytes,3,opt,name=mixed_fodder_accurate_ratio,json=mixedFodderAccurateRatio,proto3" json:"mixed_fodder_accurate_ratio,omitempty"` // 混料准确率
  1088. MixedFodderCorrectRatio string `protobuf:"bytes,4,opt,name=mixed_fodder_correct_ratio,json=mixedFodderCorrectRatio,proto3" json:"mixed_fodder_correct_ratio,omitempty"` // 混料正确率
  1089. SprinkleFodderAccurateRatio string `protobuf:"bytes,5,opt,name=sprinkle_fodder_accurate_ratio,json=sprinkleFodderAccurateRatio,proto3" json:"sprinkle_fodder_accurate_ratio,omitempty"` // 撒料准确率
  1090. SprinkleFodderCorrectRatio string `protobuf:"bytes,6,opt,name=sprinkle_fodder_correct_ratio,json=sprinkleFodderCorrectRatio,proto3" json:"sprinkle_fodder_correct_ratio,omitempty"` // 撒料正确率
  1091. AddFeedTime string `protobuf:"bytes,7,opt,name=add_feed_time,json=addFeedTime,proto3" json:"add_feed_time,omitempty"` // 加料时间
  1092. SprinkleTime string `protobuf:"bytes,8,opt,name=sprinkle_time,json=sprinkleTime,proto3" json:"sprinkle_time,omitempty"` // 撒料时间
  1093. StirTime string `protobuf:"bytes,9,opt,name=stir_time,json=stirTime,proto3" json:"stir_time,omitempty"` // 搅拌延迟时间
  1094. LastEditTime string `protobuf:"bytes,10,opt,name=last_edit_time,json=lastEditTime,proto3" json:"last_edit_time,omitempty"` // 最近一次修改配方时间
  1095. }
  1096. func (x *FeedFormulaUsageList) Reset() {
  1097. *x = FeedFormulaUsageList{}
  1098. if protoimpl.UnsafeEnabled {
  1099. mi := &file_backend_operation_feed_formula_proto_msgTypes[16]
  1100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1101. ms.StoreMessageInfo(mi)
  1102. }
  1103. }
  1104. func (x *FeedFormulaUsageList) String() string {
  1105. return protoimpl.X.MessageStringOf(x)
  1106. }
  1107. func (*FeedFormulaUsageList) ProtoMessage() {}
  1108. func (x *FeedFormulaUsageList) ProtoReflect() protoreflect.Message {
  1109. mi := &file_backend_operation_feed_formula_proto_msgTypes[16]
  1110. if protoimpl.UnsafeEnabled && x != nil {
  1111. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1112. if ms.LoadMessageInfo() == nil {
  1113. ms.StoreMessageInfo(mi)
  1114. }
  1115. return ms
  1116. }
  1117. return mi.MessageOf(x)
  1118. }
  1119. // Deprecated: Use FeedFormulaUsageList.ProtoReflect.Descriptor instead.
  1120. func (*FeedFormulaUsageList) Descriptor() ([]byte, []int) {
  1121. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{16}
  1122. }
  1123. func (x *FeedFormulaUsageList) GetPastureId() int32 {
  1124. if x != nil {
  1125. return x.PastureId
  1126. }
  1127. return 0
  1128. }
  1129. func (x *FeedFormulaUsageList) GetPastureName() string {
  1130. if x != nil {
  1131. return x.PastureName
  1132. }
  1133. return ""
  1134. }
  1135. func (x *FeedFormulaUsageList) GetMixedFodderAccurateRatio() string {
  1136. if x != nil {
  1137. return x.MixedFodderAccurateRatio
  1138. }
  1139. return ""
  1140. }
  1141. func (x *FeedFormulaUsageList) GetMixedFodderCorrectRatio() string {
  1142. if x != nil {
  1143. return x.MixedFodderCorrectRatio
  1144. }
  1145. return ""
  1146. }
  1147. func (x *FeedFormulaUsageList) GetSprinkleFodderAccurateRatio() string {
  1148. if x != nil {
  1149. return x.SprinkleFodderAccurateRatio
  1150. }
  1151. return ""
  1152. }
  1153. func (x *FeedFormulaUsageList) GetSprinkleFodderCorrectRatio() string {
  1154. if x != nil {
  1155. return x.SprinkleFodderCorrectRatio
  1156. }
  1157. return ""
  1158. }
  1159. func (x *FeedFormulaUsageList) GetAddFeedTime() string {
  1160. if x != nil {
  1161. return x.AddFeedTime
  1162. }
  1163. return ""
  1164. }
  1165. func (x *FeedFormulaUsageList) GetSprinkleTime() string {
  1166. if x != nil {
  1167. return x.SprinkleTime
  1168. }
  1169. return ""
  1170. }
  1171. func (x *FeedFormulaUsageList) GetStirTime() string {
  1172. if x != nil {
  1173. return x.StirTime
  1174. }
  1175. return ""
  1176. }
  1177. func (x *FeedFormulaUsageList) GetLastEditTime() string {
  1178. if x != nil {
  1179. return x.LastEditTime
  1180. }
  1181. return ""
  1182. }
  1183. type PastureFeedFormulaUsageResponse struct {
  1184. state protoimpl.MessageState
  1185. sizeCache protoimpl.SizeCache
  1186. unknownFields protoimpl.UnknownFields
  1187. Code int32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1188. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1189. Data *PastureData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1190. }
  1191. func (x *PastureFeedFormulaUsageResponse) Reset() {
  1192. *x = PastureFeedFormulaUsageResponse{}
  1193. if protoimpl.UnsafeEnabled {
  1194. mi := &file_backend_operation_feed_formula_proto_msgTypes[17]
  1195. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1196. ms.StoreMessageInfo(mi)
  1197. }
  1198. }
  1199. func (x *PastureFeedFormulaUsageResponse) String() string {
  1200. return protoimpl.X.MessageStringOf(x)
  1201. }
  1202. func (*PastureFeedFormulaUsageResponse) ProtoMessage() {}
  1203. func (x *PastureFeedFormulaUsageResponse) ProtoReflect() protoreflect.Message {
  1204. mi := &file_backend_operation_feed_formula_proto_msgTypes[17]
  1205. if protoimpl.UnsafeEnabled && x != nil {
  1206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1207. if ms.LoadMessageInfo() == nil {
  1208. ms.StoreMessageInfo(mi)
  1209. }
  1210. return ms
  1211. }
  1212. return mi.MessageOf(x)
  1213. }
  1214. // Deprecated: Use PastureFeedFormulaUsageResponse.ProtoReflect.Descriptor instead.
  1215. func (*PastureFeedFormulaUsageResponse) Descriptor() ([]byte, []int) {
  1216. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{17}
  1217. }
  1218. func (x *PastureFeedFormulaUsageResponse) GetCode() int32 {
  1219. if x != nil {
  1220. return x.Code
  1221. }
  1222. return 0
  1223. }
  1224. func (x *PastureFeedFormulaUsageResponse) GetMsg() string {
  1225. if x != nil {
  1226. return x.Msg
  1227. }
  1228. return ""
  1229. }
  1230. func (x *PastureFeedFormulaUsageResponse) GetData() *PastureData {
  1231. if x != nil {
  1232. return x.Data
  1233. }
  1234. return nil
  1235. }
  1236. type PastureData struct {
  1237. state protoimpl.MessageState
  1238. sizeCache protoimpl.SizeCache
  1239. unknownFields protoimpl.UnknownFields
  1240. MixedFodderAccurateRatio string `protobuf:"bytes,3,opt,name=mixed_fodder_accurate_ratio,json=mixedFodderAccurateRatio,proto3" json:"mixed_fodder_accurate_ratio,omitempty"` // 混料准确率
  1241. MixedFodderCorrectRatio string `protobuf:"bytes,4,opt,name=mixed_fodder_correct_ratio,json=mixedFodderCorrectRatio,proto3" json:"mixed_fodder_correct_ratio,omitempty"` // 混料正确率
  1242. SprinkleFodderAccurateRatio string `protobuf:"bytes,5,opt,name=sprinkle_fodder_accurate_ratio,json=sprinkleFodderAccurateRatio,proto3" json:"sprinkle_fodder_accurate_ratio,omitempty"` // 撒料准确率
  1243. SprinkleFodderCorrectRatio string `protobuf:"bytes,6,opt,name=sprinkle_fodder_correct_ratio,json=sprinkleFodderCorrectRatio,proto3" json:"sprinkle_fodder_correct_ratio,omitempty"` // 撒料正确率
  1244. AddFeedTime string `protobuf:"bytes,7,opt,name=add_feed_time,json=addFeedTime,proto3" json:"add_feed_time,omitempty"` // 加料时间
  1245. SprinkleTime string `protobuf:"bytes,8,opt,name=sprinkle_time,json=sprinkleTime,proto3" json:"sprinkle_time,omitempty"` // 撒料时间
  1246. StirTime string `protobuf:"bytes,9,opt,name=stir_time,json=stirTime,proto3" json:"stir_time,omitempty"` // 搅拌延迟时间
  1247. LastEditTime string `protobuf:"bytes,10,opt,name=last_edit_time,json=lastEditTime,proto3" json:"last_edit_time,omitempty"` // 最近一次修改配方时间
  1248. }
  1249. func (x *PastureData) Reset() {
  1250. *x = PastureData{}
  1251. if protoimpl.UnsafeEnabled {
  1252. mi := &file_backend_operation_feed_formula_proto_msgTypes[18]
  1253. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1254. ms.StoreMessageInfo(mi)
  1255. }
  1256. }
  1257. func (x *PastureData) String() string {
  1258. return protoimpl.X.MessageStringOf(x)
  1259. }
  1260. func (*PastureData) ProtoMessage() {}
  1261. func (x *PastureData) ProtoReflect() protoreflect.Message {
  1262. mi := &file_backend_operation_feed_formula_proto_msgTypes[18]
  1263. if protoimpl.UnsafeEnabled && x != nil {
  1264. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1265. if ms.LoadMessageInfo() == nil {
  1266. ms.StoreMessageInfo(mi)
  1267. }
  1268. return ms
  1269. }
  1270. return mi.MessageOf(x)
  1271. }
  1272. // Deprecated: Use PastureData.ProtoReflect.Descriptor instead.
  1273. func (*PastureData) Descriptor() ([]byte, []int) {
  1274. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{18}
  1275. }
  1276. func (x *PastureData) GetMixedFodderAccurateRatio() string {
  1277. if x != nil {
  1278. return x.MixedFodderAccurateRatio
  1279. }
  1280. return ""
  1281. }
  1282. func (x *PastureData) GetMixedFodderCorrectRatio() string {
  1283. if x != nil {
  1284. return x.MixedFodderCorrectRatio
  1285. }
  1286. return ""
  1287. }
  1288. func (x *PastureData) GetSprinkleFodderAccurateRatio() string {
  1289. if x != nil {
  1290. return x.SprinkleFodderAccurateRatio
  1291. }
  1292. return ""
  1293. }
  1294. func (x *PastureData) GetSprinkleFodderCorrectRatio() string {
  1295. if x != nil {
  1296. return x.SprinkleFodderCorrectRatio
  1297. }
  1298. return ""
  1299. }
  1300. func (x *PastureData) GetAddFeedTime() string {
  1301. if x != nil {
  1302. return x.AddFeedTime
  1303. }
  1304. return ""
  1305. }
  1306. func (x *PastureData) GetSprinkleTime() string {
  1307. if x != nil {
  1308. return x.SprinkleTime
  1309. }
  1310. return ""
  1311. }
  1312. func (x *PastureData) GetStirTime() string {
  1313. if x != nil {
  1314. return x.StirTime
  1315. }
  1316. return ""
  1317. }
  1318. func (x *PastureData) GetLastEditTime() string {
  1319. if x != nil {
  1320. return x.LastEditTime
  1321. }
  1322. return ""
  1323. }
  1324. type MixedFeedFormulaRequest struct {
  1325. state protoimpl.MessageState
  1326. sizeCache protoimpl.SizeCache
  1327. unknownFields protoimpl.UnknownFields
  1328. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // 配方名称
  1329. Colour string `protobuf:"bytes,2,opt,name=colour,proto3" json:"colour,omitempty"` // 颜色
  1330. CattleCategoryId int32 `protobuf:"varint,3,opt,name=cattle_category_id,json=cattleCategoryId,proto3" json:"cattle_category_id,omitempty"` // 分类id
  1331. CattleCategoryName string `protobuf:"bytes,4,opt,name=cattle_category_name,json=cattleCategoryName,proto3" json:"cattle_category_name,omitempty"` // 分类名称
  1332. FormulaTypeId int32 `protobuf:"varint,5,opt,name=formula_type_id,json=formulaTypeId,proto3" json:"formula_type_id,omitempty"` // 配方类型id
  1333. FormulaTypeName string `protobuf:"bytes,6,opt,name=formula_type_name,json=formulaTypeName,proto3" json:"formula_type_name,omitempty"` // 配方类型名称
  1334. DataSourceId int32 `protobuf:"varint,7,opt,name=data_source_id,json=dataSourceId,proto3" json:"data_source_id,omitempty"` // 来源id
  1335. Remarks string `protobuf:"bytes,8,opt,name=remarks,proto3" json:"remarks,omitempty"` // 备注
  1336. FeedList []*AddFeedFormulaDetail `protobuf:"bytes,9,rep,name=feed_list,json=feedList,proto3" json:"feed_list,omitempty"`
  1337. }
  1338. func (x *MixedFeedFormulaRequest) Reset() {
  1339. *x = MixedFeedFormulaRequest{}
  1340. if protoimpl.UnsafeEnabled {
  1341. mi := &file_backend_operation_feed_formula_proto_msgTypes[19]
  1342. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1343. ms.StoreMessageInfo(mi)
  1344. }
  1345. }
  1346. func (x *MixedFeedFormulaRequest) String() string {
  1347. return protoimpl.X.MessageStringOf(x)
  1348. }
  1349. func (*MixedFeedFormulaRequest) ProtoMessage() {}
  1350. func (x *MixedFeedFormulaRequest) ProtoReflect() protoreflect.Message {
  1351. mi := &file_backend_operation_feed_formula_proto_msgTypes[19]
  1352. if protoimpl.UnsafeEnabled && x != nil {
  1353. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1354. if ms.LoadMessageInfo() == nil {
  1355. ms.StoreMessageInfo(mi)
  1356. }
  1357. return ms
  1358. }
  1359. return mi.MessageOf(x)
  1360. }
  1361. // Deprecated: Use MixedFeedFormulaRequest.ProtoReflect.Descriptor instead.
  1362. func (*MixedFeedFormulaRequest) Descriptor() ([]byte, []int) {
  1363. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{19}
  1364. }
  1365. func (x *MixedFeedFormulaRequest) GetName() string {
  1366. if x != nil {
  1367. return x.Name
  1368. }
  1369. return ""
  1370. }
  1371. func (x *MixedFeedFormulaRequest) GetColour() string {
  1372. if x != nil {
  1373. return x.Colour
  1374. }
  1375. return ""
  1376. }
  1377. func (x *MixedFeedFormulaRequest) GetCattleCategoryId() int32 {
  1378. if x != nil {
  1379. return x.CattleCategoryId
  1380. }
  1381. return 0
  1382. }
  1383. func (x *MixedFeedFormulaRequest) GetCattleCategoryName() string {
  1384. if x != nil {
  1385. return x.CattleCategoryName
  1386. }
  1387. return ""
  1388. }
  1389. func (x *MixedFeedFormulaRequest) GetFormulaTypeId() int32 {
  1390. if x != nil {
  1391. return x.FormulaTypeId
  1392. }
  1393. return 0
  1394. }
  1395. func (x *MixedFeedFormulaRequest) GetFormulaTypeName() string {
  1396. if x != nil {
  1397. return x.FormulaTypeName
  1398. }
  1399. return ""
  1400. }
  1401. func (x *MixedFeedFormulaRequest) GetDataSourceId() int32 {
  1402. if x != nil {
  1403. return x.DataSourceId
  1404. }
  1405. return 0
  1406. }
  1407. func (x *MixedFeedFormulaRequest) GetRemarks() string {
  1408. if x != nil {
  1409. return x.Remarks
  1410. }
  1411. return ""
  1412. }
  1413. func (x *MixedFeedFormulaRequest) GetFeedList() []*AddFeedFormulaDetail {
  1414. if x != nil {
  1415. return x.FeedList
  1416. }
  1417. return nil
  1418. }
  1419. type UniqueID_UniqueData struct {
  1420. state protoimpl.MessageState
  1421. sizeCache protoimpl.SizeCache
  1422. unknownFields protoimpl.UnknownFields
  1423. EncodeNumber string `protobuf:"bytes,1,opt,name=encode_number,json=encodeNumber,proto3" json:"encode_number,omitempty"`
  1424. }
  1425. func (x *UniqueID_UniqueData) Reset() {
  1426. *x = UniqueID_UniqueData{}
  1427. if protoimpl.UnsafeEnabled {
  1428. mi := &file_backend_operation_feed_formula_proto_msgTypes[20]
  1429. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1430. ms.StoreMessageInfo(mi)
  1431. }
  1432. }
  1433. func (x *UniqueID_UniqueData) String() string {
  1434. return protoimpl.X.MessageStringOf(x)
  1435. }
  1436. func (*UniqueID_UniqueData) ProtoMessage() {}
  1437. func (x *UniqueID_UniqueData) ProtoReflect() protoreflect.Message {
  1438. mi := &file_backend_operation_feed_formula_proto_msgTypes[20]
  1439. if protoimpl.UnsafeEnabled && x != nil {
  1440. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1441. if ms.LoadMessageInfo() == nil {
  1442. ms.StoreMessageInfo(mi)
  1443. }
  1444. return ms
  1445. }
  1446. return mi.MessageOf(x)
  1447. }
  1448. // Deprecated: Use UniqueID_UniqueData.ProtoReflect.Descriptor instead.
  1449. func (*UniqueID_UniqueData) Descriptor() ([]byte, []int) {
  1450. return file_backend_operation_feed_formula_proto_rawDescGZIP(), []int{5, 0}
  1451. }
  1452. func (x *UniqueID_UniqueData) GetEncodeNumber() string {
  1453. if x != nil {
  1454. return x.EncodeNumber
  1455. }
  1456. return ""
  1457. }
  1458. var File_backend_operation_feed_formula_proto protoreflect.FileDescriptor
  1459. var file_backend_operation_feed_formula_proto_rawDesc = []byte{
  1460. 0x0a, 0x24, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  1461. 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  1462. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  1463. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x22, 0x62, 0x61, 0x63, 0x6b, 0x65,
  1464. 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x67,
  1465. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x62,
  1466. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1467. 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe6, 0x05, 0x0a, 0x15,
  1468. 0x41, 0x64, 0x64, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x52, 0x65,
  1469. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1470. 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1471. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x65, 0x6e, 0x63,
  1472. 0x6f, 0x64, 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1473. 0x52, 0x0c, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x16,
  1474. 0x0a, 0x06, 0x63, 0x6f, 0x6c, 0x6f, 0x75, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  1475. 0x63, 0x6f, 0x6c, 0x6f, 0x75, 0x72, 0x12, 0x5a, 0x0a, 0x12, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65,
  1476. 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01,
  1477. 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  1478. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74,
  1479. 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x2e, 0x4b, 0x69, 0x6e, 0x64,
  1480. 0x52, 0x10, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
  1481. 0x49, 0x64, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74,
  1482. 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  1483. 0x52, 0x12, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
  1484. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f,
  1485. 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66,
  1486. 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x11,
  1487. 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
  1488. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  1489. 0x54, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x48, 0x0a, 0x0e, 0x64, 0x61, 0x74, 0x61,
  1490. 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e,
  1491. 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  1492. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e,
  1493. 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x0c, 0x64, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
  1494. 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63,
  1495. 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x64, 0x61,
  1496. 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07,
  1497. 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72,
  1498. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
  1499. 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
  1500. 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x0d, 0x20, 0x01, 0x28,
  1501. 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72,
  1502. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e,
  1503. 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x3b, 0x0a, 0x09, 0x69, 0x73, 0x5f,
  1504. 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62,
  1505. 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1506. 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x08, 0x69, 0x73,
  1507. 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  1508. 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61,
  1509. 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
  1510. 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09,
  1511. 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61,
  1512. 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x6e, 0x61, 0x6d,
  1513. 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  1514. 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xbc, 0x02, 0x0a, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46,
  1515. 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1516. 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65,
  1517. 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x63,
  1518. 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12,
  1519. 0x26, 0x0a, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f,
  1520. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  1521. 0x61, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f,
  1522. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x64, 0x61,
  1523. 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73,
  1524. 0x68, 0x6f, 0x77, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  1525. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73,
  1526. 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f,
  1527. 0x77, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1528. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x73,
  1529. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x73, 0x12,
  1530. 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
  1531. 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  1532. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
  1533. 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74,
  1534. 0x69, 0x6f, 0x6e, 0x22, 0x87, 0x01, 0x0a, 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x65,
  1535. 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73,
  1536. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
  1537. 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67,
  1538. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x40, 0x0a, 0x04, 0x64,
  1539. 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b,
  1540. 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65,
  1541. 0x61, 0x72, 0x63, 0x68, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x4c,
  1542. 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xa0, 0x01,
  1543. 0x0a, 0x19, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d,
  1544. 0x75, 0x6c, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x70,
  1545. 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12,
  1546. 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
  1547. 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x14, 0x0a, 0x05,
  1548. 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74,
  1549. 0x61, 0x6c, 0x12, 0x3c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  1550. 0x32, 0x28, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  1551. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d,
  1552. 0x75, 0x6c, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1553. 0x22, 0x97, 0x01, 0x0a, 0x17, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x4d, 0x6f, 0x64, 0x69, 0x66,
  1554. 0x79, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x12, 0x26, 0x0a, 0x0f,
  1555. 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64, 0x18,
  1556. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75,
  1557. 0x6c, 0x61, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18,
  1558. 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e,
  1559. 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77,
  1560. 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1b, 0x0a,
  1561. 0x09, 0x65, 0x64, 0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
  1562. 0x52, 0x08, 0x65, 0x64, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x9f, 0x01, 0x0a, 0x08, 0x55,
  1563. 0x6e, 0x69, 0x71, 0x75, 0x65, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18,
  1564. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d,
  1565. 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x3a, 0x0a,
  1566. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x62, 0x61,
  1567. 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
  1568. 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x49, 0x44, 0x2e, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x44,
  1569. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x31, 0x0a, 0x0a, 0x55, 0x6e, 0x69,
  1570. 0x71, 0x75, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x23, 0x0a, 0x0d, 0x65, 0x6e, 0x63, 0x6f, 0x64,
  1571. 0x65, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  1572. 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x69, 0x0a, 0x1c,
  1573. 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f,
  1574. 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b,
  1575. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
  1576. 0x05, 0x52, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x73, 0x12, 0x28, 0x0a,
  1577. 0x10, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64,
  1578. 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0e, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72,
  1579. 0x6d, 0x75, 0x6c, 0x61, 0x49, 0x64, 0x73, 0x22, 0x9f, 0x01, 0x0a, 0x1c, 0x45, 0x64, 0x69, 0x74,
  1580. 0x52, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  1581. 0x61, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74,
  1582. 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61,
  1583. 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f,
  1584. 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  1585. 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x49, 0x64, 0x12,
  1586. 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20,
  1587. 0x01, 0x28, 0x05, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19,
  1588. 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05,
  1589. 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x87, 0x01, 0x0a, 0x1d, 0x45, 0x64,
  1590. 0x69, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d,
  1591. 0x75, 0x6c, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  1592. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  1593. 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73,
  1594. 0x67, 0x12, 0x40, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1595. 0x2c, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  1596. 0x69, 0x6f, 0x6e, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x46, 0x65,
  1597. 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64,
  1598. 0x61, 0x74, 0x61, 0x22, 0xa3, 0x01, 0x0a, 0x19, 0x45, 0x64, 0x69, 0x74, 0x52, 0x65, 0x63, 0x6f,
  1599. 0x64, 0x65, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x44, 0x61, 0x74,
  1600. 0x61, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18,
  1601. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64,
  1602. 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  1603. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x4e,
  1604. 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x5f, 0x74, 0x69,
  1605. 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79,
  1606. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x5f, 0x64,
  1607. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x6f, 0x64,
  1608. 0x69, 0x66, 0x79, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x80, 0x01, 0x0a, 0x19, 0x47, 0x72,
  1609. 0x6f, 0x75, 0x70, 0x41, 0x64, 0x64, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  1610. 0x61, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f,
  1611. 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  1612. 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x49, 0x64, 0x12,
  1613. 0x3b, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e,
  1614. 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
  1615. 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  1616. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x82, 0x04, 0x0a,
  1617. 0x14, 0x41, 0x64, 0x64, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x44,
  1618. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f,
  1619. 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d,
  1620. 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x49, 0x64, 0x12, 0x1b, 0x0a,
  1621. 0x09, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  1622. 0x52, 0x08, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x66, 0x6f,
  1623. 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1624. 0x0a, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x66,
  1625. 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  1626. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x47, 0x72,
  1627. 0x6f, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68,
  1628. 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x02, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12,
  1629. 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x69, 0x72, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18, 0x06, 0x20,
  1630. 0x01, 0x28, 0x05, 0x52, 0x09, 0x73, 0x74, 0x69, 0x72, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x12, 0x1f,
  1631. 0x0a, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x07, 0x20,
  1632. 0x01, 0x28, 0x05, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
  1633. 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20,
  1634. 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x2a,
  1635. 0x0a, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x5f, 0x66, 0x6f, 0x72,
  1636. 0x6d, 0x61, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74,
  1637. 0x65, 0x64, 0x41, 0x74, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1638. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6f,
  1639. 0x72, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x12, 0x34,
  1640. 0x0a, 0x17, 0x69, 0x73, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x5f, 0x63, 0x6f, 0x77, 0x5f, 0x63, 0x6f,
  1641. 0x75, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52,
  1642. 0x13, 0x69, 0x73, 0x4c, 0x6f, 0x63, 0x6b, 0x43, 0x6f, 0x77, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x52,
  1643. 0x61, 0x74, 0x69, 0x6f, 0x12, 0x42, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
  1644. 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  1645. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67,
  1646. 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x0a, 0x70, 0x61,
  1647. 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x07, 0x70, 0x72, 0x65, 0x5f,
  1648. 0x66, 0x69, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x70, 0x72, 0x65, 0x46, 0x69,
  1649. 0x74, 0x22, 0x42, 0x0a, 0x18, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61,
  1650. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a,
  1651. 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x69, 0x64,
  1652. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d,
  1653. 0x75, 0x6c, 0x61, 0x49, 0x64, 0x22, 0x7e, 0x0a, 0x19, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72,
  1654. 0x6d, 0x75, 0x6c, 0x61, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  1655. 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  1656. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  1657. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x3b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  1658. 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64,
  1659. 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x65,
  1660. 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52,
  1661. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x9a, 0x01, 0x0a, 0x17, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f,
  1662. 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1663. 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  1664. 0x61, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64,
  1665. 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x74, 0x61,
  1666. 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73,
  1667. 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f,
  1668. 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54,
  1669. 0x69, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69,
  1670. 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65,
  1671. 0x49, 0x64, 0x22, 0x7d, 0x0a, 0x18, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  1672. 0x61, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12,
  1673. 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63, 0x6f,
  1674. 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1675. 0x03, 0x6d, 0x73, 0x67, 0x12, 0x3b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03,
  1676. 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65,
  1677. 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75,
  1678. 0x6c, 0x61, 0x55, 0x73, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74,
  1679. 0x61, 0x22, 0xe8, 0x03, 0x0a, 0x14, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c,
  1680. 0x61, 0x55, 0x73, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61,
  1681. 0x73, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,
  1682. 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x73,
  1683. 0x74, 0x75, 0x72, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1684. 0x0b, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3d, 0x0a, 0x1b,
  1685. 0x6d, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63,
  1686. 0x75, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28,
  1687. 0x09, 0x52, 0x18, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x41, 0x63,
  1688. 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x3b, 0x0a, 0x1a, 0x6d,
  1689. 0x69, 0x78, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x72, 0x72,
  1690. 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  1691. 0x17, 0x6d, 0x69, 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72, 0x72,
  1692. 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x43, 0x0a, 0x1e, 0x73, 0x70, 0x72, 0x69,
  1693. 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75,
  1694. 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1695. 0x52, 0x1b, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72,
  1696. 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x41, 0x0a,
  1697. 0x1d, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72,
  1698. 0x5f, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x06,
  1699. 0x20, 0x01, 0x28, 0x09, 0x52, 0x1a, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f,
  1700. 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f,
  1701. 0x12, 0x22, 0x0a, 0x0d, 0x61, 0x64, 0x64, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d,
  1702. 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x64, 0x64, 0x46, 0x65, 0x65, 0x64,
  1703. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65,
  1704. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x70, 0x72,
  1705. 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x74, 0x69,
  1706. 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x74,
  1707. 0x69, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x65,
  1708. 0x64, 0x69, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  1709. 0x6c, 0x61, 0x73, 0x74, 0x45, 0x64, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x7b, 0x0a, 0x1f,
  1710. 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75,
  1711. 0x6c, 0x61, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  1712. 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x63,
  1713. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1714. 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x32, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  1715. 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70,
  1716. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x44,
  1717. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x9d, 0x03, 0x0a, 0x0b, 0x50, 0x61,
  1718. 0x73, 0x74, 0x75, 0x72, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x3d, 0x0a, 0x1b, 0x6d, 0x69, 0x78,
  1719. 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x72, 0x61,
  1720. 0x74, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x18,
  1721. 0x6d, 0x69, 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x41, 0x63, 0x63, 0x75, 0x72,
  1722. 0x61, 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x3b, 0x0a, 0x1a, 0x6d, 0x69, 0x78, 0x65,
  1723. 0x64, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74,
  1724. 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x6d, 0x69,
  1725. 0x78, 0x65, 0x64, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74,
  1726. 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x43, 0x0a, 0x1e, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c,
  1727. 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x75, 0x72, 0x61, 0x74,
  1728. 0x65, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x1b, 0x73,
  1729. 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x41, 0x63, 0x63,
  1730. 0x75, 0x72, 0x61, 0x74, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x41, 0x0a, 0x1d, 0x73, 0x70,
  1731. 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x66, 0x6f, 0x64, 0x64, 0x65, 0x72, 0x5f, 0x63, 0x6f,
  1732. 0x72, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28,
  1733. 0x09, 0x52, 0x1a, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x46, 0x6f, 0x64, 0x64, 0x65,
  1734. 0x72, 0x43, 0x6f, 0x72, 0x72, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x22, 0x0a,
  1735. 0x0d, 0x61, 0x64, 0x64, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07,
  1736. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x64, 0x64, 0x46, 0x65, 0x65, 0x64, 0x54, 0x69, 0x6d,
  1737. 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b, 0x6c, 0x65, 0x5f, 0x74, 0x69,
  1738. 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x70, 0x72, 0x69, 0x6e, 0x6b,
  1739. 0x6c, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x74, 0x69, 0x72, 0x5f, 0x74,
  1740. 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x74, 0x69, 0x72, 0x54,
  1741. 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x65, 0x64, 0x69, 0x74,
  1742. 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x61, 0x73,
  1743. 0x74, 0x45, 0x64, 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xff, 0x02, 0x0a, 0x17, 0x4d, 0x69,
  1744. 0x78, 0x65, 0x64, 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x52, 0x65,
  1745. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  1746. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x6c,
  1747. 0x6f, 0x75, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x6f, 0x75,
  1748. 0x72, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65,
  1749. 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x63,
  1750. 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x12,
  1751. 0x30, 0x0a, 0x14, 0x63, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
  1752. 0x72, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63,
  1753. 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4e, 0x61, 0x6d,
  1754. 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x74, 0x79, 0x70,
  1755. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x66, 0x6f, 0x72, 0x6d,
  1756. 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x6f, 0x72,
  1757. 0x6d, 0x75, 0x6c, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06,
  1758. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x54, 0x79, 0x70,
  1759. 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x6f,
  1760. 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x64,
  1761. 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72,
  1762. 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x72, 0x65,
  1763. 0x6d, 0x61, 0x72, 0x6b, 0x73, 0x12, 0x44, 0x0a, 0x09, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x69,
  1764. 0x73, 0x74, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65,
  1765. 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64,
  1766. 0x46, 0x65, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x75, 0x6c, 0x61, 0x44, 0x65, 0x74, 0x61, 0x69,
  1767. 0x6c, 0x52, 0x08, 0x66, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x0f, 0x5a, 0x0d, 0x2e,
  1768. 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72,
  1769. 0x6f, 0x74, 0x6f, 0x33,
  1770. }
  1771. var (
  1772. file_backend_operation_feed_formula_proto_rawDescOnce sync.Once
  1773. file_backend_operation_feed_formula_proto_rawDescData = file_backend_operation_feed_formula_proto_rawDesc
  1774. )
  1775. func file_backend_operation_feed_formula_proto_rawDescGZIP() []byte {
  1776. file_backend_operation_feed_formula_proto_rawDescOnce.Do(func() {
  1777. file_backend_operation_feed_formula_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_feed_formula_proto_rawDescData)
  1778. })
  1779. return file_backend_operation_feed_formula_proto_rawDescData
  1780. }
  1781. var file_backend_operation_feed_formula_proto_msgTypes = make([]protoimpl.MessageInfo, 21)
  1782. var file_backend_operation_feed_formula_proto_goTypes = []interface{}{
  1783. (*AddFeedFormulaRequest)(nil), // 0: backend.operation.AddFeedFormulaRequest
  1784. (*SearchFeedFormulaRequest)(nil), // 1: backend.operation.SearchFeedFormulaRequest
  1785. (*SearchFeedFormulaListResponse)(nil), // 2: backend.operation.SearchFeedFormulaListResponse
  1786. (*SearchFeedFormulaListData)(nil), // 3: backend.operation.SearchFeedFormulaListData
  1787. (*IsShowModifyFeedFormula)(nil), // 4: backend.operation.IsShowModifyFeedFormula
  1788. (*UniqueID)(nil), // 5: backend.operation.UniqueID
  1789. (*DistributeFeedFormulaRequest)(nil), // 6: backend.operation.DistributeFeedFormulaRequest
  1790. (*EditRecodeFeedFormulaRequest)(nil), // 7: backend.operation.EditRecodeFeedFormulaRequest
  1791. (*EditRecodeFeedFormulaResponse)(nil), // 8: backend.operation.EditRecodeFeedFormulaResponse
  1792. (*EditRecodeFeedFormulaData)(nil), // 9: backend.operation.EditRecodeFeedFormulaData
  1793. (*GroupAddFeedFormulaDetail)(nil), // 10: backend.operation.GroupAddFeedFormulaDetail
  1794. (*AddFeedFormulaDetail)(nil), // 11: backend.operation.AddFeedFormulaDetail
  1795. (*FeedFormulaDetailRequest)(nil), // 12: backend.operation.FeedFormulaDetailRequest
  1796. (*FeedFormulaDetailResponse)(nil), // 13: backend.operation.FeedFormulaDetailResponse
  1797. (*FeedFormulaUsageRequest)(nil), // 14: backend.operation.FeedFormulaUsageRequest
  1798. (*FeedFormulaUsageResponse)(nil), // 15: backend.operation.FeedFormulaUsageResponse
  1799. (*FeedFormulaUsageList)(nil), // 16: backend.operation.FeedFormulaUsageList
  1800. (*PastureFeedFormulaUsageResponse)(nil), // 17: backend.operation.PastureFeedFormulaUsageResponse
  1801. (*PastureData)(nil), // 18: backend.operation.PastureData
  1802. (*MixedFeedFormulaRequest)(nil), // 19: backend.operation.MixedFeedFormulaRequest
  1803. (*UniqueID_UniqueData)(nil), // 20: backend.operation.UniqueID.UniqueData
  1804. (CattleCategoryParent_Kind)(0), // 21: backend.operation.CattleCategoryParent.Kind
  1805. (DataSource_Kind)(0), // 22: backend.operation.DataSource.Kind
  1806. (IsShow_Kind)(0), // 23: backend.operation.IsShow.Kind
  1807. (*PaginationModel)(nil), // 24: backend.operation.PaginationModel
  1808. }
  1809. var file_backend_operation_feed_formula_proto_depIdxs = []int32{
  1810. 21, // 0: backend.operation.AddFeedFormulaRequest.cattle_category_id:type_name -> backend.operation.CattleCategoryParent.Kind
  1811. 22, // 1: backend.operation.AddFeedFormulaRequest.data_source_id:type_name -> backend.operation.DataSource.Kind
  1812. 23, // 2: backend.operation.AddFeedFormulaRequest.is_show:type_name -> backend.operation.IsShow.Kind
  1813. 23, // 3: backend.operation.AddFeedFormulaRequest.is_modify:type_name -> backend.operation.IsShow.Kind
  1814. 23, // 4: backend.operation.SearchFeedFormulaRequest.is_show:type_name -> backend.operation.IsShow.Kind
  1815. 24, // 5: backend.operation.SearchFeedFormulaRequest.pagination:type_name -> backend.operation.PaginationModel
  1816. 3, // 6: backend.operation.SearchFeedFormulaListResponse.data:type_name -> backend.operation.SearchFeedFormulaListData
  1817. 0, // 7: backend.operation.SearchFeedFormulaListData.list:type_name -> backend.operation.AddFeedFormulaRequest
  1818. 23, // 8: backend.operation.IsShowModifyFeedFormula.is_show:type_name -> backend.operation.IsShow.Kind
  1819. 20, // 9: backend.operation.UniqueID.data:type_name -> backend.operation.UniqueID.UniqueData
  1820. 9, // 10: backend.operation.EditRecodeFeedFormulaResponse.data:type_name -> backend.operation.EditRecodeFeedFormulaData
  1821. 11, // 11: backend.operation.GroupAddFeedFormulaDetail.list:type_name -> backend.operation.AddFeedFormulaDetail
  1822. 24, // 12: backend.operation.AddFeedFormulaDetail.pagination:type_name -> backend.operation.PaginationModel
  1823. 11, // 13: backend.operation.FeedFormulaDetailResponse.data:type_name -> backend.operation.AddFeedFormulaDetail
  1824. 16, // 14: backend.operation.FeedFormulaUsageResponse.data:type_name -> backend.operation.FeedFormulaUsageList
  1825. 18, // 15: backend.operation.PastureFeedFormulaUsageResponse.data:type_name -> backend.operation.PastureData
  1826. 11, // 16: backend.operation.MixedFeedFormulaRequest.feed_list:type_name -> backend.operation.AddFeedFormulaDetail
  1827. 17, // [17:17] is the sub-list for method output_type
  1828. 17, // [17:17] is the sub-list for method input_type
  1829. 17, // [17:17] is the sub-list for extension type_name
  1830. 17, // [17:17] is the sub-list for extension extendee
  1831. 0, // [0:17] is the sub-list for field type_name
  1832. }
  1833. func init() { file_backend_operation_feed_formula_proto_init() }
  1834. func file_backend_operation_feed_formula_proto_init() {
  1835. if File_backend_operation_feed_formula_proto != nil {
  1836. return
  1837. }
  1838. file_backend_operation_pagination_proto_init()
  1839. file_backend_operation_enum_proto_init()
  1840. if !protoimpl.UnsafeEnabled {
  1841. file_backend_operation_feed_formula_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1842. switch v := v.(*AddFeedFormulaRequest); i {
  1843. case 0:
  1844. return &v.state
  1845. case 1:
  1846. return &v.sizeCache
  1847. case 2:
  1848. return &v.unknownFields
  1849. default:
  1850. return nil
  1851. }
  1852. }
  1853. file_backend_operation_feed_formula_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1854. switch v := v.(*SearchFeedFormulaRequest); i {
  1855. case 0:
  1856. return &v.state
  1857. case 1:
  1858. return &v.sizeCache
  1859. case 2:
  1860. return &v.unknownFields
  1861. default:
  1862. return nil
  1863. }
  1864. }
  1865. file_backend_operation_feed_formula_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1866. switch v := v.(*SearchFeedFormulaListResponse); i {
  1867. case 0:
  1868. return &v.state
  1869. case 1:
  1870. return &v.sizeCache
  1871. case 2:
  1872. return &v.unknownFields
  1873. default:
  1874. return nil
  1875. }
  1876. }
  1877. file_backend_operation_feed_formula_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1878. switch v := v.(*SearchFeedFormulaListData); i {
  1879. case 0:
  1880. return &v.state
  1881. case 1:
  1882. return &v.sizeCache
  1883. case 2:
  1884. return &v.unknownFields
  1885. default:
  1886. return nil
  1887. }
  1888. }
  1889. file_backend_operation_feed_formula_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1890. switch v := v.(*IsShowModifyFeedFormula); i {
  1891. case 0:
  1892. return &v.state
  1893. case 1:
  1894. return &v.sizeCache
  1895. case 2:
  1896. return &v.unknownFields
  1897. default:
  1898. return nil
  1899. }
  1900. }
  1901. file_backend_operation_feed_formula_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1902. switch v := v.(*UniqueID); i {
  1903. case 0:
  1904. return &v.state
  1905. case 1:
  1906. return &v.sizeCache
  1907. case 2:
  1908. return &v.unknownFields
  1909. default:
  1910. return nil
  1911. }
  1912. }
  1913. file_backend_operation_feed_formula_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1914. switch v := v.(*DistributeFeedFormulaRequest); i {
  1915. case 0:
  1916. return &v.state
  1917. case 1:
  1918. return &v.sizeCache
  1919. case 2:
  1920. return &v.unknownFields
  1921. default:
  1922. return nil
  1923. }
  1924. }
  1925. file_backend_operation_feed_formula_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1926. switch v := v.(*EditRecodeFeedFormulaRequest); i {
  1927. case 0:
  1928. return &v.state
  1929. case 1:
  1930. return &v.sizeCache
  1931. case 2:
  1932. return &v.unknownFields
  1933. default:
  1934. return nil
  1935. }
  1936. }
  1937. file_backend_operation_feed_formula_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1938. switch v := v.(*EditRecodeFeedFormulaResponse); i {
  1939. case 0:
  1940. return &v.state
  1941. case 1:
  1942. return &v.sizeCache
  1943. case 2:
  1944. return &v.unknownFields
  1945. default:
  1946. return nil
  1947. }
  1948. }
  1949. file_backend_operation_feed_formula_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1950. switch v := v.(*EditRecodeFeedFormulaData); i {
  1951. case 0:
  1952. return &v.state
  1953. case 1:
  1954. return &v.sizeCache
  1955. case 2:
  1956. return &v.unknownFields
  1957. default:
  1958. return nil
  1959. }
  1960. }
  1961. file_backend_operation_feed_formula_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1962. switch v := v.(*GroupAddFeedFormulaDetail); i {
  1963. case 0:
  1964. return &v.state
  1965. case 1:
  1966. return &v.sizeCache
  1967. case 2:
  1968. return &v.unknownFields
  1969. default:
  1970. return nil
  1971. }
  1972. }
  1973. file_backend_operation_feed_formula_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1974. switch v := v.(*AddFeedFormulaDetail); i {
  1975. case 0:
  1976. return &v.state
  1977. case 1:
  1978. return &v.sizeCache
  1979. case 2:
  1980. return &v.unknownFields
  1981. default:
  1982. return nil
  1983. }
  1984. }
  1985. file_backend_operation_feed_formula_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1986. switch v := v.(*FeedFormulaDetailRequest); i {
  1987. case 0:
  1988. return &v.state
  1989. case 1:
  1990. return &v.sizeCache
  1991. case 2:
  1992. return &v.unknownFields
  1993. default:
  1994. return nil
  1995. }
  1996. }
  1997. file_backend_operation_feed_formula_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1998. switch v := v.(*FeedFormulaDetailResponse); i {
  1999. case 0:
  2000. return &v.state
  2001. case 1:
  2002. return &v.sizeCache
  2003. case 2:
  2004. return &v.unknownFields
  2005. default:
  2006. return nil
  2007. }
  2008. }
  2009. file_backend_operation_feed_formula_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2010. switch v := v.(*FeedFormulaUsageRequest); i {
  2011. case 0:
  2012. return &v.state
  2013. case 1:
  2014. return &v.sizeCache
  2015. case 2:
  2016. return &v.unknownFields
  2017. default:
  2018. return nil
  2019. }
  2020. }
  2021. file_backend_operation_feed_formula_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2022. switch v := v.(*FeedFormulaUsageResponse); i {
  2023. case 0:
  2024. return &v.state
  2025. case 1:
  2026. return &v.sizeCache
  2027. case 2:
  2028. return &v.unknownFields
  2029. default:
  2030. return nil
  2031. }
  2032. }
  2033. file_backend_operation_feed_formula_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2034. switch v := v.(*FeedFormulaUsageList); i {
  2035. case 0:
  2036. return &v.state
  2037. case 1:
  2038. return &v.sizeCache
  2039. case 2:
  2040. return &v.unknownFields
  2041. default:
  2042. return nil
  2043. }
  2044. }
  2045. file_backend_operation_feed_formula_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2046. switch v := v.(*PastureFeedFormulaUsageResponse); i {
  2047. case 0:
  2048. return &v.state
  2049. case 1:
  2050. return &v.sizeCache
  2051. case 2:
  2052. return &v.unknownFields
  2053. default:
  2054. return nil
  2055. }
  2056. }
  2057. file_backend_operation_feed_formula_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2058. switch v := v.(*PastureData); i {
  2059. case 0:
  2060. return &v.state
  2061. case 1:
  2062. return &v.sizeCache
  2063. case 2:
  2064. return &v.unknownFields
  2065. default:
  2066. return nil
  2067. }
  2068. }
  2069. file_backend_operation_feed_formula_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2070. switch v := v.(*MixedFeedFormulaRequest); i {
  2071. case 0:
  2072. return &v.state
  2073. case 1:
  2074. return &v.sizeCache
  2075. case 2:
  2076. return &v.unknownFields
  2077. default:
  2078. return nil
  2079. }
  2080. }
  2081. file_backend_operation_feed_formula_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2082. switch v := v.(*UniqueID_UniqueData); i {
  2083. case 0:
  2084. return &v.state
  2085. case 1:
  2086. return &v.sizeCache
  2087. case 2:
  2088. return &v.unknownFields
  2089. default:
  2090. return nil
  2091. }
  2092. }
  2093. }
  2094. type x struct{}
  2095. out := protoimpl.TypeBuilder{
  2096. File: protoimpl.DescBuilder{
  2097. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2098. RawDescriptor: file_backend_operation_feed_formula_proto_rawDesc,
  2099. NumEnums: 0,
  2100. NumMessages: 21,
  2101. NumExtensions: 0,
  2102. NumServices: 0,
  2103. },
  2104. GoTypes: file_backend_operation_feed_formula_proto_goTypes,
  2105. DependencyIndexes: file_backend_operation_feed_formula_proto_depIdxs,
  2106. MessageInfos: file_backend_operation_feed_formula_proto_msgTypes,
  2107. }.Build()
  2108. File_backend_operation_feed_formula_proto = out.File
  2109. file_backend_operation_feed_formula_proto_rawDesc = nil
  2110. file_backend_operation_feed_formula_proto_goTypes = nil
  2111. file_backend_operation_feed_formula_proto_depIdxs = nil
  2112. }