zhuo
2025-05-20 7eb190f13437b2e67788e9f4bdea725fdb165f01
src/api/structural/structureTestObjectPart.js
@@ -4,7 +4,7 @@
export function selectByTestObjectId(query) {
  return request({
    url: '/structureTestObjectPart/selectByTestObjectId',
    method: 'post',
    method: 'get',
    params: query
  })
}
@@ -28,7 +28,7 @@
export function deleteTestObjectPart(query) {
  return request({
    url: '/structureTestObjectPart/deleteTestObjectPart',
    method: 'post',
    method: 'delete',
    params: query
  })
}
@@ -36,7 +36,7 @@
export function selectByProductId(query) {
  return request({
    url: '/productPart/selectByProductId',
    method: 'post',
    method: 'get',
    params: query
  })
}
@@ -60,7 +60,7 @@
export function deleteProductPart(query) {
  return request({
    url: '/productPart/deleteProductPart',
    method: 'post',
    data: query
    method: 'delete',
    params: query
  })
}