| 123456789101112131415161718192021222324252627282930313233343536 |
- package com.izouma.awesomeadmin.dao;
- import com.izouma.awesomeadmin.model.ProductComment;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- import java.util.Map;
- /**
- * Dao接口
- */
- @Repository("com.zoumaframe.dao.ProductCommentMapper")
- public interface ProductCommentMapper {
- int deleteByPrimaryKey(Integer id);
- int insertSelective(ProductComment record);
- ProductComment selectByPrimaryKey(Integer id);
- int updateByPrimaryKeySelective(ProductComment record);
- List<ProductComment> queryAllProductComment(ProductComment record);
- List<ProductComment> queryProductCommentByPage(Map<String, Object> parameter);
- int delete(String id);
- ProductComment queryProductComment(ProductComment record);
- List<ProductComment> query(ProductComment record);
- ProductComment getCount(ProductComment record);
- }
|