本节中我们开始构建班级新增模块。 ## 预期效果 ![](https://img.kancloud.cn/d1/53/d153ca80cc35653f0793701f3b2b982c_401x380.gif) ## 接口定义 在正式的编码以前,我们根据手绘原型,前后台定义以下通讯协议: ``` POST /Klass ``` #### 参数 Parameters | type | name | Description | Schema | | --- | --- | --- | --- | | **Body** | **班级** <br> *requried* | 班级信息 | Klass | ##### 班级信息 | name | type | description | |--- | --- | --- | | name | string | 班级名称 | | teacher | {id: Long} | 教师 | #### 响应(返回值)Responses | HTTP Code | Description | Schema | | --- | --- | --- | | **201** | Created | |