PortalCategoryPostModel.php 813 B

123456789101112131415161718192021222324
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: wuwu <15093565100@163.com>
  10. // +----------------------------------------------------------------------
  11. namespace api\portal\model;
  12. use think\Model;
  13. class PortalCategoryPostModel extends Model
  14. {
  15. /**
  16. * 基础查询
  17. */
  18. protected function base($query)
  19. {
  20. $query->where('status', 1);
  21. }
  22. }