IWechatPaymentService.java 548 Bytes
package com.diligrp.cashier.pipeline.service;

import com.diligrp.cashier.pipeline.domain.wechat.UploadShippingRequest;

public interface IWechatPaymentService {
    /**
     * 根据登陆凭证code获取openId
     */
    String openIdByCode(Long pipelineId, String code);

    /**
     *  通知微信发货
     *  服务商模式下,解决买家微信付款成功,卖家微信商户号无法收到钱,需要去自己的微信后台操作一下【发货】
     */
    void deliverGoods(Long pipelineId, UploadShippingRequest request);
}