修改数据类型.

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;
}
/**

View File

@@ -44,11 +44,10 @@ export interface RoleQueryResponse extends TableData {
name?: string;
code?: string;
status?: number;
// FIXME 恢复
createTime?: number;
updateTime?: number;
creator?: string;
updater?: string;
createTime: number;
updateTime: number;
creator: string;
updater: string;
}
/**