<?php declare (strict_types = 1); namespace app\bug\model; use think\Model; /** * @mixin \think\Model */ class Base extends Model { protected $connection='mysql_bug'; public static $statusCn=['禁用','启用']; }