You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
500 B

  1. <?php
  2. declare (strict_types=1);
  3. namespace App\Model;
  4. /**
  5. */
  6. class Market extends Model
  7. {
  8. /**
  9. * The table associated with the model.
  10. *
  11. * @var string
  12. */
  13. protected $table = 'ims_cjdc_market';
  14. /**
  15. * The attributes that are mass assignable.
  16. *
  17. * @var array
  18. */
  19. protected $fillable = [];
  20. /**
  21. * The attributes that should be cast to native types.
  22. *
  23. * @var array
  24. */
  25. protected $casts = [];
  26. public $timestamps = false;
  27. }