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

AccountTransactionDTO.php 403B

12345678910111213141516171819
  1. <?php
  2. namespace App\DTO;
  3. use App\Enums\Accounting\TransactionType;
  4. class AccountTransactionDTO
  5. {
  6. public function __construct(
  7. public ?int $id,
  8. public string $date,
  9. public string $description,
  10. public string $debit,
  11. public string $credit,
  12. public string $balance,
  13. public ?TransactionType $type,
  14. public ?string $tableAction,
  15. ) {}
  16. }