40 lines
653 B
PHP
40 lines
653 B
PHP
<?php
|
||
/*
|
||
* description:
|
||
* author:wh
|
||
* email:
|
||
* createTime:{2024/7/12} {17:01}
|
||
*/
|
||
|
||
namespace app\api\controller;
|
||
|
||
|
||
use app\api\logic\TychatLogic;
|
||
use wanghua\general_utility_tools_php\Mmodel;
|
||
|
||
/**
|
||
* @deprecated
|
||
* 健康洞察
|
||
*
|
||
* Class HealthInsights
|
||
* @package app\api\controller
|
||
*/
|
||
class HealthInsights
|
||
{
|
||
|
||
|
||
/**
|
||
* desc:健康洞察
|
||
* 实时输出
|
||
*
|
||
* /api/HealthInsights/getHealthInsight
|
||
*
|
||
* author:wh
|
||
*/
|
||
function getHealthInsight(){
|
||
//return Mmodel::catch(function (){
|
||
// $obj = new TychatLogic();
|
||
// return $obj->getHealthInsight();
|
||
//});
|
||
}
|
||
} |