import BaseService from "hbt-common/service/base.service" import type { AxiosResponse } from 'axios' import { ActionResult } from "hbt-common/models/actionResult"; export default class PublicityResumptionService extends BaseService{ constructor(){ super() } public selectByPage(params: any):Promise>>{ const url = this.prefix.prevention+'/worktask/report'; return this.get(url,params) } }