1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.stylefeng.guns.modular.system.service.impl;
|
| import com.stylefeng.guns.modular.system.model.TbComment;
| import com.stylefeng.guns.modular.system.dao.TbCommentMapper;
| import com.stylefeng.guns.modular.system.service.ITbCommentService;
| import com.baomidou.mybatisplus.service.impl.ServiceImpl;
| import org.springframework.stereotype.Service;
|
| import java.util.List;
|
| /**
| * <p>
| * 评论 服务实现类
| * </p>
| *
| * @author stylefeng
| * @since 2022-05-10
| */
| @Service
| public class TbCommentServiceImpl extends ServiceImpl<TbCommentMapper, TbComment> implements ITbCommentService {
|
|
| @Override
| public List<TbComment> getList(Integer type, Integer orderId, Integer pid, Integer pageNum, Integer size) {
| return this.baseMapper.getList(type,orderId,pid,pageNum,size);
| }
| }
|
|