| | |
| | | package com.yeshi.fanli.dao.mybatis; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.entity.bus.user.BindingAccount; |
| | | |
| | | public interface BindingAccountMapper { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(BindingAccount record); |
| | | |
| | | int insertSelective(BindingAccount record); |
| | | |
| | | BindingAccount selectByPrimaryKey(Long id); |
| | | |
| | | List<BindingAccount> selectByAccount(String account); |
| | | |
| | | BindingAccount selectByUidAndType(@Param("uid") Long uid, @Param("type") int type); |
| | | |
| | | List<BindingAccount> selectByUid(Long uid); |
| | | |
| | | int updateByPrimaryKeySelective(BindingAccount record); |
| | | |
| | | int updateByPrimaryKey(BindingAccount record); |
| | | package com.yeshi.fanli.dao.mybatis;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.BindingAccount;
|
| | |
|
| | | public interface BindingAccountMapper {
|
| | |
|
| | | int deleteByPrimaryKey(Long id);
|
| | |
|
| | | int insert(BindingAccount record);
|
| | |
|
| | | int insertSelective(BindingAccount record);
|
| | |
|
| | | BindingAccount selectByPrimaryKey(Long id);
|
| | | |
| | | List<BindingAccount> selectByAccount(String account);
|
| | |
|
| | | BindingAccount selectByUidAndType(@Param("uid") Long uid, @Param("type") int type);
|
| | |
|
| | | List<BindingAccount> selectByUid(Long uid);
|
| | |
|
| | | int updateByPrimaryKeySelective(BindingAccount record);
|
| | |
|
| | | int updateByPrimaryKey(BindingAccount record);
|
| | | } |