You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
610 B
40 lines
610 B
<?php |
|
/** |
|
* |
|
* Banner.php |
|
* User: ChenLong |
|
* DateTime: 2021-01-11 17:40:00 |
|
*/ |
|
|
|
|
|
namespace app\common\model; |
|
|
|
use think\Model; |
|
use app\common\BaseModel; |
|
|
|
/** |
|
* Class Banner |
|
* @package app\common\model\Banner |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class Banner extends Model |
|
{ |
|
use BaseModel; |
|
|
|
protected $schema = [ |
|
'id' => 'int', |
|
'title' => 'varchar', |
|
'cover' => 'varchar', |
|
'cover_url' => 'varchar', |
|
'sort' => 'int', |
|
'create_time' => 'datetime', |
|
'update_time' => 'datetime', |
|
'delete_time' => 'int', |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|