14 lines
333 B
Handlebars
14 lines
333 B
Handlebars
import { PaginationDto } from '@/common/response';
|
|
import { IntersectionType } from '@nestjs/swagger';
|
|
import { IsOptional, IsString } from 'class-validator';
|
|
|
|
export class FindUserDto extends IntersectionType(PaginationDto) {
|
|
/**
|
|
* 用户昵称
|
|
* @example '绝弹'
|
|
*/
|
|
@IsOptional()
|
|
@IsString()
|
|
nickname?: string;
|
|
}
|