package com.izouma.awesomeadmin.dao; import java.util.*; import com.izouma.awesomeadmin.datasource.DataSource; import com.izouma.awesomeadmin.model.HouseInfo; import org.springframework.stereotype.Repository; import com.izouma.awesomeadmin.model.PlayerInfo; /** * Dao接口 */ @Repository("com.zoumaframe.dao.PlayerInfoMapper") public interface PlayerInfoMapper{ int deleteByPrimaryKey(Integer id); int insertSelective(PlayerInfo record); PlayerInfo selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(PlayerInfo record); List queryAllPlayerInfo(PlayerInfo record); List queryPlayerInfoByPage(Map parameter); int delete(PlayerInfo record); PlayerInfo queryPlayerInfo(PlayerInfo record); List query(PlayerInfo record); List queryPlayerInfoRankByPage(Map parameter); int userRank(PlayerInfo record); List queryNoStartPlayer(HouseInfo record); }