fixed
This commit is contained in:
@@ -1,101 +1,85 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace app\api\controller;
|
namespace app\api\controller;
|
||||||
|
|
||||||
use think\Db;
|
use think\Db;
|
||||||
use app\common\model\TabConf;
|
use app\common\model\TabConf;
|
||||||
use wanghua\general_utility_tools_php\file\upload\FileUpload;
|
use wanghua\general_utility_tools_php\file\upload\FileUpload;
|
||||||
use wanghua\general_utility_tools_php\tool\Tools;
|
use wanghua\general_utility_tools_php\tool\Tools;
|
||||||
use wanghua\general_utility_tools_php\Validate;
|
use wanghua\general_utility_tools_php\Validate;
|
||||||
use think\Controller;
|
use think\Controller;
|
||||||
|
|
||||||
class Ttuserbaseinfo extends BaseHttpApi
|
class Ttuserbaseinfo extends BaseHttpApi
|
||||||
{
|
{
|
||||||
protected $controller_comments = '疼痛科用户基本信息';
|
protected $controller_comments = '疼痛科用户基本信息';
|
||||||
|
|
||||||
/**
|
|
||||||
* desc:查询数字人数据
|
|
||||||
*
|
/**
|
||||||
* api/Ttuserbaseinfo/getTtuserbaseinfoDetail
|
* desc:获取疼痛科用户基本信息
|
||||||
*
|
*
|
||||||
|
* api/Ttuserbaseinfo/getTtuserbaseinfoDetail
|
||||||
*
|
*
|
||||||
* doctor 所属医生 所属医生 必须
|
* 参数:
|
||||||
* name 病人姓名 病人姓名 必须
|
* id ID ID 必须
|
||||||
* phone 联系方式 联系方式 必须
|
|
||||||
*
|
|
||||||
*
|
*
|
||||||
* id ID
|
* 所有字段说明<span style="color: gray">(可能有部分额外字段未在此体现)</span>:
|
||||||
* doctor 所属医生
|
* id ID
|
||||||
* name 病人姓名
|
* date 日期
|
||||||
* gender 病人性别
|
* doctor 所属医生
|
||||||
* age 病人年龄
|
* name 病人姓名
|
||||||
* edu 教育程度
|
* gender 病人性别
|
||||||
* career_year 职业及年限
|
* age 病人年龄
|
||||||
* power 体力要求
|
* edu 教育程度
|
||||||
* satisfaction 经济满意度
|
* career_year 职业及年限
|
||||||
* old_career_year 过往职业及年限
|
* power 体力要求
|
||||||
* old_career_power 过往职业体力要求
|
* satisfaction 经济满意度
|
||||||
* support 社会支持度
|
* old_career_year 过往职业及年限
|
||||||
* marriage 婚姻状况
|
* old_career_power 过往职业体力要求
|
||||||
* live 居住情况
|
* support 社会支持度
|
||||||
* home 家庭关系
|
* marriage 婚姻状况
|
||||||
* address 地址
|
* live 居住情况
|
||||||
* phone 联系方式
|
* home 家庭关系
|
||||||
* wechat_no 微信号
|
* address 地址
|
||||||
* create_time 创建时间
|
* phone 联系方式
|
||||||
* is_flow 是否接受随访:yes=是,no=否
|
* wechat_no 微信号
|
||||||
* ticket 对话票据(数据隔离)
|
* create_time 创建时间
|
||||||
* hdrdepartment_id 科室
|
* is_flow 是否接受随访:yes=是,no=否
|
||||||
|
* ticket 对话票据(数据隔离)
|
||||||
* author:wh
|
* hdrdepartment_id 科室
|
||||||
*/
|
* from 来源:num_per=数智人,ty=听译助手,h5=h5网页问诊
|
||||||
function getTtuserbaseinfoDetail(){
|
|
||||||
Tools::log_to_write_txt(['查询数字人数据 入参:'=>input()]);
|
* author:wh
|
||||||
$api_desc = '查询数字人数据';
|
*/
|
||||||
try {
|
function getTtuserbaseinfoDetail(){
|
||||||
|
Tools::log_to_write_txt(['获取疼痛科用户基本信息 入参:'=>input()]);
|
||||||
$doctor = input('doctor');
|
$api_desc = '获取疼痛科用户基本信息';
|
||||||
if(empty($doctor)){
|
try {
|
||||||
return json(Tools::set_fail('doctor参数错误'));
|
|
||||||
}
|
$id = input('id');
|
||||||
|
if(empty($id)){
|
||||||
$name = input('name');
|
return json(Tools::set_fail('id参数错误'));
|
||||||
if(empty($name)){
|
}
|
||||||
return json(Tools::set_fail('name参数错误'));
|
|
||||||
}
|
|
||||||
|
|
||||||
$phone = input('phone');
|
$model_obj = Db::table(TabConf::$fa_tt_userbaseinfo);
|
||||||
if(empty($phone)){
|
|
||||||
return json(Tools::set_fail('phone参数错误'));
|
if(input('id')){
|
||||||
}
|
$model_obj->where('id',input('id'));
|
||||||
|
}
|
||||||
|
$item = $model_obj->find();
|
||||||
|
$data = $item;
|
||||||
$model_obj = Db::table(TabConf::$fa_tt_userbaseinfo);
|
|
||||||
|
|
||||||
if(input('doctor')){
|
|
||||||
$model_obj->where('doctor',input('doctor'));
|
return json(Tools::set_ok('ok',$data));
|
||||||
}
|
}catch(\Exception $e){
|
||||||
if(input('name')){
|
Tools::log_to_write_txt([
|
||||||
$model_obj->where('name',input('name'));
|
'error'=>'获取疼痛科用户基本信息.异常.'.$e->getMessage(),
|
||||||
}
|
'参数'=>input(),
|
||||||
if(input('phone')){
|
'error_info'=>$e->getTraceAsString()
|
||||||
$model_obj->where('phone',input('phone'));
|
]);
|
||||||
}
|
return json(Tools::set_res(500,'操作异常',[]));
|
||||||
$item = $model_obj->find();
|
}
|
||||||
$data = $item;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return json(Tools::set_ok('ok',$data));
|
|
||||||
}catch(\Exception $e){
|
|
||||||
Tools::log_to_write_txt([
|
|
||||||
'error'=>'查询数字人数据.异常.'.$e->getMessage(),
|
|
||||||
'参数'=>input(),
|
|
||||||
'error_info'=>$e->getTraceAsString()
|
|
||||||
]);
|
|
||||||
return json(Tools::set_res(500,'操作异常',[]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div>
|
||||||
<div id="api_hdradmin_adminLogin" style="background-color: #f8f8ff;margin-top: 50px;">
|
<div id="api_hdradmin_adminLogin" style="background-color: #fffaf0;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdradmin_adminLogin_response_result"></div>
|
<div class="api_hdradmin_adminLogin_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrdepartment_getHdrdepartmentList" style="background-color: #fff0f5;margin-top: 50px;">
|
</div><div id="api_hdrdepartment_getHdrdepartmentList" style="background-color: #fffaf0;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -53,7 +53,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrdepartment_getHdrdepartmentList_response_result"></div>
|
<div class="api_hdrdepartment_getHdrdepartmentList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrdoctorusers_addHdrdoctorusers" style="background-color: #ffe4e1;margin-top: 50px;">
|
</div><div id="api_hdrdoctorusers_addHdrdoctorusers" style="background-color: #f0ffff;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -78,7 +78,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrdoctorusers_addHdrdoctorusers_response_result"></div>
|
<div class="api_hdrdoctorusers_addHdrdoctorusers_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrdoctorusers_updateHdrdoctorusers" style="background-color: #ffe4e1;">
|
</div><div id="api_hdrdoctorusers_updateHdrdoctorusers" style="background-color: #f0ffff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -106,7 +106,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrdoctorusers_updateHdrdoctorusers_response_result"></div>
|
<div class="api_hdrdoctorusers_updateHdrdoctorusers_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrdoctorusers_getHdrdoctorusersList" style="background-color: #ffe4e1;">
|
</div><div id="api_hdrdoctorusers_getHdrdoctorusersList" style="background-color: #f0ffff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -154,7 +154,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrdoctorusers_getHdrdoctorusersList_response_result"></div>
|
<div class="api_hdrdoctorusers_getHdrdoctorusersList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrfollowup_addHdrfollowup" style="background-color: #fafad2;margin-top: 50px;">
|
</div><div id="api_hdrfollowup_addHdrfollowup" style="background-color: #f0ffff;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -180,7 +180,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrfollowup_addHdrfollowup_response_result"></div>
|
<div class="api_hdrfollowup_addHdrfollowup_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrfollowup_getHdrfollowupList" style="background-color: #fafad2;">
|
</div><div id="api_hdrfollowup_getHdrfollowupList" style="background-color: #f0ffff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -220,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrfollowup_getHdrfollowupList_response_result"></div>
|
<div class="api_hdrfollowup_getHdrfollowupList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrfollowup_updateHdrfollowup" style="background-color: #fafad2;">
|
</div><div id="api_hdrfollowup_updateHdrfollowup" style="background-color: #f0ffff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrfollowup_updateHdrfollowup_response_result"></div>
|
<div class="api_hdrfollowup_updateHdrfollowup_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrfollowup_del" style="background-color: #fafad2;">
|
</div><div id="api_hdrfollowup_del" style="background-color: #f0ffff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -264,7 +264,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrfollowup_del_response_result"></div>
|
<div class="api_hdrfollowup_del_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnaireanswer_getHdrquestionnaireanswerList" style="background-color: #ffdead;margin-top: 50px;">
|
</div><div id="api_hdrquestionnaireanswer_getHdrquestionnaireanswerList" style="background-color: #fff0f5;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -300,7 +300,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnaireanswer_getHdrquestionnaireanswerList_response_result"></div>
|
<div class="api_hdrquestionnaireanswer_getHdrquestionnaireanswerList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnaireanswer_addHdrquestionnaireanswer" style="background-color: #ffdead;">
|
</div><div id="api_hdrquestionnaireanswer_addHdrquestionnaireanswer" style="background-color: #fff0f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -322,7 +322,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnaireanswer_addHdrquestionnaireanswer_response_result"></div>
|
<div class="api_hdrquestionnaireanswer_addHdrquestionnaireanswer_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnaireanswer_updateHdrquestionnaireanswer" style="background-color: #ffdead;">
|
</div><div id="api_hdrquestionnaireanswer_updateHdrquestionnaireanswer" style="background-color: #fff0f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -344,7 +344,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnaireanswer_updateHdrquestionnaireanswer_response_result"></div>
|
<div class="api_hdrquestionnaireanswer_updateHdrquestionnaireanswer_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnaireanswer_del" style="background-color: #ffdead;">
|
</div><div id="api_hdrquestionnaireanswer_del" style="background-color: #fff0f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -366,7 +366,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnaireanswer_del_response_result"></div>
|
<div class="api_hdrquestionnaireanswer_del_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnairequestion_addHdrquestionnairequestion" style="background-color: #dda0dd;margin-top: 50px;">
|
</div><div id="api_hdrquestionnairequestion_addHdrquestionnairequestion" style="background-color: #f0f8ff;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -392,7 +392,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnairequestion_addHdrquestionnairequestion_response_result"></div>
|
<div class="api_hdrquestionnairequestion_addHdrquestionnairequestion_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnairequestion_updateHdrquestionnairequestion" style="background-color: #dda0dd;">
|
</div><div id="api_hdrquestionnairequestion_updateHdrquestionnairequestion" style="background-color: #f0f8ff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -418,7 +418,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnairequestion_updateHdrquestionnairequestion_response_result"></div>
|
<div class="api_hdrquestionnairequestion_updateHdrquestionnairequestion_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnairequestion_del" style="background-color: #dda0dd;">
|
</div><div id="api_hdrquestionnairequestion_del" style="background-color: #f0f8ff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -441,7 +441,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnairequestion_del_response_result"></div>
|
<div class="api_hdrquestionnairequestion_del_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrquestionnairequestion_getHdrquestionnairequestionList" style="background-color: #dda0dd;">
|
</div><div id="api_hdrquestionnairequestion_getHdrquestionnairequestionList" style="background-color: #f0f8ff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -479,7 +479,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrquestionnairequestion_getHdrquestionnairequestionList_response_result"></div>
|
<div class="api_hdrquestionnairequestion_getHdrquestionnairequestionList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrregister_addHdrregister" style="background-color: #fafad2;margin-top: 50px;">
|
</div><div id="api_hdrregister_addHdrregister" style="background-color: #f8f8ff;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -507,7 +507,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrregister_addHdrregister_response_result"></div>
|
<div class="api_hdrregister_addHdrregister_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdrregister_getHdrregisterList" style="background-color: #fafad2;">
|
</div><div id="api_hdrregister_getHdrregisterList" style="background-color: #f8f8ff;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -552,7 +552,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdrregister_getHdrregisterList_response_result"></div>
|
<div class="api_hdrregister_getHdrregisterList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdruserbaseinfo_getHdruserbaseinfoList" style="background-color: #f0ffff;margin-top: 50px;">
|
</div><div id="api_hdruserbaseinfo_getHdruserbaseinfoList" style="background-color: #ffe4c4;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -611,7 +611,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdruserbaseinfo_getHdruserbaseinfoList_response_result"></div>
|
<div class="api_hdruserbaseinfo_getHdruserbaseinfoList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_hdruserbaseinfo_getHdruserbaseinfoDetailById" style="background-color: #f0ffff;">
|
</div><div id="api_hdruserbaseinfo_getHdruserbaseinfoDetailById" style="background-color: #ffe4c4;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -661,7 +661,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_hdruserbaseinfo_getHdruserbaseinfoDetailById_response_result"></div>
|
<div class="api_hdruserbaseinfo_getHdruserbaseinfoDetailById_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reporttt_createReport" style="background-color: #f8f8ff;margin-top: 50px;">
|
</div><div id="api_reporttt_createReport" style="background-color: #fff0f5;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -707,7 +707,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reporttt_createReport_response_result"></div>
|
<div class="api_reporttt_createReport_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reporttt_getReportById" style="background-color: #f8f8ff;">
|
</div><div id="api_reporttt_getReportById" style="background-color: #fff0f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -729,7 +729,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reporttt_getReportById_response_result"></div>
|
<div class="api_reporttt_getReportById_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reporttt_getReportList" style="background-color: #f8f8ff;">
|
</div><div id="api_reporttt_getReportList" style="background-color: #fff0f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -752,7 +752,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reporttt_getReportList_response_result"></div>
|
<div class="api_reporttt_getReportList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reporttt_editReport" style="background-color: #f8f8ff;">
|
</div><div id="api_reporttt_editReport" style="background-color: #fff0f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -783,7 +783,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reporttt_editReport_response_result"></div>
|
<div class="api_reporttt_editReport_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reportty_createReport" style="background-color: #f8f8ff;margin-top: 50px;">
|
</div><div id="api_reportty_createReport" style="background-color: #f5f5f5;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -807,7 +807,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reportty_createReport_response_result"></div>
|
<div class="api_reportty_createReport_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reportty_getReportById" style="background-color: #f8f8ff;">
|
</div><div id="api_reportty_getReportById" style="background-color: #f5f5f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -829,7 +829,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reportty_getReportById_response_result"></div>
|
<div class="api_reportty_getReportById_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reportty_getReportList" style="background-color: #f8f8ff;">
|
</div><div id="api_reportty_getReportList" style="background-color: #f5f5f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -852,7 +852,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reportty_getReportList_response_result"></div>
|
<div class="api_reportty_getReportList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_reportty_editReport" style="background-color: #f8f8ff;">
|
</div><div id="api_reportty_editReport" style="background-color: #f5f5f5;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -885,7 +885,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_reportty_editReport_response_result"></div>
|
<div class="api_reportty_editReport_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_ttchathistory_getTtchathistoryList" style="background-color: #fff0f5;margin-top: 50px;">
|
</div><div id="api_ttchathistory_getTtchathistoryList" style="background-color: #f0f8ff;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -922,7 +922,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_ttchathistory_getTtchathistoryList_response_result"></div>
|
<div class="api_ttchathistory_getTtchathistoryList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_ttmedicalreport_getTtmedicalreportDetail" style="background-color: #f0ffff;margin-top: 50px;">
|
</div><div id="api_ttmedicalreport_getTtmedicalreportDetail" style="background-color: #f0fff0;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -959,7 +959,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_ttmedicalreport_getTtmedicalreportDetail_response_result"></div>
|
<div class="api_ttmedicalreport_getTtmedicalreportDetail_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_ttmedicalreport_getTtmedicalreportList" style="background-color: #f0ffff;">
|
</div><div id="api_ttmedicalreport_getTtmedicalreportList" style="background-color: #f0fff0;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1008,22 +1008,21 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_ttmedicalreport_getTtmedicalreportList_response_result"></div>
|
<div class="api_ttmedicalreport_getTtmedicalreportList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_ttuserbaseinfo_getTtuserbaseinfoDetail" style="background-color: #ffe4e1;margin-top: 50px;">
|
</div><div id="api_ttuserbaseinfo_getTtuserbaseinfoDetail" style="background-color: #f8f8ff;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
/**
|
/**
|
||||||
* desc:查询数字人数据
|
* desc:获取疼痛科用户基本信息
|
||||||
*
|
*
|
||||||
* api/Ttuserbaseinfo/getTtuserbaseinfoDetail
|
* api/Ttuserbaseinfo/getTtuserbaseinfoDetail
|
||||||
*
|
*
|
||||||
* 参数:
|
* 参数:
|
||||||
* doctor 所属医生 所属医生 必须
|
* id ID ID 必须
|
||||||
* name 病人姓名 病人姓名 必须
|
|
||||||
* phone 联系方式 联系方式 必须
|
|
||||||
*
|
*
|
||||||
* 所有字段说明<span style="color: gray">(可能有部分额外字段未在此体现)</span>:
|
* 所有字段说明<span style="color: gray">(可能有部分额外字段未在此体现)</span>:
|
||||||
* id ID
|
* id ID
|
||||||
|
* date 日期
|
||||||
* doctor 所属医生
|
* doctor 所属医生
|
||||||
* name 病人姓名
|
* name 病人姓名
|
||||||
* gender 病人性别
|
* gender 病人性别
|
||||||
@@ -1045,6 +1044,7 @@
|
|||||||
* is_flow 是否接受随访:yes=是,no=否
|
* is_flow 是否接受随访:yes=是,no=否
|
||||||
* ticket 对话票据(数据隔离)
|
* ticket 对话票据(数据隔离)
|
||||||
* hdrdepartment_id 科室
|
* hdrdepartment_id 科室
|
||||||
|
* from 来源:num_per=数智人,ty=听译助手,h5=h5网页问诊
|
||||||
|
|
||||||
* author:wh
|
* author:wh
|
||||||
* api/ttuserbaseinfo/getTtuserbaseinfoDetail
|
* api/ttuserbaseinfo/getTtuserbaseinfoDetail
|
||||||
@@ -1058,7 +1058,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_ttuserbaseinfo_getTtuserbaseinfoDetail_response_result"></div>
|
<div class="api_ttuserbaseinfo_getTtuserbaseinfoDetail_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_tychathistory_getTychathistoryList" style="background-color: #fff0f5;margin-top: 50px;">
|
</div><div id="api_tychathistory_getTychathistoryList" style="background-color: #fffaf0;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1094,7 +1094,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_tychathistory_getTychathistoryList_response_result"></div>
|
<div class="api_tychathistory_getTychathistoryList_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_tyfollowup_getTyfollowupDetail" style="background-color: #fffff0;margin-top: 50px;">
|
</div><div id="api_tyfollowup_getTyfollowupDetail" style="background-color: #f8f8ff;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1126,7 +1126,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_tyfollowup_getTyfollowupDetail_response_result"></div>
|
<div class="api_tyfollowup_getTyfollowupDetail_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_tymedicalreport_getTymedicalreportDetail" style="background-color: #f0ffff;margin-top: 50px;">
|
</div><div id="api_tymedicalreport_getTymedicalreportDetail" style="background-color: #faebd7;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1164,7 +1164,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_tymedicalreport_getTymedicalreportDetail_response_result"></div>
|
<div class="api_tymedicalreport_getTymedicalreportDetail_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_userstt_getSayTicket" style="background-color: #fff5ee;margin-top: 50px;">
|
</div><div id="api_userstt_getSayTicket" style="background-color: #f0fff0;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1187,7 +1187,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_userstt_getSayTicket_response_result"></div>
|
<div class="api_userstt_getSayTicket_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_userstt_getUserById" style="background-color: #fff5ee;">
|
</div><div id="api_userstt_getUserById" style="background-color: #f0fff0;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1208,7 +1208,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_userstt_getUserById_response_result"></div>
|
<div class="api_userstt_getUserById_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_userstt_login" style="background-color: #fff5ee;">
|
</div><div id="api_userstt_login" style="background-color: #f0fff0;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1233,7 +1233,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_userstt_login_response_result"></div>
|
<div class="api_userstt_login_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_userstt_saveChatHistory" style="background-color: #fff5ee;">
|
</div><div id="api_userstt_saveChatHistory" style="background-color: #f0fff0;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1254,7 +1254,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_userstt_saveChatHistory_response_result"></div>
|
<div class="api_userstt_saveChatHistory_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_userstt_editBaseinfo" style="background-color: #fff5ee;">
|
</div><div id="api_userstt_editBaseinfo" style="background-color: #f0fff0;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1289,7 +1289,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_userstt_editBaseinfo_response_result"></div>
|
<div class="api_userstt_editBaseinfo_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_userstt_subFreeQuestionAnswerRecord" style="background-color: #fff5ee;">
|
</div><div id="api_userstt_subFreeQuestionAnswerRecord" style="background-color: #f0fff0;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
@@ -1320,7 +1320,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="api_userstt_subFreeQuestionAnswerRecord_response_result"></div>
|
<div class="api_userstt_subFreeQuestionAnswerRecord_response_result"></div>
|
||||||
|
|
||||||
</div><div id="api_usersty_login" style="background-color: #fff5ee;margin-top: 50px;">
|
</div><div id="api_usersty_login" style="background-color: #fff0f5;margin-top: 50px;">
|
||||||
<div class="markdown_content">
|
<div class="markdown_content">
|
||||||
***
|
***
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -721,17 +721,16 @@
|
|||||||
***
|
***
|
||||||
```
|
```
|
||||||
/**
|
/**
|
||||||
* desc:查询数字人数据
|
* desc:获取疼痛科用户基本信息
|
||||||
*
|
*
|
||||||
* api/Ttuserbaseinfo/getTtuserbaseinfoDetail
|
* api/Ttuserbaseinfo/getTtuserbaseinfoDetail
|
||||||
*
|
*
|
||||||
* 参数:
|
* 参数:
|
||||||
* doctor 所属医生 所属医生 必须
|
* id ID ID 必须
|
||||||
* name 病人姓名 病人姓名 必须
|
|
||||||
* phone 联系方式 联系方式 必须
|
|
||||||
*
|
*
|
||||||
* 所有字段说明<span style="color: gray">(可能有部分额外字段未在此体现)</span>:
|
* 所有字段说明<span style="color: gray">(可能有部分额外字段未在此体现)</span>:
|
||||||
* id ID
|
* id ID
|
||||||
|
* date 日期
|
||||||
* doctor 所属医生
|
* doctor 所属医生
|
||||||
* name 病人姓名
|
* name 病人姓名
|
||||||
* gender 病人性别
|
* gender 病人性别
|
||||||
@@ -753,6 +752,7 @@
|
|||||||
* is_flow 是否接受随访:yes=是,no=否
|
* is_flow 是否接受随访:yes=是,no=否
|
||||||
* ticket 对话票据(数据隔离)
|
* ticket 对话票据(数据隔离)
|
||||||
* hdrdepartment_id 科室
|
* hdrdepartment_id 科室
|
||||||
|
* from 来源:num_per=数智人,ty=听译助手,h5=h5网页问诊
|
||||||
|
|
||||||
* author:wh
|
* author:wh
|
||||||
* api/ttuserbaseinfo/getTtuserbaseinfoDetail
|
* api/ttuserbaseinfo/getTtuserbaseinfoDetail
|
||||||
|
|||||||
@@ -1209,12 +1209,12 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://gitee.com/drop_drop/general_utility_tools_php.git",
|
"url": "https://gitee.com/drop_drop/general_utility_tools_php.git",
|
||||||
"reference": "622c42b186706c0d7354d04b8c957fe715d0c177"
|
"reference": "a116358d27d4c45cd9e1f258912d25e6fcd1e97c"
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"ext-json": "*"
|
"ext-json": "*"
|
||||||
},
|
},
|
||||||
"time": "2024-07-16T13:13:35+00:00",
|
"time": "2024-08-06T10:50:39+00:00",
|
||||||
"default-branch": true,
|
"default-branch": true,
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"installation-source": "source",
|
"installation-source": "source",
|
||||||
|
|||||||
6
digital_doctor/vendor/composer/installed.php
vendored
6
digital_doctor/vendor/composer/installed.php
vendored
@@ -5,7 +5,7 @@
|
|||||||
'type' => 'project',
|
'type' => 'project',
|
||||||
'install_path' => __DIR__ . '/../../',
|
'install_path' => __DIR__ . '/../../',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
'reference' => '192dd13412c3c73d9be25f9bfece9451588338bf',
|
'reference' => '2e50374c642dd6ea903c969e160eb91a8fc5a5d4',
|
||||||
'name' => 'topthink/think',
|
'name' => 'topthink/think',
|
||||||
'dev' => true,
|
'dev' => true,
|
||||||
),
|
),
|
||||||
@@ -189,7 +189,7 @@
|
|||||||
'type' => 'project',
|
'type' => 'project',
|
||||||
'install_path' => __DIR__ . '/../../',
|
'install_path' => __DIR__ . '/../../',
|
||||||
'aliases' => array(),
|
'aliases' => array(),
|
||||||
'reference' => '192dd13412c3c73d9be25f9bfece9451588338bf',
|
'reference' => '2e50374c642dd6ea903c969e160eb91a8fc5a5d4',
|
||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'topthink/think-installer' => array(
|
'topthink/think-installer' => array(
|
||||||
@@ -218,7 +218,7 @@
|
|||||||
'aliases' => array(
|
'aliases' => array(
|
||||||
0 => '9999999-dev',
|
0 => '9999999-dev',
|
||||||
),
|
),
|
||||||
'reference' => '622c42b186706c0d7354d04b8c957fe715d0c177',
|
'reference' => 'a116358d27d4c45cd9e1f258912d25e6fcd1e97c',
|
||||||
'dev_requirement' => false,
|
'dev_requirement' => false,
|
||||||
),
|
),
|
||||||
'workerman/gateway-worker' => array(
|
'workerman/gateway-worker' => array(
|
||||||
|
|||||||
Reference in New Issue
Block a user