xuekang
2024-05-13 15a0280ae9e7db96fdf0744c722d214d2cb5a0e5
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);
}