17 lines
299 B
TypeScript
17 lines
299 B
TypeScript
import { IsInt, Length, IsEmail, IsFQDN, IsDate, Min, Max} from "class-validator";
|
|
import { Service, Inject } from "typedi";
|
|
|
|
export class IndexModel {
|
|
|
|
@Length(10, 20,{
|
|
message: "标题必须10~20以内"
|
|
})
|
|
title:string;
|
|
|
|
|
|
@IsInt({
|
|
message: "必须是int类型"
|
|
})
|
|
id: number
|
|
|
|
} |