DisplayAttributesCast.php 335 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Module\GameItems\Casts;
  3. use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
  4. use Illuminate\Database\Eloquent\Model;
  5. use JsonMapper;
  6. class DisplayAttributesCast extends \UCore\Model\CastsAttributes
  7. {
  8. /**
  9. * 客户端图标地址
  10. * @var string $img
  11. */
  12. public string $img = ' ';
  13. }