Systemconfig.php 382 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\index\model;
  3. use think\Model;
  4. /**
  5. * 系统设置模型
  6. */
  7. class Systemconfig extends Model
  8. {
  9. /**
  10. * 查询系统设置
  11. *
  12. * @access public
  13. * @return array 返回类型
  14. */
  15. public function findSystemconfig($where)
  16. {
  17. $result = $this->where($where)->find();
  18. return $result;
  19. }//end findSystemconfig()
  20. }