Skip to content

interface suggestion

2737592842 edited this page Jun 12, 2018 · 3 revisions

意见箱接口

生成意见接口

接口地址:http://address/ByHand/newSuggestion

Method:post

入参

字段 类型 含义 备注
content string 意见内容 必传
suggest_id string 用户id 必传

入参示例

{
	"content":"xxx",
	"suggest_id":"xxxx"
}

出参字段

字段 类型 含义 备注
code string 状态码 200成功 400失败
msg string 状态信息
time long 格林威治时间1970年01月01日00时00分00秒到现在的毫秒数
data jsonObject 返回的数据

出参示例

{
"code":"200",
"msg":"生成建议成功",
"time":1528801700696,
"data":null
}

重新编辑意见接口

接口地址:http://address/ByHand/suggestionUpdate

Method:post

入参

字段 类型 含义 备注
content string 意见内容 必传
suggest_id string 用户id 必传
s_id string 意见id 必传

入参示例

{
	"content":"xxx",
	"suggest_id":"xxxx",
        "s_id":"sdsdssdsdsd2323"
}

出参字段

字段 类型 含义 备注
code string 状态码 200成功 400失败
msg string 状态信息
time long 格林威治时间1970年01月01日00时00分00秒到现在的毫秒数
data jsonObject 返回的数据

出参示例

{
"code":"200",
"msg":"重新编辑建议成功",
"time":1528801700696,
"data":null
}

通过id查询意见接口

接口地址:http://address/ByHand/suggestionById

Method:get

入参

字段 类型 含义 备注
s_id string 意见id 必传

入参示例

http://address/ByHand/suggestionById?s_id=7fe56369-396e-4111-8a50-0513c090285b

出参字段

字段 类型 含义 备注
code string 状态码 200成功 400失败
msg string 状态信息
time long 格林威治时间1970年01月01日00时00分00秒到现在的毫秒数
data jsonObject 返回的数据
content string 意见内容 必传
suggest_id string 用户id 必传
s_id string 意见id 必传
create_time string 意见发布时间 必传

出参示例

{
"code":"200",
"msg":"通过id查询建议成功",
"time":1528802157316,
"object":
{
"s_id":"7fe56369-396e-4111-8a50-0513c090285b",
"suggest_id":"xxxx",
"contnent":"xxx",
"create_time":"2018-06-12 19:08:20.0"
}
}