ProductImageMapper.java 810 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.ProductImage;
  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. }