package com.izouma.awesomeadmin.dao; import java.util.*; import com.izouma.awesomeadmin.datasource.DataSource; import org.springframework.stereotype.Repository; import com.izouma.awesomeadmin.model.TestDeploy1; /** * Dao接口 */ @Repository("com.zoumaframe.dao.TestDeploy1Mapper") public interface TestDeploy1Mapper{ int deleteByPrimaryKey(Integer id); int insertSelective(TestDeploy1 record); TestDeploy1 selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(TestDeploy1 record); List queryAllTestDeploy1(TestDeploy1 record); List queryTestDeploy1ByPage(Map parameter); int delete(String id); TestDeploy1 queryTestDeploy1(TestDeploy1 record); List query(TestDeploy1 record); }