1234567891011121314151617181920212223242526272829 |
- <?php
- namespace app\admin\model\patient;
- use think\Model;
- class PatientInfoModel extends Model
- {
- // 表名
- protected $table = 'patient_infos';
- // 设置当前模型的数据库连接
- protected $connection = [// 数据库表前缀
- 'prefix' => ''
- ];
-
-
- }
|