| 1234567891011121314151617181920 |
- <?php
- namespace App\Module\GameItems\Casts;
- use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
- use Illuminate\Database\Eloquent\Model;
- use JsonMapper;
- class DisplayAttributesCast extends \UCore\Model\CastsAttributes
- {
- /**
- * 客户端图标地址
- * @var string $img
- */
- public string $img = ' ';
- }
|