SystemService.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. // Code generated by MockGen. DO NOT EDIT.
  2. // Source: kpt-pasture/module/backend (interfaces: SystemService)
  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. // MockSystemService is a mock of SystemService interface.
  12. type MockSystemService struct {
  13. ctrl *gomock.Controller
  14. recorder *MockSystemServiceMockRecorder
  15. }
  16. // MockSystemServiceMockRecorder is the mock recorder for MockSystemService.
  17. type MockSystemServiceMockRecorder struct {
  18. mock *MockSystemService
  19. }
  20. // NewMockSystemService creates a new mock instance.
  21. func NewMockSystemService(ctrl *gomock.Controller) *MockSystemService {
  22. mock := &MockSystemService{ctrl: ctrl}
  23. mock.recorder = &MockSystemServiceMockRecorder{mock}
  24. return mock
  25. }
  26. // EXPECT returns an object that allows the caller to indicate expected use.
  27. func (m *MockSystemService) EXPECT() *MockSystemServiceMockRecorder {
  28. return m.recorder
  29. }
  30. // CreateOrUpdateSystemMenu mocks base method.
  31. func (m *MockSystemService) CreateOrUpdateSystemMenu(arg0 context.Context, arg1 *cowPb.SearchMenuRequest) error {
  32. m.ctrl.T.Helper()
  33. ret := m.ctrl.Call(m, "CreateOrUpdateSystemMenu", arg0, arg1)
  34. ret0, _ := ret[0].(error)
  35. return ret0
  36. }
  37. // CreateOrUpdateSystemMenu indicates an expected call of CreateOrUpdateSystemMenu.
  38. func (mr *MockSystemServiceMockRecorder) CreateOrUpdateSystemMenu(arg0, arg1 interface{}) *gomock.Call {
  39. mr.mock.ctrl.T.Helper()
  40. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateOrUpdateSystemMenu", reflect.TypeOf((*MockSystemService)(nil).CreateOrUpdateSystemMenu), arg0, arg1)
  41. }
  42. // DeleteSystemMenu mocks base method.
  43. func (m *MockSystemService) DeleteSystemMenu(arg0 context.Context, arg1 int64) error {
  44. m.ctrl.T.Helper()
  45. ret := m.ctrl.Call(m, "DeleteSystemMenu", arg0, arg1)
  46. ret0, _ := ret[0].(error)
  47. return ret0
  48. }
  49. // DeleteSystemMenu indicates an expected call of DeleteSystemMenu.
  50. func (mr *MockSystemServiceMockRecorder) DeleteSystemMenu(arg0, arg1 interface{}) *gomock.Call {
  51. mr.mock.ctrl.T.Helper()
  52. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteSystemMenu", reflect.TypeOf((*MockSystemService)(nil).DeleteSystemMenu), arg0, arg1)
  53. }
  54. // DeleteSystemRole mocks base method.
  55. func (m *MockSystemService) DeleteSystemRole(arg0 context.Context, arg1 int64) error {
  56. m.ctrl.T.Helper()
  57. ret := m.ctrl.Call(m, "DeleteSystemRole", arg0, arg1)
  58. ret0, _ := ret[0].(error)
  59. return ret0
  60. }
  61. // DeleteSystemRole indicates an expected call of DeleteSystemRole.
  62. func (mr *MockSystemServiceMockRecorder) DeleteSystemRole(arg0, arg1 interface{}) *gomock.Call {
  63. mr.mock.ctrl.T.Helper()
  64. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteSystemRole", reflect.TypeOf((*MockSystemService)(nil).DeleteSystemRole), arg0, arg1)
  65. }
  66. // DeleteSystemUser mocks base method.
  67. func (m *MockSystemService) DeleteSystemUser(arg0 context.Context, arg1 int64) error {
  68. m.ctrl.T.Helper()
  69. ret := m.ctrl.Call(m, "DeleteSystemUser", arg0, arg1)
  70. ret0, _ := ret[0].(error)
  71. return ret0
  72. }
  73. // DeleteSystemUser indicates an expected call of DeleteSystemUser.
  74. func (mr *MockSystemServiceMockRecorder) DeleteSystemUser(arg0, arg1 interface{}) *gomock.Call {
  75. mr.mock.ctrl.T.Helper()
  76. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteSystemUser", reflect.TypeOf((*MockSystemService)(nil).DeleteSystemUser), arg0, arg1)
  77. }
  78. // GetCurrentUserName mocks base method.
  79. func (m *MockSystemService) GetCurrentUserName(arg0 context.Context) (string, error) {
  80. m.ctrl.T.Helper()
  81. ret := m.ctrl.Call(m, "GetCurrentUserName", arg0)
  82. ret0, _ := ret[0].(string)
  83. ret1, _ := ret[1].(error)
  84. return ret0, ret1
  85. }
  86. // GetCurrentUserName indicates an expected call of GetCurrentUserName.
  87. func (mr *MockSystemServiceMockRecorder) GetCurrentUserName(arg0 interface{}) *gomock.Call {
  88. mr.mock.ctrl.T.Helper()
  89. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCurrentUserName", reflect.TypeOf((*MockSystemService)(nil).GetCurrentUserName), arg0)
  90. }
  91. // GetRoleMenuList mocks base method.
  92. func (m *MockSystemService) GetRoleMenuList(arg0 context.Context, arg1 int64) (*cowPb.SystemRoleMenuResponse, error) {
  93. m.ctrl.T.Helper()
  94. ret := m.ctrl.Call(m, "GetRoleMenuList", arg0, arg1)
  95. ret0, _ := ret[0].(*cowPb.SystemRoleMenuResponse)
  96. ret1, _ := ret[1].(error)
  97. return ret0, ret1
  98. }
  99. // GetRoleMenuList indicates an expected call of GetRoleMenuList.
  100. func (mr *MockSystemServiceMockRecorder) GetRoleMenuList(arg0, arg1 interface{}) *gomock.Call {
  101. mr.mock.ctrl.T.Helper()
  102. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetRoleMenuList", reflect.TypeOf((*MockSystemService)(nil).GetRoleMenuList), arg0, arg1)
  103. }
  104. // GetSystemUserMenu mocks base method.
  105. func (m *MockSystemService) GetSystemUserMenu(arg0 context.Context) (*cowPb.SystemUserMenuTreeResponse, error) {
  106. m.ctrl.T.Helper()
  107. ret := m.ctrl.Call(m, "GetSystemUserMenu", arg0)
  108. ret0, _ := ret[0].(*cowPb.SystemUserMenuTreeResponse)
  109. ret1, _ := ret[1].(error)
  110. return ret0, ret1
  111. }
  112. // GetSystemUserMenu indicates an expected call of GetSystemUserMenu.
  113. func (mr *MockSystemServiceMockRecorder) GetSystemUserMenu(arg0 interface{}) *gomock.Call {
  114. mr.mock.ctrl.T.Helper()
  115. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetSystemUserMenu", reflect.TypeOf((*MockSystemService)(nil).GetSystemUserMenu), arg0)
  116. }
  117. // IsShowSystemRole mocks base method.
  118. func (m *MockSystemService) IsShowSystemRole(arg0 context.Context, arg1 int64) error {
  119. m.ctrl.T.Helper()
  120. ret := m.ctrl.Call(m, "IsShowSystemRole", arg0, arg1)
  121. ret0, _ := ret[0].(error)
  122. return ret0
  123. }
  124. // IsShowSystemRole indicates an expected call of IsShowSystemRole.
  125. func (mr *MockSystemServiceMockRecorder) IsShowSystemRole(arg0, arg1 interface{}) *gomock.Call {
  126. mr.mock.ctrl.T.Helper()
  127. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsShowSystemRole", reflect.TypeOf((*MockSystemService)(nil).IsShowSystemRole), arg0, arg1)
  128. }
  129. // IsShowSystemUser mocks base method.
  130. func (m *MockSystemService) IsShowSystemUser(arg0 context.Context, arg1 int64) error {
  131. m.ctrl.T.Helper()
  132. ret := m.ctrl.Call(m, "IsShowSystemUser", arg0, arg1)
  133. ret0, _ := ret[0].(error)
  134. return ret0
  135. }
  136. // IsShowSystemUser indicates an expected call of IsShowSystemUser.
  137. func (mr *MockSystemServiceMockRecorder) IsShowSystemUser(arg0, arg1 interface{}) *gomock.Call {
  138. mr.mock.ctrl.T.Helper()
  139. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsShowSystemUser", reflect.TypeOf((*MockSystemService)(nil).IsShowSystemUser), arg0, arg1)
  140. }
  141. // Login mocks base method.
  142. func (m *MockSystemService) Login(arg0 context.Context, arg1 *cowPb.SearchUserRequest) (*cowPb.SystemUserResponse, error) {
  143. m.ctrl.T.Helper()
  144. ret := m.ctrl.Call(m, "Login", arg0, arg1)
  145. ret0, _ := ret[0].(*cowPb.SystemUserResponse)
  146. ret1, _ := ret[1].(error)
  147. return ret0, ret1
  148. }
  149. // Login indicates an expected call of Login.
  150. func (mr *MockSystemServiceMockRecorder) Login(arg0, arg1 interface{}) *gomock.Call {
  151. mr.mock.ctrl.T.Helper()
  152. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Login", reflect.TypeOf((*MockSystemService)(nil).Login), arg0, arg1)
  153. }
  154. // ResetPasswordSystemUser mocks base method.
  155. func (m *MockSystemService) ResetPasswordSystemUser(arg0 context.Context, arg1 *cowPb.ResetUserPasswordRequest) error {
  156. m.ctrl.T.Helper()
  157. ret := m.ctrl.Call(m, "ResetPasswordSystemUser", arg0, arg1)
  158. ret0, _ := ret[0].(error)
  159. return ret0
  160. }
  161. // ResetPasswordSystemUser indicates an expected call of ResetPasswordSystemUser.
  162. func (mr *MockSystemServiceMockRecorder) ResetPasswordSystemUser(arg0, arg1 interface{}) *gomock.Call {
  163. mr.mock.ctrl.T.Helper()
  164. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResetPasswordSystemUser", reflect.TypeOf((*MockSystemService)(nil).ResetPasswordSystemUser), arg0, arg1)
  165. }
  166. // RoleMenuSave mocks base method.
  167. func (m *MockSystemService) RoleMenuSave(arg0 context.Context, arg1 *cowPb.SystemRoleMenuRequest) error {
  168. m.ctrl.T.Helper()
  169. ret := m.ctrl.Call(m, "RoleMenuSave", arg0, arg1)
  170. ret0, _ := ret[0].(error)
  171. return ret0
  172. }
  173. // RoleMenuSave indicates an expected call of RoleMenuSave.
  174. func (mr *MockSystemServiceMockRecorder) RoleMenuSave(arg0, arg1 interface{}) *gomock.Call {
  175. mr.mock.ctrl.T.Helper()
  176. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "RoleMenuSave", reflect.TypeOf((*MockSystemService)(nil).RoleMenuSave), arg0, arg1)
  177. }
  178. // SearchSystemDeptList mocks base method.
  179. func (m *MockSystemService) SearchSystemDeptList(arg0 context.Context, arg1 *cowPb.SearchDeptRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchDeptResponse, error) {
  180. m.ctrl.T.Helper()
  181. ret := m.ctrl.Call(m, "SearchSystemDeptList", arg0, arg1, arg2)
  182. ret0, _ := ret[0].(*cowPb.SearchDeptResponse)
  183. ret1, _ := ret[1].(error)
  184. return ret0, ret1
  185. }
  186. // SearchSystemDeptList indicates an expected call of SearchSystemDeptList.
  187. func (mr *MockSystemServiceMockRecorder) SearchSystemDeptList(arg0, arg1, arg2 interface{}) *gomock.Call {
  188. mr.mock.ctrl.T.Helper()
  189. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchSystemDeptList", reflect.TypeOf((*MockSystemService)(nil).SearchSystemDeptList), arg0, arg1, arg2)
  190. }
  191. // SearchSystemMenuList mocks base method.
  192. func (m *MockSystemService) SearchSystemMenuList(arg0 context.Context, arg1 *cowPb.SearchMenuRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchMenuResponse, error) {
  193. m.ctrl.T.Helper()
  194. ret := m.ctrl.Call(m, "SearchSystemMenuList", arg0, arg1, arg2)
  195. ret0, _ := ret[0].(*cowPb.SearchMenuResponse)
  196. ret1, _ := ret[1].(error)
  197. return ret0, ret1
  198. }
  199. // SearchSystemMenuList indicates an expected call of SearchSystemMenuList.
  200. func (mr *MockSystemServiceMockRecorder) SearchSystemMenuList(arg0, arg1, arg2 interface{}) *gomock.Call {
  201. mr.mock.ctrl.T.Helper()
  202. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchSystemMenuList", reflect.TypeOf((*MockSystemService)(nil).SearchSystemMenuList), arg0, arg1, arg2)
  203. }
  204. // SearchSystemRoleList mocks base method.
  205. func (m *MockSystemService) SearchSystemRoleList(arg0 context.Context, arg1 *cowPb.SearchRoleRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchRoleResponse, error) {
  206. m.ctrl.T.Helper()
  207. ret := m.ctrl.Call(m, "SearchSystemRoleList", arg0, arg1, arg2)
  208. ret0, _ := ret[0].(*cowPb.SearchRoleResponse)
  209. ret1, _ := ret[1].(error)
  210. return ret0, ret1
  211. }
  212. // SearchSystemRoleList indicates an expected call of SearchSystemRoleList.
  213. func (mr *MockSystemServiceMockRecorder) SearchSystemRoleList(arg0, arg1, arg2 interface{}) *gomock.Call {
  214. mr.mock.ctrl.T.Helper()
  215. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchSystemRoleList", reflect.TypeOf((*MockSystemService)(nil).SearchSystemRoleList), arg0, arg1, arg2)
  216. }
  217. // SearchSystemUserList mocks base method.
  218. func (m *MockSystemService) SearchSystemUserList(arg0 context.Context, arg1 *cowPb.SearchUserRequest, arg2 *cowPb.PaginationModel) (*cowPb.SearchUserResponse, error) {
  219. m.ctrl.T.Helper()
  220. ret := m.ctrl.Call(m, "SearchSystemUserList", arg0, arg1, arg2)
  221. ret0, _ := ret[0].(*cowPb.SearchUserResponse)
  222. ret1, _ := ret[1].(error)
  223. return ret0, ret1
  224. }
  225. // SearchSystemUserList indicates an expected call of SearchSystemUserList.
  226. func (mr *MockSystemServiceMockRecorder) SearchSystemUserList(arg0, arg1, arg2 interface{}) *gomock.Call {
  227. mr.mock.ctrl.T.Helper()
  228. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SearchSystemUserList", reflect.TypeOf((*MockSystemService)(nil).SearchSystemUserList), arg0, arg1, arg2)
  229. }
  230. // SystemDepDelete mocks base method.
  231. func (m *MockSystemService) SystemDepDelete(arg0 context.Context, arg1 int64) error {
  232. m.ctrl.T.Helper()
  233. ret := m.ctrl.Call(m, "SystemDepDelete", arg0, arg1)
  234. ret0, _ := ret[0].(error)
  235. return ret0
  236. }
  237. // SystemDepDelete indicates an expected call of SystemDepDelete.
  238. func (mr *MockSystemServiceMockRecorder) SystemDepDelete(arg0, arg1 interface{}) *gomock.Call {
  239. mr.mock.ctrl.T.Helper()
  240. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemDepDelete", reflect.TypeOf((*MockSystemService)(nil).SystemDepDelete), arg0, arg1)
  241. }
  242. // SystemDeptCreateOrUpdate mocks base method.
  243. func (m *MockSystemService) SystemDeptCreateOrUpdate(arg0 context.Context, arg1 *cowPb.SearchDeptRequest) error {
  244. m.ctrl.T.Helper()
  245. ret := m.ctrl.Call(m, "SystemDeptCreateOrUpdate", arg0, arg1)
  246. ret0, _ := ret[0].(error)
  247. return ret0
  248. }
  249. // SystemDeptCreateOrUpdate indicates an expected call of SystemDeptCreateOrUpdate.
  250. func (mr *MockSystemServiceMockRecorder) SystemDeptCreateOrUpdate(arg0, arg1 interface{}) *gomock.Call {
  251. mr.mock.ctrl.T.Helper()
  252. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemDeptCreateOrUpdate", reflect.TypeOf((*MockSystemService)(nil).SystemDeptCreateOrUpdate), arg0, arg1)
  253. }
  254. // SystemMenuTree mocks base method.
  255. func (m *MockSystemService) SystemMenuTree(arg0 context.Context) (*cowPb.SystemMenuTreeResponse, error) {
  256. m.ctrl.T.Helper()
  257. ret := m.ctrl.Call(m, "SystemMenuTree", arg0)
  258. ret0, _ := ret[0].(*cowPb.SystemMenuTreeResponse)
  259. ret1, _ := ret[1].(error)
  260. return ret0, ret1
  261. }
  262. // SystemMenuTree indicates an expected call of SystemMenuTree.
  263. func (mr *MockSystemServiceMockRecorder) SystemMenuTree(arg0 interface{}) *gomock.Call {
  264. mr.mock.ctrl.T.Helper()
  265. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemMenuTree", reflect.TypeOf((*MockSystemService)(nil).SystemMenuTree), arg0)
  266. }
  267. // SystemRoleCreateOrUpdate mocks base method.
  268. func (m *MockSystemService) SystemRoleCreateOrUpdate(arg0 context.Context, arg1 *cowPb.SearchRoleRequest) error {
  269. m.ctrl.T.Helper()
  270. ret := m.ctrl.Call(m, "SystemRoleCreateOrUpdate", arg0, arg1)
  271. ret0, _ := ret[0].(error)
  272. return ret0
  273. }
  274. // SystemRoleCreateOrUpdate indicates an expected call of SystemRoleCreateOrUpdate.
  275. func (mr *MockSystemServiceMockRecorder) SystemRoleCreateOrUpdate(arg0, arg1 interface{}) *gomock.Call {
  276. mr.mock.ctrl.T.Helper()
  277. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemRoleCreateOrUpdate", reflect.TypeOf((*MockSystemService)(nil).SystemRoleCreateOrUpdate), arg0, arg1)
  278. }
  279. // SystemRoleList mocks base method.
  280. func (m *MockSystemService) SystemRoleList(arg0 context.Context) (*cowPb.GetRoleListResponse, error) {
  281. m.ctrl.T.Helper()
  282. ret := m.ctrl.Call(m, "SystemRoleList", arg0)
  283. ret0, _ := ret[0].(*cowPb.GetRoleListResponse)
  284. ret1, _ := ret[1].(error)
  285. return ret0, ret1
  286. }
  287. // SystemRoleList indicates an expected call of SystemRoleList.
  288. func (mr *MockSystemServiceMockRecorder) SystemRoleList(arg0 interface{}) *gomock.Call {
  289. mr.mock.ctrl.T.Helper()
  290. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemRoleList", reflect.TypeOf((*MockSystemService)(nil).SystemRoleList), arg0)
  291. }
  292. // SystemUserCreateOrUpdate mocks base method.
  293. func (m *MockSystemService) SystemUserCreateOrUpdate(arg0 context.Context, arg1 *cowPb.SearchUserRequest) error {
  294. m.ctrl.T.Helper()
  295. ret := m.ctrl.Call(m, "SystemUserCreateOrUpdate", arg0, arg1)
  296. ret0, _ := ret[0].(error)
  297. return ret0
  298. }
  299. // SystemUserCreateOrUpdate indicates an expected call of SystemUserCreateOrUpdate.
  300. func (mr *MockSystemServiceMockRecorder) SystemUserCreateOrUpdate(arg0, arg1 interface{}) *gomock.Call {
  301. mr.mock.ctrl.T.Helper()
  302. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemUserCreateOrUpdate", reflect.TypeOf((*MockSystemService)(nil).SystemUserCreateOrUpdate), arg0, arg1)
  303. }
  304. // SystemUserRole mocks base method.
  305. func (m *MockSystemService) SystemUserRole(arg0 context.Context, arg1 int64) (*cowPb.SystemUserRoleResponse, error) {
  306. m.ctrl.T.Helper()
  307. ret := m.ctrl.Call(m, "SystemUserRole", arg0, arg1)
  308. ret0, _ := ret[0].(*cowPb.SystemUserRoleResponse)
  309. ret1, _ := ret[1].(error)
  310. return ret0, ret1
  311. }
  312. // SystemUserRole indicates an expected call of SystemUserRole.
  313. func (mr *MockSystemServiceMockRecorder) SystemUserRole(arg0, arg1 interface{}) *gomock.Call {
  314. mr.mock.ctrl.T.Helper()
  315. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemUserRole", reflect.TypeOf((*MockSystemService)(nil).SystemUserRole), arg0, arg1)
  316. }
  317. // SystemUserRoleSave mocks base method.
  318. func (m *MockSystemService) SystemUserRoleSave(arg0 context.Context, arg1 *cowPb.SystemUserRoleRequest) error {
  319. m.ctrl.T.Helper()
  320. ret := m.ctrl.Call(m, "SystemUserRoleSave", arg0, arg1)
  321. ret0, _ := ret[0].(error)
  322. return ret0
  323. }
  324. // SystemUserRoleSave indicates an expected call of SystemUserRoleSave.
  325. func (mr *MockSystemServiceMockRecorder) SystemUserRoleSave(arg0, arg1 interface{}) *gomock.Call {
  326. mr.mock.ctrl.T.Helper()
  327. return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SystemUserRoleSave", reflect.TypeOf((*MockSystemService)(nil).SystemUserRoleSave), arg0, arg1)
  328. }