refactor: 修改产品属性类型

This commit is contained in:
2025-02-12 17:58:53 +08:00
parent 5f31649ccb
commit 39c0de87b7
6 changed files with 19 additions and 15 deletions

View File

@@ -19,6 +19,7 @@ class ProductAttrBaseModel extends BaseModel
protected $schema = [
'id' => 'int',
'language_id' => 'int',
'attr_type' => 'string',
'attr_name' => 'string',
'is_system' => 'string',
'created_at' => 'datetime',

View File

@@ -18,7 +18,6 @@ class ProductAttrPropBaseModel extends BaseModel
// 字段信息
protected $schema = [
'attr_id' => 'int',
'prop_type' => 'int',
'prop_name' => 'string',
'prop_value' => 'string',
'created_at' => 'datetime',