feat: 产品相关接口

This commit is contained in:
2025-01-24 17:54:04 +08:00
parent a64379f188
commit 050d7cec4b
18 changed files with 787 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
declare (strict_types = 1);
namespace app\common\model;
/**
* 产品购买平台模型
* @mixin \think\Model
*/
class ProductPurchasePlatformBaseModel extends BaseModel
{
// 表名
protected $name = 'product_purchase_platform';
// 主键
protected $pk = 'id';
// 字段信息
protected $schema = [
'id' => 'int',
'language_id' => 'int',
'platform' => 'string',
'desc' => 'string',
'sort' => 'int',
'created_at' => 'datetime'
];
}