/** 用户信息 */ export interface UserInfo { /** 用户id */ userId: string; /** 用户名 */ userName: string; /** 用户手机号 */ userPhone: string; }