|  |  |  | 
|---|
|  |  |  | package com.matrix.system.score.service; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | 
|---|
|  |  |  | import com.matrix.system.score.dao.ScoreOrderDao; | 
|---|
|  |  |  | import com.matrix.system.score.entity.ScoreOrderEntity; | 
|---|
|  |  |  | import org.springframework.beans.factory.annotation.Autowired; | 
|---|
|  |  |  | import com.matrix.system.score.entity.ScoreOrder; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | 
|---|
|  |  |  | import org.springframework.stereotype.Service; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author wzy | 
|---|
|  |  |  | * @date 2021-02-22 | 
|---|
|  |  |  | **/ | 
|---|
|  |  |  | * @description 订单表 | 
|---|
|  |  |  | * @author jyy | 
|---|
|  |  |  | * @date 2021-02-26 15:26 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Service | 
|---|
|  |  |  | public class ScoreOrderService extends ServiceImpl<ScoreOrderDao, ScoreOrderEntity> { | 
|---|
|  |  |  | public class ScoreOrderService  extends ServiceImpl<ScoreOrderDao, ScoreOrder>{ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Autowired | 
|---|
|  |  |  | private ScoreOrderDao scoreOrderDao; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public void testMethod() { | 
|---|
|  |  |  | scoreOrderDao.selectById(1L); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|