mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-16 03:39:41 +00:00
41 lines
684 B
PHP
41 lines
684 B
PHP
<?php
|
|
namespace crmeb\repositories;
|
|
|
|
/**
|
|
* Class WechatPaymentRepositories
|
|
* @package crmeb\repositories
|
|
*/
|
|
class PaymentRepositories
|
|
{
|
|
|
|
|
|
/**
|
|
* 公众号下单成功之后
|
|
* @param $order
|
|
* @param $prepay_id
|
|
*/
|
|
public static function wechatPaymentPrepare($order, $prepay_id)
|
|
{
|
|
|
|
}
|
|
/**
|
|
* 小程序下单成功之后
|
|
* @param $order
|
|
* @param $prepay_id
|
|
*/
|
|
public static function wechatPaymentPrepareProgram($order, $prepay_id)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* 使用余额支付订单时
|
|
* @param $userInfo
|
|
* @param $orderInfo
|
|
*/
|
|
public static function yuePayProduct($userInfo, $orderInfo)
|
|
{
|
|
|
|
|
|
}
|
|
} |