src/main/java/com/nanometer/smartlab/dao/SysUserDao.xml
@@ -363,7 +363,7 @@
                and su.arp like #{arp}
            </if>
            <if test="name != null and name != ''">
                and su.name like #{name}
                and su.name like concat("%",#{name},"%")
            </if>
            <if test="departmentName != null and departmentName != ''">
                and su.department like concat("%",#{departmentName},"%")
@@ -387,6 +387,10 @@
        and su.email is not null
        and su.email != ''
    </select>
    <select id="getUserByName" resultMap="SysUser">
    select * from sys_user
    where name = #{name} and valid_flag = 1
    </select>
    <update id="updateUserPointBySelective" parameterType="java.util.Map">
    update sys_user set point=#{point}
    <where>