| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020-03-24
- *
- *
- */
- 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);
- }
- }
|