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.
46 lines
989 B
PHP
46 lines
989 B
PHP
<?php
|
|
namespace Site\Model;
|
|
|
|
use Think\Model;
|
|
|
|
/**
|
|
* 文档基础模型
|
|
*/
|
|
class PromoteModel extends Model{
|
|
|
|
/**
|
|
* 构造函数
|
|
* @param string $name 模型名称
|
|
* @param string $tablePrefix 表前缀
|
|
* @param mixed $connection 数据库连接信息
|
|
*/
|
|
public function __construct($name = '', $tablePrefix = '', $connection = '') {
|
|
/* 设置默认的表前缀 */
|
|
$this->tablePrefix ='tab_';
|
|
/* 执行构造方法 */
|
|
parent::__construct($name, $tablePrefix, $connection);
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取详细信息
|
|
* @author 鹿文学
|
|
* @param string/integer 用户账号/编号
|
|
* @param boolean 判断是用户还是编号搜索
|
|
* @return array 详情数据
|
|
*/
|
|
public function detail($account,$flag=true) {
|
|
|
|
if ($flag) {
|
|
|
|
return $this->where(array('account'=>$account))->find();
|
|
|
|
} else {
|
|
|
|
return $this->where(array('id'=>$account))->find();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} |