mirror of
				https://github.com/dromara/RuoYi-Vue-Plus.git
				synced 2025-11-04 08:13:44 +08:00 
			
		
		
		
	update 删除多余 参数类型
This commit is contained in:
		@@ -53,13 +53,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 | 
			
		||||
        <result property="updateTime"     column="update_time"    />
 | 
			
		||||
    </resultMap>
 | 
			
		||||
 | 
			
		||||
    <select id="selectPageDbTableList" parameterType="GenTable" resultMap="GenTableResult">
 | 
			
		||||
    <select id="selectPageDbTableList" resultMap="GenTableResult">
 | 
			
		||||
        select table_name, table_comment, create_time, update_time
 | 
			
		||||
        from information_schema.tables
 | 
			
		||||
        ${ew.getCustomSqlSegment}
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectDbTableList" parameterType="GenTable" resultMap="GenTableResult">
 | 
			
		||||
    <select id="selectDbTableList" resultMap="GenTableResult">
 | 
			
		||||
        select table_name, table_comment, create_time, update_time
 | 
			
		||||
        from information_schema.tables
 | 
			
		||||
        ${ew.getCustomSqlSegment}
 | 
			
		||||
 
 | 
			
		||||
@@ -82,7 +82,7 @@
 | 
			
		||||
            left join sys_role r on r.role_id = ur.role_id
 | 
			
		||||
    </sql>
 | 
			
		||||
 | 
			
		||||
    <select id="selectPageUserList" parameterType="SysUser" resultMap="SysUserResult">
 | 
			
		||||
    <select id="selectPageUserList" resultMap="SysUserResult">
 | 
			
		||||
        select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.password, u.sex,
 | 
			
		||||
        u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from
 | 
			
		||||
        sys_user u
 | 
			
		||||
@@ -90,7 +90,7 @@
 | 
			
		||||
        ${ew.getCustomSqlSegment}
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
 | 
			
		||||
    <select id="selectUserList" resultMap="SysUserResult">
 | 
			
		||||
        select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.password, u.sex,
 | 
			
		||||
        u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from
 | 
			
		||||
        sys_user u
 | 
			
		||||
@@ -98,7 +98,7 @@
 | 
			
		||||
        ${ew.getCustomSqlSegment}
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectAllocatedList" parameterType="SysUser" resultMap="SysUserResult">
 | 
			
		||||
    <select id="selectAllocatedList" resultMap="SysUserResult">
 | 
			
		||||
        select distinct u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.phonenumber, u.status, u.create_time
 | 
			
		||||
        from sys_user u
 | 
			
		||||
             left join sys_dept d on u.dept_id = d.dept_id
 | 
			
		||||
@@ -107,7 +107,7 @@
 | 
			
		||||
        ${ew.getCustomSqlSegment}
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <select id="selectUnallocatedList" parameterType="SysUser" resultMap="SysUserResult">
 | 
			
		||||
    <select id="selectUnallocatedList" resultMap="SysUserResult">
 | 
			
		||||
        select distinct u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.phonenumber, u.status, u.create_time
 | 
			
		||||
        from sys_user u
 | 
			
		||||
             left join sys_dept d on u.dept_id = d.dept_id
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user