InsMonitoring.php 302 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\admin\model\institution;
  3. use think\Model;
  4. class InsMonitoring extends Model
  5. {
  6. // 表名
  7. protected $table = 'ins_monitoring';
  8. // 设置当前模型的数据库连接
  9. protected $connection = [
  10. // 数据库表前缀
  11. 'prefix' => '',
  12. ];
  13. }