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.
48 lines
1.1 KiB
PHTML
48 lines
1.1 KiB
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
namespace Sdk\Model;
|
||
|
use Think\Model;
|
||
|
|
||
|
|
||
|
class UserPayWhitelistModel 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);
|
||
|
}
|
||
|
|
||
|
// 当前用户是否是有效白名单用户 reutrn 0无效 1有效
|
||
|
public function verify($userId) {
|
||
|
if (!$userId) return 0;
|
||
|
$user = $this->where(array(
|
||
|
'user_id' => $userId
|
||
|
))->find();
|
||
|
|
||
|
if (!$user) return 0;
|
||
|
|
||
|
if ($user['time'] == 1) return 1;
|
||
|
|
||
|
if ($user['update_time'] + $user['time'] > time()) {
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
}
|