6我的转移记录列表.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8">
  5. <style type="text/css">
  6. <!--
  7. @import url(md.css);
  8. -->
  9. </style>
  10. </head>
  11. <body>
  12. <h1>6我的转移记录列表</h1>
  13. <blockquote>
  14. <p>用户的转移记录</p>
  15. </blockquote>
  16. <ul>
  17. <li>2016-05-09 增加转移单号(move_no)字段</li>
  18. </ul>
  19. <h2>请求</h2>
  20. <blockquote>
  21. <p>URI</p>
  22. </blockquote>
  23. <pre><code>/sbl/move/list/v1 请求方式:POST
  24. </code></pre>
  25. <blockquote>
  26. <p>参数</p>
  27. </blockquote>
  28. <pre><code>String key 【不可空】 用户标识
  29. boolean all 【不可空】 是否全部记录. false:加载未支付记录
  30. </code></pre>
  31. <h2>响应</h2>
  32. <blockquote>
  33. <p>状态码(code)</p>
  34. </blockquote>
  35. <pre><code>601 无效的用户标识
  36. 10004 需要登录
  37. </code></pre>
  38. <blockquote>
  39. <p>DATA字段说明</p>
  40. </blockquote>
  41. <pre><code> String move_no; // 转移单号
  42. String user_name; // 用户名称
  43. short move_type; // 转移类别
  44. String type; // 转移类别名称
  45. int out_city; // 转出城市代码
  46. String out_cname; // 转出城市名称
  47. int into_city; // 转入城市代码
  48. String into_cname; // 转入城市名字
  49. float charge; // 服务费
  50. short status; // 状态
  51. String gen_time // 生成时间
  52. </code></pre>
  53. <blockquote>
  54. <p>数据范例</p>
  55. </blockquote>
  56. <pre><code>{
  57. &quot;data&quot;: [{
  58. &quot;move_no&quot;: &quot;M1001001&quot;,
  59. &quot;user_name&quot;: &quot;转的人名&quot;,
  60. &quot;move_type&quot;: 1,
  61. &quot;type&quot;: &quot;社保转入&quot;,
  62. &quot;out_city&quot;: 0,
  63. &quot;out_cname&quot;: null,
  64. &quot;into_city&quot;: 1001,
  65. &quot;into_cname&quot;: &quot;广州&quot;,
  66. &quot;charge&quot;: 399.0,
  67. &quot;status&quot;: 1,
  68. &quot;gen_time&quot;: &quot;2018-07-02 22:22:22&quot;
  69. }],
  70. &quot;msg&quot;: &quot;&quot;,
  71. &quot;code&quot;: 200
  72. }
  73. </code></pre>
  74. </body>
  75. </html>