| | |
| | | package com.ycl.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ycl.mapper.NewsChannelDao; |
| | | import com.ycl.entity.NewsChannel; |
| | | import com.ycl.service.NewsChannelService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * 频道表(NewsChannel)表服务实现类 |
| | | * |
| | | * @author makejava |
| | | * @since 2022-11-16 16:52:30 |
| | | */ |
| | | @Service("newsChannelService") |
| | | public class NewsChannelServiceImpl extends ServiceImpl<NewsChannelDao, NewsChannel> implements NewsChannelService { |
| | | |
| | | } |
| | | |
| | | package com.ycl.service.impl;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
| | | import com.ycl.dao.NewsChannelDao;
|
| | | import com.ycl.entity.NewsChannel;
|
| | | import com.ycl.service.NewsChannelService;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | /**
|
| | | * 频道表(NewsChannel)表服务实现类
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:12:41
|
| | | */
|
| | | @Service("newsChannelService")
|
| | | public class NewsChannelServiceImpl extends ServiceImpl<NewsChannelDao, NewsChannel> implements NewsChannelService {
|
| | |
|
| | | }
|
| | |
|