AbstractController.class.php
327 Bytes
<?php
/**
* Created by PhpStorm.
* User: liyifei
* Date: 16/9/13
*/
namespace Apicp\Controller;
use Common\Controller\Apicp;
abstract class AbstractController extends Apicp\AbstractController
{
// 默认页码
const DEFAULT_PAGE = 1;
// 默认每页条数
const DEFAULT_LIMIT = 15;
}