Helius
2022-07-02 97641c088c44dd60f63e697466c73613a1c63262
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,14 @@
    Result seeArticleInfo(Long id);
    Result updateArticle(AdminUpdateArticleDto adminUpdateArticleDto);
    Result delObjs(AdminDeleteDto adminDeleteDto);
    Result updateStatusOn(Long id);
    Result updateStatusOff(Long id);
    Result updateIstop(Long id);
    Result updateIstopOff(Long id);
}