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

ReportDTO.php 539B

12345678910111213141516171819202122
  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 ?AgingBucketDTO $agingSummary = null,
  13. public array $fields = [],
  14. public ?string $reportType = null,
  15. public ?CashFlowOverviewDTO $overview = null,
  16. public ?Carbon $startDate = null,
  17. public ?Carbon $endDate = null,
  18. ) {}
  19. }