南京地铁检修用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
package com.yckj.dao;
 
import com.yckj.bean.TbUserInf;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Repository
@Mapper
public interface TbUserInfDao {
    int deleteByPrimaryKey(Long uid);
 
    int insert(TbUserInf record);
 
    int insertSelective(TbUserInf record);
 
    TbUserInf selectByPrimaryKey(Long uid);
 
    int updateByPrimaryKeySelective(TbUserInf record);
 
    int updateByPrimaryKey(TbUserInf record);
}