1234567891011121314151617181920212223242526 |
- package com.kmall.api.dao;
- import com.kmall.api.entity.CommentVo;
- import com.kmall.common.dao.BaseDao;
- import org.springframework.stereotype.Component;
- import java.util.List;
- import java.util.Map;
- /**
- * @author Scott
- * @email
- * @date 2017-08-11 09:14:26
- */
- @Component
- public interface ApiCommentMapper extends BaseDao<CommentVo> {
- int queryhasPicTotal(Map<String, Object> map);
- /**
- * 查询评价统计
- *
- * @param map
- * @return
- */
- List<Map> queryOrderTotal(Map<String, Object> map);
- }
|