SystemRed.php 331 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Lenovo
  5. * Date: 2019/1/21
  6. * Time: 14:23
  7. */
  8. namespace App\Api\Model;
  9. use \System\Model;
  10. class SystemRed extends Model
  11. {
  12. protected $table = 'system_red';
  13. public $incrementing = false;
  14. public function getRedInfo()
  15. {
  16. return $this->where('status',1)->get();
  17. }
  18. }