/* * @Description: 异常特征样本 接口 * @Author: tqh * @FilePath: \yuan-safety-manage-browser\src\api\monitoring\attackEvent/AbnormalSample.ts * @Date: 2022-08-31 17:20 */ import { http } from "@/utils/https"; /** * @description: 获取表格数据 * @param {number} page * @param {number} size */ export const getList = (data) => { return http.get("/networkSafeDetect/ddosAttackEvent/abnormalFeaturesSample/queryAllList", data); }; /** * @description: 导出 * @param {} */ export const exportRequest = (params) => { return http.post("/networkSafeDetect/ddosAttackEvent/abnormalFeaturesSample/download", params, { responseType: "blob", }); };