Added IsOptinal to P_SPCLCOUNTRY

This commit is contained in:
gitadmin 2025-11-12 12:20:32 +00:00
parent 3be2a9c289
commit 203caabe5e

View File

@ -29,8 +29,9 @@ export class SPCLCOMMODITY_DTO {
export class SPCLCOUNTRY_DTO {
@ApiProperty({ required: false })
@IsOptional()
@IsString({ message: 'Property P_SPCLCOUNTRY must be a string' })
P_SPCLCOUNTRY: string;
P_SPCLCOUNTRY?: string | null;
}
export class RATE_DTO {