41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 横幅数据项模型
|
|
* @mixin \think\Model
|
|
*/
|
|
class SysBannerItemBaseModel extends BaseModel
|
|
{
|
|
// 表名
|
|
protected $name = 'sys_banner_item';
|
|
|
|
// 主键
|
|
protected $pk = 'id';
|
|
|
|
// 字段信息
|
|
protected $schema = [
|
|
'id' => 'int',
|
|
'banner_id' => 'int',
|
|
'title' => 'string',
|
|
'title_txt_color' => 'string',
|
|
'short_title' => 'string',
|
|
'short_title_txt_color' => 'string',
|
|
'desc' => 'string',
|
|
'desc_txt_color' => 'string',
|
|
'type' => 'string',
|
|
'image' => 'string',
|
|
'extra_image' => 'string',
|
|
'video' => 'string',
|
|
'link_to' => 'string',
|
|
'link' => 'string',
|
|
'sort' => 'int',
|
|
'status' => 'int',
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
'deleted_at' => 'datetime'
|
|
];
|
|
}
|