hyperf-chat/app/Model/BaseModel.php

22 lines
386 B
PHP
Raw Normal View History

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;
2020-11-05 17:40:51 +08:00
use Hyperf\DbConnection\Model\Model as CModel;
2020-11-02 22:45:37 +08:00
2020-11-05 17:40:51 +08:00
abstract class BaseModel extends CModel
2020-11-02 22:45:37 +08:00
{
2020-11-04 16:47:17 +08:00
public $timestamps = false;
2020-11-02 22:45:37 +08:00
}