123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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);
- }
- }
|