📜  desc by sum 学生提交 (1)

📅  最后修改于: 2023-12-03 15:14:40.353000             🧑  作者: Mango

学生提交作主题介绍
描述

本接口用于获取学生提交作业的主题及其描述信息。用户需提供学生ID并指定从何时开始查询。

请求
  • URL:/student/submit_theme
  • Method:GET
  • Headers:无
  • Query Parameters:

|Parameter|Type|Required|Description| |--------|----|--------|-----------| |student_id|integer|Yes|学生ID| |start_time|string|Yes|查询开始时间(格式:yyyy/mm/dd HH:MM:SS)|

响应
  • Headers:无
  • Body:Markdown格式,返回的代码片段需按markdown标明
# 学生提交作业主题

| Field | Type | Description |
| ----- | ---- | ----------- |
| theme | string | 主题名称 |
| description | string | 主题描述 |

## Response

```json
[
    {
        "theme": "作业主题1",
        "description": "第一次作业,要求完成xxx功能,具体要求见附件。"
    },
    {
        "theme": "作业主题2",
        "description": "第二次作业,要求完成yyy功能,具体要求见附件。"
    }
]
错误码

| 错误码 | 描述 | HTTP Code | | ------ | ---- | --------- | | 001 | 学生ID无效 | 400 | | 002 | 查询时间无效 | 400 | | 003 | 没有符合查询条件的作业 | 404 | | 500 | 服务器错误 | 500 |