feat: 东区缴费分支初始化

This commit is contained in:
2025-05-15 15:08:15 +08:00
parent 39f3acc15f
commit bafd4aa3ab
261 changed files with 3751 additions and 9416 deletions
@@ -38,21 +38,4 @@
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = #{schemaName} AND TABLE_NAME = #{tableName}
</select>
<!-- 获取单个数据表 -->
<select id="getTable" resultType="com.yida.data.common.core.entity.system.Table">
SELECT
CREATE_TIME createTime,
UPDATE_TIME updateTime,
TABLE_ROWS dataRows,
TABLE_NAME name,
TABLE_COMMENT remark
FROM
information_schema.TABLES
WHERE
TABLE_SCHEMA = #{schemaName}
<if test="tableName != null and tableName != ''">
AND TABLE_NAME = #{tableName}
</if>
</select>
</mapper>