3社保购买列表.html 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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>1.社保购买列表</h1>
  13. <blockquote>
  14. <p>我购买的社保列表,所有参保人的。</p>
  15. </blockquote>
  16. <ul>
  17. <li>2017-06-05 新开v2接口,参数id_card移除,增加sbuId字段。<a href="pre/3%E7%A4%BE%E4%BF%9D%E8%B4%AD%E4%B9%B0%E5%88%97%E8%A1%A8v1.html">v1接口文档</a></li>
  18. <li>2017-03-06 增加pre_charge字段</li>
  19. <li>2016-08-22 增加pay_no字段</li>
  20. </ul>
  21. <h2>1.1 请求</h2>
  22. <blockquote>
  23. <p><strong>URI</strong></p>
  24. </blockquote>
  25. <pre><code>/sbl/order/shebao/list/v2 POST
  26. </code></pre>
  27. <blockquote>
  28. <p><strong>参数</strong></p>
  29. </blockquote>
  30. <pre><code> String key 用户标识
  31. Integer year 年份 2001
  32. Integer sbuId 参保用户标识
  33. </code></pre>
  34. <h2>1.2 响应</h2>
  35. <blockquote>
  36. <p><strong>状态码</strong></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>List
  46. String order_no; // 订单号
  47. String for_month; // 购买月份
  48. Double shebaos; // 社保金额
  49. Double shebao_charge; // 社保服务费
  50. Double funds; // 公积金金额
  51. Double fund_charge; // 公积金服务费
  52. Double card_charge; // 新办社保卡服务费
  53. Integer pay_status; // 订单状态
  54. String remark; // 状态描述
  55. String pay_time; // 成功购买时间
  56. String city; // 城市名称
  57. String pay_channel; // 支付渠道
  58. String user_name; // 参保人姓名
  59. int coupon_price; // 现金券金额
  60. double pay_actual; // 实付金额
  61. Double pre_charge; // 预收取费用
  62. String pay_no; // 第三方的支付流水号
  63. // 退款。 申请退款 和 已全额退款 时,需要提供下面两字段
  64. String refund_reason = &quot;&quot;;
  65. String refund_time = &quot;&quot;;
  66. </code></pre>
  67. <blockquote>
  68. <p><strong>数据范例</strong></p>
  69. </blockquote>
  70. <pre><code>{
  71. &quot;data&quot;: {
  72. &quot;stop&quot;: null,
  73. &quot;list&quot;: [{
  74. &quot;order_no&quot;: &quot;010000000146201510&quot;,
  75. &quot;city&quot;: &quot;广州&quot;,
  76. &quot;for_month&quot;: &quot;2015年10月&quot;,
  77. &quot;shebaos&quot;: 1035.67,
  78. &quot;shebao_charge&quot;: 59.0,
  79. &quot;funds&quot;: 0.0,
  80. &quot;fund_charge&quot;: 0.0,
  81. &quot;card_charge&quot;: 0.0,
  82. &quot;pay_status&quot;: 12,
  83. &quot;pay_time&quot;: &quot;2016-08-22 10:50:29&quot;,
  84. &quot;remark&quot;: &quot;&quot;,
  85. &quot;pay_channel&quot;: &quot;支付宝支付&quot;,
  86. &quot;user_name&quot;: &quot;涂冠杰&quot;,
  87. &quot;coupon_price&quot;: 10,
  88. &quot;pay_actual&quot;: 1084.67,
  89. &quot;pre_charge&quot;: 60.00,
  90. &quot;pay_no&quot;: &quot;2016082221001004560288998559&quot;
  91. }]
  92. },
  93. &quot;msg&quot;: &quot;&quot;,
  94. &quot;code&quot;: 200
  95. }
  96. </code></pre>
  97. <hr>
  98. <h1>2.公积金购买列表</h1>
  99. <blockquote>
  100. <p>我购买的公积金列表,所有参保人的。</p>
  101. </blockquote>
  102. <ul>
  103. <li>2017-06-05 新开v2接口,参数id_card移除,增加sbuId字段。<a href="pre/3%E5%85%AC%E7%A7%AF%E9%87%91%E8%B4%AD%E4%B9%B0%E5%88%97%E8%A1%A8v1.html">旧接口文档</a></li>
  104. <li>2016-08-22 增加pay_no字段</li>
  105. </ul>
  106. <h2>2.1 请求</h2>
  107. <blockquote>
  108. <p><strong>URI</strong></p>
  109. </blockquote>
  110. <pre><code>/sbl/order/fund/list/v2 POST
  111. </code></pre>
  112. <blockquote>
  113. <p><strong>参数</strong></p>
  114. </blockquote>
  115. <pre><code> String key 用户标识
  116. Integer year 年份 2001
  117. Integer sbuId 参保用户标识
  118. </code></pre>
  119. <h2>2.2 响应</h2>
  120. <blockquote>
  121. <p><strong>状态码</strong></p>
  122. </blockquote>
  123. <pre><code>600 参数异常
  124. 601 无效的用户标识
  125. 10004 需要登录
  126. </code></pre>
  127. <blockquote>
  128. <p><strong>DATA字段说明</strong></p>
  129. </blockquote>
  130. <pre><code>List
  131. String order_no; // 订单号
  132. String for_month; // 购买月份
  133. Double shebaos; // 社保金额
  134. Double shebao_charge; // 社保服务费
  135. Double funds; // 公积金金额
  136. Double fund_charge; // 公积金服务费
  137. Double card_charge; // 新办社保卡服务费
  138. Integer pay_status; // 订单状态
  139. String remark; // 状态描述
  140. String pay_time; // 成功购买时间
  141. String city; // 城市名称
  142. String pay_channel; // 支付渠道
  143. String user_name; // 参保人姓名
  144. int coupon_price; // 现金券金额
  145. double pay_actual; // 实付金额
  146. String pay_no; // 第三方的支付流水号
  147. // 退款。 申请退款 和 已全额退款 时,需要提供下面两字段
  148. String refund_reason = &quot;&quot;;
  149. String refund_time = &quot;&quot;;
  150. </code></pre>
  151. <blockquote>
  152. <p><strong>数据范例</strong></p>
  153. </blockquote>
  154. <pre><code>{
  155. &quot;data&quot;: {
  156. &quot;stop&quot;: null,
  157. &quot;list&quot;: [{
  158. &quot;order_no&quot;: &quot;010000000146201510&quot;,
  159. &quot;city&quot;: &quot;广州&quot;,
  160. &quot;for_month&quot;: &quot;2015年10月&quot;,
  161. &quot;shebaos&quot;: 1035.67,
  162. &quot;shebao_charge&quot;: 59.0,
  163. &quot;funds&quot;: 0.0,
  164. &quot;fund_charge&quot;: 0.0,
  165. &quot;card_charge&quot;: 0.0,
  166. &quot;pay_status&quot;: 12,
  167. &quot;pay_time&quot;: &quot;2015-10-13 20:50:29&quot;,
  168. &quot;remark&quot;: &quot;&quot;,
  169. &quot;pay_channel&quot;: &quot;微信支付&quot;,
  170. &quot;user_name&quot;: &quot;涂冠杰&quot;,
  171. &quot;coupon_price&quot;: 10,
  172. &quot;pay_actual&quot;: 1084.67,
  173. &quot;pay_no&quot;: &quot;2016082221001004560288998559&quot;
  174. }]
  175. },
  176. &quot;msg&quot;: &quot;&quot;,
  177. &quot;code&quot;: 200
  178. }
  179. </code></pre>
  180. <hr>
  181. <script src="md.js"></script>
  182. </body>
  183. </html>