PastureManageService.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. // Code generated by MockGen. DO NOT EDIT.
  2. // Source: kpt-pasture/module/backend (interfaces: PastureManageService)
  3. // Package kptservicemock is a generated GoMock package.
  4. package kptservicemock
  5. import (
  6. context "context"
  7. reflect "reflect"
  8. cowPb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  9. gomock "github.com/golang/mock/gomock"
  10. )
  11. // MockPastureManageService is a mock of PastureManageService interface.
  12. type MockPastureManageService struct {
  13. ctrl *gomock.Controller
  14. recorder *MockPastureManageServiceMockRecorder
  15. }
  16. // MockPastureManageServiceMockRecorder is the mock recorder for MockPastureManageService.
  17. type MockPastureManageServiceMockRecorder struct {
  18. mock *MockPastureManageService
  19. }
  20. // NewMockPastureManageService creates a new mock instance.
  21. func NewMockPastureManageService(ctrl *gomock.Controller) *MockPastureManageService {
  22. mock := &MockPastureManageService{ctrl: ctrl}
  23. mock.recorder = &MockPastureManageServiceMockRecorder{mock}
  24. return mock
  25. }
  26. // EXPECT returns an object that allows the caller to indicate expected use.
  27. func (m *MockPastureManageService) EXPECT() *MockPastureManageServiceMockRecorder {
  28. return m.recorder
  29. }
  30. // CreateOrUpdateBarn mocks base method.
  31. func (m *MockPastureManageService) CreateOrUpdateBarn(arg0 context.Context, arg1 *cowPb.SearchBarnList) error {
  32. m.ctrl.T.Helper()
  33. ret := m.ctrl.Call(m, "CreateOrUpdateBarn", arg0, arg1)
  34. ret0, _ := ret[0].(error)
  35. return ret0
  36. }
  37. // CreateOrUpdateBarn indicates an expected call of CreateOrUpdateBarn.
  38. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateBarn(arg0, arg1 interface{}) *gomock.Call {
  39. mr.mock.ctrl.T.Helper()
  40. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateBarn", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateBarn), arg0, arg1)
  41. }
  42. // CreateOrUpdateBarnType mocks base method.
  43. func (m *MockPastureManageService) CreateOrUpdateBarnType(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  44. m.ctrl.T.Helper()
  45. ret := m.ctrl.Call(m, "CreateOrUpdateBarnType", arg0, arg1)
  46. ret0, _ := ret[0].(error)
  47. return ret0
  48. }
  49. // CreateOrUpdateBarnType indicates an expected call of CreateOrUpdateBarnType.
  50. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateBarnType(arg0, arg1 interface{}) *gomock.Call {
  51. mr.mock.ctrl.T.Helper()
  52. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateBarnType", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateBarnType), arg0, arg1)
  53. }
  54. // CreateOrUpdateBreedStatus mocks base method.
  55. func (m *MockPastureManageService) CreateOrUpdateBreedStatus(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  56. m.ctrl.T.Helper()
  57. ret := m.ctrl.Call(m, "CreateOrUpdateBreedStatus", arg0, arg1)
  58. ret0, _ := ret[0].(error)
  59. return ret0
  60. }
  61. // CreateOrUpdateBreedStatus indicates an expected call of CreateOrUpdateBreedStatus.
  62. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateBreedStatus(arg0, arg1 interface{}) *gomock.Call {
  63. mr.mock.ctrl.T.Helper()
  64. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateBreedStatus", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateBreedStatus), arg0, arg1)
  65. }
  66. // CreateOrUpdateCowKind mocks base method.
  67. func (m *MockPastureManageService) CreateOrUpdateCowKind(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  68. m.ctrl.T.Helper()
  69. ret := m.ctrl.Call(m, "CreateOrUpdateCowKind", arg0, arg1)
  70. ret0, _ := ret[0].(error)
  71. return ret0
  72. }
  73. // CreateOrUpdateCowKind indicates an expected call of CreateOrUpdateCowKind.
  74. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateCowKind(arg0, arg1 interface{}) *gomock.Call {
  75. mr.mock.ctrl.T.Helper()
  76. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateCowKind", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateCowKind), arg0, arg1)
  77. }
  78. // CreateOrUpdateCowSource mocks base method.
  79. func (m *MockPastureManageService) CreateOrUpdateCowSource(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  80. m.ctrl.T.Helper()
  81. ret := m.ctrl.Call(m, "CreateOrUpdateCowSource", arg0, arg1)
  82. ret0, _ := ret[0].(error)
  83. return ret0
  84. }
  85. // CreateOrUpdateCowSource indicates an expected call of CreateOrUpdateCowSource.
  86. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateCowSource(arg0, arg1 interface{}) *gomock.Call {
  87. mr.mock.ctrl.T.Helper()
  88. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateCowSource", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateCowSource), arg0, arg1)
  89. }
  90. // CreateOrUpdateCowStatus mocks base method.
  91. func (m *MockPastureManageService) CreateOrUpdateCowStatus(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  92. m.ctrl.T.Helper()
  93. ret := m.ctrl.Call(m, "CreateOrUpdateCowStatus", arg0, arg1)
  94. ret0, _ := ret[0].(error)
  95. return ret0
  96. }
  97. // CreateOrUpdateCowStatus indicates an expected call of CreateOrUpdateCowStatus.
  98. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateCowStatus(arg0, arg1 interface{}) *gomock.Call {
  99. mr.mock.ctrl.T.Helper()
  100. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateCowStatus", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateCowStatus), arg0, arg1)
  101. }
  102. // CreateOrUpdateCowType mocks base method.
  103. func (m *MockPastureManageService) CreateOrUpdateCowType(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  104. m.ctrl.T.Helper()
  105. ret := m.ctrl.Call(m, "CreateOrUpdateCowType", arg0, arg1)
  106. ret0, _ := ret[0].(error)
  107. return ret0
  108. }
  109. // CreateOrUpdateCowType indicates an expected call of CreateOrUpdateCowType.
  110. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateCowType(arg0, arg1 interface{}) *gomock.Call {
  111. mr.mock.ctrl.T.Helper()
  112. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateCowType", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateCowType), arg0, arg1)
  113. }
  114. // CreateOrUpdateDisease mocks base method.
  115. func (m *MockPastureManageService) CreateOrUpdateDisease(arg0 context.Context, arg1 *cowPb.SearchDiseaseList) error {
  116. m.ctrl.T.Helper()
  117. ret := m.ctrl.Call(m, "CreateOrUpdateDisease", arg0, arg1)
  118. ret0, _ := ret[0].(error)
  119. return ret0
  120. }
  121. // CreateOrUpdateDisease indicates an expected call of CreateOrUpdateDisease.
  122. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateDisease(arg0, arg1 interface{}) *gomock.Call {
  123. mr.mock.ctrl.T.Helper()
  124. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateDisease", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateDisease), arg0, arg1)
  125. }
  126. // CreateOrUpdateDiseaseType mocks base method.
  127. func (m *MockPastureManageService) CreateOrUpdateDiseaseType(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  128. m.ctrl.T.Helper()
  129. ret := m.ctrl.Call(m, "CreateOrUpdateDiseaseType", arg0, arg1)
  130. ret0, _ := ret[0].(error)
  131. return ret0
  132. }
  133. // CreateOrUpdateDiseaseType indicates an expected call of CreateOrUpdateDiseaseType.
  134. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateDiseaseType(arg0, arg1 interface{}) *gomock.Call {
  135. mr.mock.ctrl.T.Helper()
  136. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateDiseaseType", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateDiseaseType), arg0, arg1)
  137. }
  138. // CreateOrUpdatePrescription mocks base method.
  139. func (m *MockPastureManageService) CreateOrUpdatePrescription(arg0 context.Context, arg1 *cowPb.PrescriptionRequest) error {
  140. m.ctrl.T.Helper()
  141. ret := m.ctrl.Call(m, "CreateOrUpdatePrescription", arg0, arg1)
  142. ret0, _ := ret[0].(error)
  143. return ret0
  144. }
  145. // CreateOrUpdatePrescription indicates an expected call of CreateOrUpdatePrescription.
  146. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdatePrescription(arg0, arg1 interface{}) *gomock.Call {
  147. mr.mock.ctrl.T.Helper()
  148. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdatePrescription", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdatePrescription), arg0, arg1)
  149. }
  150. // CreateOrUpdateSameTime mocks base method.
  151. func (m *MockPastureManageService) CreateOrUpdateSameTime(arg0 context.Context, arg1 *cowPb.SearchSameTimeList) error {
  152. m.ctrl.T.Helper()
  153. ret := m.ctrl.Call(m, "CreateOrUpdateSameTime", arg0, arg1)
  154. ret0, _ := ret[0].(error)
  155. return ret0
  156. }
  157. // CreateOrUpdateSameTime indicates an expected call of CreateOrUpdateSameTime.
  158. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateSameTime(arg0, arg1 interface{}) *gomock.Call {
  159. mr.mock.ctrl.T.Helper()
  160. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateSameTime", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateSameTime), arg0, arg1)
  161. }
  162. // CreateOrUpdateTransferPenReason mocks base method.
  163. func (m *MockPastureManageService) CreateOrUpdateTransferPenReason(arg0 context.Context, arg1 *cowPb.SearchBaseConfigList) error {
  164. m.ctrl.T.Helper()
  165. ret := m.ctrl.Call(m, "CreateOrUpdateTransferPenReason", arg0, arg1)
  166. ret0, _ := ret[0].(error)
  167. return ret0
  168. }
  169. // CreateOrUpdateTransferPenReason indicates an expected call of CreateOrUpdateTransferPenReason.
  170. func (mr *MockPastureManageServiceMockRecorder) CreateOrUpdateTransferPenReason(arg0, arg1 interface{}) *gomock.Call {
  171. mr.mock.ctrl.T.Helper()
  172. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateTransferPenReason", reflect.TypeOf((*MockPastureManageService)(nil).CreateOrUpdateTransferPenReason), arg0, arg1)
  173. }
  174. // CreatedOrUpdateImmunization mocks base method.
  175. func (m *MockPastureManageService) CreatedOrUpdateImmunization(arg0 context.Context, arg1 *cowPb.ImmunizationRequest) error {
  176. m.ctrl.T.Helper()
  177. ret := m.ctrl.Call(m, "CreatedOrUpdateImmunization", arg0, arg1)
  178. ret0, _ := ret[0].(error)
  179. return ret0
  180. }
  181. // CreatedOrUpdateImmunization indicates an expected call of CreatedOrUpdateImmunization.
  182. func (mr *MockPastureManageServiceMockRecorder) CreatedOrUpdateImmunization(arg0, arg1 interface{}) *gomock.Call {
  183. mr.mock.ctrl.T.Helper()
  184. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreatedOrUpdateImmunization", reflect.TypeOf((*MockPastureManageService)(nil).CreatedOrUpdateImmunization), arg0, arg1)
  185. }
  186. // ImmunizationIsShow mocks base method.
  187. func (m *MockPastureManageService) ImmunizationIsShow(arg0 context.Context, arg1 int64) error {
  188. m.ctrl.T.Helper()
  189. ret := m.ctrl.Call(m, "ImmunizationIsShow", arg0, arg1)
  190. ret0, _ := ret[0].(error)
  191. return ret0
  192. }
  193. // ImmunizationIsShow indicates an expected call of ImmunizationIsShow.
  194. func (mr *MockPastureManageServiceMockRecorder) ImmunizationIsShow(arg0, arg1 interface{}) *gomock.Call {
  195. mr.mock.ctrl.T.Helper()
  196. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ImmunizationIsShow", reflect.TypeOf((*MockPastureManageService)(nil).ImmunizationIsShow), arg0, arg1)
  197. }
  198. // ImmunizationList mocks base method.
  199. func (m *MockPastureManageService) ImmunizationList(arg0 context.Context, arg1 *cowPb.ImmunizationRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchImmunizationResponse, error) {
  200. m.ctrl.T.Helper()
  201. ret := m.ctrl.Call(m, "ImmunizationList", arg0, arg1, arg2)
  202. ret0, _ := ret[0].(*cowPb.SearchImmunizationResponse)
  203. ret1, _ := ret[1].(error)
  204. return ret0, ret1
  205. }
  206. // ImmunizationList indicates an expected call of ImmunizationList.
  207. func (mr *MockPastureManageServiceMockRecorder) ImmunizationList(arg0, arg1, arg2 interface{}) *gomock.Call {
  208. mr.mock.ctrl.T.Helper()
  209. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ImmunizationList", reflect.TypeOf((*MockPastureManageService)(nil).ImmunizationList), arg0, arg1, arg2)
  210. }
  211. // PrescriptionDetail mocks base method.
  212. func (m *MockPastureManageService) PrescriptionDetail(arg0 context.Context, arg1 int64) (*cowPb.PrescriptionDetailResponse, error) {
  213. m.ctrl.T.Helper()
  214. ret := m.ctrl.Call(m, "PrescriptionDetail", arg0, arg1)
  215. ret0, _ := ret[0].(*cowPb.PrescriptionDetailResponse)
  216. ret1, _ := ret[1].(error)
  217. return ret0, ret1
  218. }
  219. // PrescriptionDetail indicates an expected call of PrescriptionDetail.
  220. func (mr *MockPastureManageServiceMockRecorder) PrescriptionDetail(arg0, arg1 interface{}) *gomock.Call {
  221. mr.mock.ctrl.T.Helper()
  222. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "PrescriptionDetail", reflect.TypeOf((*MockPastureManageService)(nil).PrescriptionDetail), arg0, arg1)
  223. }
  224. // SameTimeIsShow mocks base method.
  225. func (m *MockPastureManageService) SameTimeIsShow(arg0 context.Context, arg1 int64) error {
  226. m.ctrl.T.Helper()
  227. ret := m.ctrl.Call(m, "SameTimeIsShow", arg0, arg1)
  228. ret0, _ := ret[0].(error)
  229. return ret0
  230. }
  231. // SameTimeIsShow indicates an expected call of SameTimeIsShow.
  232. func (mr *MockPastureManageServiceMockRecorder) SameTimeIsShow(arg0, arg1 interface{}) *gomock.Call {
  233. mr.mock.ctrl.T.Helper()
  234. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SameTimeIsShow", reflect.TypeOf((*MockPastureManageService)(nil).SameTimeIsShow), arg0, arg1)
  235. }
  236. // SearchBarnList mocks base method.
  237. func (m *MockPastureManageService) SearchBarnList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBarnResponse, error) {
  238. m.ctrl.T.Helper()
  239. ret := m.ctrl.Call(m, "SearchBarnList", arg0, arg1, arg2)
  240. ret0, _ := ret[0].(*cowPb.SearchBarnResponse)
  241. ret1, _ := ret[1].(error)
  242. return ret0, ret1
  243. }
  244. // SearchBarnList indicates an expected call of SearchBarnList.
  245. func (mr *MockPastureManageServiceMockRecorder) SearchBarnList(arg0, arg1, arg2 interface{}) *gomock.Call {
  246. mr.mock.ctrl.T.Helper()
  247. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchBarnList", reflect.TypeOf((*MockPastureManageService)(nil).SearchBarnList), arg0, arg1, arg2)
  248. }
  249. // SearchBarnTypeList mocks base method.
  250. func (m *MockPastureManageService) SearchBarnTypeList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  251. m.ctrl.T.Helper()
  252. ret := m.ctrl.Call(m, "SearchBarnTypeList", arg0, arg1, arg2)
  253. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  254. ret1, _ := ret[1].(error)
  255. return ret0, ret1
  256. }
  257. // SearchBarnTypeList indicates an expected call of SearchBarnTypeList.
  258. func (mr *MockPastureManageServiceMockRecorder) SearchBarnTypeList(arg0, arg1, arg2 interface{}) *gomock.Call {
  259. mr.mock.ctrl.T.Helper()
  260. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchBarnTypeList", reflect.TypeOf((*MockPastureManageService)(nil).SearchBarnTypeList), arg0, arg1, arg2)
  261. }
  262. // SearchBreedStatusList mocks base method.
  263. func (m *MockPastureManageService) SearchBreedStatusList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  264. m.ctrl.T.Helper()
  265. ret := m.ctrl.Call(m, "SearchBreedStatusList", arg0, arg1, arg2)
  266. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  267. ret1, _ := ret[1].(error)
  268. return ret0, ret1
  269. }
  270. // SearchBreedStatusList indicates an expected call of SearchBreedStatusList.
  271. func (mr *MockPastureManageServiceMockRecorder) SearchBreedStatusList(arg0, arg1, arg2 interface{}) *gomock.Call {
  272. mr.mock.ctrl.T.Helper()
  273. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchBreedStatusList", reflect.TypeOf((*MockPastureManageService)(nil).SearchBreedStatusList), arg0, arg1, arg2)
  274. }
  275. // SearchCowKindList mocks base method.
  276. func (m *MockPastureManageService) SearchCowKindList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  277. m.ctrl.T.Helper()
  278. ret := m.ctrl.Call(m, "SearchCowKindList", arg0, arg1, arg2)
  279. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  280. ret1, _ := ret[1].(error)
  281. return ret0, ret1
  282. }
  283. // SearchCowKindList indicates an expected call of SearchCowKindList.
  284. func (mr *MockPastureManageServiceMockRecorder) SearchCowKindList(arg0, arg1, arg2 interface{}) *gomock.Call {
  285. mr.mock.ctrl.T.Helper()
  286. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchCowKindList", reflect.TypeOf((*MockPastureManageService)(nil).SearchCowKindList), arg0, arg1, arg2)
  287. }
  288. // SearchCowSourceList mocks base method.
  289. func (m *MockPastureManageService) SearchCowSourceList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  290. m.ctrl.T.Helper()
  291. ret := m.ctrl.Call(m, "SearchCowSourceList", arg0, arg1, arg2)
  292. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  293. ret1, _ := ret[1].(error)
  294. return ret0, ret1
  295. }
  296. // SearchCowSourceList indicates an expected call of SearchCowSourceList.
  297. func (mr *MockPastureManageServiceMockRecorder) SearchCowSourceList(arg0, arg1, arg2 interface{}) *gomock.Call {
  298. mr.mock.ctrl.T.Helper()
  299. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchCowSourceList", reflect.TypeOf((*MockPastureManageService)(nil).SearchCowSourceList), arg0, arg1, arg2)
  300. }
  301. // SearchCowStatusList mocks base method.
  302. func (m *MockPastureManageService) SearchCowStatusList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  303. m.ctrl.T.Helper()
  304. ret := m.ctrl.Call(m, "SearchCowStatusList", arg0, arg1, arg2)
  305. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  306. ret1, _ := ret[1].(error)
  307. return ret0, ret1
  308. }
  309. // SearchCowStatusList indicates an expected call of SearchCowStatusList.
  310. func (mr *MockPastureManageServiceMockRecorder) SearchCowStatusList(arg0, arg1, arg2 interface{}) *gomock.Call {
  311. mr.mock.ctrl.T.Helper()
  312. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchCowStatusList", reflect.TypeOf((*MockPastureManageService)(nil).SearchCowStatusList), arg0, arg1, arg2)
  313. }
  314. // SearchCowTypeList mocks base method.
  315. func (m *MockPastureManageService) SearchCowTypeList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  316. m.ctrl.T.Helper()
  317. ret := m.ctrl.Call(m, "SearchCowTypeList", arg0, arg1, arg2)
  318. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  319. ret1, _ := ret[1].(error)
  320. return ret0, ret1
  321. }
  322. // SearchCowTypeList indicates an expected call of SearchCowTypeList.
  323. func (mr *MockPastureManageServiceMockRecorder) SearchCowTypeList(arg0, arg1, arg2 interface{}) *gomock.Call {
  324. mr.mock.ctrl.T.Helper()
  325. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchCowTypeList", reflect.TypeOf((*MockPastureManageService)(nil).SearchCowTypeList), arg0, arg1, arg2)
  326. }
  327. // SearchDiseaseList mocks base method.
  328. func (m *MockPastureManageService) SearchDiseaseList(arg0 context.Context, arg1 *cowPb.SearchDiseaseRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchDiseaseResponse, error) {
  329. m.ctrl.T.Helper()
  330. ret := m.ctrl.Call(m, "SearchDiseaseList", arg0, arg1, arg2)
  331. ret0, _ := ret[0].(*cowPb.SearchDiseaseResponse)
  332. ret1, _ := ret[1].(error)
  333. return ret0, ret1
  334. }
  335. // SearchDiseaseList indicates an expected call of SearchDiseaseList.
  336. func (mr *MockPastureManageServiceMockRecorder) SearchDiseaseList(arg0, arg1, arg2 interface{}) *gomock.Call {
  337. mr.mock.ctrl.T.Helper()
  338. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchDiseaseList", reflect.TypeOf((*MockPastureManageService)(nil).SearchDiseaseList), arg0, arg1, arg2)
  339. }
  340. // SearchDiseaseTypeList mocks base method.
  341. func (m *MockPastureManageService) SearchDiseaseTypeList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  342. m.ctrl.T.Helper()
  343. ret := m.ctrl.Call(m, "SearchDiseaseTypeList", arg0, arg1, arg2)
  344. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  345. ret1, _ := ret[1].(error)
  346. return ret0, ret1
  347. }
  348. // SearchDiseaseTypeList indicates an expected call of SearchDiseaseTypeList.
  349. func (mr *MockPastureManageServiceMockRecorder) SearchDiseaseTypeList(arg0, arg1, arg2 interface{}) *gomock.Call {
  350. mr.mock.ctrl.T.Helper()
  351. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchDiseaseTypeList", reflect.TypeOf((*MockPastureManageService)(nil).SearchDiseaseTypeList), arg0, arg1, arg2)
  352. }
  353. // SearchPrescriptionList mocks base method.
  354. func (m *MockPastureManageService) SearchPrescriptionList(arg0 context.Context, arg1 *cowPb.SearchPrescriptionRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchPrescriptionResponse, error) {
  355. m.ctrl.T.Helper()
  356. ret := m.ctrl.Call(m, "SearchPrescriptionList", arg0, arg1, arg2)
  357. ret0, _ := ret[0].(*cowPb.SearchPrescriptionResponse)
  358. ret1, _ := ret[1].(error)
  359. return ret0, ret1
  360. }
  361. // SearchPrescriptionList indicates an expected call of SearchPrescriptionList.
  362. func (mr *MockPastureManageServiceMockRecorder) SearchPrescriptionList(arg0, arg1, arg2 interface{}) *gomock.Call {
  363. mr.mock.ctrl.T.Helper()
  364. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchPrescriptionList", reflect.TypeOf((*MockPastureManageService)(nil).SearchPrescriptionList), arg0, arg1, arg2)
  365. }
  366. // SearchSameTimeList mocks base method.
  367. func (m *MockPastureManageService) SearchSameTimeList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SameTimeResponse, error) {
  368. m.ctrl.T.Helper()
  369. ret := m.ctrl.Call(m, "SearchSameTimeList", arg0, arg1, arg2)
  370. ret0, _ := ret[0].(*cowPb.SameTimeResponse)
  371. ret1, _ := ret[1].(error)
  372. return ret0, ret1
  373. }
  374. // SearchSameTimeList indicates an expected call of SearchSameTimeList.
  375. func (mr *MockPastureManageServiceMockRecorder) SearchSameTimeList(arg0, arg1, arg2 interface{}) *gomock.Call {
  376. mr.mock.ctrl.T.Helper()
  377. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchSameTimeList", reflect.TypeOf((*MockPastureManageService)(nil).SearchSameTimeList), arg0, arg1, arg2)
  378. }
  379. // SearchTransferPenReasonList mocks base method.
  380. func (m *MockPastureManageService) SearchTransferPenReasonList(arg0 context.Context, arg1 *cowPb.SearchNameRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchBaseConfigResponse, error) {
  381. m.ctrl.T.Helper()
  382. ret := m.ctrl.Call(m, "SearchTransferPenReasonList", arg0, arg1, arg2)
  383. ret0, _ := ret[0].(*cowPb.SearchBaseConfigResponse)
  384. ret1, _ := ret[1].(error)
  385. return ret0, ret1
  386. }
  387. // SearchTransferPenReasonList indicates an expected call of SearchTransferPenReasonList.
  388. func (mr *MockPastureManageServiceMockRecorder) SearchTransferPenReasonList(arg0, arg1, arg2 interface{}) *gomock.Call {
  389. mr.mock.ctrl.T.Helper()
  390. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchTransferPenReasonList", reflect.TypeOf((*MockPastureManageService)(nil).SearchTransferPenReasonList), arg0, arg1, arg2)
  391. }
  392. // SystemBasicEdit mocks base method.
  393. func (m *MockPastureManageService) SystemBasicEdit(arg0 context.Context, arg1 *cowPb.BaseDataConfigBatch) error {
  394. m.ctrl.T.Helper()
  395. ret := m.ctrl.Call(m, "SystemBasicEdit", arg0, arg1)
  396. ret0, _ := ret[0].(error)
  397. return ret0
  398. }
  399. // SystemBasicEdit indicates an expected call of SystemBasicEdit.
  400. func (mr *MockPastureManageServiceMockRecorder) SystemBasicEdit(arg0, arg1 interface{}) *gomock.Call {
  401. mr.mock.ctrl.T.Helper()
  402. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemBasicEdit", reflect.TypeOf((*MockPastureManageService)(nil).SystemBasicEdit), arg0, arg1)
  403. }
  404. // SystemBasicList mocks base method.
  405. func (m *MockPastureManageService) SystemBasicList(arg0 context.Context) (*cowPb.SearchBaseDataConfigResponse, error) {
  406. m.ctrl.T.Helper()
  407. ret := m.ctrl.Call(m, "SystemBasicList", arg0)
  408. ret0, _ := ret[0].(*cowPb.SearchBaseDataConfigResponse)
  409. ret1, _ := ret[1].(error)
  410. return ret0, ret1
  411. }
  412. // SystemBasicList indicates an expected call of SystemBasicList.
  413. func (mr *MockPastureManageServiceMockRecorder) SystemBasicList(arg0 interface{}) *gomock.Call {
  414. mr.mock.ctrl.T.Helper()
  415. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemBasicList", reflect.TypeOf((*MockPastureManageService)(nil).SystemBasicList), arg0)
  416. }