Advert.php 245 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: asus
  5. * Date: 2017/6/6
  6. * Time: 17:58
  7. */
  8. namespace App\Api\Model;
  9. use \System\Model;
  10. class Advert extends Model {
  11. protected $table = 'advert';
  12. public function getlist() {
  13. return $data = "a";
  14. }
  15. }