Files
orico-official-website/app/common/model/SysBannerItemBaseModel.php
jsasg 23aed15ada
Some checks failed
Gitea Actions Official-website / deploy-dev (push) Failing after 7s
refactor: banner加入"banner简称"问题修改
2025-11-25 14:05:01 +08:00

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'
];
}