feat:添加银行

This commit is contained in:
苏竹红
2025-04-21 16:13:21 +08:00
parent 62aad29949
commit 87b015f782
7 changed files with 59 additions and 0 deletions

View File

@@ -89,4 +89,13 @@
order by name
</select>
<select id="queryByName" resultMap="BaseResultMap">
select * from xfsg_banktype
where code is not null and name is not null and name = #{name}
</select>
<select id="queryMaxCode" resultType="java.lang.String">
select max(code) from xfsg_banktype
</select>
</mapper>