宝体数据调用接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
913 B

<?php
namespace app\common\model;
use app\common\enum\OrderType as OrderTypeEnum;
/**
* 小程序prepay_id模型
* Class WxappPrepayId
* @package app\common\model
*/
class WxappPrepayId extends BaseModel
{
protected $name = 'wxapp_prepay_id';
/**
* prepay_id 详情
* @param int $orderId
* @param int $orderType 订单类型
* @return array|false|\PDOStatement|string|\think\Model|static
*/
public static function detail($orderId, $orderType = OrderTypeEnum::MASTER)
{
return (new static)->where('order_id', '=', $orderId)
->where('order_type', '=', $orderType)
->order(['create_time' => 'desc'])
->find();
}
/**
* 记录prepay_id使用次数
* @return int|true
* @throws \think\Exception
*/
public function updateUsedTimes()
{
return $this->setInc('used_times', 1);
}
}