UNPKG

create-chuntianxiaozhu

Version:

春天小猪模板工具

13 lines (10 loc) 204 B
import { IsNotEmpty, IsNumber, Max } from 'class-validator'; export class PaginationDto { @IsNotEmpty() @IsNumber() pageNum: number; @IsNotEmpty() @IsNumber() @Max(30) pageSize: number; }