2.4 更新文章分类
2.4.1 基本信息
请求路径:/category
请求方式:PUT
接口描述:该接口用于更新文章分类
2.4.2 请求参数
请求参数格式:application/json
请求参数说明:
参数名称 | 说明 | 类型 | 是否必须 | 备注 |
---|---|---|---|---|
id | 主键ID | number | 是 | |
categoryName | 分类名称 | string | 是 | |
categoryAlias | 分类别名 | string | 是 |
请求数据样例:
{
"id":6,
"categoryName":"风土人情",
"categoryAlias":"ftrq"
}
2.4.3 响应数据
响应数据类型:application/json
响应参数说明:
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
code | number | 必须 | 响应码, 0-成功,1-失败 | ||
message | string | 非必须 | 提示信息 | ||
data | object | 非必须 | 返回的数据 |
响应数据样例:
{
"code": 0,
"message": "操作成功",
"data": null
}
更新文章分类代码
- controller
@PutMapping
public Result update(@RequestBody @Validated Category category) {
categoryService.update(category);
return Result.success();
}
- service
void update(Category category);
- serviceImpl
@Override
public void update(Category category) {
category.setUpdateTime(LocalDateTime.now());
categoryMapper.update(category);
}
- mapper
@Update("update category set category_name=#{categoryName}, category_alias=#{categoryAlias}, update_time=#{updateTime} " +
" where id = #{id}")
void update(Category category);