add Ep receipt

This commit is contained in:
2025-09-19 17:15:05 -06:00
parent 2f1b0cc76b
commit 0a27caf7ed
24 changed files with 160 additions and 148 deletions
+17
View File
@@ -0,0 +1,17 @@
import { Type } from 'class-transformer';
import { IsDate, IsNumber, IsString } from 'class-validator';
export class CreateReciboDto {
@IsNumber()
id_cuenta: number;
@IsNumber()
monto: number;
@IsString()
folio_recibo: string;
@IsDate()
@Type(() => Date)
fecha_recibo: Date;
}