// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\api\model; use app\common\model\SchoolAlbum as SchoolAlbumModel; /** * 学校图库模型类 * Class SchoolAlbum * @package app\api\model */ class SchoolAlbum extends SchoolAlbumModel { protected $globalScope = ['']; /** * 隐藏字段 * @var array */ protected $hidden = [ 'update_time' ]; /** * @param $schoolId * @param int $limitRow * @return array|mixed * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public static function getShowList($schoolId, $limitRow = 0) { return parent::getShowList($schoolId, $limitRow); // TODO: Change the autogenerated stub } }