flow.http 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ### Flow角色列表接口
  2. POST http://localhost:8080/rest/flow/api
  3. Content-Type: application/json
  4. {
  5. "userName": "张三",
  6. "callType": "findRoleList"
  7. }
  8. ### Flow用户列表接口
  9. POST http://localhost:8080/rest/flow/api
  10. Content-Type: application/json
  11. {
  12. "callType": "findToPage"
  13. }
  14. ### Flow根据登录帐号获取用户接口
  15. POST http://localhost:8080/rest/flow/api
  16. Content-Type: application/json
  17. {
  18. "loginId": "admin123",
  19. "callType": "getByLoginId"
  20. }
  21. ### Flow根据用户ID获取用户接口
  22. POST http://localhost:8080/rest/flow/api
  23. Content-Type: application/json
  24. {
  25. "userId": "4",
  26. "callType": "get"
  27. }
  28. ### Flow根据用户ID获取角色接口
  29. POST http://localhost:8080/rest/flow/api
  30. Content-Type: application/json
  31. {
  32. "userId": 4,
  33. "callType": "findRoleIdByUserId"
  34. }
  35. ### Flow查找不存在用户
  36. POST http://localhost:8080/rest/flow/api
  37. Content-Type: application/json
  38. {
  39. "roleId": 1,
  40. "callType": "findUserIdByRoleId"
  41. }
  42. ### Flow多条件搜索用户接口 -1
  43. POST http://localhost:8080/rest/flow/api
  44. Content-Type: application/json
  45. {
  46. "loginId": "admin123",
  47. "callType": "findAuthorizedUser"
  48. }
  49. ### Flow多条件搜索用户接口 -2
  50. POST http://localhost:8080/rest/flow/api
  51. Content-Type: application/json
  52. {
  53. "roleId": 1,
  54. "callType": "findAuthorizedUser"
  55. }
  56. ### Flow多条件搜索用户接口 -3
  57. POST http://localhost:8080/rest/flow/api
  58. Content-Type: application/json
  59. {
  60. "userName": "张三",
  61. "callType": "findAuthorizedUser"
  62. }