From 700fe50d81969f8b2ba0fcbef10ccc5ca2e4558b Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期三, 28 八月 2024 11:22:39 +0800
Subject: [PATCH] 修改了时间格式
---
ruoyi-system/src/main/resources/mapper/system/SysUserRoleMapper.xml | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/resources/mapper/system/SysUserRoleMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysUserRoleMapper.xml
index dd72689..46def22 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysUserRoleMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysUserRoleMapper.xml
@@ -9,6 +9,10 @@
<result property="roleId" column="role_id" />
</resultMap>
+ <select id="selectUserById" resultType="SysUserRole" >
+ select * from sys_user_role where user_id=#{userId}
+ </select>
+
<delete id="deleteUserRoleByUserId" parameterType="Long">
delete from sys_user_role where user_id=#{userId}
</delete>
--
Gitblit v1.9.1