feat: add smt module

This commit is contained in:
nepiedg
2026-04-26 09:24:08 +08:00
parent 69eb3e5019
commit 613e4a58a9
78 changed files with 4629 additions and 5673 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace app\smt\model;
use think\Model;
abstract class BaseBizModel extends Model
{
protected $connection = 'mysql';
protected $autoWriteTimestamp = false;
}