28 lines
546 B
PHP
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'
|
|
];
|
|
}
|