8 lines
173 B
Plaintext
8 lines
173 B
Plaintext
import { MinLength,IsInt, MaxLength,Allow,Validate } from 'class-validator';
|
|
|
|
export class ModelName {
|
|
@MinLength(1,{
|
|
message: 'id参数必须有'
|
|
})
|
|
id: string;
|
|
} |