| | |
| | | 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;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | /**
|
| | | * 频道表(NewsChannel)表服务接口
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:38:27
|
| | | */
|
| | | public interface NewsChannelService extends IService<NewsChannel> {
|
| | | int insertOneChannel(@Param("entity") NewsChannel entity);
|
| | |
|
| | | List<NewsChannel> selectAllChannel();
|
| | | }
|
| | |
|