liurunyu
2024-10-23 e7393ef75b7df2799f627b4707cd8bc4b9d555e2
pipIrr-platform/pipIrr-web/pipIrr-web-sell/src/main/java/com/dy/pipIrrSell/wechatpay/PaymentSv.java
@@ -5,7 +5,6 @@
import com.dy.pipIrrGlobal.daoSe.SeWechatpayMapper;
import com.dy.pipIrrGlobal.pojoSe.SeOpenId;
import com.dy.pipIrrGlobal.pojoSe.SeVcRecharge;
import com.dy.pipIrrGlobal.pojoSe.SeWechatpay;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@@ -48,22 +47,4 @@
        return po.getId();
    }
    /**
     * 添加微信支付信息
     * @param po
     * @return
     */
    Long addWechatpay(SeWechatpay po) {
        seWechatpayMapper.insert(po);
        return po.getId();
    }
    /**
     * 根据AppId获取微信支付对象
     * @param appId
     * @return
     */
    SeWechatpay getWechatpayByAppId(String appId) {
        return seWechatpayMapper.getWechatpayByAppId(appId);
    }
}