20 lines
379 B
TypeScript
20 lines
379 B
TypeScript
import { IsDefined, IsUUID } from 'class-validator';
|
|
|
|
import { DtoValidation } from '@/modules/core/decorators';
|
|
|
|
/**
|
|
* 批量恢复验证
|
|
*/
|
|
@DtoValidation()
|
|
export class RestoreDto {
|
|
@IsUUID(undefined, {
|
|
each: true,
|
|
message: 'ID格式错误',
|
|
})
|
|
@IsDefined({
|
|
each: true,
|
|
message: 'ID必须指定',
|
|
})
|
|
ids: string[] = [];
|
|
}
|