Merge pull request #21 from Alioth1017/master

fix:LoginDTO属性password类型错误
This commit is contained in:
cool-team-official 2021-04-21 09:20:57 +08:00 committed by GitHub
commit 59609b048b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ export class LoginDTO {
// 密码
@Rule(RuleType.string().required())
password: number;
password: string;
// 验证码ID
@Rule(RuleType.string().required())