pasture.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.21.9
  5. // source: backend/operation/pasture.proto
  6. package operationPb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type AddPastureRequest struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  24. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` // 牧场名称
  25. ManagerUser string `protobuf:"bytes,3,opt,name=manager_user,json=managerUser,proto3" json:"manager_user,omitempty"` // 牧场负责人名称
  26. ManagerPhone string `protobuf:"bytes,5,opt,name=manager_phone,json=managerPhone,proto3" json:"manager_phone,omitempty"` // 牧场负责人手机号
  27. Address string `protobuf:"bytes,6,opt,name=address,proto3" json:"address,omitempty"` // 牧场地址
  28. IsShow IsShow_Kind `protobuf:"varint,7,opt,name=is_show,json=isShow,proto3,enum=backend.operation.IsShow_Kind" json:"is_show,omitempty"` // 是否启用
  29. CreatedAt int64 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"` // 创建时间
  30. }
  31. func (x *AddPastureRequest) Reset() {
  32. *x = AddPastureRequest{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_backend_operation_pasture_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *AddPastureRequest) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*AddPastureRequest) ProtoMessage() {}
  43. func (x *AddPastureRequest) ProtoReflect() protoreflect.Message {
  44. mi := &file_backend_operation_pasture_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use AddPastureRequest.ProtoReflect.Descriptor instead.
  55. func (*AddPastureRequest) Descriptor() ([]byte, []int) {
  56. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *AddPastureRequest) GetId() int64 {
  59. if x != nil {
  60. return x.Id
  61. }
  62. return 0
  63. }
  64. func (x *AddPastureRequest) GetName() string {
  65. if x != nil {
  66. return x.Name
  67. }
  68. return ""
  69. }
  70. func (x *AddPastureRequest) GetManagerUser() string {
  71. if x != nil {
  72. return x.ManagerUser
  73. }
  74. return ""
  75. }
  76. func (x *AddPastureRequest) GetManagerPhone() string {
  77. if x != nil {
  78. return x.ManagerPhone
  79. }
  80. return ""
  81. }
  82. func (x *AddPastureRequest) GetAddress() string {
  83. if x != nil {
  84. return x.Address
  85. }
  86. return ""
  87. }
  88. func (x *AddPastureRequest) GetIsShow() IsShow_Kind {
  89. if x != nil {
  90. return x.IsShow
  91. }
  92. return IsShow_INVALID
  93. }
  94. func (x *AddPastureRequest) GetCreatedAt() int64 {
  95. if x != nil {
  96. return x.CreatedAt
  97. }
  98. return 0
  99. }
  100. type SearchPastureRequest struct {
  101. state protoimpl.MessageState
  102. sizeCache protoimpl.SizeCache
  103. unknownFields protoimpl.UnknownFields
  104. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"` // 第几页,从1开始
  105. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // 每页size,一般为20
  106. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` // 牧场名称
  107. ManagerUser string `protobuf:"bytes,4,opt,name=manager_user,json=managerUser,proto3" json:"manager_user,omitempty"` // 牧场负责人名称
  108. ManagerPhone string `protobuf:"bytes,5,opt,name=manager_phone,json=managerPhone,proto3" json:"manager_phone,omitempty"` // 牧场负责人手机号
  109. StartTime int64 `protobuf:"varint,6,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"` // 开始时间
  110. EndTime int64 `protobuf:"varint,7,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
  111. }
  112. func (x *SearchPastureRequest) Reset() {
  113. *x = SearchPastureRequest{}
  114. if protoimpl.UnsafeEnabled {
  115. mi := &file_backend_operation_pasture_proto_msgTypes[1]
  116. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  117. ms.StoreMessageInfo(mi)
  118. }
  119. }
  120. func (x *SearchPastureRequest) String() string {
  121. return protoimpl.X.MessageStringOf(x)
  122. }
  123. func (*SearchPastureRequest) ProtoMessage() {}
  124. func (x *SearchPastureRequest) ProtoReflect() protoreflect.Message {
  125. mi := &file_backend_operation_pasture_proto_msgTypes[1]
  126. if protoimpl.UnsafeEnabled && x != nil {
  127. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  128. if ms.LoadMessageInfo() == nil {
  129. ms.StoreMessageInfo(mi)
  130. }
  131. return ms
  132. }
  133. return mi.MessageOf(x)
  134. }
  135. // Deprecated: Use SearchPastureRequest.ProtoReflect.Descriptor instead.
  136. func (*SearchPastureRequest) Descriptor() ([]byte, []int) {
  137. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{1}
  138. }
  139. func (x *SearchPastureRequest) GetPage() int32 {
  140. if x != nil {
  141. return x.Page
  142. }
  143. return 0
  144. }
  145. func (x *SearchPastureRequest) GetPageSize() int32 {
  146. if x != nil {
  147. return x.PageSize
  148. }
  149. return 0
  150. }
  151. func (x *SearchPastureRequest) GetName() string {
  152. if x != nil {
  153. return x.Name
  154. }
  155. return ""
  156. }
  157. func (x *SearchPastureRequest) GetManagerUser() string {
  158. if x != nil {
  159. return x.ManagerUser
  160. }
  161. return ""
  162. }
  163. func (x *SearchPastureRequest) GetManagerPhone() string {
  164. if x != nil {
  165. return x.ManagerPhone
  166. }
  167. return ""
  168. }
  169. func (x *SearchPastureRequest) GetStartTime() int64 {
  170. if x != nil {
  171. return x.StartTime
  172. }
  173. return 0
  174. }
  175. func (x *SearchPastureRequest) GetEndTime() int64 {
  176. if x != nil {
  177. return x.EndTime
  178. }
  179. return 0
  180. }
  181. type SearchPastureResponse struct {
  182. state protoimpl.MessageState
  183. sizeCache protoimpl.SizeCache
  184. unknownFields protoimpl.UnknownFields
  185. Page int32 `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
  186. Total int32 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  187. List []*AddPastureRequest `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  188. }
  189. func (x *SearchPastureResponse) Reset() {
  190. *x = SearchPastureResponse{}
  191. if protoimpl.UnsafeEnabled {
  192. mi := &file_backend_operation_pasture_proto_msgTypes[2]
  193. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  194. ms.StoreMessageInfo(mi)
  195. }
  196. }
  197. func (x *SearchPastureResponse) String() string {
  198. return protoimpl.X.MessageStringOf(x)
  199. }
  200. func (*SearchPastureResponse) ProtoMessage() {}
  201. func (x *SearchPastureResponse) ProtoReflect() protoreflect.Message {
  202. mi := &file_backend_operation_pasture_proto_msgTypes[2]
  203. if protoimpl.UnsafeEnabled && x != nil {
  204. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  205. if ms.LoadMessageInfo() == nil {
  206. ms.StoreMessageInfo(mi)
  207. }
  208. return ms
  209. }
  210. return mi.MessageOf(x)
  211. }
  212. // Deprecated: Use SearchPastureResponse.ProtoReflect.Descriptor instead.
  213. func (*SearchPastureResponse) Descriptor() ([]byte, []int) {
  214. return file_backend_operation_pasture_proto_rawDescGZIP(), []int{2}
  215. }
  216. func (x *SearchPastureResponse) GetPage() int32 {
  217. if x != nil {
  218. return x.Page
  219. }
  220. return 0
  221. }
  222. func (x *SearchPastureResponse) GetTotal() int32 {
  223. if x != nil {
  224. return x.Total
  225. }
  226. return 0
  227. }
  228. func (x *SearchPastureResponse) GetList() []*AddPastureRequest {
  229. if x != nil {
  230. return x.List
  231. }
  232. return nil
  233. }
  234. var File_backend_operation_pasture_proto protoreflect.FileDescriptor
  235. var file_backend_operation_pasture_proto_rawDesc = []byte{
  236. 0x0a, 0x1f, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  237. 0x69, 0x6f, 0x6e, 0x2f, 0x70, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  238. 0x6f, 0x12, 0x11, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61,
  239. 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x1c, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2f, 0x6f, 0x70,
  240. 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f,
  241. 0x74, 0x6f, 0x22, 0xf1, 0x01, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72,
  242. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  243. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  244. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c,
  245. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
  246. 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12,
  247. 0x23, 0x0a, 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65,
  248. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x50,
  249. 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18,
  250. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x37,
  251. 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32,
  252. 0x1e, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
  253. 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52,
  254. 0x06, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  255. 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65,
  256. 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x22, 0xdd, 0x01, 0x0a, 0x14, 0x53, 0x65, 0x61, 0x72, 0x63,
  257. 0x68, 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  258. 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70,
  259. 0x61, 0x67, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
  260. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
  261. 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  262. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f,
  263. 0x75, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6d, 0x61, 0x6e, 0x61,
  264. 0x67, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  265. 0x65, 0x72, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  266. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
  267. 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  268. 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x65,
  269. 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65,
  270. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x7b, 0x0a, 0x15, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
  271. 0x50, 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  272. 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70,
  273. 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01,
  274. 0x28, 0x05, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x38, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  275. 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e,
  276. 0x64, 0x2e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x50,
  277. 0x61, 0x73, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x04, 0x6c,
  278. 0x69, 0x73, 0x74, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x3b, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
  279. 0x6f, 0x6e, 0x50, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  280. }
  281. var (
  282. file_backend_operation_pasture_proto_rawDescOnce sync.Once
  283. file_backend_operation_pasture_proto_rawDescData = file_backend_operation_pasture_proto_rawDesc
  284. )
  285. func file_backend_operation_pasture_proto_rawDescGZIP() []byte {
  286. file_backend_operation_pasture_proto_rawDescOnce.Do(func() {
  287. file_backend_operation_pasture_proto_rawDescData = protoimpl.X.CompressGZIP(file_backend_operation_pasture_proto_rawDescData)
  288. })
  289. return file_backend_operation_pasture_proto_rawDescData
  290. }
  291. var file_backend_operation_pasture_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
  292. var file_backend_operation_pasture_proto_goTypes = []interface{}{
  293. (*AddPastureRequest)(nil), // 0: backend.operation.AddPastureRequest
  294. (*SearchPastureRequest)(nil), // 1: backend.operation.SearchPastureRequest
  295. (*SearchPastureResponse)(nil), // 2: backend.operation.SearchPastureResponse
  296. (IsShow_Kind)(0), // 3: backend.operation.IsShow.Kind
  297. }
  298. var file_backend_operation_pasture_proto_depIdxs = []int32{
  299. 3, // 0: backend.operation.AddPastureRequest.is_show:type_name -> backend.operation.IsShow.Kind
  300. 0, // 1: backend.operation.SearchPastureResponse.list:type_name -> backend.operation.AddPastureRequest
  301. 2, // [2:2] is the sub-list for method output_type
  302. 2, // [2:2] is the sub-list for method input_type
  303. 2, // [2:2] is the sub-list for extension type_name
  304. 2, // [2:2] is the sub-list for extension extendee
  305. 0, // [0:2] is the sub-list for field type_name
  306. }
  307. func init() { file_backend_operation_pasture_proto_init() }
  308. func file_backend_operation_pasture_proto_init() {
  309. if File_backend_operation_pasture_proto != nil {
  310. return
  311. }
  312. file_backend_operation_enum_proto_init()
  313. if !protoimpl.UnsafeEnabled {
  314. file_backend_operation_pasture_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  315. switch v := v.(*AddPastureRequest); i {
  316. case 0:
  317. return &v.state
  318. case 1:
  319. return &v.sizeCache
  320. case 2:
  321. return &v.unknownFields
  322. default:
  323. return nil
  324. }
  325. }
  326. file_backend_operation_pasture_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  327. switch v := v.(*SearchPastureRequest); i {
  328. case 0:
  329. return &v.state
  330. case 1:
  331. return &v.sizeCache
  332. case 2:
  333. return &v.unknownFields
  334. default:
  335. return nil
  336. }
  337. }
  338. file_backend_operation_pasture_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  339. switch v := v.(*SearchPastureResponse); i {
  340. case 0:
  341. return &v.state
  342. case 1:
  343. return &v.sizeCache
  344. case 2:
  345. return &v.unknownFields
  346. default:
  347. return nil
  348. }
  349. }
  350. }
  351. type x struct{}
  352. out := protoimpl.TypeBuilder{
  353. File: protoimpl.DescBuilder{
  354. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  355. RawDescriptor: file_backend_operation_pasture_proto_rawDesc,
  356. NumEnums: 0,
  357. NumMessages: 3,
  358. NumExtensions: 0,
  359. NumServices: 0,
  360. },
  361. GoTypes: file_backend_operation_pasture_proto_goTypes,
  362. DependencyIndexes: file_backend_operation_pasture_proto_depIdxs,
  363. MessageInfos: file_backend_operation_pasture_proto_msgTypes,
  364. }.Build()
  365. File_backend_operation_pasture_proto = out.File
  366. file_backend_operation_pasture_proto_rawDesc = nil
  367. file_backend_operation_pasture_proto_goTypes = nil
  368. file_backend_operation_pasture_proto_depIdxs = nil
  369. }