| 123456789101112131415161718192021222324252627282930313233 |
- package com.izouma.awesomeadmin.dao;
- import java.util.*;
- import com.izouma.awesomeadmin.datasource.DataSource;
- import org.springframework.stereotype.Repository;
- import com.izouma.awesomeadmin.model.SystemVariable;
- /**
- * Dao接口
- */
- @Repository("com.zoumaframe.dao.SystemVariableMapper")
- public interface SystemVariableMapper{
- int deleteByPrimaryKey(Integer id);
- int insertSelective(SystemVariable record);
- SystemVariable selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(SystemVariable record);
- List<SystemVariable> queryAllSystemVariable(SystemVariable record);
- List<SystemVariable> querySystemVariableByPage(Map<String, Object> parameter);
- int delete(SystemVariable record);
- SystemVariable querySystemVariable(SystemVariable record);
- List<SystemVariable> query(SystemVariable record);
- }
|