1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.dy.pipIrrGlobal.daoDemo;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoDemo.DemoUser;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
@Mapper
public interface DemoUserMapper extends BaseMapper<DemoUser> {
 
    int putin(DemoUser user) ;
 
    DemoUser selectById1(@Param("id") Long id);
 
    DemoUser selectById2(@Param("id") Long id);
 
    DemoUser selectById3(@Param("id") Long id);
 
    DemoUser selectById4(@Param("id") Long id);
 
    DemoUser selectById5(@Param("id") Long id);
 
    List<DemoUser> selectByRoleId(@Param("roleId") Long roleId) ;
}