From 36a143b19cc919c9a814d065029b2340ef7330d7 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 13 Jun 2022 14:56:25 +0800 Subject: [PATCH] 20220606 --- src/main/java/com/xcong/farmer/cms/modules/system/service/IArticleService.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/farmer/cms/modules/system/service/IArticleService.java b/src/main/java/com/xcong/farmer/cms/modules/system/service/IArticleService.java index 4c7838e..8f353ef 100644 --- a/src/main/java/com/xcong/farmer/cms/modules/system/service/IArticleService.java +++ b/src/main/java/com/xcong/farmer/cms/modules/system/service/IArticleService.java @@ -4,6 +4,7 @@ import com.xcong.farmer.cms.common.response.Result; import com.xcong.farmer.cms.modules.system.dto.AdminAddArticleDto; import com.xcong.farmer.cms.modules.system.dto.AdminArticleDto; +import com.xcong.farmer.cms.modules.system.dto.AdminDeleteDto; import com.xcong.farmer.cms.modules.system.dto.AdminUpdateArticleDto; import com.xcong.farmer.cms.modules.system.entity.ArticleEntity; @@ -18,4 +19,10 @@ Result seeArticleInfo(Long id); Result updateArticle(AdminUpdateArticleDto adminUpdateArticleDto); + + Result delObjs(AdminDeleteDto adminDeleteDto); + + Result updateStatusOn(Long id); + + Result updateStatusOff(Long id); } -- Gitblit v1.9.1