user.http 608 B

1234567891011121314151617181920212223242526272829
  1. ### 查询全部用户
  2. POST http://localhost:8080/rest/api/userEntity/list
  3. Content-Type: application/json
  4. ### 添加用户-1
  5. POST http://localhost:8080/rest/api/userEntity/add
  6. Content-Type: application/json
  7. {
  8. "username": "李四",
  9. "mobile": "13111112222",
  10. "email": "lisi@123.com",
  11. "cityId": "130100",
  12. "status": 1,
  13. "loginId": "lisizhanghao"
  14. }
  15. ### 添加用户-2
  16. POST http://localhost:8080/rest/api/userEntity/add
  17. Content-Type: application/json
  18. {
  19. "username": "王五",
  20. "mobile": "13111112222",
  21. "email": "lisi@123.com",
  22. "cityId": "130100",
  23. "status": 1,
  24. "loginId": "wangwuzhanghao"
  25. }