DataSourceInfoMapper.java 876 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.izouma.awesomeadmin.dao;
  2. import com.izouma.awesomeadmin.model.DataSourceInfo;
  3. import org.springframework.stereotype.Component;
  4. import org.springframework.stereotype.Repository;
  5. import java.util.List;
  6. import java.util.Map;
  7. /**
  8. * Dao接口
  9. */
  10. @Component
  11. @Repository("com.zoumaframe.dao.DataSourceInfoMapper")
  12. public interface DataSourceInfoMapper {
  13. int deleteByPrimaryKey(Integer id);
  14. int insertSelective(DataSourceInfo record);
  15. DataSourceInfo selectByPrimaryKey(Integer id);
  16. int updateByPrimaryKeySelective(DataSourceInfo record);
  17. List<DataSourceInfo> queryAllDataSourceInfo(DataSourceInfo record);
  18. List<DataSourceInfo> queryDataSourceInfoByPage(Map<String, Object> parameter);
  19. int delete(String id);
  20. DataSourceInfo queryDataSourceInfo(DataSourceInfo record);
  21. List<DataSourceInfo> query(DataSourceInfo record);
  22. }