Files
orico-official-website/app/common/model/SysMallStoreEntranceBaseModel.php
jsasg a3af1bf416
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s
feat: 系统商城店铺入口
2026-03-28 11:37:26 +08:00

32 lines
734 B
PHP

<?php
declare (strict_types = 1);
namespace app\common\model;
/**
* 系统商城店铺入口模型
* @mixin \think\Model
*/
class SysMallStoreEntranceBaseModel extends BaseModel
{
// 表名
protected $name = 'sys_mall_store_entrance';
// 主键
protected $pk = 'id';
// 字段信息
protected $schema = [
'id' => 'int',
'language_id' => 'int',
'name' => 'string',
'link_url' => 'string',
'sort_order' => 'int',
'is_disabled' => 'int',
'image' => 'string',
'hover_image' => 'string',
'created_at' => 'datetime',
'updated_at' => 'datetime',
'deleted_at' => 'datetime',
];
}