From c435158ed1ff587939314e84347ee6e38e8f25ec Mon Sep 17 00:00:00 2001 From: fangyuan <527392886@qq.com> Date: 星期一, 21 十一月 2022 13:49:59 +0800 Subject: [PATCH] 接口调整及文件上传接口 --- ycl-platform/src/main/java/com/ycl/service/NewsChannelService.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ycl-platform/src/main/java/com/ycl/service/NewsChannelService.java b/ycl-platform/src/main/java/com/ycl/service/NewsChannelService.java index 3cddbf9..1674242 100644 --- a/ycl-platform/src/main/java/com/ycl/service/NewsChannelService.java +++ b/ycl-platform/src/main/java/com/ycl/service/NewsChannelService.java @@ -2,14 +2,19 @@ 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:12:41 + * @since 2022-11-17 11:38:27 */ public interface NewsChannelService extends IService<NewsChannel> { + int insertOneChannel(@Param("entity") NewsChannel entity); + List<NewsChannel> selectAllChannel(); } -- Gitblit v1.8.0