Files
ClassContent/历届学生/陈尧瑞/OfficialWebsite/src/model/IndexModel.ts
2024-09-27 02:06:13 +08:00

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
}