<?php namespace app\utility; use app\model\AdminLogModel; class BusinessLog{ //记录 function log($content){ AdminLogModel::insert($content); } }