| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- /*
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- namespace fecshop\services\url\rewrite;
- /**
- * @author Terry Zhao <2358269014@qq.com>
- * @since 1.0
- */
- interface RewriteInterface
- {
- public function getByPrimaryKey($primaryKey);
- public function coll($filter);
- public function save($one);
- public function remove($ids);
- public function find();
- public function findOne($where);
- public function newModel();
- }
|