refactor: atualizações e remoção de módulos não utilizados

This commit is contained in:
joelson brito
2025-11-10 09:39:44 -03:00
parent ed68b7e865
commit b8630adf92
121 changed files with 3507 additions and 3531 deletions

View File

@@ -39,7 +39,7 @@ export class PaymentDto {
@ApiProperty({
description: 'Valor do pagamento',
example: 1000.00,
example: 1000.0,
})
amount: number;
@@ -64,4 +64,4 @@ export class PaymentDto {
constructor(partial: Partial<PaymentDto>) {
Object.assign(this, partial);
}
}
}