Files
admin-govern/src/api/types.ts
2023-12-26 10:28:29 +08:00

10 lines
181 B
TypeScript

// 登录
export interface LoginData {
username: string
password?: string
imageCode?: string
grant_type: string
verifyCode?: number
refresh_token?: string
}