| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace App\Module\Game\Dtos;
- /**
- * 消耗项DTO
- */
- class ConsumeItemDto
- {
- /**
- * 消耗项ID
- *
- * @var int
- */
- public int $id;
- /**
- * 消耗组ID
- *
- * @var int
- */
- public int $groupId;
- /**
- * 消耗类型
- *
- * @var int
- */
- public int $consumeType;
- /**
- * 目标ID
- *
- * @var int
- */
- public int $targetId;
- /**
- * 参数1
- *
- * @var int
- */
- public int $param1;
- /**
- * 参数2
- *
- * @var int
- */
- public int $param2;
- /**
- * 数量
- *
- * @var int
- */
- public int $quantity;
- /**
- * 额外数据
- *
- * @var array|null
- */
- public ?array $extraData;
- /**
- * 从模型创建DTO
- *
- * @param \App\Module\Game\Models\GameConsumeItem $model
- * @return self
- */
- public static function fromModel($model): self
- {
- $dto = new self();
- $dto->id = $model->id;
- $dto->groupId = $model->group_id;
- $dto->consumeType = $model->consume_type;
- $dto->targetId = $model->target_id;
- $dto->param1 = $model->param1;
- $dto->param2 = $model->param2;
- $dto->quantity = $model->quantity;
- $dto->extraData = $model->extra_data;
- return $dto;
- }
- }
|