ludc
2025-01-16 5203081b68e3a8dc139d1807b2f8774e4a00a82a
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
  });
}