比对式标准设备、被检设备、监测点功能

This commit is contained in:
caozehui
2025-07-09 20:07:23 +08:00
parent b5e5286411
commit 0e056a7de1
52 changed files with 2259 additions and 658 deletions

View File

@@ -32,12 +32,5 @@ public class TableGenController extends BaseController {
String methodDescribe = getMethodDescribe("genAdHarmonicTable");
tableGenService.genAdNonHarmonicTable(code);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, null, methodDescribe);
}
}

View File

@@ -13,6 +13,4 @@ public interface TableGenService {
* @param codeList
*/
void deleteTable(List<String> codeList);
}

View File

@@ -4,6 +4,7 @@ import com.njcn.gather.storage.mapper.TableGenMapper;
import com.njcn.gather.storage.service.TableGenService;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
@@ -76,6 +77,4 @@ public class TableGenServiceImpl implements TableGenService {
sb.deleteCharAt(sb.length() - 1);
tableGenMapper.genAdHarmonicTable("DROP TABLE IF EXISTS " + sb);
}
}