2参保人操作.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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>2参保人操作</h1>
  13. <blockquote>
  14. <p>修改、新增参保人信息</p>
  15. </blockquote>
  16. <ul>
  17. <li>2017-06-02 新开v2接口,参保人新增、修改要区分,并返回ID.</li>
  18. </ul>
  19. <h2>请求</h2>
  20. <h3>URI</h3>
  21. <pre><code>/sbl/sbu/modify/v2 POST方式请求
  22. /sbl/sbu/modify/v1 POST方式请求 (废止于2017-06-02 )
  23. </code></pre>
  24. <h3>参数</h3>
  25. <pre><code>String key; // 用户登录标识
  26. Integer id; // 参保人ID 修改时需要传过来
  27. String id_card; // 身份证 (id有值时,此字段不需要传值)
  28. String user_name; // 姓名
  29. String nation; // 民族
  30. Integer gender; // 性别
  31. String phone; // 联系电话
  32. String id_card_img; // 身份证图片链接
  33. String id_card_img1;// 身份证图片链接
  34. String hk_address; // 户籍地址
  35. </code></pre>
  36. <h2>响应</h2>
  37. <blockquote>
  38. <p>返回参保人ID, 操作是否是新增。</p>
  39. </blockquote>
  40. <h3>状态码</h3>
  41. <pre><code>500 参保用户ID无效
  42. 参保用户有订单,更改身份证请咨询客服
  43. 抱歉,更新参保用户出现了错误--未知原因
  44. 600 参数检查提示
  45. 601 KEY标识无效
  46. 10004 需要登
  47. </code></pre>
  48. <h3>范例</h3>
  49. <pre><code>{
  50. &quot;msg&quot;: &quot;&quot;,
  51. &quot;data&quot;: {
  52. &quot;id&quot;: 100,
  53. &quot;add&quot;: true/false
  54. },
  55. &quot;code&quot;: 200
  56. }
  57. </code></pre>
  58. <hr>
  59. <h1>2.1参保人银行帐号</h1>
  60. <blockquote>
  61. <p>记录银行和银行帐号的接口。<br>
  62. 本接口只处理数据更改。数据加载在登录时已经加载回返。</p>
  63. </blockquote>
  64. <h2>请求</h2>
  65. <h3>URI</h3>
  66. <pre><code>/sbl/sbu/modify/bank/v1 POST方式请求
  67. </code></pre>
  68. <h3>参数</h3>
  69. <pre><code>String key; // 用户登录标识
  70. Integer sbu_id; // 参保人ID 修改时需要传过来
  71. String bank; // 银行名称
  72. String bank_branch; // 支行
  73. String bank_code; // 银行卡号
  74. </code></pre>
  75. <h2>响应</h2>
  76. <blockquote>
  77. <p>返回成功与否。 可状态码。</p>
  78. </blockquote>
  79. <h3>状态码</h3>
  80. <pre><code>200 成功处理
  81. 500 更新参保用户出现了错误--未知原因
  82. 600 参数检查提示
  83. 601 KEY标识无效
  84. 10004 需要登
  85. </code></pre>
  86. <h3>范例</h3>
  87. <pre><code>{
  88. &quot;msg&quot;: &quot;&quot;,
  89. &quot;data&quot;: true,
  90. &quot;code&quot;: 200
  91. }
  92. </code></pre>
  93. <hr>
  94. <script src="md.js"></script>
  95. </body>
  96. </html>