feat: add generated code

This commit is contained in:
aid-orchestrator
2026-04-22 05:46:54 +00:00
parent af4137b0b0
commit ce79d289f3
31 changed files with 892 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsOptional, ValidateNested } from 'class-validator';
import { Type } from 'class-transformer';
import { PageRequestDto } from '../../common/dto/page-request.dto';
export class EquipmentListRequestDto {
@ApiProperty({ description: 'Фильтр', required: false })
@IsOptional()
filter?: any; // Using any since DTO.Filter is not defined in the schema
@ApiProperty({ description: 'Параметры пагинации' })
@ValidateNested()
@Type(() => PageRequestDto)
page: PageRequestDto;
}