StAreaCountry.php 262 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Jonlin
  5. * Date: 2019/4/8
  6. * Time: 11:20
  7. */
  8. namespace App\Models;
  9. use Illuminate\Support\Facades\DB;
  10. class StAreaCountry extends BaseModel {
  11. protected $table = "st_area_country";
  12. public $timestamps = false;
  13. }