|  |  | 
 |  |  |   }); | 
 |  |  | } | 
 |  |  |  | 
 |  |  | /** 查询企业用户登录信息 GET /api/user/auth/getEnterpriseLoginInfo */ | 
 |  |  | export async function getEnterpriseLoginInfo( | 
 |  |  |   // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
 |  |  |   params: API.APIgetEnterpriseLoginInfoParams, | 
 |  |  |   options?: API.RequestConfig | 
 |  |  | ) { | 
 |  |  |   return request<API.GetEnterpriseLoginInfoQueryResult>('/api/user/auth/getEnterpriseLoginInfo', { | 
 |  |  |     method: 'GET', | 
 |  |  |     params: { | 
 |  |  |       ...params, | 
 |  |  |       request: undefined, | 
 |  |  |       ...params['request'], | 
 |  |  |     }, | 
 |  |  |     ...(options || {}), | 
 |  |  |   }); | 
 |  |  | } | 
 |  |  |  | 
 |  |  | /** 查询个人用户登录信息 GET /api/user/auth/getPersonalLoginInfo */ | 
 |  |  | export async function getPersonalLoginInfo( | 
 |  |  |   // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |