| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace App\Module\Game\Dtos;
- use App\Module\Pet\Dtos\DataPetSimpleDto;
- /**
- * 宠物状态变更临时数据DTO
- *
- * 用于存储和传输宠物状态变更的临时数据
- * 继承自DataPetSimpleDto,包含宠物的简化数据
- * 适用于PetStatusChangedEvent事件的数据存储
- */
- class PetDataSimpleTempDto extends DataPetSimpleDto
- {
- /**
- * 旧状态
- *
- * @var int
- */
- public int $oldStatus = 0;
- /**
- * 新状态
- *
- * @var int
- */
- public int $newStatus = 0;
- /**
- * 变更原因
- *
- * @var string
- */
- public string $reason = '';
- /**
- * 更新时间戳
- *
- * @var int
- */
- public int $updatedAt = 0;
- }
|