whyclxw
2021-01-13 4f70fde4d5ba46053045369cb25f1f91082d5683
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
28
29
30
package com.lxw.genereator.mapper;
 
import com.lxw.genereator.po.User_inf;
import com.lxw.genereator.po.User_infExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface User_infMapper {
    long countByExample(User_infExample example);
 
    int deleteByExample(User_infExample example);
 
    int deleteByPrimaryKey(Long uid);
 
    int insert(User_inf record);
 
    int insertSelective(User_inf record);
 
    List<User_inf> selectByExample(User_infExample example);
 
    User_inf selectByPrimaryKey(Long uid);
 
    int updateByExampleSelective(@Param("record") User_inf record, @Param("example") User_infExample example);
 
    int updateByExample(@Param("record") User_inf record, @Param("example") User_infExample example);
 
    int updateByPrimaryKeySelective(User_inf record);
 
    int updateByPrimaryKey(User_inf record);
}