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);
|
}
|