import BaseService from "hbt-common/service/base.service" import type { AxiosResponse } from 'axios' import { ActionResult } from "hbt-common/models/actionResult"; export default class HiddendangerResumptionService extends BaseService{ constructor(){ super() } public selectByPage(params: any):Promise>>{ const url = this.prefix.prevention+'/execute/list'; return this.get(url,params) } //周期 public selectCycleData(params: any):Promise>>{ const url = this.prefix.prevention+'/worktask/cycle'; return this.get(url,params) } // 批量删除 public deleteByIds(params:any,showLoading?):Promise>>{ const url = this.prefix.prevention+'/execute'; return this.deleteBatch(url,params,{},showLoading) } }