| 12345678910111213141516171819202122232425262728293031323334 |
- 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<ProductCommentImage> queryAllProductCommentImage(ProductCommentImage record);
- List<ProductCommentImage> queryProductCommentImageByPage(Map<String, Object> parameter);
- int delete(String id);
- ProductCommentImage queryProductCommentImage(ProductCommentImage record);
- List<ProductCommentImage> query(ProductCommentImage record);
- }
|