From 26d018d32e75438b764f4460cedb212027cec2d4 Mon Sep 17 00:00:00 2001
From: wzy <wzy19931122ai@163.com>
Date: Thu, 20 Oct 2022 23:20:36 +0800
Subject: [PATCH] fix
---
src/main/java/com/xcong/farmer/cms/modules/system/service/IReleaseService.java | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/src/main/java/com/xcong/farmer/cms/modules/system/service/IReleaseService.java b/src/main/java/com/xcong/farmer/cms/modules/system/service/IReleaseService.java
index 786eccb..2af8ed0 100644
--- a/src/main/java/com/xcong/farmer/cms/modules/system/service/IReleaseService.java
+++ b/src/main/java/com/xcong/farmer/cms/modules/system/service/IReleaseService.java
@@ -3,9 +3,14 @@
public interface IReleaseService {
- void releaseArticle(Long id);
+ void releaseArticle(Long id, Long companyId);
- void releaseColumn(Long id, boolean article);
+ void releaseColumn(Long id, int type, Long companyId);
- void releaseIndex();
+ void releaseColumns(int type, Long companyId);
+
+ void releaseIndex(Long companyId, boolean hasSearch);
+
+ void releaseAll(Long companyId);
+
}
--
Gitblit v1.9.1