67 lines
1.1 KiB
PHP
67 lines
1.1 KiB
PHP
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\common\model;
|
|
|
|
|
|
use think\db\BaseQuery;
|
|
use think\Model;
|
|
|
|
/**
|
|
* Class BaseModel
|
|
* @package app\common\model
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
abstract class BaseModel extends Model
|
|
{
|
|
protected $updateTime = false;
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
abstract public static function tablePk():? string;
|
|
|
|
/**
|
|
* @return string
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
abstract public static function tableName(): string;
|
|
|
|
/**
|
|
* BaseModel constructor.
|
|
* @param array $data
|
|
*/
|
|
public function __construct(array $data = [])
|
|
{
|
|
$this->pk = static::tablePk();
|
|
$this->name = static::tableName();
|
|
parent::__construct($data);
|
|
}
|
|
|
|
/**
|
|
* @return static
|
|
*/
|
|
public static function getInstance(): self
|
|
{
|
|
return new static();
|
|
}
|
|
|
|
/**
|
|
* @param array $scope
|
|
* @return BaseQuery
|
|
* @author xaboy
|
|
* @day 2020-03-30
|
|
*/
|
|
public static function getDB(array $scope = [])
|
|
{
|
|
return self::getInstance()->db($scope);
|
|
}
|
|
|
|
}
|