| | |
| | | package com.ycl.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.entity.NewsChannel; |
| | | |
| | | /** |
| | | * 频道表(NewsChannel)表服务接口 |
| | | * |
| | | * @author makejava |
| | | * @since 2022-11-16 16:52:30 |
| | | */ |
| | | public interface NewsChannelService extends IService<NewsChannel> { |
| | | |
| | | } |
| | | |
| | | package com.ycl.service;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.ycl.entity.NewsChannel;
|
| | |
|
| | | /**
|
| | | * 频道表(NewsChannel)表服务接口
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:12:41
|
| | | */
|
| | | public interface NewsChannelService extends IService<NewsChannel> {
|
| | |
|
| | | }
|
| | |
|