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

ReportCategoryDTO.php 191B

123456789101112
  1. <?php
  2. namespace App\DTO;
  3. class ReportCategoryDTO
  4. {
  5. public function __construct(
  6. public array $header,
  7. public array $data,
  8. public array $summary = [],
  9. ) {}
  10. }