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.

34 lines
603 B

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