Files
orico-official-website/app/common/model/LanguageBaseModel.php
2025-02-13 15:39:55 +08:00

32 lines
651 B
PHP

<?php
declare (strict_types = 1);
namespace app\common\model;
/**
* @mixin \think\Model
*/
class LanguageBaseModel extends BaseModel
{
// 表名
protected $name = 'sys_language';
// 主键
protected $pk = 'id';
// 字段信息
protected $schema = [
'id' => 'int',
'country_id' => 'int',
'name' => 'string',
'code' => 'string',
'icon' => 'string',
'url' => 'string',
'status' => 'int',
'is_default' => 'int',
'sort' => 'int',
'created_at' => 'datetime',
'updated_at' => 'datetime',
];
}