refactor: 修改国家及语言表和模型

This commit is contained in:
2025-03-14 11:54:08 +08:00
parent d797850feb
commit ca14923a3e
4 changed files with 4 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ class CountryBaseModel extends Model
protected $schema = [
'id' => 'int',
'name' => 'string',
'en_name' => 'string',
'code' => 'string',
'icon' => 'string',
'status' => 'int',

View File

@@ -19,6 +19,7 @@ class LanguageBaseModel extends BaseModel
'id' => 'int',
'country_id' => 'int',
'name' => 'string',
'en_name' => 'string',
'code' => 'string',
'icon' => 'string',
'url' => 'string',