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.

56 lines
973 B

  1. <?php
  2. declare (strict_types=1);
  3. namespace App\Model;
  4. /**
  5. */
  6. class Store extends Model
  7. {
  8. /**
  9. * The table associated with the model.
  10. *
  11. * @var string
  12. */
  13. protected $table = 'ims_cjdc_store';
  14. /**
  15. * The attributes that are mass assignable.
  16. *
  17. * @var array
  18. */
  19. protected $fillable = [
  20. 'name',
  21. 'market_id',
  22. 'md_type',
  23. 'address',
  24. 'coordinates',
  25. 'details',
  26. 'link_name',
  27. 'link_tel',
  28. 'logo',
  29. 'fm_img',
  30. 'zm_img',
  31. 'yyzz',
  32. 'user_id',
  33. 'sq_id',
  34. 'admin_id',
  35. 'rz_time',
  36. 'mm_user_id',
  37. 'sq_time',
  38. 'rzdq_time',
  39. 'state',
  40. 'is_open',
  41. 'money',
  42. 'code',
  43. 'uniacid',
  44. 'zf_state',
  45. ];
  46. /**
  47. * The attributes that should be cast to native types.
  48. *
  49. * @var array
  50. */
  51. protected $casts = [];
  52. public $timestamps=false;
  53. }