audit.md
1.38 KB
评论审核接口
接口名:
/guang/comment/audit
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
id | String | 201,202 | 评论id,批量操作时id以逗号分隔 | 是 | 1-11 |
status | int | 1 | 审核状态,0待审核,1审核通过,-1表示屏蔽 | 是 | 1-2 |
对应SQL的操作库表
<update id="updateByPrimaryKeySelective" >
update comments
<set >
<if test="comment.status != null" >
status = #{comment.status,jdbcType=TINYINT},
</if>
<if test="comment.operationTime != null" >
operation_time = #{comment.operationTime,jdbcType=INTEGER},
</if>
<if test="comment.auditStatus != null" >
audit_status = #{comment.auditStatus,jdbcType=TINYINT},
</if>
</set>
<where>
<if test="list !=null and list.size() != 0">
id in
<foreach collection="list" item="item" open="(" close=")" separator=",">
#{item,jdbcType=INTEGER}
</foreach>
</if>
</where>
</update>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
400 | 评论ID不能为空 | |
200 | 操作成功 | |
400 | 操作失败 |
返回
{
"code":200,
"message":"操作成功"
}