44323
2024-04-23 16b704d18a875d1fb63827aaa507790ba2bef5be
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
28
29
30
31
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.OrderCourseMapper;
import com.stylefeng.guns.modular.system.dto.OrderQuery;
import com.stylefeng.guns.modular.system.model.OrderCourse;
import com.stylefeng.guns.modular.system.service.IOrderCourseService;
import com.stylefeng.guns.modular.system.vo.OrderListVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * <p>
 * 用户·订单表 服务实现类
 * </p>
 *
 * @author 无关风月
 * @since 2024-02-06
 */
@Service
public class OrderCourseServiceImpl extends ServiceImpl<OrderCourseMapper, OrderCourse> implements IOrderCourseService {
 
    @Autowired
    private OrderCourseMapper orderCourseMapper;
    @Override
    public List<OrderListVO> selectOrderCourse(OrderQuery query) {
        return  orderCourseMapper.selectOrderCourse(query);
    }
}