import { IsNotEmpty, MinLength, MaxLength, IsString, IsIn, IsOptional, Max, Min, ValidateNested, IsNumber, IsDefined } from 'class-validator'; import { ApiProperty } from '@nestjs/swagger'; import { Type } from 'class-transformer'; import { BaseEntity } from 'typeorm'; export class DelByGroupDto { @ApiProperty({ example: 1, description: '对话组Id', required: true }) groupId: number; }