whyclxw
2021-01-13 50b3be882658533f60f9cf7eda6e63d16d4b2918
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.TbUserInf;
import com.lxw.genereator.po.TbUserInfExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface TbUserInfMapper {
    long countByExample(TbUserInfExample example);
 
    int deleteByExample(TbUserInfExample example);
 
    int deleteByPrimaryKey(Long uid);
 
    int insert(TbUserInf record);
 
    int insertSelective(TbUserInf record);
 
    List<TbUserInf> selectByExample(TbUserInfExample example);
 
    TbUserInf selectByPrimaryKey(Long uid);
 
    int updateByExampleSelective(@Param("record") TbUserInf record, @Param("example") TbUserInfExample example);
 
    int updateByExample(@Param("record") TbUserInf record, @Param("example") TbUserInfExample example);
 
    int updateByPrimaryKeySelective(TbUserInf record);
 
    int updateByPrimaryKey(TbUserInf record);
}