package com.izouma.awesomeadmin.dao; import com.izouma.awesomeadmin.model.ProductCommentImage; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; /** * Dao接口 */ @Repository("com.zoumaframe.dao.ProductCommentImageMapper") public interface ProductCommentImageMapper{ int deleteByPrimaryKey(Integer id); int insertSelective(ProductCommentImage record); ProductCommentImage selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ProductCommentImage record); List queryAllProductCommentImage(ProductCommentImage record); List queryProductCommentImageByPage(Map parameter); int delete(String id); ProductCommentImage queryProductCommentImage(ProductCommentImage record); List query(ProductCommentImage record); }