feat: 产品相关接口

This commit is contained in:
2025-01-24 17:54:04 +08:00
parent 5e85f3a653
commit 954a2524d6
18 changed files with 787 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
declare (strict_types = 1);
namespace app\common\model;
use think\Model;
/**
* 产品sku属性模型
* @mixin \think\Model
*/
class ProductSkuAttrBaseModel extends Model
{
// 表名
protected $name = 'product_sku_attr';
// 字段信息
protected $schema = [
'sku_id' => 'int',
'attr_id' => 'int',
'prop_id' => 'int',
];
}