mirror of
https://github.com/xiaoyiweb/YiAi.git
synced 2025-11-17 14:43:41 +08:00
10 lines
396 B
TypeScript
10 lines
396 B
TypeScript
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;
|
|
}
|