Files
admin-govern/src/api/types.ts

10 lines
181 B
TypeScript
Raw Normal View History

2023-12-26 08:45:15 +08:00
// 登录
export interface LoginData {
2023-12-26 10:28:29 +08:00
username: string
password?: string
imageCode?: string
grant_type: string
verifyCode?: number
refresh_token?: string
2023-12-26 08:45:15 +08:00
}