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.

31 lines
608 B

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