import type { BaseUser } from './types' import { post } from '@af-mobile-client-vue3/services/restTools' /** * 获取用户详情信息(通用接口) * 各项目需要在自己的后端实现这个接口 */ export function getCacheUserDetail( f_userinfo_id: string, ): Promise { return post('/api/af-revenue/logic/mobile_getCacheUserDetail', { f_userinfo_id, }) } /** * 获取用户最近各种业务的时间(通用接口) * 各项目可选实现这个接口 */ export function getRecentBusinessTime( f_userinfo_id: string, ): Promise> { return post('/api/af-revenue/logic/mobile_getRecentBusinessTime', { f_userinfo_id }) }