2020-11-02 22:45:37 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2020-11-04 11:57:16 +08:00
|
|
|
|
2020-11-02 22:45:37 +08:00
|
|
|
/**
|
|
|
|
* This file is part of Hyperf.
|
|
|
|
*
|
|
|
|
* @link https://www.hyperf.io
|
|
|
|
* @document https://hyperf.wiki
|
|
|
|
* @contact group@hyperf.io
|
|
|
|
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
|
|
|
|
*/
|
2020-11-04 17:36:52 +08:00
|
|
|
|
2020-11-02 22:45:37 +08:00
|
|
|
namespace App\Model;
|
|
|
|
|
|
|
|
use Hyperf\DbConnection\Model\Model as BaseModel;
|
|
|
|
|
|
|
|
abstract class Model extends BaseModel
|
|
|
|
{
|
2020-11-04 16:47:17 +08:00
|
|
|
public $timestamps = false;
|
2020-11-02 22:45:37 +08:00
|
|
|
}
|