SSM整合
    SSM整合
    • 获取学习计划
      GET
    • 删除学习计划
      DELETE
    • 添加学习计划
      POST
    • 根据id查询学习计划
      GET
    • 修改学习计划
      PUT

      修改学习计划

      Developing
      PUT
      http://localhost:8080/ssm/schedule
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request PUT 'http://localhost:8080/ssm/schedule' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "id": 1,
          "title": "学习CSGO",
          "completed": true
      }'
      Response Response Example
      {}

      Request

      Body Params application/json
      id
      integer 
      必需
      title
      string 
      必需
      completed
      boolean 
      必需
      Examples

      Responses

      🟢200成功
      application/json
      Body
      object {0}
      Modified at 2024-04-04 06:25:52
      Previous
      根据id查询学习计划
      Built with