Base.php 227 B

123456789101112131415
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\bug\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class Base extends Model
  9. {
  10. protected $connection='mysql_bug';
  11. public static $statusCn=['禁用','启用'];
  12. }