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