TaoLer/app/facade/Cate.php

21 lines
416 B
PHP
Raw Permalink Normal View History

<?php
namespace app\facade;
use think\Facade;
/**
* Class Article
* @package app\facade
* @method static array getArtTop(int $num) 获取置顶文章
* @method static array getArtList(int $num) 获取文章列表
* @method static array getArtHot(int $num) 获取精华文章
*/
class Cate extends Facade
{
protected static function getFacadeClass()
{
return 'app\common\model\Cate';
}
}