ludc
2024-09-13 8c9f15cc8a3c3e6f4a4404574d39732b624289a6
Source/plt-web/plt-web-ui/src/api/modeling/businessType/api.js
@@ -98,3 +98,22 @@
    params
  });
}
// 删除索引
export function delIndex(params) {
  return request({
    url: "/api/btmTypeController/delIndex",
    method: "delete",
    params
  });
}
// 创建索引
export function addIndex(params) {
  return request({
    url: "/api/btmTypeController/addIndex",
    method: "post",
    data:params
  });
}