接口domo
    接口domo
    • 新增数据
      POST
    • 删除数据
      DELETE
    • 分页查询数据
      GET
    • 根据id更新数据
      POST
    • 根据id查询数据
      GET

      分页查询数据

      开发中
      GET
      https://frp-end.top:49556/user/page

      请求参数

      Query 参数
      current
      number 
      查询的页面
      必需
      示例值:
      1
      size
      number 
      每页的条数
      必需
      示例值:
      10

      返回响应

      🟢200成功
      application/json
      Body
      code
      integer 
      必需
      msg
      string 
      必需
      data
      object 
      必需
      records
      array [object {4}] 
      必需
      total
      number 
      总条数
      必需
      size
      number 
      每页展示的数据
      必需
      current
      number 
      当前页
      必需
      示例
      {
        "code": 200,
        "msg": "Duis in culpa tempor fugiat",
        "data": {
          "records": [
            {
              "id": 14,
              "name": "通确省",
              "age": 48,
              "headPic": "http://dummyimage.com/400x400"
            }
          ],
          "total": 7,
          "size": 6,
          "current": 61
        }
      }
      上一页
      删除数据
      下一页
      根据id更新数据
      Built with