3购买公积金.md 2.9 KB

3购买公积金

可以公积金、社保一起购买。pay_channel的值见通用数据的【支付渠道标识】

  • 2018-12-06 增加 sb_wage 字段。

请求

URI

/sbl/buy/fund/v3      POST

参数

String key;             支付人ID   
Integer sbuId;          参保用户标识  
Integer cid;            社保标识    
Integer month;          参保月份 201508     
Integer nums;           购买月份数量 
boolean newCard;        【废止】是否办理社保卡 
int shebao_card;        新办卡(0不办卡  1新办卡   2补办卡)      
Integer hukou_type;     户籍性质    
Double fund = 0.0;      填写购买公积金的金额  
boolean buyShebao;      是否购买社保
Integer pay_channel;    订单的支付渠道 (见公共数据)
Integer first_sb;       此城市首次参保 0:否  1:是
Integer first_fund;     此城市首次参缴 0:否  1:是
String  f;              来自渠道. 请务必传入值: 51SBGJ
Double sb_wage = 0.0;   社保流水金额  (有打包社保时最好传值)

##响应

支付宝支付与微信支付的返回数据不同

状态码

500        已购买过 或其它异常
600        无效的身份证、社保数据不能为空、户籍性质需要指定、购买月份需要指定等
601        无效的用户标识
10004      需要登录

DATA字段说明

 String order_no        订单号(32长度内)   
 double price           总金额   
 String notify_url;     用于第三方支付回调本系统 用于alipay

数据范例

  • v3 支付宝下单的响应

     {
        "msg": "",
        "data": "partner=\"2088021344618397\"
        &seller_id=\"service@shanp.com\"
        &out_trade_no=\"11524372652587\"
        &subject=\"“我的社保” 支付\"
        &body=\"补差额\"
        &total_fee=\"0.04\"
        &notify_url=\"http://192.168.2.199/pay/ali/app/notify/v1\"
        &service=\"mobile.securitypay.pay\"
        &payment_type=\"1\"
        &_input_charset=\"utf-8\"
        &it_b_pay=\"30m\"
        &sign=\"this is sign str base64\"
        &sign_type=\"RSA2\"",
        "code": 200
    }
    
  • v1&v2 支付宝下单的响应

    {
        "data": {
            "order_no": "11524372652587",
            "notify_url": "http://pay-site/pay/ali/app/notify/v1",
            "price": 1017.75
        },
        "msg": "",
        "code": 200
    }
    
  • 微信支付下单的响应

    {
        "data": {
            "order_no": "11524372652587",
            "wx": {
                "appid": "wxb7ae6e9f32e0bdb2",
                "noncestr": "08xVtTSFCuYsZmhF",
                "timestamp": "1441879029",
                "partnerid": "1268473701",
                "prepayid": "wx201509101757102b1fd039c50530073556",
                "sign": "6F2371A7C9917D866485C5E7BA97D1DB",
                "package": "Sign=WXPay"
            },
        "msg": "",
        "code": 200
    }