import BaseService from "hbt-common/service/base.service" import type { AxiosResponse } from 'axios' import { ActionResult } from "hbt-common/models/actionResult"; export default class UserService extends BaseService{ constructor(){ super() } public getDetailsByIds(params: any,showLoading?):Promise>>{ const url = this.prefix.system+'/user/' + params.userId; return this.get(url,showLoading) } }