common.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>公共数据-common</h1>
  13. <h1>1.支付对象类型</h1>
  14. <p>使用字段: <code>pay_for、stop_for</code></p>
  15. <pre><code>SHEBAO(1, &quot;购买社保&quot;),
  16. FUND(2, &quot;购买公积金&quot;),
  17. BOTH(3, &quot;购买社保+公积金&quot;),
  18. BOTH2(4, &quot;购买公积金+社保&quot;);
  19. </code></pre>
  20. <h1>2.订单状态</h1>
  21. <p>使用字段: (<code>status、pay_status</code>)</p>
  22. <pre><code>DEFAULT(0, &quot;默认&quot;),
  23. PRE_PAY(1, &quot;待付款&quot;),
  24. PAY_OK(2, &quot;付款成功&quot;),
  25. APPLYING(3, &quot;正在申报中&quot;),
  26. OK(4, &quot;参保成功&quot;),
  27. FAIL(5, &quot;不成功&quot;),
  28. STOP(6, &quot;申请停保&quot;),
  29. STOPING(8, &quot;停保处理中&quot;),
  30. STOP_OK(10, &quot;已停保&quot;),
  31. REFUNDED(11, &quot;已全部退款&quot;),
  32. ASK_REFUND(15, &quot;用户申请退款&quot;);
  33. </code></pre>
  34. <h1>3.户籍性质</h1>
  35. <p>使用字段: (<code>hukou_type、hukou</code>)</p>
  36. <pre><code>LOCAL_CITY(1, &quot;本地城镇&quot;),
  37. LOCAL_VILLAGE(2, &quot;本地农村&quot;),
  38. NONLOCAL_CITY(3, &quot;外市城镇&quot;),
  39. NONLOCAL_VILLAGE(4, &quot;外市农村&quot;);
  40. </code></pre>
  41. <h1>4.支付渠道</h1>
  42. <p>使用字段: (<code>pay_channel</code>)</p>
  43. <pre><code>WXPAY(1, &quot;微信&quot;),
  44. WX_WXYJ_PAY(2, &quot;微信&quot;), // 五险一金APP
  45. WX_XCX_PAY(5, &quot;微信(小程序)&quot;),
  46. ALIPAY(11, &quot;支付宝&quot;),
  47. TONG_LIAN(21, &quot;通联&quot;),
  48. AN_JU_BAO(31, &quot;安居宝&quot;),
  49. EJ_BANG(33, &quot;E家帮&quot;),
  50. WS_CHE_ZHU(35, &quot;我是车主&quot;),
  51. XIAO_YU_SAN(37, &quot;小雨伞&quot;),
  52. YIN_CHENG_PAI(39, &quot;银承派&quot;),
  53. SHI_FU_BANG(41, &quot;师傅帮&quot;),
  54. JIAN_ZHI_DI_DAI(43, &quot;兼职地带&quot;),
  55. DIAO_QIAN_YAN(45, &quot;掉钱眼&quot;),
  56. WECHAT_WXYJ_PAY(47, &quot;微信&quot;) // 五险一金公众号
  57. </code></pre>
  58. <h1>5.操作规则说明</h1>
  59. <p><img src="%E6%93%8D%E4%BD%9C%E8%A7%84%E5%88%99%E8%AF%B4%E6%98%8E.png" alt="操作规则说明.png" title="操作规则说明"></p>
  60. <hr>
  61. <script src="md.js"></script>
  62. </body>
  63. </html>