getAuthorList.md 1.07 KB

获取作者列表接口

接口名: /guang/article/getAuthorList

方法

GET

入参


属性名称 类型 例子 说明 是否必填 长度限制
idName String 8168248 作者ID或姓名 0-30

请求示例 http://172.16.6.157:8080/yohobuy-platform-web/guang/article/getAuthorList?idName=8168248

对应SQL的操作库表

  <select id="selectByIdName" resultMap="IdNameMap">
      select uid, username from author
      <if test="idName != null and idName != ''">
        where uid like CONCAT('%',#{idName},'%') 
        or username like CONCAT('%',#{idName},'%')
      </if>
      order by create_time desc limit #{limit}
  </select>

错误编码


错误码code 消息 说明
200 操作成功

返回

{
    "code":200,
    "message":"操作成功",
    "data": [
        {
            "id": "8168248",
            "text":"DREAMER"
        }
    ]

}