Files
MBTI_wang/api/app/model/GaokaoReport.php
Ghost c4ac0f8a08 feat: 高考志愿与定价分销链路更新(管理端/API/小程序)
- 新增高考志愿核心服务、模型、控制器与迁移脚本

- 同步管理端定价/分销/设置与小程序入口、历史、测试选择和支付逻辑

- 补充相关开发文档

Made-with: Cursor
2026-04-25 16:19:08 +08:00

31 lines
750 B
PHP

<?php
namespace app\model;
use think\Model;
/**
* 高考分析报告快照
*/
class GaokaoReport extends Model
{
protected $name = 'gaokao_report';
protected $schema = [
'id' => 'int',
'userId' => 'int',
'tenantId' => 'int',
'version' => 'string',
'inputSnapshotJson' => 'string',
'reportJson' => 'string',
'overview' => 'string',
'searchMetaJson' => 'string',
'status' => 'int',
'errorMsg' => 'string',
'createdAt' => 'int',
];
protected $autoWriteTimestamp = false;
protected $json = ['inputSnapshotJson', 'reportJson', 'searchMetaJson'];
}