AbstractController.class.php 272 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php /** * Created by PhpStorm. */ namespace Apicp\Controller; use Common\Controller\Apicp; abstract class AbstractController extends Apicp\AbstractController { // 每页数量 const PAGE_LIMIT_DEFAULT = 10; // 默认页码 const PAGE_DEFAULT = 1; }