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