24 lines
611 B
XML
24 lines
611 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
<mapper namespace="com.itn.admin.itn.user.mapper.UserMapper">
|
|
|
|
<select id="findAll" resultType="userVO">
|
|
SELECT
|
|
uniq_id
|
|
, user_id
|
|
, user_pw
|
|
, user_name
|
|
, LAST_UPDT_PNTTM
|
|
, role
|
|
FROM
|
|
users
|
|
</select>
|
|
|
|
<update id="updateRole" parameterType="userVO">
|
|
UPDATE users SET role = #{role} WHERE uniq_id = #{uniqId}
|
|
</update>
|
|
|
|
</mapper> |