You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
PHTML
65 lines
1.5 KiB
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
namespace Sdk\Model;
|
||
|
use Think\Model;
|
||
|
|
||
|
|
||
|
class PayChannelIntentionModel extends Model {
|
||
|
|
||
|
protected $_validate = array(
|
||
|
);
|
||
|
|
||
|
/* 自动完成规则 */
|
||
|
protected $_auto = array(
|
||
|
);
|
||
|
|
||
|
/**
|
||
|
* 构造函数
|
||
|
* @param string $name 模型名称
|
||
|
* @param string $tablePrefix 表前缀
|
||
|
* @param mixed $connection 数据库连接信息
|
||
|
*/
|
||
|
public function __construct($name = '', $tablePrefix = '', $connection = '') {
|
||
|
/* 设置默认的表前缀 */
|
||
|
$this->tablePrefix ='tab_';
|
||
|
/* 执行构造方法 */
|
||
|
parent::__construct($name, $tablePrefix, $connection);
|
||
|
}
|
||
|
|
||
|
public function paySubmit($orderId) {
|
||
|
if (!$orderId) return 0;
|
||
|
|
||
|
$log = $this->where(array(
|
||
|
'pay_order_number' => $orderId
|
||
|
))->order('id desc')->find();
|
||
|
|
||
|
if (!$log) return 0;
|
||
|
$this->where(array(
|
||
|
'id' => $log['id']
|
||
|
))->save(array(
|
||
|
'is_submit' => 1
|
||
|
));
|
||
|
}
|
||
|
|
||
|
// 支付成功
|
||
|
public function updatePaySuccess($orderId) {
|
||
|
$this->where(array(
|
||
|
'pay_order_number' => $orderId,
|
||
|
'pay_status' => 0
|
||
|
))->save(array(
|
||
|
'pay_status' => 1
|
||
|
));
|
||
|
}
|
||
|
|
||
|
// 通知游戏成功
|
||
|
public function updateGameNotifySuccess($orderId) {
|
||
|
$this->where(array(
|
||
|
'pay_order_number' => $orderId,
|
||
|
'pay_game_status' => 0
|
||
|
))->save(array(
|
||
|
'pay_game_status' => 1
|
||
|
));
|
||
|
}
|
||
|
|
||
|
}
|