update entity id

This commit is contained in:
2026-02-05 10:08:37 +03:30
parent d4ae03fa4f
commit 068286e505
37 changed files with 185 additions and 209 deletions
@@ -1,12 +1,12 @@
import { IsArray, IsNotEmpty, IsNumber } from 'class-validator';
import { IsArray, IsNotEmpty, IsNumber, IsString } from 'class-validator';
import { ApiProperty } from '@nestjs/swagger';
export class FindFieldsGroupDto {
@IsNotEmpty()
@IsArray()
@IsNumber({}, { each: true })
@IsString({ each: true })
@ApiProperty()
entityIds: number[]
entityIds: string[]
}