动态创建表结构、入库

This commit is contained in:
caozehui
2026-04-14 14:51:33 +08:00
parent 97157a5ccf
commit 2293d81b71
22 changed files with 268 additions and 71 deletions

View File

@@ -12,4 +12,6 @@ public interface TableGenMapper {
void genNonHarmonicResultTable(@Param("code") String code, @Param("isContrast") boolean isContrast);
void genTable(@Param("tableSql") String tableSql);
}

View File

@@ -72,6 +72,10 @@
) COMMENT='非谐波类检测结果表';
</update>
<update id="genTable" parameterType="string">
${tableSql}
</update>
</mapper>