package com.izouma.awesomeadmin.dao; import java.util.*; import com.izouma.awesomeadmin.datasource.DataSource; import org.springframework.stereotype.Repository; import com.izouma.awesomeadmin.model.AimPlacePositionLevel; /** * Dao接口 */ @Repository("com.zoumaframe.dao.AimPlacePositionLevelMapper") public interface AimPlacePositionLevelMapper{ int deleteByPrimaryKey(Integer id); int insertSelective(AimPlacePositionLevel record); AimPlacePositionLevel selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(AimPlacePositionLevel record); List queryAllAimPlacePositionLevel(AimPlacePositionLevel record); List queryAimPlacePositionLevelByPage(Map parameter); int delete(AimPlacePositionLevel record); AimPlacePositionLevel queryAimPlacePositionLevel(AimPlacePositionLevel record); List query(AimPlacePositionLevel record); }