This commit is contained in:
vastxie
2025-05-31 02:28:46 +08:00
parent 0f7adc5c65
commit 86e2eecc1f
1808 changed files with 183083 additions and 86701 deletions

View File

@@ -0,0 +1,9 @@
import { ApiProperty } from '@nestjs/swagger';
import { ArrayMinSize, IsArray } from 'class-validator';
export class BatchDelCramiDto {
@ApiProperty({ example: 1, description: '要删除的套餐Ids', required: true })
@IsArray({ message: '参数类型为数组' })
@ArrayMinSize(1, { message: '最短长度为1' })
ids: number[];
}