| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Module\GameItems\Casts;
- use UCore\Model\CastsAttributes;
- /**
- * 合成配方展示属性类型转换器
- *
- * 用于将数据库中存储的JSON格式的合成配方展示属性转换为PHP对象,以及将PHP对象转换回JSON格式。
- * 展示属性包含用于界面展示的属性,如图标路径、颜色、描述等。
- */
- class RecipeDisplayAttributesCast extends CastsAttributes
- {
- /**
- * 图标路径
- *
- * @var string $icon
- */
- public string $icon = '';
- /**
- * 分类
- *
- * @var string $category
- */
- public string $category = '';
- }
|