This commit is contained in:
Your Name
2026-04-30 14:20:40 +08:00
parent 742be6b492
commit 4c21ee5938
5 changed files with 655 additions and 0 deletions
@@ -0,0 +1,17 @@
<?php
declare(strict_types=1);
namespace app\common\model\tcm;
use app\common\model\BaseModel;
/**
* 诊单挂号 / 取消挂号操作日志(后台)
*/
class DiagnosisGuahaoLog extends BaseModel
{
protected $name = 'tcm_diagnosis_guahao_log';
protected $autoWriteTimestamp = false;
}