Country.php 359 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 国家/地区
  6. * Class Country
  7. * @package App\Http\Models
  8. */
  9. class Country extends Model
  10. {
  11. protected $table = 'country';
  12. protected $primaryKey = 'id';
  13. public $timestamps = false;
  14. protected $fillable = [
  15. 'country_name',
  16. 'country_code'
  17. ];
  18. }