mybatis 세팅됨

This commit is contained in:
Suh
2024-01-02 17:10:05 +09:00
parent bf8a470a94
commit 2864bb89d4
14 changed files with 174 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTO Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.no1.wms.authority.AuthorityMapper">
<select id="selectById" resultType="AuthorityDto">
SELECT * FROM authority WHERE id = #{id}
</select>
</mapper>