Updated SPCLCOMMODITY_DTO and SPCLCOUNTRY_DTO to required: false

This commit is contained in:
gitadmin 2025-11-12 12:10:04 +00:00
parent 9b41ed24a4
commit 36456f7915

View File

@ -21,13 +21,13 @@ export class FEES_DTO {
} }
export class SPCLCOMMODITY_DTO { export class SPCLCOMMODITY_DTO {
@ApiProperty({ required: true }) @ApiProperty({ required: false })
@IsString() @IsString()
P_SPCLCOMMODITY: string; P_SPCLCOMMODITY: string;
} }
export class SPCLCOUNTRY_DTO { export class SPCLCOUNTRY_DTO {
@ApiProperty({ required: true }) @ApiProperty({ required: false })
@IsString() @IsString()
P_SPCLCOUNTRY: string; P_SPCLCOUNTRY: string;
} }