Bi.php 267 B

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