'用户评论', self::TYPE_ADMIN => '管理员评论', self::TYPE_INFO => '提示', ]; /** * @inheritdoc */ public static function tableName() { return '{{%live_comment}}'; } public function behaviors() { return [ [ // 自动更新创建和更新时间 'class' => TimestampBehavior::class, 'updatedAtAttribute' => false, ] ]; } public static function type_name($type) { return self::$type_list[$type] ?? ''; } }