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 queryAllSystemVariable(SystemVariable record); List querySystemVariableByPage(Map parameter); int delete(SystemVariable record); SystemVariable querySystemVariable(SystemVariable record); List query(SystemVariable record); }