ProductImageMapper.java 782 B

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