Banner.php 522 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. *------Create thems Model------
  4. *------SCWPHP Version 1.0.0------
  5. *------Dev Model Jions------
  6. *------Create Time 2017-06-20 18:41:03------
  7. */
  8. namespace App\Commons\Model;
  9. use \System\Model;
  10. class Banner extends Model {
  11. public $timestamps = false;
  12. protected $table = 'banner';
  13. public function getBanner($where){
  14. $data= lm($this->table)->where($where)->where('status','1')->orderBy('sort', 'desc')->get();
  15. if ($data){
  16. $data=$data->toArray();
  17. }
  18. return $data;
  19. }
  20. }