addAuthor.md
1.87 KB
增加作者
接口名: /guang/author/addAuthor
方法
POST
入参
属性名称 | 类型 | 例子 | 说明 |
---|---|---|---|
username | String | 路遥 | 名称 |
authorDesc | String | 平凡世界。。。 | 描述 |
avatar | String | http://img12.static.yhbimg.com/yhb-img02/2015/06/12/14/0220208c13de341448647b7eead758d592.jpg?imageView/{mode}/w/{width}/h/{height} | 用户头像 |
对应SQL的操作库表
<insert id="insertSelective" parameterType="com.yohobuy.platform.dal.guang.model.Author" >
insert into author
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="uid != null" >
uid,
</if>
<if test="username != null" >
username,
</if>
<if test="avatar != null" >
avatar,
</if>
<if test="authorDesc != null" >
author_desc,
</if>
<if test="createTime != null" >
create_time,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="uid != null" >
#{uid,jdbcType=INTEGER},
</if>
<if test="username != null" >
#{username,jdbcType=VARCHAR},
</if>
<if test="avatar != null" >
#{avatar,jdbcType=VARCHAR},
</if>
<if test="authorDesc != null" >
#{authorDesc,jdbcType=VARCHAR},
</if>
<if test="createTime != null" >
#{createTime,jdbcType=INTEGER},
</if>
</trim>
</insert>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 添加成功 | |
400 | 添加失败 |
返回
json { "code": "200", "message":"增加成功" }