Evaluate.php 337 B

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