duhuizhe
2024-05-15 aa2c3d4deba76ade0958ff3ced88396e226a4964
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.nuvole.four.mapper;
 
import com.nuvole.base.domain.SysUser;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
 
import java.util.Map;
 
/**
 * @Desc: 系统用户查询mapper
 * @Author: dqh
 * @Date: 2024-04-15
 **/
public interface SysUserMapper {
 
    @Select("select * from sys_user where id = #{id}")
    SysUser getUserById(@Param("id") Long id);
}