修改数据类型.

This commit is contained in:
lijiahang
2023-09-25 16:07:52 +08:00
parent 09610b3c82
commit 3c930a1b8b
12 changed files with 53 additions and 84 deletions

View File

@@ -4,8 +4,8 @@ import axios from 'axios';
* 登陆请求
*/
export interface LoginRequest {
username: string;
password: string;
username: string | undefined;
password: string | undefined;
}
/**