AimPlacePositionLevelMapper.java 973 B

123456789101112131415161718192021222324252627282930313233
  1. package com.izouma.awesomeadmin.dao;
  2. import java.util.*;
  3. import com.izouma.awesomeadmin.datasource.DataSource;
  4. import org.springframework.stereotype.Repository;
  5. import com.izouma.awesomeadmin.model.AimPlacePositionLevel;
  6. /**
  7. * Dao接口
  8. */
  9. @Repository("com.zoumaframe.dao.AimPlacePositionLevelMapper")
  10. public interface AimPlacePositionLevelMapper{
  11. int deleteByPrimaryKey(Integer id);
  12. int insertSelective(AimPlacePositionLevel record);
  13. AimPlacePositionLevel selectByPrimaryKey(Integer id);
  14. int updateByPrimaryKeySelective(AimPlacePositionLevel record);
  15. List<AimPlacePositionLevel> queryAllAimPlacePositionLevel(AimPlacePositionLevel record);
  16. List<AimPlacePositionLevel> queryAimPlacePositionLevelByPage(Map<String, Object> parameter);
  17. int delete(AimPlacePositionLevel record);
  18. AimPlacePositionLevel queryAimPlacePositionLevel(AimPlacePositionLevel record);
  19. List<AimPlacePositionLevel> query(AimPlacePositionLevel record);
  20. }