From 6f75cf8481769e0707981519714600cd97e8296c Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 03 Mar 2021 18:26:43 +0800 Subject: [PATCH] 20210321 后台数据修改 --- src/main/java/com/xcong/excoin/modules/helpCenter/service/HelpCenterService.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/helpCenter/service/HelpCenterService.java b/src/main/java/com/xcong/excoin/modules/helpCenter/service/HelpCenterService.java index 06f8f1c..e6f73f4 100644 --- a/src/main/java/com/xcong/excoin/modules/helpCenter/service/HelpCenterService.java +++ b/src/main/java/com/xcong/excoin/modules/helpCenter/service/HelpCenterService.java @@ -9,6 +9,7 @@ import com.xcong.excoin.common.entity.QueryRequest; import com.xcong.excoin.modules.helpCenter.entity.HelpCenterArticleEntity; import com.xcong.excoin.modules.helpCenter.entity.HelpCenterNoticeEntity; +import com.xcong.excoin.modules.helpCenter.entity.HelpCenterTypeEntity; public interface HelpCenterService extends IService<HelpCenterNoticeEntity> { @@ -26,4 +27,10 @@ FebsResponse helpCenterUsConfirm(@Valid HelpCenterArticleEntity helpCenterArticleEntity); + IPage<HelpCenterTypeEntity> findHelpCenterTypeListInPage(HelpCenterTypeEntity helpCenterTypeEntity, QueryRequest request); + + void helpCenterTypeAdds(@Valid HelpCenterTypeEntity helpCenterTypeEntity); + + FebsResponse helpCenterTypeDelete(@NotNull(message = "{required}") Long id); + } -- Gitblit v1.9.1