12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- ### Flow角色列表接口
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "userName": "张三",
- "callType": "findRoleList"
- }
- ### Flow用户列表接口
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "callType": "findToPage"
- }
- ### Flow根据登录帐号获取用户接口
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "loginId": "admin123",
- "callType": "getByLoginId"
- }
- ### Flow根据用户ID获取用户接口
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "userId": "4",
- "callType": "get"
- }
- ### Flow根据用户ID获取角色接口
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "userId": 4,
- "callType": "findRoleIdByUserId"
- }
- ### Flow查找不存在用户
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "roleId": 1,
- "callType": "findUserIdByRoleId"
- }
- ### Flow多条件搜索用户接口 -1
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "loginId": "admin123",
- "callType": "findAuthorizedUser"
- }
- ### Flow多条件搜索用户接口 -2
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "roleId": 1,
- "callType": "findAuthorizedUser"
- }
- ### Flow多条件搜索用户接口 -3
- POST http://localhost:8080/rest/flow/api
- Content-Type: application/json
- {
- "userName": "张三",
- "callType": "findAuthorizedUser"
- }
|