ArticleInterface.php 496 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /*
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecshop\services\cms\article;
  10. /**
  11. * Cms Article services.
  12. * @author Terry Zhao <2358269014@qq.com>
  13. * @since 1.0
  14. */
  15. interface ArticleInterface
  16. {
  17. public function getByPrimaryKey($primaryKey);
  18. public function coll($filter);
  19. public function save($one, $originUrlKey);
  20. public function remove($ids);
  21. }