export interface loginRequest { //用户名 username: string password: string firstName: string } export interface loginResponse { //密钥 token: string }