forked from xxhjsb/hbt-prevention-ui
16 lines
634 B
TypeScript
16 lines
634 B
TypeScript
import BaseService from "hbt-common/service/base.service"
|
|
import type { AxiosResponse } from 'axios'
|
|
import { ActionResult } from "hbt-common/models/actionResult";
|
|
export default class IdentifyService extends BaseService<any>{
|
|
constructor(){
|
|
super()
|
|
}
|
|
public selectByPage(params: any):Promise<AxiosResponse<ActionResult<any>>>{
|
|
const url = this.prefix.system+'/user/list';
|
|
return this.get(url,params,true)
|
|
}
|
|
public deleteByIds(params):Promise<AxiosResponse<ActionResult<any>>>{
|
|
const url = this.prefix.system+'/user/list';
|
|
return this.deleteBatch(url,params,{},true)
|
|
}
|
|
} |