add : PaymentCode And Customer Card

This commit is contained in:
2026-03-30 15:51:56 +03:00
parent ea179286a4
commit 42de277a1e
33 changed files with 1712 additions and 51 deletions

View File

@@ -0,0 +1,19 @@
import { ApiProperty, ApiPropertyOptional } from '@nestjs/swagger';
import { IsNotEmpty, IsOptional, IsString, MaxLength } from 'class-validator';
export class SubmitBankSlipDto {
@ApiProperty({
example: '556677',
description: 'Bank receipt tracking/reference number submitted by user.',
})
@IsString()
@IsNotEmpty()
@MaxLength(100)
trackingNumber: string;
@ApiPropertyOptional()
@IsOptional()
@IsString()
@MaxLength(500)
notes?: string;
}