ProductCommentImageMapper.java 894 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.izouma.awesomeadmin.dao;
  2. import com.izouma.awesomeadmin.model.ProductCommentImage;
  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.ProductCommentImageMapper")
  10. public interface ProductCommentImageMapper{
  11. int deleteByPrimaryKey(Integer id);
  12. int insertSelective(ProductCommentImage record);
  13. ProductCommentImage selectByPrimaryKey(Integer id);
  14. int updateByPrimaryKeySelective(ProductCommentImage record);
  15. List<ProductCommentImage> queryAllProductCommentImage(ProductCommentImage record);
  16. List<ProductCommentImage> queryProductCommentImageByPage(Map<String, Object> parameter);
  17. int delete(String id);
  18. ProductCommentImage queryProductCommentImage(ProductCommentImage record);
  19. List<ProductCommentImage> query(ProductCommentImage record);
  20. }