9 lines
417 B
XML
9 lines
417 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.emotionmuseum.user.mapper.UserMapper">
|
|
|
|
<!-- 更新最后活跃时间 -->
|
|
<update id="updateLastActiveTime"> UPDATE user SET last_active_time = NOW(), update_time = NOW()
|
|
WHERE id = #{userId} AND is_deleted = 0 </update>
|
|
|
|
</mapper> |