Files
orico-official-website/app/common/model/ProductCompatModelsBaseModel.php
jsasg 6c43f4e3f2
All checks were successful
Gitea Actions Official-website / deploy-dev (push) Successful in 3s
refactor: 产品兼容性相关功能
2026-08-11 17:14:13 +08:00

27 lines
479 B
PHP

<?php
declare (strict_types = 1);
namespace app\common\model;
use think\Model;
/**
* 产品兼容性 - 兼容型号模型
* @mixin \think\Model
*/
class ProductCompatModelsBaseModel extends Model
{
// 表名
protected $name = "product_compat_models";
// 主键
protected $pk = "id";
// 字段信息
protected $schema = [
"id" => "int",
"compat_id" => "int",
"compatible_model" => "string",
];
}