- add excel export for history transaction

This commit is contained in:
Fadli
2022-12-29 13:17:38 +07:00
parent dbf7fa6af5
commit af797919fd
8 changed files with 16603 additions and 4718 deletions

View File

@@ -0,0 +1,8 @@
import { IsNotEmpty, IsOptional } from 'class-validator';
export class ExportTransactionDto {
@IsNotEmpty()
dateStart: string;
}