ProductCommentMapper.java 869 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.izouma.awesomeadmin.dao;
  2. import com.izouma.awesomeadmin.model.ProductComment;
  3. import org.springframework.stereotype.Repository;
  4. import java.util.List;
  5. import java.util.Map;
  6. /**
  7. * Dao接口
  8. */
  9. @Repository("com.zoumaframe.dao.ProductCommentMapper")
  10. public interface ProductCommentMapper {
  11. int deleteByPrimaryKey(Integer id);
  12. int insertSelective(ProductComment record);
  13. ProductComment selectByPrimaryKey(Integer id);
  14. int updateByPrimaryKeySelective(ProductComment record);
  15. List<ProductComment> queryAllProductComment(ProductComment record);
  16. List<ProductComment> queryProductCommentByPage(Map<String, Object> parameter);
  17. int delete(String id);
  18. ProductComment queryProductComment(ProductComment record);
  19. List<ProductComment> query(ProductComment record);
  20. ProductComment getCount(ProductComment record);
  21. }