3快捷购买获取数据.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>3快捷购买获取数据</h1>
  13. <blockquote>
  14. <p>点击快捷购买,调用此接口获取最近的购买数据。减少用户的输入操作。</p>
  15. </blockquote>
  16. <ul>
  17. <li>2018-12-12 响应数据增加两个字段 <code>wage_flow</code>, <code>sb_wage</code>。</li>
  18. <li>2017-06-05 新开v2接口,移除id_card字段,增加sbuId字段。 <a href="pre/3%E5%BF%AB%E6%8D%B7%E8%B4%AD%E4%B9%B0%E8%8E%B7%E5%8F%96%E6%95%B0%E6%8D%AEv1.html">旧接口文档</a></li>
  19. <li>2016-4-27 增加首次购买的两个字段</li>
  20. </ul>
  21. <h2>请求</h2>
  22. <blockquote>
  23. <p>URI</p>
  24. </blockquote>
  25. <pre><code>/sbl/buy/last_buy/v2 请求方式:POST
  26. </code></pre>
  27. <blockquote>
  28. <p>参数</p>
  29. </blockquote>
  30. <pre><code>String key; 支付人ID
  31. Integer sbuId; 参保用户标识
  32. Integer pay_for; 社保:1 公积金:2
  33. </code></pre>
  34. <h2>响应</h2>
  35. <blockquote>
  36. <p>状态码(code)</p>
  37. </blockquote>
  38. <pre><code>600 无效的参数等
  39. 601 无效的用户标识
  40. 10004 需要登录
  41. </code></pre>
  42. <blockquote>
  43. <p><strong>DATA字段说明</strong></p>
  44. </blockquote>
  45. <pre><code>int sbuId; 参保用户标识
  46. int cid 社保标识
  47. String cid_name 档位名称
  48. boolean mutli_cid 是否有多个档位(值是true时,APP端展示档位名称)
  49. int city_code 城市代码
  50. int start_month 可以开始的购买月份
  51. int min_months 至少购买月数
  52. String id_card 身份证号
  53. int hukou_type 户籍性质
  54. boolean buyShebao 是否购买社保
  55. double fund_price 购买公积金的金额
  56. boolean wage_flow 是否需要社保流水
  57. double sb_wage 社保流水的金额
  58. </code></pre>
  59. <ul>
  60. <li>注意:<code>cid、cid_name、city_code、start_month、min_months</code> 遇到城市禁用时,返回默认值。</li>
  61. </ul>
  62. <blockquote>
  63. <p><strong>数据范例</strong></p>
  64. </blockquote>
  65. <pre><code>{
  66. &quot;data&quot;: {
  67. &quot;sbuId&quot;: 184,
  68. &quot;cid&quot;: 18,
  69. &quot;cid_name&quot;: &quot;标准&quot;,
  70. &quot;mutli_cid&quot;: false,
  71. &quot;city_code&quot;: 1014,
  72. &quot;start_month&quot;: 201607,
  73. &quot;min_months&quot;: 1,
  74. &quot;id_card&quot;: &quot;44**************15&quot;,
  75. &quot;hukou_type&quot;: 4,
  76. &quot;buyShebao&quot;: true,
  77. &quot;fund_price&quot;: 0.0,
  78. &quot;wage_flow&quot;: true,
  79. &quot;sb_wage&quot;: 2500.0
  80. },
  81. &quot;msg&quot;: &quot;&quot;,
  82. &quot;code&quot;: 200
  83. }
  84. </code></pre>
  85. </body>
  86. </html>