getPlatformById.md
851 Bytes
根据id查询平台
接口名: `/resources/getResPlatformById
方法
POST JSONRAW
入参
属性名称 | 类型 | 例子 | 说明 | 是否必填 | 长度限制 |
---|---|---|---|---|---|
platformId | int | 4 | 平台id | 是 | 2 |
对应SQL的操作库表
<select id="selectPlatFormById" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select
<include refid="Base_Column_List" />
from platform
where platform_id = #{platformId,jdbcType=INTEGER}
</select>
错误编码
错误码code | 消息 | 说明 |
---|---|---|
200 | 操作成功 | |
400 | 平台id不能为空 |
返回
{ "code": 200, "data": { "createTime": 1457587192, "platformFlag": "xxsdas", "platformId": 11, "platformName": "windows", "status": 1 }, "md5": "ebbcef62c9233fafd1d9cc357b72aef3", "message": "操作成功" }