Files
orico-official-website/app/common/model/ProductPurchasePlatformBaseModel.php
2025-01-24 17:54:04 +08:00

28 lines
546 B
PHP

<?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'
];
}