package com.yckj.dao;
|
|
import com.yckj.bean.TbUserPaixiu;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.springframework.stereotype.Repository;
|
|
@Repository
|
@Mapper
|
public interface TbUserPaixiuDao {
|
int deleteByPrimaryKey(Long uid);
|
|
int insert(TbUserPaixiu record);
|
|
int insertSelective(TbUserPaixiu record);
|
|
TbUserPaixiu selectByPrimaryKey(Long uid);
|
|
int updateByPrimaryKeySelective(TbUserPaixiu record);
|
|
int updateByPrimaryKey(TbUserPaixiu record);
|
}
|