南京地铁检修用FBS项目(springboot-mybatis框架)
rzg
2020-10-21 498770edd4aebe9bb22f0d94473132606cc483bd
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
31
32
33
34
35
package com.yckj.dao;
 
import com.yckj.bean.TbUserLog;
import com.yckj.bean.TbUserLogExample;
import java.util.List;
 
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
@Repository
@Mapper
public interface TbUserLogDao {
    long countByExample(TbUserLogExample example);
 
    int deleteByExample(TbUserLogExample example);
 
    int deleteByPrimaryKey(Long num);
 
    int insert(TbUserLog record);
 
    int insertSelective(TbUserLog record);
 
    List<TbUserLog> selectByExample(TbUserLogExample example);
 
    TbUserLog selectByPrimaryKey(Long num);
 
    int updateByExampleSelective(@Param("record") TbUserLog record, @Param("example") TbUserLogExample example);
 
    int updateByExample(@Param("record") TbUserLog record, @Param("example") TbUserLogExample example);
 
    int updateByPrimaryKeySelective(TbUserLog record);
 
    int updateByPrimaryKey(TbUserLog record);
}