1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="content-type" content="text/html;charset=UTF-8">
- <style type="text/css">
- <!--
- @import url(md.css);
- -->
- </style>
-
-
- </head>
- <body>
- <h1>6我的转移记录列表</h1>
- <blockquote>
- <p>用户的转移记录</p>
- </blockquote>
- <ul>
- <li>2016-05-09 增加转移单号(move_no)字段</li>
- </ul>
- <h2>请求</h2>
- <blockquote>
- <p>URI</p>
- </blockquote>
- <pre><code>/sbl/move/list/v1 请求方式:POST
- </code></pre>
- <blockquote>
- <p>参数</p>
- </blockquote>
- <pre><code>String key 【不可空】 用户标识
- boolean all 【不可空】 是否全部记录. false:加载未支付记录
- </code></pre>
- <h2>响应</h2>
- <blockquote>
- <p>状态码(code)</p>
- </blockquote>
- <pre><code>601 无效的用户标识
- 10004 需要登录
- </code></pre>
- <blockquote>
- <p>DATA字段说明</p>
- </blockquote>
- <pre><code> String move_no; // 转移单号
- String user_name; // 用户名称
- short move_type; // 转移类别
- String type; // 转移类别名称
- int out_city; // 转出城市代码
- String out_cname; // 转出城市名称
- int into_city; // 转入城市代码
- String into_cname; // 转入城市名字
- float charge; // 服务费
- short status; // 状态
- String gen_time // 生成时间
- </code></pre>
- <blockquote>
- <p>数据范例</p>
- </blockquote>
- <pre><code>{
- "data": [{
- "move_no": "M1001001",
- "user_name": "转的人名",
- "move_type": 1,
- "type": "社保转入",
- "out_city": 0,
- "out_cname": null,
- "into_city": 1001,
- "into_cname": "广州",
- "charge": 399.0,
- "status": 1,
- "gen_time": "2018-07-02 22:22:22"
- }],
- "msg": "",
- "code": 200
- }
- </code></pre>
- </body>
- </html>
|