SystemVariableMapper.java 854 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.SystemVariable;
  6. /**
  7. * Dao接口
  8. */
  9. @Repository("com.zoumaframe.dao.SystemVariableMapper")
  10. public interface SystemVariableMapper{
  11. int deleteByPrimaryKey(Integer id);
  12. int insertSelective(SystemVariable record);
  13. SystemVariable selectByPrimaryKey(Integer id);
  14. int updateByPrimaryKeySelective(SystemVariable record);
  15. List<SystemVariable> queryAllSystemVariable(SystemVariable record);
  16. List<SystemVariable> querySystemVariableByPage(Map<String, Object> parameter);
  17. int delete(SystemVariable record);
  18. SystemVariable querySystemVariable(SystemVariable record);
  19. List<SystemVariable> query(SystemVariable record);
  20. }