| 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.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<TestDeploy1> queryAllTestDeploy1(TestDeploy1 record);
- List<TestDeploy1> queryTestDeploy1ByPage(Map<String, Object> parameter);
- int delete(String id);
- TestDeploy1 queryTestDeploy1(TestDeploy1 record);
- List<TestDeploy1> query(TestDeploy1 record);
- }
|