您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ReportDTO.php 486B

123456789101112131415161718192021
  1. <?php
  2. namespace App\DTO;
  3. use Illuminate\Support\Carbon;
  4. class ReportDTO
  5. {
  6. public function __construct(
  7. /**
  8. * @var AccountCategoryDTO[]
  9. */
  10. public array $categories,
  11. public ?AccountBalanceDTO $overallTotal = null,
  12. public array $fields = [],
  13. public ?string $reportType = null,
  14. public ?CashFlowOverviewDTO $overview = null,
  15. public ?Carbon $startDate = null,
  16. public ?Carbon $endDate = null,
  17. ) {}
  18. }