fix some issues

This commit is contained in:
faris Aljohari
2024-03-11 10:34:03 +03:00
parent 35feab71bb
commit 65ff07b0e6
2 changed files with 0 additions and 33 deletions

View File

@ -1,32 +0,0 @@
import {
IsNotEmpty,
IsNumberString,
IsOptional,
IsString,
} from 'class-validator';
export class UserListDto {
@IsString()
@IsOptional()
schema: string;
@IsNumberString()
@IsNotEmpty()
page_no: number;
@IsNumberString()
@IsNotEmpty()
page_size: number;
@IsString()
@IsOptional()
username: string;
@IsNumberString()
@IsOptional()
start_time: number;
@IsNumberString()
@IsOptional()
end_time: number;
}

View File

@ -1,2 +1 @@
export * from './home.list.dto';
export * from './add.home.dto'; export * from './add.home.dto';